Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * CFQ, or complete fairness queueing, disk scheduler. |
| 3 | * |
| 4 | * Based on ideas from a previously unfinished io |
| 5 | * scheduler (round robin per-process disk scheduling) and Andrea Arcangeli. |
| 6 | * |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 7 | * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/module.h> |
Al Viro | 1cc9be6 | 2006-03-18 12:29:52 -0500 | [diff] [blame] | 10 | #include <linux/blkdev.h> |
| 11 | #include <linux/elevator.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/hash.h> |
| 13 | #include <linux/rbtree.h> |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 14 | #include <linux/ioprio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
| 16 | /* |
| 17 | * tunables |
| 18 | */ |
Arjan van de Ven | 6410009 | 2006-01-06 09:46:02 +0100 | [diff] [blame] | 19 | static const int cfq_quantum = 4; /* max queue in one round of service */ |
Arjan van de Ven | 6410009 | 2006-01-06 09:46:02 +0100 | [diff] [blame] | 20 | static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 }; |
| 21 | static const int cfq_back_max = 16 * 1024; /* maximum backwards seek, in KiB */ |
| 22 | static const int cfq_back_penalty = 2; /* penalty of a backwards seek */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Arjan van de Ven | 6410009 | 2006-01-06 09:46:02 +0100 | [diff] [blame] | 24 | static const int cfq_slice_sync = HZ / 10; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 25 | static int cfq_slice_async = HZ / 25; |
Arjan van de Ven | 6410009 | 2006-01-06 09:46:02 +0100 | [diff] [blame] | 26 | static const int cfq_slice_async_rq = 2; |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 27 | static int cfq_slice_idle = HZ / 125; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 28 | |
| 29 | #define CFQ_IDLE_GRACE (HZ / 10) |
| 30 | #define CFQ_SLICE_SCALE (5) |
| 31 | |
| 32 | #define CFQ_KEY_ASYNC (0) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | /* |
| 35 | * for the hash of cfqq inside the cfqd |
| 36 | */ |
| 37 | #define CFQ_QHASH_SHIFT 6 |
| 38 | #define CFQ_QHASH_ENTRIES (1 << CFQ_QHASH_SHIFT) |
| 39 | #define list_entry_qhash(entry) hlist_entry((entry), struct cfq_queue, cfq_hash) |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #define list_entry_cfqq(ptr) list_entry((ptr), struct cfq_queue, cfq_list) |
| 42 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 43 | #define RQ_CIC(rq) ((struct cfq_io_context*)(rq)->elevator_private) |
| 44 | #define RQ_CFQQ(rq) ((rq)->elevator_private2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 46 | static struct kmem_cache *cfq_pool; |
| 47 | static struct kmem_cache *cfq_ioc_pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Jens Axboe | 4050cf1 | 2006-07-19 05:07:12 +0200 | [diff] [blame] | 49 | static DEFINE_PER_CPU(unsigned long, ioc_count); |
Al Viro | 334e94d | 2006-03-18 15:05:53 -0500 | [diff] [blame] | 50 | static struct completion *ioc_gone; |
| 51 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 52 | #define CFQ_PRIO_LISTS IOPRIO_BE_NR |
| 53 | #define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 54 | #define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT) |
| 55 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 56 | #define ASYNC (0) |
| 57 | #define SYNC (1) |
| 58 | |
| 59 | #define cfq_cfqq_dispatched(cfqq) \ |
| 60 | ((cfqq)->on_dispatch[ASYNC] + (cfqq)->on_dispatch[SYNC]) |
| 61 | |
| 62 | #define cfq_cfqq_class_sync(cfqq) ((cfqq)->key != CFQ_KEY_ASYNC) |
| 63 | |
| 64 | #define cfq_cfqq_sync(cfqq) \ |
| 65 | (cfq_cfqq_class_sync(cfqq) || (cfqq)->on_dispatch[SYNC]) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 66 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 67 | #define sample_valid(samples) ((samples) > 80) |
| 68 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 69 | /* |
| 70 | * Per block device queue structure |
| 71 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | struct cfq_data { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 73 | request_queue_t *queue; |
| 74 | |
| 75 | /* |
| 76 | * rr list of queues with requests and the count of them |
| 77 | */ |
| 78 | struct list_head rr_list[CFQ_PRIO_LISTS]; |
| 79 | struct list_head busy_rr; |
| 80 | struct list_head cur_rr; |
| 81 | struct list_head idle_rr; |
| 82 | unsigned int busy_queues; |
| 83 | |
| 84 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 85 | * cfqq lookup hash |
| 86 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | struct hlist_head *cfq_hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 89 | int rq_in_driver; |
Jens Axboe | 25776e3 | 2006-06-01 10:12:26 +0200 | [diff] [blame] | 90 | int hw_tag; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 91 | |
| 92 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 93 | * idle window management |
| 94 | */ |
| 95 | struct timer_list idle_slice_timer; |
| 96 | struct work_struct unplug_work; |
| 97 | |
| 98 | struct cfq_queue *active_queue; |
| 99 | struct cfq_io_context *active_cic; |
| 100 | int cur_prio, cur_end_prio; |
| 101 | unsigned int dispatch_slice; |
| 102 | |
| 103 | struct timer_list idle_class_timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
| 105 | sector_t last_sector; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 106 | unsigned long last_end_request; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | /* |
| 109 | * tunables, see top of file |
| 110 | */ |
| 111 | unsigned int cfq_quantum; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 112 | unsigned int cfq_fifo_expire[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | unsigned int cfq_back_penalty; |
| 114 | unsigned int cfq_back_max; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 115 | unsigned int cfq_slice[2]; |
| 116 | unsigned int cfq_slice_async_rq; |
| 117 | unsigned int cfq_slice_idle; |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 118 | |
| 119 | struct list_head cic_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 122 | /* |
| 123 | * Per process-grouping structure |
| 124 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | struct cfq_queue { |
| 126 | /* reference count */ |
| 127 | atomic_t ref; |
| 128 | /* parent cfq_data */ |
| 129 | struct cfq_data *cfqd; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 130 | /* cfqq lookup hash */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | struct hlist_node cfq_hash; |
| 132 | /* hash key */ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 133 | unsigned int key; |
Jens Axboe | 981a797 | 2006-07-19 14:56:28 +0200 | [diff] [blame] | 134 | /* member of the rr/busy/cur/idle cfqd list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | struct list_head cfq_list; |
| 136 | /* sorted list of pending requests */ |
| 137 | struct rb_root sort_list; |
| 138 | /* if fifo isn't expired, next request to serve */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 139 | struct request *next_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* requests queued in sort_list */ |
| 141 | int queued[2]; |
| 142 | /* currently allocated requests */ |
| 143 | int allocated[2]; |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 144 | /* pending metadata requests */ |
| 145 | int meta_pending; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | /* fifo list of requests in sort_list */ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 147 | struct list_head fifo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 149 | unsigned long slice_end; |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 150 | unsigned long service_last; |
Jens Axboe | c5b680f | 2007-01-19 11:56:49 +1100 | [diff] [blame] | 151 | long slice_resid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 153 | /* number of requests that are on the dispatch list */ |
| 154 | int on_dispatch[2]; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 155 | |
| 156 | /* io prio of this group */ |
| 157 | unsigned short ioprio, org_ioprio; |
| 158 | unsigned short ioprio_class, org_ioprio_class; |
| 159 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 160 | /* various state flags, see below */ |
| 161 | unsigned int flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | }; |
| 163 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 164 | enum cfqq_state_flags { |
Jens Axboe | b0b8d74 | 2007-01-19 11:35:30 +1100 | [diff] [blame] | 165 | CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */ |
| 166 | CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */ |
| 167 | CFQ_CFQQ_FLAG_must_alloc, /* must be allowed rq alloc */ |
| 168 | CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */ |
| 169 | CFQ_CFQQ_FLAG_must_dispatch, /* must dispatch, even if expired */ |
| 170 | CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */ |
| 171 | CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */ |
| 172 | CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */ |
| 173 | CFQ_CFQQ_FLAG_queue_new, /* queue never been serviced */ |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 174 | CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 175 | }; |
| 176 | |
| 177 | #define CFQ_CFQQ_FNS(name) \ |
| 178 | static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \ |
| 179 | { \ |
| 180 | cfqq->flags |= (1 << CFQ_CFQQ_FLAG_##name); \ |
| 181 | } \ |
| 182 | static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \ |
| 183 | { \ |
| 184 | cfqq->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \ |
| 185 | } \ |
| 186 | static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \ |
| 187 | { \ |
| 188 | return (cfqq->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \ |
| 189 | } |
| 190 | |
| 191 | CFQ_CFQQ_FNS(on_rr); |
| 192 | CFQ_CFQQ_FNS(wait_request); |
| 193 | CFQ_CFQQ_FNS(must_alloc); |
| 194 | CFQ_CFQQ_FNS(must_alloc_slice); |
| 195 | CFQ_CFQQ_FNS(must_dispatch); |
| 196 | CFQ_CFQQ_FNS(fifo_expire); |
| 197 | CFQ_CFQQ_FNS(idle_window); |
| 198 | CFQ_CFQQ_FNS(prio_changed); |
Jens Axboe | 53b0374 | 2006-07-28 09:48:51 +0200 | [diff] [blame] | 199 | CFQ_CFQQ_FNS(queue_new); |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 200 | CFQ_CFQQ_FNS(slice_new); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 201 | #undef CFQ_CFQQ_FNS |
| 202 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 203 | static struct cfq_queue *cfq_find_cfq_hash(struct cfq_data *, unsigned int, unsigned short); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 204 | static void cfq_dispatch_insert(request_queue_t *, struct request *); |
Al Viro | 6f325a1 | 2006-03-18 14:58:37 -0500 | [diff] [blame] | 205 | static struct cfq_queue *cfq_get_queue(struct cfq_data *cfqd, unsigned int key, struct task_struct *tsk, gfp_t gfp_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | /* |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 208 | * scheduler run of queue, if there are requests pending and no one in the |
| 209 | * driver that will restart queueing |
| 210 | */ |
| 211 | static inline void cfq_schedule_dispatch(struct cfq_data *cfqd) |
| 212 | { |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 213 | if (cfqd->busy_queues) |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 214 | kblockd_schedule_work(&cfqd->unplug_work); |
| 215 | } |
| 216 | |
| 217 | static int cfq_queue_empty(request_queue_t *q) |
| 218 | { |
| 219 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 220 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 221 | return !cfqd->busy_queues; |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 224 | static inline pid_t cfq_queue_pid(struct task_struct *task, int rw, int is_sync) |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 225 | { |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 226 | /* |
| 227 | * Use the per-process queue, for read requests and syncronous writes |
| 228 | */ |
| 229 | if (!(rw & REQ_RW) || is_sync) |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 230 | return task->pid; |
| 231 | |
| 232 | return CFQ_KEY_ASYNC; |
| 233 | } |
| 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | /* |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 236 | * Scale schedule slice based on io priority. Use the sync time slice only |
| 237 | * if a queue is marked sync and has sync io queued. A sync queue with async |
| 238 | * io only, should not get full sync slice length. |
| 239 | */ |
| 240 | static inline int |
| 241 | cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 242 | { |
| 243 | const int base_slice = cfqd->cfq_slice[cfq_cfqq_sync(cfqq)]; |
| 244 | |
| 245 | WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR); |
| 246 | |
| 247 | return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - cfqq->ioprio)); |
| 248 | } |
| 249 | |
| 250 | static inline void |
| 251 | cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 252 | { |
| 253 | cfqq->slice_end = cfq_prio_to_slice(cfqd, cfqq) + jiffies; |
Jens Axboe | c5b680f | 2007-01-19 11:56:49 +1100 | [diff] [blame] | 254 | cfqq->slice_end += cfqq->slice_resid; |
| 255 | |
| 256 | /* |
| 257 | * Don't carry over residual for more than one slice, we only want |
| 258 | * to slightly correct the fairness. Carrying over forever would |
| 259 | * easily introduce oscillations. |
| 260 | */ |
| 261 | cfqq->slice_resid = 0; |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | /* |
| 265 | * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end |
| 266 | * isn't valid until the first request from the dispatch is activated |
| 267 | * and the slice time set. |
| 268 | */ |
| 269 | static inline int cfq_slice_used(struct cfq_queue *cfqq) |
| 270 | { |
| 271 | if (cfq_cfqq_slice_new(cfqq)) |
| 272 | return 0; |
| 273 | if (time_before(jiffies, cfqq->slice_end)) |
| 274 | return 0; |
| 275 | |
| 276 | return 1; |
| 277 | } |
| 278 | |
| 279 | /* |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 280 | * Lifted from AS - choose which of rq1 and rq2 that is best served now. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | * We choose the request that is closest to the head right now. Distance |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 282 | * behind the head is penalized and only allowed to a certain extent. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 284 | static struct request * |
| 285 | cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | { |
| 287 | sector_t last, s1, s2, d1 = 0, d2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | unsigned long back_max; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 289 | #define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */ |
| 290 | #define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */ |
| 291 | unsigned wrap = 0; /* bit mask: requests behind the disk head? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 293 | if (rq1 == NULL || rq1 == rq2) |
| 294 | return rq2; |
| 295 | if (rq2 == NULL) |
| 296 | return rq1; |
Jens Axboe | 9c2c38a | 2005-08-24 14:57:54 +0200 | [diff] [blame] | 297 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 298 | if (rq_is_sync(rq1) && !rq_is_sync(rq2)) |
| 299 | return rq1; |
| 300 | else if (rq_is_sync(rq2) && !rq_is_sync(rq1)) |
| 301 | return rq2; |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 302 | if (rq_is_meta(rq1) && !rq_is_meta(rq2)) |
| 303 | return rq1; |
| 304 | else if (rq_is_meta(rq2) && !rq_is_meta(rq1)) |
| 305 | return rq2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 307 | s1 = rq1->sector; |
| 308 | s2 = rq2->sector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
| 310 | last = cfqd->last_sector; |
| 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | /* |
| 313 | * by definition, 1KiB is 2 sectors |
| 314 | */ |
| 315 | back_max = cfqd->cfq_back_max * 2; |
| 316 | |
| 317 | /* |
| 318 | * Strict one way elevator _except_ in the case where we allow |
| 319 | * short backward seeks which are biased as twice the cost of a |
| 320 | * similar forward seek. |
| 321 | */ |
| 322 | if (s1 >= last) |
| 323 | d1 = s1 - last; |
| 324 | else if (s1 + back_max >= last) |
| 325 | d1 = (last - s1) * cfqd->cfq_back_penalty; |
| 326 | else |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 327 | wrap |= CFQ_RQ1_WRAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
| 329 | if (s2 >= last) |
| 330 | d2 = s2 - last; |
| 331 | else if (s2 + back_max >= last) |
| 332 | d2 = (last - s2) * cfqd->cfq_back_penalty; |
| 333 | else |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 334 | wrap |= CFQ_RQ2_WRAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
| 336 | /* Found required data */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 338 | /* |
| 339 | * By doing switch() on the bit mask "wrap" we avoid having to |
| 340 | * check two variables for all permutations: --> faster! |
| 341 | */ |
| 342 | switch (wrap) { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 343 | case 0: /* common case for CFQ: rq1 and rq2 not wrapped */ |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 344 | if (d1 < d2) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 345 | return rq1; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 346 | else if (d2 < d1) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 347 | return rq2; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 348 | else { |
| 349 | if (s1 >= s2) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 350 | return rq1; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 351 | else |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 352 | return rq2; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | case CFQ_RQ2_WRAP: |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 356 | return rq1; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 357 | case CFQ_RQ1_WRAP: |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 358 | return rq2; |
| 359 | case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */ |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 360 | default: |
| 361 | /* |
| 362 | * Since both rqs are wrapped, |
| 363 | * start with the one that's further behind head |
| 364 | * (--> only *one* back seek required), |
| 365 | * since back seek takes more time than forward. |
| 366 | */ |
| 367 | if (s1 <= s2) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 368 | return rq1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | else |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 370 | return rq2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | } |
| 372 | } |
| 373 | |
| 374 | /* |
| 375 | * would be nice to take fifo expire time into account as well |
| 376 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 377 | static struct request * |
| 378 | cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
| 379 | struct request *last) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | { |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 381 | struct rb_node *rbnext = rb_next(&last->rb_node); |
| 382 | struct rb_node *rbprev = rb_prev(&last->rb_node); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 383 | struct request *next = NULL, *prev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 385 | BUG_ON(RB_EMPTY_NODE(&last->rb_node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | |
| 387 | if (rbprev) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 388 | prev = rb_entry_rq(rbprev); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 389 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | if (rbnext) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 391 | next = rb_entry_rq(rbnext); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 392 | else { |
| 393 | rbnext = rb_first(&cfqq->sort_list); |
| 394 | if (rbnext && rbnext != &last->rb_node) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 395 | next = rb_entry_rq(rbnext); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 396 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 398 | return cfq_choose_req(cfqd, next, prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | } |
| 400 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 401 | static void cfq_resort_rr_list(struct cfq_queue *cfqq, int preempted) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 403 | struct cfq_data *cfqd = cfqq->cfqd; |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 404 | struct list_head *list, *n; |
| 405 | struct cfq_queue *__cfqq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
Jens Axboe | 98e41c7 | 2007-02-05 11:55:35 +0100 | [diff] [blame] | 407 | /* |
| 408 | * Resorting requires the cfqq to be on the RR list already. |
| 409 | */ |
| 410 | if (!cfq_cfqq_on_rr(cfqq)) |
| 411 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
| 413 | list_del(&cfqq->cfq_list); |
| 414 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 415 | if (cfq_class_rt(cfqq)) |
| 416 | list = &cfqd->cur_rr; |
| 417 | else if (cfq_class_idle(cfqq)) |
| 418 | list = &cfqd->idle_rr; |
| 419 | else { |
| 420 | /* |
| 421 | * if cfqq has requests in flight, don't allow it to be |
| 422 | * found in cfq_set_active_queue before it has finished them. |
| 423 | * this is done to increase fairness between a process that |
| 424 | * has lots of io pending vs one that only generates one |
| 425 | * sporadically or synchronously |
| 426 | */ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 427 | if (cfq_cfqq_dispatched(cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 428 | list = &cfqd->busy_rr; |
| 429 | else |
| 430 | list = &cfqd->rr_list[cfqq->ioprio]; |
| 431 | } |
| 432 | |
Jens Axboe | 53b0374 | 2006-07-28 09:48:51 +0200 | [diff] [blame] | 433 | if (preempted || cfq_cfqq_queue_new(cfqq)) { |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 434 | /* |
| 435 | * If this queue was preempted or is new (never been serviced), |
| 436 | * let it be added first for fairness but beind other new |
| 437 | * queues. |
| 438 | */ |
| 439 | n = list; |
Jens Axboe | 53b0374 | 2006-07-28 09:48:51 +0200 | [diff] [blame] | 440 | while (n->next != list) { |
| 441 | __cfqq = list_entry_cfqq(n->next); |
| 442 | if (!cfq_cfqq_queue_new(__cfqq)) |
| 443 | break; |
| 444 | |
| 445 | n = n->next; |
| 446 | } |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 447 | list_add_tail(&cfqq->cfq_list, n); |
| 448 | } else if (!cfq_cfqq_class_sync(cfqq)) { |
| 449 | /* |
| 450 | * async queue always goes to the end. this wont be overly |
| 451 | * unfair to writes, as the sort of the sync queue wont be |
| 452 | * allowed to pass the async queue again. |
| 453 | */ |
| 454 | list_add_tail(&cfqq->cfq_list, list); |
| 455 | } else { |
| 456 | /* |
| 457 | * sort by last service, but don't cross a new or async |
| 458 | * queue. we don't cross a new queue because it hasn't been |
| 459 | * service before, and we don't cross an async queue because |
| 460 | * it gets added to the end on expire. |
| 461 | */ |
| 462 | n = list; |
| 463 | while ((n = n->prev) != list) { |
| 464 | struct cfq_queue *__cfqq = list_entry_cfqq(n); |
Jens Axboe | 53b0374 | 2006-07-28 09:48:51 +0200 | [diff] [blame] | 465 | |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 466 | if (!cfq_cfqq_class_sync(cfqq) || !__cfqq->service_last) |
| 467 | break; |
| 468 | if (time_before(__cfqq->service_last, cfqq->service_last)) |
| 469 | break; |
| 470 | } |
| 471 | list_add(&cfqq->cfq_list, n); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 472 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | /* |
| 476 | * add to busy list of queues for service, trying to be fair in ordering |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 477 | * the pending list according to last request service |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | */ |
| 479 | static inline void |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 480 | cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | { |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 482 | BUG_ON(cfq_cfqq_on_rr(cfqq)); |
| 483 | cfq_mark_cfqq_on_rr(cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | cfqd->busy_queues++; |
| 485 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 486 | cfq_resort_rr_list(cfqq, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | static inline void |
| 490 | cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 491 | { |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 492 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); |
| 493 | cfq_clear_cfqq_on_rr(cfqq); |
Jens Axboe | 981a797 | 2006-07-19 14:56:28 +0200 | [diff] [blame] | 494 | list_del_init(&cfqq->cfq_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | BUG_ON(!cfqd->busy_queues); |
| 497 | cfqd->busy_queues--; |
| 498 | } |
| 499 | |
| 500 | /* |
| 501 | * rb tree support functions |
| 502 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 503 | static inline void cfq_del_rq_rb(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 505 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 506 | struct cfq_data *cfqd = cfqq->cfqd; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 507 | const int sync = rq_is_sync(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 509 | BUG_ON(!cfqq->queued[sync]); |
| 510 | cfqq->queued[sync]--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 512 | elv_rb_del(&cfqq->sort_list, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 514 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 515 | cfq_del_cfqq_rr(cfqd, cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } |
| 517 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 518 | static void cfq_add_rq_rb(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 520 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | struct cfq_data *cfqd = cfqq->cfqd; |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 522 | struct request *__alias; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 524 | cfqq->queued[rq_is_sync(rq)]++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
| 526 | /* |
| 527 | * looks a little odd, but the first insert might return an alias. |
| 528 | * if that happens, put the alias on the dispatch list |
| 529 | */ |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 530 | while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 531 | cfq_dispatch_insert(cfqd->queue, __alias); |
Jens Axboe | 5fccbf6 | 2006-10-31 14:21:55 +0100 | [diff] [blame] | 532 | |
| 533 | if (!cfq_cfqq_on_rr(cfqq)) |
| 534 | cfq_add_cfqq_rr(cfqd, cfqq); |
Jens Axboe | 5044eed | 2007-04-25 11:53:48 +0200 | [diff] [blame] | 535 | |
| 536 | /* |
| 537 | * check if this request is a better next-serve candidate |
| 538 | */ |
| 539 | cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq); |
| 540 | BUG_ON(!cfqq->next_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | static inline void |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 544 | cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | { |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 546 | elv_rb_del(&cfqq->sort_list, rq); |
| 547 | cfqq->queued[rq_is_sync(rq)]--; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 548 | cfq_add_rq_rb(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
| 550 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 551 | static struct request * |
| 552 | cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | { |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 554 | struct task_struct *tsk = current; |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 555 | pid_t key = cfq_queue_pid(tsk, bio_data_dir(bio), bio_sync(bio)); |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 556 | struct cfq_queue *cfqq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 558 | cfqq = cfq_find_cfq_hash(cfqd, key, tsk->ioprio); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 559 | if (cfqq) { |
| 560 | sector_t sector = bio->bi_sector + bio_sectors(bio); |
| 561 | |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 562 | return elv_rb_find(&cfqq->sort_list, sector); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 563 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | return NULL; |
| 566 | } |
| 567 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 568 | static void cfq_activate_request(request_queue_t *q, struct request *rq) |
| 569 | { |
| 570 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 571 | |
| 572 | cfqd->rq_in_driver++; |
Jens Axboe | 25776e3 | 2006-06-01 10:12:26 +0200 | [diff] [blame] | 573 | |
| 574 | /* |
| 575 | * If the depth is larger 1, it really could be queueing. But lets |
| 576 | * make the mark a little higher - idling could still be good for |
| 577 | * low queueing, and a low queueing number could also just indicate |
| 578 | * a SCSI mid layer like behaviour where limit+1 is often seen. |
| 579 | */ |
| 580 | if (!cfqd->hw_tag && cfqd->rq_in_driver > 4) |
| 581 | cfqd->hw_tag = 1; |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 582 | } |
| 583 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | static void cfq_deactivate_request(request_queue_t *q, struct request *rq) |
| 585 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 586 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 588 | WARN_ON(!cfqd->rq_in_driver); |
| 589 | cfqd->rq_in_driver--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 592 | static void cfq_remove_request(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 594 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 595 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 596 | if (cfqq->next_rq == rq) |
| 597 | cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 599 | list_del_init(&rq->queuelist); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 600 | cfq_del_rq_rb(rq); |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 601 | |
| 602 | if (rq_is_meta(rq)) { |
| 603 | WARN_ON(!cfqq->meta_pending); |
| 604 | cfqq->meta_pending--; |
| 605 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | static int |
| 609 | cfq_merge(request_queue_t *q, struct request **req, struct bio *bio) |
| 610 | { |
| 611 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 612 | struct request *__rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 614 | __rq = cfq_find_rq_fmerge(cfqd, bio); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 615 | if (__rq && elv_rq_merge_ok(__rq, bio)) { |
Jens Axboe | 9817064 | 2006-07-28 09:23:08 +0200 | [diff] [blame] | 616 | *req = __rq; |
| 617 | return ELEVATOR_FRONT_MERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | return ELEVATOR_NO_MERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | } |
| 622 | |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 623 | static void cfq_merged_request(request_queue_t *q, struct request *req, |
| 624 | int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | { |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 626 | if (type == ELEVATOR_FRONT_MERGE) { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 627 | struct cfq_queue *cfqq = RQ_CFQQ(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 629 | cfq_reposition_rq_rb(cfqq, req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | static void |
| 634 | cfq_merged_requests(request_queue_t *q, struct request *rq, |
| 635 | struct request *next) |
| 636 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 637 | /* |
| 638 | * reposition in fifo if next is older than rq |
| 639 | */ |
| 640 | if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) && |
| 641 | time_before(next->start_time, rq->start_time)) |
| 642 | list_move(&rq->queuelist, &next->queuelist); |
| 643 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 644 | cfq_remove_request(next); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 645 | } |
| 646 | |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 647 | static int cfq_allow_merge(request_queue_t *q, struct request *rq, |
| 648 | struct bio *bio) |
| 649 | { |
| 650 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 651 | const int rw = bio_data_dir(bio); |
| 652 | struct cfq_queue *cfqq; |
| 653 | pid_t key; |
| 654 | |
| 655 | /* |
Jens Axboe | ec8acb6 | 2007-01-02 18:32:11 +0100 | [diff] [blame] | 656 | * Disallow merge of a sync bio into an async request. |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 657 | */ |
Jens Axboe | ec8acb6 | 2007-01-02 18:32:11 +0100 | [diff] [blame] | 658 | if ((bio_data_dir(bio) == READ || bio_sync(bio)) && !rq_is_sync(rq)) |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 659 | return 0; |
| 660 | |
| 661 | /* |
Jens Axboe | 719d340 | 2006-12-22 09:38:53 +0100 | [diff] [blame] | 662 | * Lookup the cfqq that this bio will be queued with. Allow |
| 663 | * merge only if rq is queued there. |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 664 | */ |
Jens Axboe | 719d340 | 2006-12-22 09:38:53 +0100 | [diff] [blame] | 665 | key = cfq_queue_pid(current, rw, bio_sync(bio)); |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 666 | cfqq = cfq_find_cfq_hash(cfqd, key, current->ioprio); |
Jens Axboe | 719d340 | 2006-12-22 09:38:53 +0100 | [diff] [blame] | 667 | |
| 668 | if (cfqq == RQ_CFQQ(rq)) |
| 669 | return 1; |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 670 | |
Jens Axboe | ec8acb6 | 2007-01-02 18:32:11 +0100 | [diff] [blame] | 671 | return 0; |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 672 | } |
| 673 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 674 | static inline void |
| 675 | __cfq_set_active_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 676 | { |
| 677 | if (cfqq) { |
| 678 | /* |
| 679 | * stop potential idle class queues waiting service |
| 680 | */ |
| 681 | del_timer(&cfqd->idle_class_timer); |
| 682 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 683 | cfqq->slice_end = 0; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 684 | cfq_clear_cfqq_must_alloc_slice(cfqq); |
| 685 | cfq_clear_cfqq_fifo_expire(cfqq); |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 686 | cfq_mark_cfqq_slice_new(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | cfqd->active_queue = cfqq; |
| 690 | } |
| 691 | |
| 692 | /* |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 693 | * current cfqq expired its slice (or was too idle), select new one |
| 694 | */ |
| 695 | static void |
| 696 | __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 697 | int preempted, int timed_out) |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 698 | { |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 699 | if (cfq_cfqq_wait_request(cfqq)) |
| 700 | del_timer(&cfqd->idle_slice_timer); |
| 701 | |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 702 | cfq_clear_cfqq_must_dispatch(cfqq); |
| 703 | cfq_clear_cfqq_wait_request(cfqq); |
Jens Axboe | 53b0374 | 2006-07-28 09:48:51 +0200 | [diff] [blame] | 704 | cfq_clear_cfqq_queue_new(cfqq); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 705 | |
| 706 | /* |
| 707 | * store what was left of this slice, if the queue idled out |
| 708 | * or was preempted |
| 709 | */ |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 710 | if (timed_out && !cfq_cfqq_slice_new(cfqq)) |
Jens Axboe | c5b680f | 2007-01-19 11:56:49 +1100 | [diff] [blame] | 711 | cfqq->slice_resid = cfqq->slice_end - jiffies; |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 712 | |
Jens Axboe | 98e41c7 | 2007-02-05 11:55:35 +0100 | [diff] [blame] | 713 | cfq_resort_rr_list(cfqq, preempted); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 714 | |
| 715 | if (cfqq == cfqd->active_queue) |
| 716 | cfqd->active_queue = NULL; |
| 717 | |
| 718 | if (cfqd->active_cic) { |
| 719 | put_io_context(cfqd->active_cic->ioc); |
| 720 | cfqd->active_cic = NULL; |
| 721 | } |
| 722 | |
| 723 | cfqd->dispatch_slice = 0; |
| 724 | } |
| 725 | |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 726 | static inline void cfq_slice_expired(struct cfq_data *cfqd, int preempted, |
| 727 | int timed_out) |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 728 | { |
| 729 | struct cfq_queue *cfqq = cfqd->active_queue; |
| 730 | |
| 731 | if (cfqq) |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 732 | __cfq_slice_expired(cfqd, cfqq, preempted, timed_out); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 736 | * 0 |
| 737 | * 0,1 |
| 738 | * 0,1,2 |
| 739 | * 0,1,2,3 |
| 740 | * 0,1,2,3,4 |
| 741 | * 0,1,2,3,4,5 |
| 742 | * 0,1,2,3,4,5,6 |
| 743 | * 0,1,2,3,4,5,6,7 |
| 744 | */ |
| 745 | static int cfq_get_next_prio_level(struct cfq_data *cfqd) |
| 746 | { |
| 747 | int prio, wrap; |
| 748 | |
| 749 | prio = -1; |
| 750 | wrap = 0; |
| 751 | do { |
| 752 | int p; |
| 753 | |
| 754 | for (p = cfqd->cur_prio; p <= cfqd->cur_end_prio; p++) { |
| 755 | if (!list_empty(&cfqd->rr_list[p])) { |
| 756 | prio = p; |
| 757 | break; |
| 758 | } |
| 759 | } |
| 760 | |
| 761 | if (prio != -1) |
| 762 | break; |
| 763 | cfqd->cur_prio = 0; |
| 764 | if (++cfqd->cur_end_prio == CFQ_PRIO_LISTS) { |
| 765 | cfqd->cur_end_prio = 0; |
| 766 | if (wrap) |
| 767 | break; |
| 768 | wrap = 1; |
| 769 | } |
| 770 | } while (1); |
| 771 | |
| 772 | if (unlikely(prio == -1)) |
| 773 | return -1; |
| 774 | |
| 775 | BUG_ON(prio >= CFQ_PRIO_LISTS); |
| 776 | |
| 777 | list_splice_init(&cfqd->rr_list[prio], &cfqd->cur_rr); |
| 778 | |
| 779 | cfqd->cur_prio = prio + 1; |
| 780 | if (cfqd->cur_prio > cfqd->cur_end_prio) { |
| 781 | cfqd->cur_end_prio = cfqd->cur_prio; |
| 782 | cfqd->cur_prio = 0; |
| 783 | } |
| 784 | if (cfqd->cur_end_prio == CFQ_PRIO_LISTS) { |
| 785 | cfqd->cur_prio = 0; |
| 786 | cfqd->cur_end_prio = 0; |
| 787 | } |
| 788 | |
| 789 | return prio; |
| 790 | } |
| 791 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 792 | static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 793 | { |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 794 | struct cfq_queue *cfqq = NULL; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 795 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 796 | if (!list_empty(&cfqd->cur_rr) || cfq_get_next_prio_level(cfqd) != -1) { |
| 797 | /* |
| 798 | * if current list is non-empty, grab first entry. if it is |
| 799 | * empty, get next prio level and grab first entry then if any |
| 800 | * are spliced |
| 801 | */ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 802 | cfqq = list_entry_cfqq(cfqd->cur_rr.next); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 803 | } else if (!list_empty(&cfqd->busy_rr)) { |
| 804 | /* |
| 805 | * If no new queues are available, check if the busy list has |
| 806 | * some before falling back to idle io. |
| 807 | */ |
Jens Axboe | e0de020 | 2006-06-01 10:07:26 +0200 | [diff] [blame] | 808 | cfqq = list_entry_cfqq(cfqd->busy_rr.next); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 809 | } else if (!list_empty(&cfqd->idle_rr)) { |
| 810 | /* |
| 811 | * if we have idle queues and no rt or be queues had pending |
| 812 | * requests, either allow immediate service if the grace period |
| 813 | * has passed or arm the idle grace timer |
| 814 | */ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 815 | unsigned long end = cfqd->last_end_request + CFQ_IDLE_GRACE; |
| 816 | |
| 817 | if (time_after_eq(jiffies, end)) |
| 818 | cfqq = list_entry_cfqq(cfqd->idle_rr.next); |
| 819 | else |
| 820 | mod_timer(&cfqd->idle_class_timer, end); |
| 821 | } |
| 822 | |
| 823 | __cfq_set_active_queue(cfqd, cfqq); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 824 | return cfqq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 825 | } |
| 826 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 827 | #define CIC_SEEKY(cic) ((cic)->seek_mean > (128 * 1024)) |
| 828 | |
Jens Axboe | 1792669 | 2007-01-19 11:59:30 +1100 | [diff] [blame] | 829 | static int cfq_arm_slice_timer(struct cfq_data *cfqd) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 830 | { |
Jens Axboe | 1792669 | 2007-01-19 11:59:30 +1100 | [diff] [blame] | 831 | struct cfq_queue *cfqq = cfqd->active_queue; |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 832 | struct cfq_io_context *cic; |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 833 | unsigned long sl; |
| 834 | |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 835 | WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 836 | |
| 837 | /* |
| 838 | * idle is disabled, either manually or by past process history |
| 839 | */ |
| 840 | if (!cfqd->cfq_slice_idle) |
| 841 | return 0; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 842 | if (!cfq_cfqq_idle_window(cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 843 | return 0; |
| 844 | /* |
| 845 | * task has exited, don't wait |
| 846 | */ |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 847 | cic = cfqd->active_cic; |
| 848 | if (!cic || !cic->ioc->task) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 849 | return 0; |
| 850 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 851 | cfq_mark_cfqq_must_dispatch(cfqq); |
| 852 | cfq_mark_cfqq_wait_request(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 853 | |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 854 | sl = min(cfqq->slice_end - 1, (unsigned long) cfqd->cfq_slice_idle); |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 855 | |
| 856 | /* |
| 857 | * we don't want to idle for seeks, but we do want to allow |
| 858 | * fair distribution of slice time for a process doing back-to-back |
| 859 | * seeks. so allow a little bit of time for him to submit a new rq |
| 860 | */ |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 861 | if (sample_valid(cic->seek_samples) && CIC_SEEKY(cic)) |
Jens Axboe | 44eb123 | 2006-07-25 15:05:21 +0200 | [diff] [blame] | 862 | sl = min(sl, msecs_to_jiffies(2)); |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 863 | |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 864 | mod_timer(&cfqd->idle_slice_timer, jiffies + sl); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 865 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | } |
| 867 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 868 | static void cfq_dispatch_insert(request_queue_t *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | { |
| 870 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 871 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 872 | |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 873 | cfq_remove_request(rq); |
| 874 | cfqq->on_dispatch[rq_is_sync(rq)]++; |
| 875 | elv_dispatch_sort(q, rq); |
Jens Axboe | fd61af0 | 2006-06-16 15:35:39 +0200 | [diff] [blame] | 876 | |
| 877 | rq = list_entry(q->queue_head.prev, struct request, queuelist); |
| 878 | cfqd->last_sector = rq->sector + rq->nr_sectors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
| 880 | |
| 881 | /* |
| 882 | * return expired entry, or NULL to just start from scratch in rbtree |
| 883 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 884 | static inline struct request *cfq_check_fifo(struct cfq_queue *cfqq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | { |
| 886 | struct cfq_data *cfqd = cfqq->cfqd; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 887 | struct request *rq; |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 888 | int fifo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 890 | if (cfq_cfqq_fifo_expire(cfqq)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | return NULL; |
Jens Axboe | cb88741 | 2007-01-19 12:01:16 +1100 | [diff] [blame] | 892 | |
| 893 | cfq_mark_cfqq_fifo_expire(cfqq); |
| 894 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 895 | if (list_empty(&cfqq->fifo)) |
| 896 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 898 | fifo = cfq_cfqq_class_sync(cfqq); |
| 899 | rq = rq_entry_fifo(cfqq->fifo.next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | |
Jens Axboe | cb88741 | 2007-01-19 12:01:16 +1100 | [diff] [blame] | 901 | if (time_after(jiffies, rq->start_time + cfqd->cfq_fifo_expire[fifo])) |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 902 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | |
| 904 | return NULL; |
| 905 | } |
| 906 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 907 | static inline int |
| 908 | cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 909 | { |
| 910 | const int base_rq = cfqd->cfq_slice_async_rq; |
| 911 | |
| 912 | WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR); |
| 913 | |
| 914 | return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio)); |
| 915 | } |
| 916 | |
| 917 | /* |
| 918 | * get next queue for service |
| 919 | */ |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 920 | static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 921 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 922 | struct cfq_queue *cfqq; |
| 923 | |
| 924 | cfqq = cfqd->active_queue; |
| 925 | if (!cfqq) |
| 926 | goto new_queue; |
| 927 | |
| 928 | /* |
| 929 | * slice has expired |
| 930 | */ |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 931 | if (!cfq_cfqq_must_dispatch(cfqq) && cfq_slice_used(cfqq)) |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 932 | goto expire; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 933 | |
| 934 | /* |
| 935 | * if queue has requests, dispatch one. if not, check if |
| 936 | * enough slice is left to wait for one |
| 937 | */ |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 938 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 939 | goto keep_queue; |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 940 | else if (cfq_cfqq_slice_new(cfqq) || cfq_cfqq_dispatched(cfqq)) { |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 941 | cfqq = NULL; |
| 942 | goto keep_queue; |
| 943 | } else if (cfq_cfqq_class_sync(cfqq)) { |
Jens Axboe | 1792669 | 2007-01-19 11:59:30 +1100 | [diff] [blame] | 944 | if (cfq_arm_slice_timer(cfqd)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 945 | return NULL; |
| 946 | } |
| 947 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 948 | expire: |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 949 | cfq_slice_expired(cfqd, 0, 0); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 950 | new_queue: |
| 951 | cfqq = cfq_set_active_queue(cfqd); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 952 | keep_queue: |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 953 | return cfqq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 954 | } |
| 955 | |
| 956 | static int |
| 957 | __cfq_dispatch_requests(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
| 958 | int max_dispatch) |
| 959 | { |
| 960 | int dispatched = 0; |
| 961 | |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 962 | BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 963 | |
| 964 | do { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 965 | struct request *rq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 966 | |
| 967 | /* |
| 968 | * follow expired path, else get first next available |
| 969 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 970 | if ((rq = cfq_check_fifo(cfqq)) == NULL) |
| 971 | rq = cfqq->next_rq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 972 | |
| 973 | /* |
| 974 | * finally, insert request into driver dispatch list |
| 975 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 976 | cfq_dispatch_insert(cfqd->queue, rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 977 | |
| 978 | cfqd->dispatch_slice++; |
| 979 | dispatched++; |
| 980 | |
| 981 | if (!cfqd->active_cic) { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 982 | atomic_inc(&RQ_CIC(rq)->ioc->refcount); |
| 983 | cfqd->active_cic = RQ_CIC(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 984 | } |
| 985 | |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 986 | if (RB_EMPTY_ROOT(&cfqq->sort_list)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 987 | break; |
| 988 | |
| 989 | } while (dispatched < max_dispatch); |
| 990 | |
| 991 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 992 | * expire an async queue immediately if it has used up its slice. idle |
| 993 | * queue always expire after 1 dispatch round. |
| 994 | */ |
Jens Axboe | a993800 | 2007-04-20 08:55:52 +0200 | [diff] [blame] | 995 | if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) && |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 996 | cfqd->dispatch_slice >= cfq_prio_to_maxrq(cfqd, cfqq)) || |
Jens Axboe | a993800 | 2007-04-20 08:55:52 +0200 | [diff] [blame] | 997 | cfq_class_idle(cfqq))) { |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 998 | cfqq->slice_end = jiffies + 1; |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 999 | cfq_slice_expired(cfqd, 0, 0); |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1000 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1001 | |
| 1002 | return dispatched; |
| 1003 | } |
| 1004 | |
| 1005 | static int |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 1006 | cfq_forced_dispatch_cfqqs(struct list_head *list) |
| 1007 | { |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 1008 | struct cfq_queue *cfqq, *next; |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1009 | int dispatched; |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 1010 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1011 | dispatched = 0; |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 1012 | list_for_each_entry_safe(cfqq, next, list, cfq_list) { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1013 | while (cfqq->next_rq) { |
| 1014 | cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq); |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 1015 | dispatched++; |
| 1016 | } |
| 1017 | BUG_ON(!list_empty(&cfqq->fifo)); |
| 1018 | } |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1019 | |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 1020 | return dispatched; |
| 1021 | } |
| 1022 | |
| 1023 | static int |
| 1024 | cfq_forced_dispatch(struct cfq_data *cfqd) |
| 1025 | { |
| 1026 | int i, dispatched = 0; |
| 1027 | |
| 1028 | for (i = 0; i < CFQ_PRIO_LISTS; i++) |
| 1029 | dispatched += cfq_forced_dispatch_cfqqs(&cfqd->rr_list[i]); |
| 1030 | |
| 1031 | dispatched += cfq_forced_dispatch_cfqqs(&cfqd->busy_rr); |
| 1032 | dispatched += cfq_forced_dispatch_cfqqs(&cfqd->cur_rr); |
| 1033 | dispatched += cfq_forced_dispatch_cfqqs(&cfqd->idle_rr); |
| 1034 | |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1035 | cfq_slice_expired(cfqd, 0, 0); |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 1036 | |
| 1037 | BUG_ON(cfqd->busy_queues); |
| 1038 | |
| 1039 | return dispatched; |
| 1040 | } |
| 1041 | |
| 1042 | static int |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 1043 | cfq_dispatch_requests(request_queue_t *q, int force) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | { |
| 1045 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1046 | struct cfq_queue *cfqq, *prev_cfqq; |
| 1047 | int dispatched; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1049 | if (!cfqd->busy_queues) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | return 0; |
| 1051 | |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 1052 | if (unlikely(force)) |
| 1053 | return cfq_forced_dispatch(cfqd); |
| 1054 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1055 | dispatched = 0; |
| 1056 | prev_cfqq = NULL; |
| 1057 | while ((cfqq = cfq_select_queue(cfqd)) != NULL) { |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 1058 | int max_dispatch; |
| 1059 | |
Jens Axboe | a993800 | 2007-04-20 08:55:52 +0200 | [diff] [blame] | 1060 | if (cfqd->busy_queues > 1) { |
| 1061 | /* |
| 1062 | * Don't repeat dispatch from the previous queue. |
| 1063 | */ |
| 1064 | if (prev_cfqq == cfqq) |
| 1065 | break; |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1066 | |
Jens Axboe | a993800 | 2007-04-20 08:55:52 +0200 | [diff] [blame] | 1067 | /* |
| 1068 | * So we have dispatched before in this round, if the |
| 1069 | * next queue has idling enabled (must be sync), don't |
| 1070 | * allow it service until the previous have continued. |
| 1071 | */ |
| 1072 | if (cfqd->rq_in_driver && cfq_cfqq_idle_window(cfqq)) |
| 1073 | break; |
| 1074 | } |
Jens Axboe | 9ede209 | 2007-01-19 12:11:44 +1100 | [diff] [blame] | 1075 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1076 | cfq_clear_cfqq_must_dispatch(cfqq); |
| 1077 | cfq_clear_cfqq_wait_request(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1078 | del_timer(&cfqd->idle_slice_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 1080 | max_dispatch = cfqd->cfq_quantum; |
| 1081 | if (cfq_class_idle(cfqq)) |
| 1082 | max_dispatch = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1084 | dispatched += __cfq_dispatch_requests(cfqd, cfqq, max_dispatch); |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1085 | prev_cfqq = cfqq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | } |
| 1087 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1088 | return dispatched; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | } |
| 1090 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | /* |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1092 | * task holds one reference to the queue, dropped when task exits. each rq |
| 1093 | * in-flight on this queue also holds a reference, dropped when rq is freed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | * |
| 1095 | * queue lock must be held here. |
| 1096 | */ |
| 1097 | static void cfq_put_queue(struct cfq_queue *cfqq) |
| 1098 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1099 | struct cfq_data *cfqd = cfqq->cfqd; |
| 1100 | |
| 1101 | BUG_ON(atomic_read(&cfqq->ref) <= 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | |
| 1103 | if (!atomic_dec_and_test(&cfqq->ref)) |
| 1104 | return; |
| 1105 | |
| 1106 | BUG_ON(rb_first(&cfqq->sort_list)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1107 | BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1108 | BUG_ON(cfq_cfqq_on_rr(cfqq)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | |
Jens Axboe | 28f95cbc | 2007-01-19 12:09:53 +1100 | [diff] [blame] | 1110 | if (unlikely(cfqd->active_queue == cfqq)) { |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1111 | __cfq_slice_expired(cfqd, cfqq, 0, 0); |
Jens Axboe | 28f95cbc | 2007-01-19 12:09:53 +1100 | [diff] [blame] | 1112 | cfq_schedule_dispatch(cfqd); |
| 1113 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | /* |
| 1116 | * it's on the empty list and still hashed |
| 1117 | */ |
| 1118 | list_del(&cfqq->cfq_list); |
| 1119 | hlist_del(&cfqq->cfq_hash); |
| 1120 | kmem_cache_free(cfq_pool, cfqq); |
| 1121 | } |
| 1122 | |
Jens Axboe | 1ea25ec | 2006-07-18 22:24:11 +0200 | [diff] [blame] | 1123 | static struct cfq_queue * |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1124 | __cfq_find_cfq_hash(struct cfq_data *cfqd, unsigned int key, unsigned int prio, |
| 1125 | const int hashval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | { |
| 1127 | struct hlist_head *hash_list = &cfqd->cfq_hash[hashval]; |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 1128 | struct hlist_node *entry; |
| 1129 | struct cfq_queue *__cfqq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 1131 | hlist_for_each_entry(__cfqq, entry, hash_list, cfq_hash) { |
Al Viro | b0a6916 | 2006-03-14 15:32:50 -0500 | [diff] [blame] | 1132 | const unsigned short __p = IOPRIO_PRIO_VALUE(__cfqq->org_ioprio_class, __cfqq->org_ioprio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 1134 | if (__cfqq->key == key && (__p == prio || !prio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | return __cfqq; |
| 1136 | } |
| 1137 | |
| 1138 | return NULL; |
| 1139 | } |
| 1140 | |
| 1141 | static struct cfq_queue * |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1142 | cfq_find_cfq_hash(struct cfq_data *cfqd, unsigned int key, unsigned short prio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | { |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1144 | return __cfq_find_cfq_hash(cfqd, key, prio, hash_long(key, CFQ_QHASH_SHIFT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | } |
| 1146 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1147 | static void cfq_free_io_context(struct io_context *ioc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1149 | struct cfq_io_context *__cic; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1150 | struct rb_node *n; |
| 1151 | int freed = 0; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1152 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1153 | while ((n = rb_first(&ioc->cic_root)) != NULL) { |
| 1154 | __cic = rb_entry(n, struct cfq_io_context, rb_node); |
| 1155 | rb_erase(&__cic->rb_node, &ioc->cic_root); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1156 | kmem_cache_free(cfq_ioc_pool, __cic); |
Al Viro | 334e94d | 2006-03-18 15:05:53 -0500 | [diff] [blame] | 1157 | freed++; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1158 | } |
| 1159 | |
Jens Axboe | 4050cf1 | 2006-07-19 05:07:12 +0200 | [diff] [blame] | 1160 | elv_ioc_count_mod(ioc_count, -freed); |
| 1161 | |
| 1162 | if (ioc_gone && !elv_ioc_count_read(ioc_count)) |
Al Viro | 334e94d | 2006-03-18 15:05:53 -0500 | [diff] [blame] | 1163 | complete(ioc_gone); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | } |
| 1165 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1166 | static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 1167 | { |
Jens Axboe | 28f95cbc | 2007-01-19 12:09:53 +1100 | [diff] [blame] | 1168 | if (unlikely(cfqq == cfqd->active_queue)) { |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1169 | __cfq_slice_expired(cfqd, cfqq, 0, 0); |
Jens Axboe | 28f95cbc | 2007-01-19 12:09:53 +1100 | [diff] [blame] | 1170 | cfq_schedule_dispatch(cfqd); |
| 1171 | } |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1172 | |
| 1173 | cfq_put_queue(cfqq); |
| 1174 | } |
| 1175 | |
| 1176 | static void __cfq_exit_single_io_context(struct cfq_data *cfqd, |
| 1177 | struct cfq_io_context *cic) |
| 1178 | { |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 1179 | list_del_init(&cic->queue_list); |
| 1180 | smp_wmb(); |
| 1181 | cic->key = NULL; |
| 1182 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1183 | if (cic->cfqq[ASYNC]) { |
| 1184 | cfq_exit_cfqq(cfqd, cic->cfqq[ASYNC]); |
| 1185 | cic->cfqq[ASYNC] = NULL; |
| 1186 | } |
| 1187 | |
| 1188 | if (cic->cfqq[SYNC]) { |
| 1189 | cfq_exit_cfqq(cfqd, cic->cfqq[SYNC]); |
| 1190 | cic->cfqq[SYNC] = NULL; |
| 1191 | } |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1192 | } |
| 1193 | |
| 1194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1196 | * Called with interrupts disabled |
| 1197 | */ |
| 1198 | static void cfq_exit_single_io_context(struct cfq_io_context *cic) |
| 1199 | { |
Al Viro | 478a82b | 2006-03-18 13:25:24 -0500 | [diff] [blame] | 1200 | struct cfq_data *cfqd = cic->key; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1201 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1202 | if (cfqd) { |
| 1203 | request_queue_t *q = cfqd->queue; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1204 | |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 1205 | spin_lock_irq(q->queue_lock); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1206 | __cfq_exit_single_io_context(cfqd, cic); |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 1207 | spin_unlock_irq(q->queue_lock); |
Al Viro | 12a0573 | 2006-03-18 13:38:01 -0500 | [diff] [blame] | 1208 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1209 | } |
| 1210 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1211 | static void cfq_exit_io_context(struct io_context *ioc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1213 | struct cfq_io_context *__cic; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1214 | struct rb_node *n; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | /* |
| 1217 | * put the reference this task is holding to the various queues |
| 1218 | */ |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1219 | |
| 1220 | n = rb_first(&ioc->cic_root); |
| 1221 | while (n != NULL) { |
| 1222 | __cic = rb_entry(n, struct cfq_io_context, rb_node); |
| 1223 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1224 | cfq_exit_single_io_context(__cic); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1225 | n = rb_next(n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | } |
| 1228 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1229 | static struct cfq_io_context * |
Al Viro | 8267e26 | 2005-10-21 03:20:53 -0400 | [diff] [blame] | 1230 | cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | { |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 1232 | struct cfq_io_context *cic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 1234 | cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask, cfqd->queue->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | if (cic) { |
Jens Axboe | 553698f | 2006-06-14 19:11:57 +0200 | [diff] [blame] | 1236 | memset(cic, 0, sizeof(*cic)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1237 | cic->last_end_request = jiffies; |
Jens Axboe | 553698f | 2006-06-14 19:11:57 +0200 | [diff] [blame] | 1238 | INIT_LIST_HEAD(&cic->queue_list); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1239 | cic->dtor = cfq_free_io_context; |
| 1240 | cic->exit = cfq_exit_io_context; |
Jens Axboe | 4050cf1 | 2006-07-19 05:07:12 +0200 | [diff] [blame] | 1241 | elv_ioc_count_inc(ioc_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | } |
| 1243 | |
| 1244 | return cic; |
| 1245 | } |
| 1246 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1247 | static void cfq_init_prio_data(struct cfq_queue *cfqq) |
| 1248 | { |
| 1249 | struct task_struct *tsk = current; |
| 1250 | int ioprio_class; |
| 1251 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1252 | if (!cfq_cfqq_prio_changed(cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1253 | return; |
| 1254 | |
| 1255 | ioprio_class = IOPRIO_PRIO_CLASS(tsk->ioprio); |
| 1256 | switch (ioprio_class) { |
| 1257 | default: |
| 1258 | printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class); |
| 1259 | case IOPRIO_CLASS_NONE: |
| 1260 | /* |
| 1261 | * no prio set, place us in the middle of the BE classes |
| 1262 | */ |
| 1263 | cfqq->ioprio = task_nice_ioprio(tsk); |
| 1264 | cfqq->ioprio_class = IOPRIO_CLASS_BE; |
| 1265 | break; |
| 1266 | case IOPRIO_CLASS_RT: |
| 1267 | cfqq->ioprio = task_ioprio(tsk); |
| 1268 | cfqq->ioprio_class = IOPRIO_CLASS_RT; |
| 1269 | break; |
| 1270 | case IOPRIO_CLASS_BE: |
| 1271 | cfqq->ioprio = task_ioprio(tsk); |
| 1272 | cfqq->ioprio_class = IOPRIO_CLASS_BE; |
| 1273 | break; |
| 1274 | case IOPRIO_CLASS_IDLE: |
| 1275 | cfqq->ioprio_class = IOPRIO_CLASS_IDLE; |
| 1276 | cfqq->ioprio = 7; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1277 | cfq_clear_cfqq_idle_window(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1278 | break; |
| 1279 | } |
| 1280 | |
| 1281 | /* |
| 1282 | * keep track of original prio settings in case we have to temporarily |
| 1283 | * elevate the priority of this queue |
| 1284 | */ |
| 1285 | cfqq->org_ioprio = cfqq->ioprio; |
| 1286 | cfqq->org_ioprio_class = cfqq->ioprio_class; |
| 1287 | |
Jens Axboe | 98e41c7 | 2007-02-05 11:55:35 +0100 | [diff] [blame] | 1288 | cfq_resort_rr_list(cfqq, 0); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1289 | cfq_clear_cfqq_prio_changed(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1290 | } |
| 1291 | |
Al Viro | 478a82b | 2006-03-18 13:25:24 -0500 | [diff] [blame] | 1292 | static inline void changed_ioprio(struct cfq_io_context *cic) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1293 | { |
Al Viro | 478a82b | 2006-03-18 13:25:24 -0500 | [diff] [blame] | 1294 | struct cfq_data *cfqd = cic->key; |
| 1295 | struct cfq_queue *cfqq; |
Jens Axboe | c1b707d | 2006-10-30 19:54:23 +0100 | [diff] [blame] | 1296 | unsigned long flags; |
Jens Axboe | 35e6077 | 2006-06-14 09:10:45 +0200 | [diff] [blame] | 1297 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1298 | if (unlikely(!cfqd)) |
| 1299 | return; |
| 1300 | |
Jens Axboe | c1b707d | 2006-10-30 19:54:23 +0100 | [diff] [blame] | 1301 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1302 | |
| 1303 | cfqq = cic->cfqq[ASYNC]; |
| 1304 | if (cfqq) { |
| 1305 | struct cfq_queue *new_cfqq; |
| 1306 | new_cfqq = cfq_get_queue(cfqd, CFQ_KEY_ASYNC, cic->ioc->task, |
| 1307 | GFP_ATOMIC); |
| 1308 | if (new_cfqq) { |
| 1309 | cic->cfqq[ASYNC] = new_cfqq; |
| 1310 | cfq_put_queue(cfqq); |
| 1311 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1312 | } |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1313 | |
| 1314 | cfqq = cic->cfqq[SYNC]; |
| 1315 | if (cfqq) |
| 1316 | cfq_mark_cfqq_prio_changed(cfqq); |
| 1317 | |
Jens Axboe | c1b707d | 2006-10-30 19:54:23 +0100 | [diff] [blame] | 1318 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1319 | } |
| 1320 | |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 1321 | static void cfq_ioc_set_ioprio(struct io_context *ioc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | { |
Al Viro | a6a0763 | 2006-03-18 13:26:44 -0500 | [diff] [blame] | 1323 | struct cfq_io_context *cic; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1324 | struct rb_node *n; |
Al Viro | a6a0763 | 2006-03-18 13:26:44 -0500 | [diff] [blame] | 1325 | |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 1326 | ioc->ioprio_changed = 0; |
Al Viro | a6a0763 | 2006-03-18 13:26:44 -0500 | [diff] [blame] | 1327 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1328 | n = rb_first(&ioc->cic_root); |
| 1329 | while (n != NULL) { |
| 1330 | cic = rb_entry(n, struct cfq_io_context, rb_node); |
Jens Axboe | 3793c65 | 2006-05-30 21:11:04 +0200 | [diff] [blame] | 1331 | |
Al Viro | 478a82b | 2006-03-18 13:25:24 -0500 | [diff] [blame] | 1332 | changed_ioprio(cic); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1333 | n = rb_next(n); |
| 1334 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | } |
| 1336 | |
| 1337 | static struct cfq_queue * |
Al Viro | 6f325a1 | 2006-03-18 14:58:37 -0500 | [diff] [blame] | 1338 | cfq_get_queue(struct cfq_data *cfqd, unsigned int key, struct task_struct *tsk, |
Al Viro | 8267e26 | 2005-10-21 03:20:53 -0400 | [diff] [blame] | 1339 | gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | { |
| 1341 | const int hashval = hash_long(key, CFQ_QHASH_SHIFT); |
| 1342 | struct cfq_queue *cfqq, *new_cfqq = NULL; |
Al Viro | 6f325a1 | 2006-03-18 14:58:37 -0500 | [diff] [blame] | 1343 | unsigned short ioprio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | |
| 1345 | retry: |
Al Viro | 6f325a1 | 2006-03-18 14:58:37 -0500 | [diff] [blame] | 1346 | ioprio = tsk->ioprio; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1347 | cfqq = __cfq_find_cfq_hash(cfqd, key, ioprio, hashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | |
| 1349 | if (!cfqq) { |
| 1350 | if (new_cfqq) { |
| 1351 | cfqq = new_cfqq; |
| 1352 | new_cfqq = NULL; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1353 | } else if (gfp_mask & __GFP_WAIT) { |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1354 | /* |
| 1355 | * Inform the allocator of the fact that we will |
| 1356 | * just repeat this allocation if it fails, to allow |
| 1357 | * the allocator to do whatever it needs to attempt to |
| 1358 | * free memory. |
| 1359 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | spin_unlock_irq(cfqd->queue->queue_lock); |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 1361 | new_cfqq = kmem_cache_alloc_node(cfq_pool, gfp_mask|__GFP_NOFAIL, cfqd->queue->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | spin_lock_irq(cfqd->queue->queue_lock); |
| 1363 | goto retry; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1364 | } else { |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 1365 | cfqq = kmem_cache_alloc_node(cfq_pool, gfp_mask, cfqd->queue->node); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1366 | if (!cfqq) |
| 1367 | goto out; |
Kiyoshi Ueda | db3b584 | 2005-06-17 16:15:10 +0200 | [diff] [blame] | 1368 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | |
| 1370 | memset(cfqq, 0, sizeof(*cfqq)); |
| 1371 | |
| 1372 | INIT_HLIST_NODE(&cfqq->cfq_hash); |
| 1373 | INIT_LIST_HEAD(&cfqq->cfq_list); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1374 | INIT_LIST_HEAD(&cfqq->fifo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | |
| 1376 | cfqq->key = key; |
| 1377 | hlist_add_head(&cfqq->cfq_hash, &cfqd->cfq_hash[hashval]); |
| 1378 | atomic_set(&cfqq->ref, 0); |
| 1379 | cfqq->cfqd = cfqd; |
Jens Axboe | c5b680f | 2007-01-19 11:56:49 +1100 | [diff] [blame] | 1380 | |
Jens Axboe | a993800 | 2007-04-20 08:55:52 +0200 | [diff] [blame] | 1381 | if (key != CFQ_KEY_ASYNC) |
| 1382 | cfq_mark_cfqq_idle_window(cfqq); |
| 1383 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1384 | cfq_mark_cfqq_prio_changed(cfqq); |
Jens Axboe | 53b0374 | 2006-07-28 09:48:51 +0200 | [diff] [blame] | 1385 | cfq_mark_cfqq_queue_new(cfqq); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1386 | cfq_init_prio_data(cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | } |
| 1388 | |
| 1389 | if (new_cfqq) |
| 1390 | kmem_cache_free(cfq_pool, new_cfqq); |
| 1391 | |
| 1392 | atomic_inc(&cfqq->ref); |
| 1393 | out: |
| 1394 | WARN_ON((gfp_mask & __GFP_WAIT) && !cfqq); |
| 1395 | return cfqq; |
| 1396 | } |
| 1397 | |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1398 | static void |
| 1399 | cfq_drop_dead_cic(struct io_context *ioc, struct cfq_io_context *cic) |
| 1400 | { |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 1401 | WARN_ON(!list_empty(&cic->queue_list)); |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1402 | rb_erase(&cic->rb_node, &ioc->cic_root); |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1403 | kmem_cache_free(cfq_ioc_pool, cic); |
Jens Axboe | 4050cf1 | 2006-07-19 05:07:12 +0200 | [diff] [blame] | 1404 | elv_ioc_count_dec(ioc_count); |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1405 | } |
| 1406 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1407 | static struct cfq_io_context * |
| 1408 | cfq_cic_rb_lookup(struct cfq_data *cfqd, struct io_context *ioc) |
| 1409 | { |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1410 | struct rb_node *n; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1411 | struct cfq_io_context *cic; |
OGAWA Hirofumi | be3b075 | 2006-04-18 19:18:31 +0200 | [diff] [blame] | 1412 | void *k, *key = cfqd; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1413 | |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1414 | restart: |
| 1415 | n = ioc->cic_root.rb_node; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1416 | while (n) { |
| 1417 | cic = rb_entry(n, struct cfq_io_context, rb_node); |
OGAWA Hirofumi | be3b075 | 2006-04-18 19:18:31 +0200 | [diff] [blame] | 1418 | /* ->key must be copied to avoid race with cfq_exit_queue() */ |
| 1419 | k = cic->key; |
| 1420 | if (unlikely(!k)) { |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1421 | cfq_drop_dead_cic(ioc, cic); |
| 1422 | goto restart; |
| 1423 | } |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1424 | |
OGAWA Hirofumi | be3b075 | 2006-04-18 19:18:31 +0200 | [diff] [blame] | 1425 | if (key < k) |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1426 | n = n->rb_left; |
OGAWA Hirofumi | be3b075 | 2006-04-18 19:18:31 +0200 | [diff] [blame] | 1427 | else if (key > k) |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1428 | n = n->rb_right; |
| 1429 | else |
| 1430 | return cic; |
| 1431 | } |
| 1432 | |
| 1433 | return NULL; |
| 1434 | } |
| 1435 | |
| 1436 | static inline void |
| 1437 | cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc, |
| 1438 | struct cfq_io_context *cic) |
| 1439 | { |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1440 | struct rb_node **p; |
| 1441 | struct rb_node *parent; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1442 | struct cfq_io_context *__cic; |
Jens Axboe | 0261d68 | 2006-10-30 19:07:48 +0100 | [diff] [blame] | 1443 | unsigned long flags; |
OGAWA Hirofumi | be3b075 | 2006-04-18 19:18:31 +0200 | [diff] [blame] | 1444 | void *k; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1445 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1446 | cic->ioc = ioc; |
| 1447 | cic->key = cfqd; |
| 1448 | |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1449 | restart: |
| 1450 | parent = NULL; |
| 1451 | p = &ioc->cic_root.rb_node; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1452 | while (*p) { |
| 1453 | parent = *p; |
| 1454 | __cic = rb_entry(parent, struct cfq_io_context, rb_node); |
OGAWA Hirofumi | be3b075 | 2006-04-18 19:18:31 +0200 | [diff] [blame] | 1455 | /* ->key must be copied to avoid race with cfq_exit_queue() */ |
| 1456 | k = __cic->key; |
| 1457 | if (unlikely(!k)) { |
Oleg Nesterov | be33c3a | 2006-08-21 08:36:12 +0200 | [diff] [blame] | 1458 | cfq_drop_dead_cic(ioc, __cic); |
OGAWA Hirofumi | dbecf3a | 2006-04-18 09:45:18 +0200 | [diff] [blame] | 1459 | goto restart; |
| 1460 | } |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1461 | |
OGAWA Hirofumi | be3b075 | 2006-04-18 19:18:31 +0200 | [diff] [blame] | 1462 | if (cic->key < k) |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1463 | p = &(*p)->rb_left; |
OGAWA Hirofumi | be3b075 | 2006-04-18 19:18:31 +0200 | [diff] [blame] | 1464 | else if (cic->key > k) |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1465 | p = &(*p)->rb_right; |
| 1466 | else |
| 1467 | BUG(); |
| 1468 | } |
| 1469 | |
| 1470 | rb_link_node(&cic->rb_node, parent, p); |
| 1471 | rb_insert_color(&cic->rb_node, &ioc->cic_root); |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 1472 | |
Jens Axboe | 0261d68 | 2006-10-30 19:07:48 +0100 | [diff] [blame] | 1473 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1474 | list_add(&cic->queue_list, &cfqd->cic_list); |
Jens Axboe | 0261d68 | 2006-10-30 19:07:48 +0100 | [diff] [blame] | 1475 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1476 | } |
| 1477 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1478 | /* |
| 1479 | * Setup general io context and cfq io context. There can be several cfq |
| 1480 | * io contexts per general io context, if this process is doing io to more |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1481 | * than one device managed by cfq. |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1482 | */ |
| 1483 | static struct cfq_io_context * |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1484 | cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1486 | struct io_context *ioc = NULL; |
| 1487 | struct cfq_io_context *cic; |
| 1488 | |
| 1489 | might_sleep_if(gfp_mask & __GFP_WAIT); |
| 1490 | |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 1491 | ioc = get_io_context(gfp_mask, cfqd->queue->node); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1492 | if (!ioc) |
| 1493 | return NULL; |
| 1494 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1495 | cic = cfq_cic_rb_lookup(cfqd, ioc); |
| 1496 | if (cic) |
| 1497 | goto out; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1498 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1499 | cic = cfq_alloc_io_context(cfqd, gfp_mask); |
| 1500 | if (cic == NULL) |
| 1501 | goto err; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1502 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1503 | cfq_cic_link(cfqd, ioc, cic); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1504 | out: |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 1505 | smp_read_barrier_depends(); |
| 1506 | if (unlikely(ioc->ioprio_changed)) |
| 1507 | cfq_ioc_set_ioprio(ioc); |
| 1508 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1509 | return cic; |
| 1510 | err: |
| 1511 | put_io_context(ioc); |
| 1512 | return NULL; |
| 1513 | } |
| 1514 | |
| 1515 | static void |
| 1516 | cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic) |
| 1517 | { |
Jens Axboe | aaf1228 | 2007-01-19 11:30:16 +1100 | [diff] [blame] | 1518 | unsigned long elapsed = jiffies - cic->last_end_request; |
| 1519 | unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1520 | |
| 1521 | cic->ttime_samples = (7*cic->ttime_samples + 256) / 8; |
| 1522 | cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8; |
| 1523 | cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples; |
| 1524 | } |
| 1525 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 1526 | static void |
Jens Axboe | bb37b94 | 2006-12-01 10:42:33 +0100 | [diff] [blame] | 1527 | cfq_update_io_seektime(struct cfq_io_context *cic, struct request *rq) |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 1528 | { |
| 1529 | sector_t sdist; |
| 1530 | u64 total; |
| 1531 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1532 | if (cic->last_request_pos < rq->sector) |
| 1533 | sdist = rq->sector - cic->last_request_pos; |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 1534 | else |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1535 | sdist = cic->last_request_pos - rq->sector; |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 1536 | |
| 1537 | /* |
| 1538 | * Don't allow the seek distance to get too large from the |
| 1539 | * odd fragment, pagein, etc |
| 1540 | */ |
| 1541 | if (cic->seek_samples <= 60) /* second&third seek */ |
| 1542 | sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*1024); |
| 1543 | else |
| 1544 | sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*64); |
| 1545 | |
| 1546 | cic->seek_samples = (7*cic->seek_samples + 256) / 8; |
| 1547 | cic->seek_total = (7*cic->seek_total + (u64)256*sdist) / 8; |
| 1548 | total = cic->seek_total + (cic->seek_samples/2); |
| 1549 | do_div(total, cic->seek_samples); |
| 1550 | cic->seek_mean = (sector_t)total; |
| 1551 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1552 | |
| 1553 | /* |
| 1554 | * Disable idle window if the process thinks too long or seeks so much that |
| 1555 | * it doesn't matter |
| 1556 | */ |
| 1557 | static void |
| 1558 | cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
| 1559 | struct cfq_io_context *cic) |
| 1560 | { |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1561 | int enable_idle = cfq_cfqq_idle_window(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1562 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1563 | if (!cic->ioc->task || !cfqd->cfq_slice_idle || |
| 1564 | (cfqd->hw_tag && CIC_SEEKY(cic))) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1565 | enable_idle = 0; |
| 1566 | else if (sample_valid(cic->ttime_samples)) { |
| 1567 | if (cic->ttime_mean > cfqd->cfq_slice_idle) |
| 1568 | enable_idle = 0; |
| 1569 | else |
| 1570 | enable_idle = 1; |
| 1571 | } |
| 1572 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1573 | if (enable_idle) |
| 1574 | cfq_mark_cfqq_idle_window(cfqq); |
| 1575 | else |
| 1576 | cfq_clear_cfqq_idle_window(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1577 | } |
| 1578 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1579 | /* |
| 1580 | * Check if new_cfqq should preempt the currently active queue. Return 0 for |
| 1581 | * no or if we aren't sure, a 1 will cause a preempt. |
| 1582 | */ |
| 1583 | static int |
| 1584 | cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq, |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1585 | struct request *rq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1586 | { |
| 1587 | struct cfq_queue *cfqq = cfqd->active_queue; |
| 1588 | |
| 1589 | if (cfq_class_idle(new_cfqq)) |
| 1590 | return 0; |
| 1591 | |
| 1592 | if (!cfqq) |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1593 | return 0; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1594 | |
| 1595 | if (cfq_class_idle(cfqq)) |
| 1596 | return 1; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1597 | if (!cfq_cfqq_wait_request(new_cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1598 | return 0; |
| 1599 | /* |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 1600 | * if the new request is sync, but the currently running queue is |
| 1601 | * not, let the sync request have priority. |
| 1602 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1603 | if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1604 | return 1; |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 1605 | /* |
| 1606 | * So both queues are sync. Let the new request get disk time if |
| 1607 | * it's a metadata request and the current queue is doing regular IO. |
| 1608 | */ |
| 1609 | if (rq_is_meta(rq) && !cfqq->meta_pending) |
| 1610 | return 1; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1611 | |
| 1612 | return 0; |
| 1613 | } |
| 1614 | |
| 1615 | /* |
| 1616 | * cfqq preempts the active queue. if we allowed preempt with no slice left, |
| 1617 | * let it have half of its nominal slice. |
| 1618 | */ |
| 1619 | static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 1620 | { |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1621 | cfq_slice_expired(cfqd, 1, 1); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1622 | |
Jens Axboe | bf57225 | 2006-07-19 20:29:12 +0200 | [diff] [blame] | 1623 | /* |
| 1624 | * Put the new queue at the front of the of the current list, |
| 1625 | * so we know that it will be selected next. |
| 1626 | */ |
| 1627 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); |
| 1628 | list_move(&cfqq->cfq_list, &cfqd->cur_rr); |
| 1629 | |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1630 | cfqq->slice_end = 0; |
| 1631 | cfq_mark_cfqq_slice_new(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1632 | } |
| 1633 | |
| 1634 | /* |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1635 | * Called when a new fs request (rq) is added (to cfqq). Check if there's |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1636 | * something we should do about it |
| 1637 | */ |
| 1638 | static void |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1639 | cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
| 1640 | struct request *rq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1641 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1642 | struct cfq_io_context *cic = RQ_CIC(rq); |
Jens Axboe | 12e9fdd | 2006-06-01 10:09:56 +0200 | [diff] [blame] | 1643 | |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 1644 | if (rq_is_meta(rq)) |
| 1645 | cfqq->meta_pending++; |
| 1646 | |
Jens Axboe | 9c2c38a | 2005-08-24 14:57:54 +0200 | [diff] [blame] | 1647 | /* |
| 1648 | * we never wait for an async request and we don't allow preemption |
| 1649 | * of an async request. so just return early |
| 1650 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1651 | if (!rq_is_sync(rq)) { |
Jens Axboe | 12e9fdd | 2006-06-01 10:09:56 +0200 | [diff] [blame] | 1652 | /* |
| 1653 | * sync process issued an async request, if it's waiting |
| 1654 | * then expire it and kick rq handling. |
| 1655 | */ |
| 1656 | if (cic == cfqd->active_cic && |
| 1657 | del_timer(&cfqd->idle_slice_timer)) { |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1658 | cfq_slice_expired(cfqd, 0, 0); |
Jens Axboe | dc72ef4 | 2006-07-20 14:54:05 +0200 | [diff] [blame] | 1659 | blk_start_queueing(cfqd->queue); |
Jens Axboe | 12e9fdd | 2006-06-01 10:09:56 +0200 | [diff] [blame] | 1660 | } |
Jens Axboe | 9c2c38a | 2005-08-24 14:57:54 +0200 | [diff] [blame] | 1661 | return; |
Jens Axboe | 12e9fdd | 2006-06-01 10:09:56 +0200 | [diff] [blame] | 1662 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1663 | |
Jens Axboe | 9c2c38a | 2005-08-24 14:57:54 +0200 | [diff] [blame] | 1664 | cfq_update_io_thinktime(cfqd, cic); |
Jens Axboe | bb37b94 | 2006-12-01 10:42:33 +0100 | [diff] [blame] | 1665 | cfq_update_io_seektime(cic, rq); |
Jens Axboe | 9c2c38a | 2005-08-24 14:57:54 +0200 | [diff] [blame] | 1666 | cfq_update_idle_window(cfqd, cfqq, cic); |
| 1667 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1668 | cic->last_request_pos = rq->sector + rq->nr_sectors; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1669 | |
| 1670 | if (cfqq == cfqd->active_queue) { |
| 1671 | /* |
| 1672 | * if we are waiting for a request for this queue, let it rip |
| 1673 | * immediately and flag that we must not expire this queue |
| 1674 | * just now |
| 1675 | */ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1676 | if (cfq_cfqq_wait_request(cfqq)) { |
| 1677 | cfq_mark_cfqq_must_dispatch(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1678 | del_timer(&cfqd->idle_slice_timer); |
Jens Axboe | dc72ef4 | 2006-07-20 14:54:05 +0200 | [diff] [blame] | 1679 | blk_start_queueing(cfqd->queue); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1680 | } |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1681 | } else if (cfq_should_preempt(cfqd, cfqq, rq)) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1682 | /* |
| 1683 | * not the active queue - expire current slice if it is |
| 1684 | * idle and has expired it's mean thinktime or this new queue |
| 1685 | * has some old slice time left and is of higher priority |
| 1686 | */ |
| 1687 | cfq_preempt_queue(cfqd, cfqq); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1688 | cfq_mark_cfqq_must_dispatch(cfqq); |
Jens Axboe | dc72ef4 | 2006-07-20 14:54:05 +0200 | [diff] [blame] | 1689 | blk_start_queueing(cfqd->queue); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1690 | } |
| 1691 | } |
| 1692 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 1693 | static void cfq_insert_request(request_queue_t *q, struct request *rq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1694 | { |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 1695 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1696 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1697 | |
| 1698 | cfq_init_prio_data(cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1700 | cfq_add_rq_rb(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1702 | list_add_tail(&rq->queuelist, &cfqq->fifo); |
| 1703 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1704 | cfq_rq_enqueued(cfqd, cfqq, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | } |
| 1706 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | static void cfq_completed_request(request_queue_t *q, struct request *rq) |
| 1708 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1709 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 1710 | struct cfq_data *cfqd = cfqq->cfqd; |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 1711 | const int sync = rq_is_sync(rq); |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 1712 | unsigned long now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 1714 | now = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 1716 | WARN_ON(!cfqd->rq_in_driver); |
| 1717 | WARN_ON(!cfqq->on_dispatch[sync]); |
| 1718 | cfqd->rq_in_driver--; |
| 1719 | cfqq->on_dispatch[sync]--; |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 1720 | cfqq->service_last = now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 1722 | if (!cfq_class_idle(cfqq)) |
| 1723 | cfqd->last_end_request = now; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1724 | |
Jens Axboe | 98e41c7 | 2007-02-05 11:55:35 +0100 | [diff] [blame] | 1725 | cfq_resort_rr_list(cfqq, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1727 | if (sync) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1728 | RQ_CIC(rq)->last_end_request = now; |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1729 | |
| 1730 | /* |
| 1731 | * If this is the active queue, check if it needs to be expired, |
| 1732 | * or if we want to idle in case it has no pending requests. |
| 1733 | */ |
| 1734 | if (cfqd->active_queue == cfqq) { |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1735 | if (cfq_cfqq_slice_new(cfqq)) { |
| 1736 | cfq_set_prio_slice(cfqd, cfqq); |
| 1737 | cfq_clear_cfqq_slice_new(cfqq); |
| 1738 | } |
| 1739 | if (cfq_slice_used(cfqq)) |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1740 | cfq_slice_expired(cfqd, 0, 1); |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 1741 | else if (sync && RB_EMPTY_ROOT(&cfqq->sort_list)) { |
Jens Axboe | 1792669 | 2007-01-19 11:59:30 +1100 | [diff] [blame] | 1742 | if (!cfq_arm_slice_timer(cfqd)) |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1743 | cfq_schedule_dispatch(cfqd); |
| 1744 | } |
| 1745 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | } |
| 1747 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1748 | /* |
| 1749 | * we temporarily boost lower priority queues if they are holding fs exclusive |
| 1750 | * resources. they are boosted to normal prio (CLASS_BE/4) |
| 1751 | */ |
| 1752 | static void cfq_prio_boost(struct cfq_queue *cfqq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1754 | const int ioprio_class = cfqq->ioprio_class; |
| 1755 | const int ioprio = cfqq->ioprio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1757 | if (has_fs_excl()) { |
| 1758 | /* |
| 1759 | * boost idle prio on transactions that would lock out other |
| 1760 | * users of the filesystem |
| 1761 | */ |
| 1762 | if (cfq_class_idle(cfqq)) |
| 1763 | cfqq->ioprio_class = IOPRIO_CLASS_BE; |
| 1764 | if (cfqq->ioprio > IOPRIO_NORM) |
| 1765 | cfqq->ioprio = IOPRIO_NORM; |
| 1766 | } else { |
| 1767 | /* |
| 1768 | * check if we need to unboost the queue |
| 1769 | */ |
| 1770 | if (cfqq->ioprio_class != cfqq->org_ioprio_class) |
| 1771 | cfqq->ioprio_class = cfqq->org_ioprio_class; |
| 1772 | if (cfqq->ioprio != cfqq->org_ioprio) |
| 1773 | cfqq->ioprio = cfqq->org_ioprio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | } |
| 1775 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1776 | /* |
| 1777 | * refile between round-robin lists if we moved the priority class |
| 1778 | */ |
Jens Axboe | 98e41c7 | 2007-02-05 11:55:35 +0100 | [diff] [blame] | 1779 | if ((ioprio_class != cfqq->ioprio_class || ioprio != cfqq->ioprio)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1780 | cfq_resort_rr_list(cfqq, 0); |
| 1781 | } |
| 1782 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1783 | static inline int __cfq_may_queue(struct cfq_queue *cfqq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1784 | { |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1785 | if ((cfq_cfqq_wait_request(cfqq) || cfq_cfqq_must_alloc(cfqq)) && |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 1786 | !cfq_cfqq_must_alloc_slice(cfqq)) { |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1787 | cfq_mark_cfqq_must_alloc_slice(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1788 | return ELV_MQUEUE_MUST; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1789 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1790 | |
| 1791 | return ELV_MQUEUE_MAY; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1792 | } |
| 1793 | |
Jens Axboe | cb78b28 | 2006-07-28 09:32:57 +0200 | [diff] [blame] | 1794 | static int cfq_may_queue(request_queue_t *q, int rw) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1795 | { |
| 1796 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 1797 | struct task_struct *tsk = current; |
| 1798 | struct cfq_queue *cfqq; |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 1799 | unsigned int key; |
| 1800 | |
| 1801 | key = cfq_queue_pid(tsk, rw, rw & REQ_RW_SYNC); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1802 | |
| 1803 | /* |
| 1804 | * don't force setup of a queue from here, as a call to may_queue |
| 1805 | * does not necessarily imply that a request actually will be queued. |
| 1806 | * so just lookup a possibly existing queue, or return 'may queue' |
| 1807 | * if that fails |
| 1808 | */ |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 1809 | cfqq = cfq_find_cfq_hash(cfqd, key, tsk->ioprio); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1810 | if (cfqq) { |
| 1811 | cfq_init_prio_data(cfqq); |
| 1812 | cfq_prio_boost(cfqq); |
| 1813 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1814 | return __cfq_may_queue(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1815 | } |
| 1816 | |
| 1817 | return ELV_MQUEUE_MAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | } |
| 1819 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1820 | /* |
| 1821 | * queue lock held here |
| 1822 | */ |
Jens Axboe | bb37b94 | 2006-12-01 10:42:33 +0100 | [diff] [blame] | 1823 | static void cfq_put_request(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1825 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1827 | if (cfqq) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1828 | const int rw = rq_data_dir(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1830 | BUG_ON(!cfqq->allocated[rw]); |
| 1831 | cfqq->allocated[rw]--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1833 | put_io_context(RQ_CIC(rq)->ioc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | rq->elevator_private = NULL; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1836 | rq->elevator_private2 = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | cfq_put_queue(cfqq); |
| 1839 | } |
| 1840 | } |
| 1841 | |
| 1842 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1843 | * Allocate cfq data structures associated with this request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | */ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1845 | static int |
Jens Axboe | cb78b28 | 2006-07-28 09:32:57 +0200 | [diff] [blame] | 1846 | cfq_set_request(request_queue_t *q, struct request *rq, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | { |
| 1848 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1849 | struct task_struct *tsk = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | struct cfq_io_context *cic; |
| 1851 | const int rw = rq_data_dir(rq); |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 1852 | const int is_sync = rq_is_sync(rq); |
| 1853 | pid_t key = cfq_queue_pid(tsk, rw, is_sync); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1854 | struct cfq_queue *cfqq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | unsigned long flags; |
| 1856 | |
| 1857 | might_sleep_if(gfp_mask & __GFP_WAIT); |
| 1858 | |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1859 | cic = cfq_get_io_context(cfqd, gfp_mask); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1860 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | spin_lock_irqsave(q->queue_lock, flags); |
| 1862 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1863 | if (!cic) |
| 1864 | goto queue_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | |
Al Viro | 12a0573 | 2006-03-18 13:38:01 -0500 | [diff] [blame] | 1866 | if (!cic->cfqq[is_sync]) { |
Al Viro | 6f325a1 | 2006-03-18 14:58:37 -0500 | [diff] [blame] | 1867 | cfqq = cfq_get_queue(cfqd, key, tsk, gfp_mask); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1868 | if (!cfqq) |
| 1869 | goto queue_fail; |
| 1870 | |
Al Viro | 12a0573 | 2006-03-18 13:38:01 -0500 | [diff] [blame] | 1871 | cic->cfqq[is_sync] = cfqq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1872 | } else |
Al Viro | 12a0573 | 2006-03-18 13:38:01 -0500 | [diff] [blame] | 1873 | cfqq = cic->cfqq[is_sync]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | |
| 1875 | cfqq->allocated[rw]++; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1876 | cfq_clear_cfqq_must_alloc(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1877 | atomic_inc(&cfqq->ref); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 1880 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1881 | rq->elevator_private = cic; |
| 1882 | rq->elevator_private2 = cfqq; |
| 1883 | return 0; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1884 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1885 | queue_fail: |
| 1886 | if (cic) |
| 1887 | put_io_context(cic->ioc); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1888 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1889 | cfq_schedule_dispatch(cfqd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 1891 | return 1; |
| 1892 | } |
| 1893 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1894 | static void cfq_kick_queue(struct work_struct *work) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1895 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1896 | struct cfq_data *cfqd = |
| 1897 | container_of(work, struct cfq_data, unplug_work); |
| 1898 | request_queue_t *q = cfqd->queue; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1899 | unsigned long flags; |
| 1900 | |
| 1901 | spin_lock_irqsave(q->queue_lock, flags); |
Jens Axboe | dc72ef4 | 2006-07-20 14:54:05 +0200 | [diff] [blame] | 1902 | blk_start_queueing(q); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1903 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 1904 | } |
| 1905 | |
| 1906 | /* |
| 1907 | * Timer running if the active_queue is currently idling inside its time slice |
| 1908 | */ |
| 1909 | static void cfq_idle_slice_timer(unsigned long data) |
| 1910 | { |
| 1911 | struct cfq_data *cfqd = (struct cfq_data *) data; |
| 1912 | struct cfq_queue *cfqq; |
| 1913 | unsigned long flags; |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1914 | int timed_out = 1; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1915 | |
| 1916 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); |
| 1917 | |
| 1918 | if ((cfqq = cfqd->active_queue) != NULL) { |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1919 | timed_out = 0; |
| 1920 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1921 | /* |
| 1922 | * expired |
| 1923 | */ |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1924 | if (cfq_slice_used(cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1925 | goto expire; |
| 1926 | |
| 1927 | /* |
| 1928 | * only expire and reinvoke request handler, if there are |
| 1929 | * other queues with pending requests |
| 1930 | */ |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 1931 | if (!cfqd->busy_queues) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1932 | goto out_cont; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1933 | |
| 1934 | /* |
| 1935 | * not expired and it has a request pending, let it dispatch |
| 1936 | */ |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 1937 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) { |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1938 | cfq_mark_cfqq_must_dispatch(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1939 | goto out_kick; |
| 1940 | } |
| 1941 | } |
| 1942 | expire: |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1943 | cfq_slice_expired(cfqd, 0, timed_out); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1944 | out_kick: |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1945 | cfq_schedule_dispatch(cfqd); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1946 | out_cont: |
| 1947 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); |
| 1948 | } |
| 1949 | |
| 1950 | /* |
| 1951 | * Timer running if an idle class queue is waiting for service |
| 1952 | */ |
| 1953 | static void cfq_idle_class_timer(unsigned long data) |
| 1954 | { |
| 1955 | struct cfq_data *cfqd = (struct cfq_data *) data; |
| 1956 | unsigned long flags, end; |
| 1957 | |
| 1958 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); |
| 1959 | |
| 1960 | /* |
| 1961 | * race with a non-idle queue, reset timer |
| 1962 | */ |
| 1963 | end = cfqd->last_end_request + CFQ_IDLE_GRACE; |
Jens Axboe | ae818a3 | 2006-06-01 10:13:43 +0200 | [diff] [blame] | 1964 | if (!time_after_eq(jiffies, end)) |
| 1965 | mod_timer(&cfqd->idle_class_timer, end); |
| 1966 | else |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1967 | cfq_schedule_dispatch(cfqd); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1968 | |
| 1969 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); |
| 1970 | } |
| 1971 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1972 | static void cfq_shutdown_timer_wq(struct cfq_data *cfqd) |
| 1973 | { |
| 1974 | del_timer_sync(&cfqd->idle_slice_timer); |
| 1975 | del_timer_sync(&cfqd->idle_class_timer); |
| 1976 | blk_sync_queue(cfqd->queue); |
| 1977 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | static void cfq_exit_queue(elevator_t *e) |
| 1980 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1981 | struct cfq_data *cfqd = e->elevator_data; |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 1982 | request_queue_t *q = cfqd->queue; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1983 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 1984 | cfq_shutdown_timer_wq(cfqd); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1985 | |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 1986 | spin_lock_irq(q->queue_lock); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1987 | |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 1988 | if (cfqd->active_queue) |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 1989 | __cfq_slice_expired(cfqd, cfqd->active_queue, 0, 0); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1990 | |
| 1991 | while (!list_empty(&cfqd->cic_list)) { |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 1992 | struct cfq_io_context *cic = list_entry(cfqd->cic_list.next, |
| 1993 | struct cfq_io_context, |
| 1994 | queue_list); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 1995 | |
| 1996 | __cfq_exit_single_io_context(cfqd, cic); |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 1997 | } |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 1998 | |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 1999 | spin_unlock_irq(q->queue_lock); |
Al Viro | a90d742 | 2006-03-18 12:05:37 -0500 | [diff] [blame] | 2000 | |
| 2001 | cfq_shutdown_timer_wq(cfqd); |
| 2002 | |
Al Viro | a90d742 | 2006-03-18 12:05:37 -0500 | [diff] [blame] | 2003 | kfree(cfqd->cfq_hash); |
| 2004 | kfree(cfqd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | } |
| 2006 | |
Jens Axboe | bb37b94 | 2006-12-01 10:42:33 +0100 | [diff] [blame] | 2007 | static void *cfq_init_queue(request_queue_t *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | { |
| 2009 | struct cfq_data *cfqd; |
| 2010 | int i; |
| 2011 | |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 2012 | cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL, q->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | if (!cfqd) |
Jens Axboe | bc1c116 | 2006-06-08 08:49:06 +0200 | [diff] [blame] | 2014 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | |
| 2016 | memset(cfqd, 0, sizeof(*cfqd)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2017 | |
| 2018 | for (i = 0; i < CFQ_PRIO_LISTS; i++) |
| 2019 | INIT_LIST_HEAD(&cfqd->rr_list[i]); |
| 2020 | |
| 2021 | INIT_LIST_HEAD(&cfqd->busy_rr); |
| 2022 | INIT_LIST_HEAD(&cfqd->cur_rr); |
| 2023 | INIT_LIST_HEAD(&cfqd->idle_rr); |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 2024 | INIT_LIST_HEAD(&cfqd->cic_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 2026 | cfqd->cfq_hash = kmalloc_node(sizeof(struct hlist_head) * CFQ_QHASH_ENTRIES, GFP_KERNEL, q->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | if (!cfqd->cfq_hash) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2028 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | for (i = 0; i < CFQ_QHASH_ENTRIES; i++) |
| 2031 | INIT_HLIST_HEAD(&cfqd->cfq_hash[i]); |
| 2032 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | cfqd->queue = q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2035 | init_timer(&cfqd->idle_slice_timer); |
| 2036 | cfqd->idle_slice_timer.function = cfq_idle_slice_timer; |
| 2037 | cfqd->idle_slice_timer.data = (unsigned long) cfqd; |
| 2038 | |
| 2039 | init_timer(&cfqd->idle_class_timer); |
| 2040 | cfqd->idle_class_timer.function = cfq_idle_class_timer; |
| 2041 | cfqd->idle_class_timer.data = (unsigned long) cfqd; |
| 2042 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 2043 | INIT_WORK(&cfqd->unplug_work, cfq_kick_queue); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2044 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | cfqd->cfq_quantum = cfq_quantum; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2046 | cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0]; |
| 2047 | cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | cfqd->cfq_back_max = cfq_back_max; |
| 2049 | cfqd->cfq_back_penalty = cfq_back_penalty; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2050 | cfqd->cfq_slice[0] = cfq_slice_async; |
| 2051 | cfqd->cfq_slice[1] = cfq_slice_sync; |
| 2052 | cfqd->cfq_slice_async_rq = cfq_slice_async_rq; |
| 2053 | cfqd->cfq_slice_idle = cfq_slice_idle; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 2054 | |
Jens Axboe | bc1c116 | 2006-06-08 08:49:06 +0200 | [diff] [blame] | 2055 | return cfqd; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2056 | out_free: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | kfree(cfqd); |
Jens Axboe | bc1c116 | 2006-06-08 08:49:06 +0200 | [diff] [blame] | 2058 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | } |
| 2060 | |
| 2061 | static void cfq_slab_kill(void) |
| 2062 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | if (cfq_pool) |
| 2064 | kmem_cache_destroy(cfq_pool); |
| 2065 | if (cfq_ioc_pool) |
| 2066 | kmem_cache_destroy(cfq_ioc_pool); |
| 2067 | } |
| 2068 | |
| 2069 | static int __init cfq_slab_setup(void) |
| 2070 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | cfq_pool = kmem_cache_create("cfq_pool", sizeof(struct cfq_queue), 0, 0, |
| 2072 | NULL, NULL); |
| 2073 | if (!cfq_pool) |
| 2074 | goto fail; |
| 2075 | |
| 2076 | cfq_ioc_pool = kmem_cache_create("cfq_ioc_pool", |
| 2077 | sizeof(struct cfq_io_context), 0, 0, NULL, NULL); |
| 2078 | if (!cfq_ioc_pool) |
| 2079 | goto fail; |
| 2080 | |
| 2081 | return 0; |
| 2082 | fail: |
| 2083 | cfq_slab_kill(); |
| 2084 | return -ENOMEM; |
| 2085 | } |
| 2086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | /* |
| 2088 | * sysfs parts below --> |
| 2089 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | |
| 2091 | static ssize_t |
| 2092 | cfq_var_show(unsigned int var, char *page) |
| 2093 | { |
| 2094 | return sprintf(page, "%d\n", var); |
| 2095 | } |
| 2096 | |
| 2097 | static ssize_t |
| 2098 | cfq_var_store(unsigned int *var, const char *page, size_t count) |
| 2099 | { |
| 2100 | char *p = (char *) page; |
| 2101 | |
| 2102 | *var = simple_strtoul(p, &p, 10); |
| 2103 | return count; |
| 2104 | } |
| 2105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | #define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \ |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 2107 | static ssize_t __FUNC(elevator_t *e, char *page) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | { \ |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 2109 | struct cfq_data *cfqd = e->elevator_data; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | unsigned int __data = __VAR; \ |
| 2111 | if (__CONV) \ |
| 2112 | __data = jiffies_to_msecs(__data); \ |
| 2113 | return cfq_var_show(__data, (page)); \ |
| 2114 | } |
| 2115 | SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2116 | SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1); |
| 2117 | SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1); |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 2118 | SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0); |
| 2119 | SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2120 | SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1); |
| 2121 | SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1); |
| 2122 | SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1); |
| 2123 | SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | #undef SHOW_FUNCTION |
| 2125 | |
| 2126 | #define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \ |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 2127 | static ssize_t __FUNC(elevator_t *e, const char *page, size_t count) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | { \ |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 2129 | struct cfq_data *cfqd = e->elevator_data; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | unsigned int __data; \ |
| 2131 | int ret = cfq_var_store(&__data, (page), count); \ |
| 2132 | if (__data < (MIN)) \ |
| 2133 | __data = (MIN); \ |
| 2134 | else if (__data > (MAX)) \ |
| 2135 | __data = (MAX); \ |
| 2136 | if (__CONV) \ |
| 2137 | *(__PTR) = msecs_to_jiffies(__data); \ |
| 2138 | else \ |
| 2139 | *(__PTR) = __data; \ |
| 2140 | return ret; \ |
| 2141 | } |
| 2142 | STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2143 | STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1, UINT_MAX, 1); |
| 2144 | STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1, UINT_MAX, 1); |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 2145 | STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0); |
| 2146 | STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1, UINT_MAX, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2147 | STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1); |
| 2148 | STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1); |
| 2149 | STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1); |
| 2150 | STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1, UINT_MAX, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | #undef STORE_FUNCTION |
| 2152 | |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 2153 | #define CFQ_ATTR(name) \ |
| 2154 | __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store) |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 2155 | |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 2156 | static struct elv_fs_entry cfq_attrs[] = { |
| 2157 | CFQ_ATTR(quantum), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 2158 | CFQ_ATTR(fifo_expire_sync), |
| 2159 | CFQ_ATTR(fifo_expire_async), |
| 2160 | CFQ_ATTR(back_seek_max), |
| 2161 | CFQ_ATTR(back_seek_penalty), |
| 2162 | CFQ_ATTR(slice_sync), |
| 2163 | CFQ_ATTR(slice_async), |
| 2164 | CFQ_ATTR(slice_async_rq), |
| 2165 | CFQ_ATTR(slice_idle), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 2166 | __ATTR_NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | }; |
| 2168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | static struct elevator_type iosched_cfq = { |
| 2170 | .ops = { |
| 2171 | .elevator_merge_fn = cfq_merge, |
| 2172 | .elevator_merged_fn = cfq_merged_request, |
| 2173 | .elevator_merge_req_fn = cfq_merged_requests, |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2174 | .elevator_allow_merge_fn = cfq_allow_merge, |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2175 | .elevator_dispatch_fn = cfq_dispatch_requests, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | .elevator_add_req_fn = cfq_insert_request, |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2177 | .elevator_activate_req_fn = cfq_activate_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | .elevator_deactivate_req_fn = cfq_deactivate_request, |
| 2179 | .elevator_queue_empty_fn = cfq_queue_empty, |
| 2180 | .elevator_completed_req_fn = cfq_completed_request, |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 2181 | .elevator_former_req_fn = elv_rb_former_request, |
| 2182 | .elevator_latter_req_fn = elv_rb_latter_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | .elevator_set_req_fn = cfq_set_request, |
| 2184 | .elevator_put_req_fn = cfq_put_request, |
| 2185 | .elevator_may_queue_fn = cfq_may_queue, |
| 2186 | .elevator_init_fn = cfq_init_queue, |
| 2187 | .elevator_exit_fn = cfq_exit_queue, |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 2188 | .trim = cfq_free_io_context, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | }, |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 2190 | .elevator_attrs = cfq_attrs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | .elevator_name = "cfq", |
| 2192 | .elevator_owner = THIS_MODULE, |
| 2193 | }; |
| 2194 | |
| 2195 | static int __init cfq_init(void) |
| 2196 | { |
| 2197 | int ret; |
| 2198 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2199 | /* |
| 2200 | * could be 0 on HZ < 1000 setups |
| 2201 | */ |
| 2202 | if (!cfq_slice_async) |
| 2203 | cfq_slice_async = 1; |
| 2204 | if (!cfq_slice_idle) |
| 2205 | cfq_slice_idle = 1; |
| 2206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | if (cfq_slab_setup()) |
| 2208 | return -ENOMEM; |
| 2209 | |
| 2210 | ret = elv_register(&iosched_cfq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2211 | if (ret) |
| 2212 | cfq_slab_kill(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | return ret; |
| 2215 | } |
| 2216 | |
| 2217 | static void __exit cfq_exit(void) |
| 2218 | { |
Peter Zijlstra | 6e9a473 | 2006-09-30 23:28:10 -0700 | [diff] [blame] | 2219 | DECLARE_COMPLETION_ONSTACK(all_gone); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | elv_unregister(&iosched_cfq); |
Al Viro | 334e94d | 2006-03-18 15:05:53 -0500 | [diff] [blame] | 2221 | ioc_gone = &all_gone; |
OGAWA Hirofumi | fba8227 | 2006-04-18 09:44:06 +0200 | [diff] [blame] | 2222 | /* ioc_gone's update must be visible before reading ioc_count */ |
| 2223 | smp_wmb(); |
Jens Axboe | 4050cf1 | 2006-07-19 05:07:12 +0200 | [diff] [blame] | 2224 | if (elv_ioc_count_read(ioc_count)) |
OGAWA Hirofumi | fba8227 | 2006-04-18 09:44:06 +0200 | [diff] [blame] | 2225 | wait_for_completion(ioc_gone); |
Al Viro | 334e94d | 2006-03-18 15:05:53 -0500 | [diff] [blame] | 2226 | synchronize_rcu(); |
Christoph Hellwig | 83521d3 | 2005-10-30 15:01:39 -0800 | [diff] [blame] | 2227 | cfq_slab_kill(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | } |
| 2229 | |
| 2230 | module_init(cfq_init); |
| 2231 | module_exit(cfq_exit); |
| 2232 | |
| 2233 | MODULE_AUTHOR("Jens Axboe"); |
| 2234 | MODULE_LICENSE("GPL"); |
| 2235 | MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler"); |