blob: e2e6ad0a158e2201d81af14f90008a7b538d5ed7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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 *
7 * Copyright (C) 2003 Jens Axboe <axboe@suse.de>
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/config.h>
10#include <linux/module.h>
Al Viro1cc9be62006-03-18 12:29:52 -050011#include <linux/blkdev.h>
12#include <linux/elevator.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/hash.h>
14#include <linux/rbtree.h>
Jens Axboe22e2c502005-06-27 10:55:12 +020015#include <linux/ioprio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17/*
18 * tunables
19 */
Arjan van de Ven64100092006-01-06 09:46:02 +010020static const int cfq_quantum = 4; /* max queue in one round of service */
21static const int cfq_queued = 8; /* minimum rq allocate limit per-queue*/
22static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
23static const int cfq_back_max = 16 * 1024; /* maximum backwards seek, in KiB */
24static const int cfq_back_penalty = 2; /* penalty of a backwards seek */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Arjan van de Ven64100092006-01-06 09:46:02 +010026static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020027static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010028static const int cfq_slice_async_rq = 2;
Jens Axboe206dc692006-03-28 13:03:44 +020029static int cfq_slice_idle = HZ / 70;
Jens Axboe22e2c502005-06-27 10:55:12 +020030
31#define CFQ_IDLE_GRACE (HZ / 10)
32#define CFQ_SLICE_SCALE (5)
33
34#define CFQ_KEY_ASYNC (0)
Jens Axboe22e2c502005-06-27 10:55:12 +020035
Jens Axboe3793c652006-05-30 21:11:04 +020036static DEFINE_SPINLOCK(cfq_exit_lock);
Al Viroa6a07632006-03-18 13:26:44 -050037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
39 * for the hash of cfqq inside the cfqd
40 */
41#define CFQ_QHASH_SHIFT 6
42#define CFQ_QHASH_ENTRIES (1 << CFQ_QHASH_SHIFT)
43#define list_entry_qhash(entry) hlist_entry((entry), struct cfq_queue, cfq_hash)
44
45/*
46 * for the hash of crq inside the cfqq
47 */
48#define CFQ_MHASH_SHIFT 6
49#define CFQ_MHASH_BLOCK(sec) ((sec) >> 3)
50#define CFQ_MHASH_ENTRIES (1 << CFQ_MHASH_SHIFT)
51#define CFQ_MHASH_FN(sec) hash_long(CFQ_MHASH_BLOCK(sec), CFQ_MHASH_SHIFT)
52#define rq_hash_key(rq) ((rq)->sector + (rq)->nr_sectors)
53#define list_entry_hash(ptr) hlist_entry((ptr), struct cfq_rq, hash)
54
55#define list_entry_cfqq(ptr) list_entry((ptr), struct cfq_queue, cfq_list)
Jens Axboe22e2c502005-06-27 10:55:12 +020056#define list_entry_fifo(ptr) list_entry((ptr), struct request, queuelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define RQ_DATA(rq) (rq)->elevator_private
59
60/*
61 * rb-tree defines
62 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define RB_EMPTY(node) ((node)->rb_node == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define RB_CLEAR(node) do { \
David Woodhouse3db3a442006-04-21 13:15:17 +010065 memset(node, 0, sizeof(*node)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070066} while (0)
67#define RB_CLEAR_ROOT(root) ((root)->rb_node = NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define rb_entry_crq(node) rb_entry((node), struct cfq_rq, rb_node)
69#define rq_rb_key(rq) (rq)->sector
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static kmem_cache_t *crq_pool;
72static kmem_cache_t *cfq_pool;
73static kmem_cache_t *cfq_ioc_pool;
74
Al Viro334e94d2006-03-18 15:05:53 -050075static atomic_t ioc_count = ATOMIC_INIT(0);
76static struct completion *ioc_gone;
77
Jens Axboe22e2c502005-06-27 10:55:12 +020078#define CFQ_PRIO_LISTS IOPRIO_BE_NR
79#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
80#define cfq_class_be(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_BE)
81#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
82
Jens Axboe3b181522005-06-27 10:56:24 +020083#define ASYNC (0)
84#define SYNC (1)
85
86#define cfq_cfqq_dispatched(cfqq) \
87 ((cfqq)->on_dispatch[ASYNC] + (cfqq)->on_dispatch[SYNC])
88
89#define cfq_cfqq_class_sync(cfqq) ((cfqq)->key != CFQ_KEY_ASYNC)
90
91#define cfq_cfqq_sync(cfqq) \
92 (cfq_cfqq_class_sync(cfqq) || (cfqq)->on_dispatch[SYNC])
Jens Axboe22e2c502005-06-27 10:55:12 +020093
Jens Axboe206dc692006-03-28 13:03:44 +020094#define sample_valid(samples) ((samples) > 80)
95
Jens Axboe22e2c502005-06-27 10:55:12 +020096/*
97 * Per block device queue structure
98 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099struct cfq_data {
Jens Axboe22e2c502005-06-27 10:55:12 +0200100 request_queue_t *queue;
101
102 /*
103 * rr list of queues with requests and the count of them
104 */
105 struct list_head rr_list[CFQ_PRIO_LISTS];
106 struct list_head busy_rr;
107 struct list_head cur_rr;
108 struct list_head idle_rr;
109 unsigned int busy_queues;
110
111 /*
112 * non-ordered list of empty cfqq's
113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct list_head empty_list;
115
Jens Axboe22e2c502005-06-27 10:55:12 +0200116 /*
117 * cfqq lookup hash
118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 struct hlist_head *cfq_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Jens Axboe22e2c502005-06-27 10:55:12 +0200121 /*
122 * global crq hash for all queues
123 */
124 struct hlist_head *crq_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 unsigned int max_queued;
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 mempool_t *crq_pool;
129
Jens Axboe22e2c502005-06-27 10:55:12 +0200130 int rq_in_driver;
Jens Axboe25776e32006-06-01 10:12:26 +0200131 int hw_tag;
Jens Axboe22e2c502005-06-27 10:55:12 +0200132
133 /*
134 * schedule slice state info
135 */
136 /*
137 * idle window management
138 */
139 struct timer_list idle_slice_timer;
140 struct work_struct unplug_work;
141
142 struct cfq_queue *active_queue;
143 struct cfq_io_context *active_cic;
144 int cur_prio, cur_end_prio;
145 unsigned int dispatch_slice;
146
147 struct timer_list idle_class_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 sector_t last_sector;
Jens Axboe22e2c502005-06-27 10:55:12 +0200150 unsigned long last_end_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Jens Axboe22e2c502005-06-27 10:55:12 +0200152 unsigned int rq_starved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /*
155 * tunables, see top of file
156 */
157 unsigned int cfq_quantum;
158 unsigned int cfq_queued;
Jens Axboe22e2c502005-06-27 10:55:12 +0200159 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 unsigned int cfq_back_penalty;
161 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200162 unsigned int cfq_slice[2];
163 unsigned int cfq_slice_async_rq;
164 unsigned int cfq_slice_idle;
Al Virod9ff4182006-03-18 13:51:22 -0500165
166 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167};
168
Jens Axboe22e2c502005-06-27 10:55:12 +0200169/*
170 * Per process-grouping structure
171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172struct cfq_queue {
173 /* reference count */
174 atomic_t ref;
175 /* parent cfq_data */
176 struct cfq_data *cfqd;
Jens Axboe22e2c502005-06-27 10:55:12 +0200177 /* cfqq lookup hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct hlist_node cfq_hash;
179 /* hash key */
Jens Axboe22e2c502005-06-27 10:55:12 +0200180 unsigned int key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* on either rr or empty list of cfqd */
182 struct list_head cfq_list;
183 /* sorted list of pending requests */
184 struct rb_root sort_list;
185 /* if fifo isn't expired, next request to serve */
186 struct cfq_rq *next_crq;
187 /* requests queued in sort_list */
188 int queued[2];
189 /* currently allocated requests */
190 int allocated[2];
191 /* fifo list of requests in sort_list */
Jens Axboe22e2c502005-06-27 10:55:12 +0200192 struct list_head fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Jens Axboe22e2c502005-06-27 10:55:12 +0200194 unsigned long slice_start;
195 unsigned long slice_end;
196 unsigned long slice_left;
197 unsigned long service_last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Jens Axboe3b181522005-06-27 10:56:24 +0200199 /* number of requests that are on the dispatch list */
200 int on_dispatch[2];
Jens Axboe22e2c502005-06-27 10:55:12 +0200201
202 /* io prio of this group */
203 unsigned short ioprio, org_ioprio;
204 unsigned short ioprio_class, org_ioprio_class;
205
Jens Axboe3b181522005-06-27 10:56:24 +0200206 /* various state flags, see below */
207 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
210struct cfq_rq {
211 struct rb_node rb_node;
212 sector_t rb_key;
213 struct request *request;
214 struct hlist_node hash;
215
216 struct cfq_queue *cfq_queue;
217 struct cfq_io_context *io_context;
218
Jens Axboe3b181522005-06-27 10:56:24 +0200219 unsigned int crq_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220};
221
Jens Axboe3b181522005-06-27 10:56:24 +0200222enum cfqq_state_flags {
223 CFQ_CFQQ_FLAG_on_rr = 0,
224 CFQ_CFQQ_FLAG_wait_request,
225 CFQ_CFQQ_FLAG_must_alloc,
226 CFQ_CFQQ_FLAG_must_alloc_slice,
227 CFQ_CFQQ_FLAG_must_dispatch,
228 CFQ_CFQQ_FLAG_fifo_expire,
229 CFQ_CFQQ_FLAG_idle_window,
230 CFQ_CFQQ_FLAG_prio_changed,
Jens Axboe3b181522005-06-27 10:56:24 +0200231};
232
233#define CFQ_CFQQ_FNS(name) \
234static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
235{ \
236 cfqq->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
237} \
238static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
239{ \
240 cfqq->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
241} \
242static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
243{ \
244 return (cfqq->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
245}
246
247CFQ_CFQQ_FNS(on_rr);
248CFQ_CFQQ_FNS(wait_request);
249CFQ_CFQQ_FNS(must_alloc);
250CFQ_CFQQ_FNS(must_alloc_slice);
251CFQ_CFQQ_FNS(must_dispatch);
252CFQ_CFQQ_FNS(fifo_expire);
253CFQ_CFQQ_FNS(idle_window);
254CFQ_CFQQ_FNS(prio_changed);
Jens Axboe3b181522005-06-27 10:56:24 +0200255#undef CFQ_CFQQ_FNS
256
257enum cfq_rq_state_flags {
Jens Axboeb4878f22005-10-20 16:42:29 +0200258 CFQ_CRQ_FLAG_is_sync = 0,
Jens Axboe3b181522005-06-27 10:56:24 +0200259};
260
261#define CFQ_CRQ_FNS(name) \
262static inline void cfq_mark_crq_##name(struct cfq_rq *crq) \
263{ \
264 crq->crq_flags |= (1 << CFQ_CRQ_FLAG_##name); \
265} \
266static inline void cfq_clear_crq_##name(struct cfq_rq *crq) \
267{ \
268 crq->crq_flags &= ~(1 << CFQ_CRQ_FLAG_##name); \
269} \
270static inline int cfq_crq_##name(const struct cfq_rq *crq) \
271{ \
272 return (crq->crq_flags & (1 << CFQ_CRQ_FLAG_##name)) != 0; \
273}
274
Jens Axboe3b181522005-06-27 10:56:24 +0200275CFQ_CRQ_FNS(is_sync);
Jens Axboe3b181522005-06-27 10:56:24 +0200276#undef CFQ_CRQ_FNS
277
278static struct cfq_queue *cfq_find_cfq_hash(struct cfq_data *, unsigned int, unsigned short);
Jens Axboeb4878f22005-10-20 16:42:29 +0200279static void cfq_dispatch_insert(request_queue_t *, struct cfq_rq *);
Al Viro6f325a12006-03-18 14:58:37 -0500280static struct cfq_queue *cfq_get_queue(struct cfq_data *cfqd, unsigned int key, struct task_struct *tsk, gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Jens Axboe22e2c502005-06-27 10:55:12 +0200282#define process_sync(tsk) ((tsk)->flags & PF_SYNCWRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284/*
285 * lots of deadline iosched dupes, can be abstracted later...
286 */
287static inline void cfq_del_crq_hash(struct cfq_rq *crq)
288{
289 hlist_del_init(&crq->hash);
290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292static inline void cfq_add_crq_hash(struct cfq_data *cfqd, struct cfq_rq *crq)
293{
294 const int hash_idx = CFQ_MHASH_FN(rq_hash_key(crq->request));
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 hlist_add_head(&crq->hash, &cfqd->crq_hash[hash_idx]);
297}
298
299static struct request *cfq_find_rq_hash(struct cfq_data *cfqd, sector_t offset)
300{
301 struct hlist_head *hash_list = &cfqd->crq_hash[CFQ_MHASH_FN(offset)];
302 struct hlist_node *entry, *next;
303
304 hlist_for_each_safe(entry, next, hash_list) {
305 struct cfq_rq *crq = list_entry_hash(entry);
306 struct request *__rq = crq->request;
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (!rq_mergeable(__rq)) {
309 cfq_del_crq_hash(crq);
310 continue;
311 }
312
313 if (rq_hash_key(__rq) == offset)
314 return __rq;
315 }
316
317 return NULL;
318}
319
Andrew Morton99f95e52005-06-27 20:14:05 -0700320/*
321 * scheduler run of queue, if there are requests pending and no one in the
322 * driver that will restart queueing
323 */
324static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
325{
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100326 if (cfqd->busy_queues)
Andrew Morton99f95e52005-06-27 20:14:05 -0700327 kblockd_schedule_work(&cfqd->unplug_work);
328}
329
330static int cfq_queue_empty(request_queue_t *q)
331{
332 struct cfq_data *cfqd = q->elevator->elevator_data;
333
Jens Axboeb4878f22005-10-20 16:42:29 +0200334 return !cfqd->busy_queues;
Andrew Morton99f95e52005-06-27 20:14:05 -0700335}
336
Jens Axboe206dc692006-03-28 13:03:44 +0200337static inline pid_t cfq_queue_pid(struct task_struct *task, int rw)
338{
339 if (rw == READ || process_sync(task))
340 return task->pid;
341
342 return CFQ_KEY_ASYNC;
343}
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345/*
346 * Lifted from AS - choose which of crq1 and crq2 that is best served now.
347 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200348 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 */
350static struct cfq_rq *
351cfq_choose_req(struct cfq_data *cfqd, struct cfq_rq *crq1, struct cfq_rq *crq2)
352{
353 sector_t last, s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200355#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
356#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
357 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 if (crq1 == NULL || crq1 == crq2)
360 return crq2;
361 if (crq2 == NULL)
362 return crq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200363
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200364 if (cfq_crq_is_sync(crq1) && !cfq_crq_is_sync(crq2))
365 return crq1;
366 else if (cfq_crq_is_sync(crq2) && !cfq_crq_is_sync(crq1))
Jens Axboe22e2c502005-06-27 10:55:12 +0200367 return crq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 s1 = crq1->request->sector;
370 s2 = crq2->request->sector;
371
372 last = cfqd->last_sector;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /*
375 * by definition, 1KiB is 2 sectors
376 */
377 back_max = cfqd->cfq_back_max * 2;
378
379 /*
380 * Strict one way elevator _except_ in the case where we allow
381 * short backward seeks which are biased as twice the cost of a
382 * similar forward seek.
383 */
384 if (s1 >= last)
385 d1 = s1 - last;
386 else if (s1 + back_max >= last)
387 d1 = (last - s1) * cfqd->cfq_back_penalty;
388 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200389 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 if (s2 >= last)
392 d2 = s2 - last;
393 else if (s2 + back_max >= last)
394 d2 = (last - s2) * cfqd->cfq_back_penalty;
395 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200396 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Andreas Mohre8a99052006-03-28 08:59:49 +0200400 /*
401 * By doing switch() on the bit mask "wrap" we avoid having to
402 * check two variables for all permutations: --> faster!
403 */
404 switch (wrap) {
405 case 0: /* common case for CFQ: crq1 and crq2 not wrapped */
406 if (d1 < d2)
407 return crq1;
408 else if (d2 < d1)
409 return crq2;
410 else {
411 if (s1 >= s2)
412 return crq1;
413 else
414 return crq2;
415 }
416
417 case CFQ_RQ2_WRAP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return crq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200419 case CFQ_RQ1_WRAP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return crq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200421 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both crqs wrapped */
422 default:
423 /*
424 * Since both rqs are wrapped,
425 * start with the one that's further behind head
426 * (--> only *one* back seek required),
427 * since back seek takes more time than forward.
428 */
429 if (s1 <= s2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return crq1;
431 else
432 return crq2;
433 }
434}
435
436/*
437 * would be nice to take fifo expire time into account as well
438 */
439static struct cfq_rq *
440cfq_find_next_crq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
441 struct cfq_rq *last)
442{
443 struct cfq_rq *crq_next = NULL, *crq_prev = NULL;
444 struct rb_node *rbnext, *rbprev;
445
Jens Axboeb4878f22005-10-20 16:42:29 +0200446 if (!(rbnext = rb_next(&last->rb_node))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 rbnext = rb_first(&cfqq->sort_list);
Jens Axboe22e2c502005-06-27 10:55:12 +0200448 if (rbnext == &last->rb_node)
449 rbnext = NULL;
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 rbprev = rb_prev(&last->rb_node);
453
454 if (rbprev)
455 crq_prev = rb_entry_crq(rbprev);
456 if (rbnext)
457 crq_next = rb_entry_crq(rbnext);
458
459 return cfq_choose_req(cfqd, crq_next, crq_prev);
460}
461
462static void cfq_update_next_crq(struct cfq_rq *crq)
463{
464 struct cfq_queue *cfqq = crq->cfq_queue;
465
466 if (cfqq->next_crq == crq)
467 cfqq->next_crq = cfq_find_next_crq(cfqq->cfqd, cfqq, crq);
468}
469
Jens Axboe22e2c502005-06-27 10:55:12 +0200470static void cfq_resort_rr_list(struct cfq_queue *cfqq, int preempted)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Jens Axboe22e2c502005-06-27 10:55:12 +0200472 struct cfq_data *cfqd = cfqq->cfqd;
473 struct list_head *list, *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Jens Axboe3b181522005-06-27 10:56:24 +0200475 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 list_del(&cfqq->cfq_list);
478
Jens Axboe22e2c502005-06-27 10:55:12 +0200479 if (cfq_class_rt(cfqq))
480 list = &cfqd->cur_rr;
481 else if (cfq_class_idle(cfqq))
482 list = &cfqd->idle_rr;
483 else {
484 /*
485 * if cfqq has requests in flight, don't allow it to be
486 * found in cfq_set_active_queue before it has finished them.
487 * this is done to increase fairness between a process that
488 * has lots of io pending vs one that only generates one
489 * sporadically or synchronously
490 */
Jens Axboe3b181522005-06-27 10:56:24 +0200491 if (cfq_cfqq_dispatched(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +0200492 list = &cfqd->busy_rr;
493 else
494 list = &cfqd->rr_list[cfqq->ioprio];
495 }
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200498 * if queue was preempted, just add to front to be fair. busy_rr
Jens Axboeb52a8342006-06-01 18:53:43 +0200499 * isn't sorted, but insert at the back for fairness.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 */
Jens Axboe22e2c502005-06-27 10:55:12 +0200501 if (preempted || list == &cfqd->busy_rr) {
Jens Axboeb52a8342006-06-01 18:53:43 +0200502 if (preempted)
503 list = list->prev;
504
505 list_add_tail(&cfqq->cfq_list, list);
Jens Axboe22e2c502005-06-27 10:55:12 +0200506 return;
507 }
508
509 /*
510 * sort by when queue was last serviced
511 */
512 entry = list;
513 while ((entry = entry->prev) != list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 struct cfq_queue *__cfqq = list_entry_cfqq(entry);
515
Jens Axboe22e2c502005-06-27 10:55:12 +0200516 if (!__cfqq->service_last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 break;
Jens Axboe22e2c502005-06-27 10:55:12 +0200518 if (time_before(__cfqq->service_last, cfqq->service_last))
519 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521
522 list_add(&cfqq->cfq_list, entry);
523}
524
525/*
526 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +0200527 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
529static inline void
Jens Axboeb4878f22005-10-20 16:42:29 +0200530cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Jens Axboe3b181522005-06-27 10:56:24 +0200532 BUG_ON(cfq_cfqq_on_rr(cfqq));
533 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 cfqd->busy_queues++;
535
Jens Axboeb4878f22005-10-20 16:42:29 +0200536 cfq_resort_rr_list(cfqq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539static inline void
540cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
541{
Jens Axboe3b181522005-06-27 10:56:24 +0200542 BUG_ON(!cfq_cfqq_on_rr(cfqq));
543 cfq_clear_cfqq_on_rr(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200544 list_move(&cfqq->cfq_list, &cfqd->empty_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 BUG_ON(!cfqd->busy_queues);
547 cfqd->busy_queues--;
548}
549
550/*
551 * rb tree support functions
552 */
553static inline void cfq_del_crq_rb(struct cfq_rq *crq)
554{
555 struct cfq_queue *cfqq = crq->cfq_queue;
Jens Axboeb4878f22005-10-20 16:42:29 +0200556 struct cfq_data *cfqd = cfqq->cfqd;
557 const int sync = cfq_crq_is_sync(crq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Jens Axboeb4878f22005-10-20 16:42:29 +0200559 BUG_ON(!cfqq->queued[sync]);
560 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Jens Axboeb4878f22005-10-20 16:42:29 +0200562 cfq_update_next_crq(crq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Jens Axboeb4878f22005-10-20 16:42:29 +0200564 rb_erase(&crq->rb_node, &cfqq->sort_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Jens Axboeb4878f22005-10-20 16:42:29 +0200566 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY(&cfqq->sort_list))
567 cfq_del_cfqq_rr(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570static struct cfq_rq *
571__cfq_add_crq_rb(struct cfq_rq *crq)
572{
573 struct rb_node **p = &crq->cfq_queue->sort_list.rb_node;
574 struct rb_node *parent = NULL;
575 struct cfq_rq *__crq;
576
577 while (*p) {
578 parent = *p;
579 __crq = rb_entry_crq(parent);
580
581 if (crq->rb_key < __crq->rb_key)
582 p = &(*p)->rb_left;
583 else if (crq->rb_key > __crq->rb_key)
584 p = &(*p)->rb_right;
585 else
586 return __crq;
587 }
588
589 rb_link_node(&crq->rb_node, parent, p);
590 return NULL;
591}
592
593static void cfq_add_crq_rb(struct cfq_rq *crq)
594{
595 struct cfq_queue *cfqq = crq->cfq_queue;
596 struct cfq_data *cfqd = cfqq->cfqd;
597 struct request *rq = crq->request;
598 struct cfq_rq *__alias;
599
600 crq->rb_key = rq_rb_key(rq);
Jens Axboe3b181522005-06-27 10:56:24 +0200601 cfqq->queued[cfq_crq_is_sync(crq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 /*
604 * looks a little odd, but the first insert might return an alias.
605 * if that happens, put the alias on the dispatch list
606 */
607 while ((__alias = __cfq_add_crq_rb(crq)) != NULL)
Jens Axboeb4878f22005-10-20 16:42:29 +0200608 cfq_dispatch_insert(cfqd->queue, __alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 rb_insert_color(&crq->rb_node, &cfqq->sort_list);
611
Jens Axboe3b181522005-06-27 10:56:24 +0200612 if (!cfq_cfqq_on_rr(cfqq))
Jens Axboeb4878f22005-10-20 16:42:29 +0200613 cfq_add_cfqq_rr(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 /*
616 * check if this request is a better next-serve candidate
617 */
618 cfqq->next_crq = cfq_choose_req(cfqd, cfqq->next_crq, crq);
619}
620
621static inline void
622cfq_reposition_crq_rb(struct cfq_queue *cfqq, struct cfq_rq *crq)
623{
Jens Axboeb4878f22005-10-20 16:42:29 +0200624 rb_erase(&crq->rb_node, &cfqq->sort_list);
625 cfqq->queued[cfq_crq_is_sync(crq)]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 cfq_add_crq_rb(crq);
628}
629
Jens Axboe206dc692006-03-28 13:03:44 +0200630static struct request *
631cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Jens Axboe206dc692006-03-28 13:03:44 +0200633 struct task_struct *tsk = current;
634 pid_t key = cfq_queue_pid(tsk, bio_data_dir(bio));
635 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 struct rb_node *n;
Jens Axboe206dc692006-03-28 13:03:44 +0200637 sector_t sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Jens Axboe206dc692006-03-28 13:03:44 +0200639 cfqq = cfq_find_cfq_hash(cfqd, key, tsk->ioprio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (!cfqq)
641 goto out;
642
Jens Axboe206dc692006-03-28 13:03:44 +0200643 sector = bio->bi_sector + bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 n = cfqq->sort_list.rb_node;
645 while (n) {
646 struct cfq_rq *crq = rb_entry_crq(n);
647
648 if (sector < crq->rb_key)
649 n = n->rb_left;
650 else if (sector > crq->rb_key)
651 n = n->rb_right;
652 else
653 return crq->request;
654 }
655
656out:
657 return NULL;
658}
659
Jens Axboeb4878f22005-10-20 16:42:29 +0200660static void cfq_activate_request(request_queue_t *q, struct request *rq)
661{
662 struct cfq_data *cfqd = q->elevator->elevator_data;
663
664 cfqd->rq_in_driver++;
Jens Axboe25776e32006-06-01 10:12:26 +0200665
666 /*
667 * If the depth is larger 1, it really could be queueing. But lets
668 * make the mark a little higher - idling could still be good for
669 * low queueing, and a low queueing number could also just indicate
670 * a SCSI mid layer like behaviour where limit+1 is often seen.
671 */
672 if (!cfqd->hw_tag && cfqd->rq_in_driver > 4)
673 cfqd->hw_tag = 1;
Jens Axboeb4878f22005-10-20 16:42:29 +0200674}
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676static void cfq_deactivate_request(request_queue_t *q, struct request *rq)
677{
Jens Axboe22e2c502005-06-27 10:55:12 +0200678 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Jens Axboeb4878f22005-10-20 16:42:29 +0200680 WARN_ON(!cfqd->rq_in_driver);
681 cfqd->rq_in_driver--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Jens Axboeb4878f22005-10-20 16:42:29 +0200684static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 struct cfq_rq *crq = RQ_DATA(rq);
687
Jens Axboeb4878f22005-10-20 16:42:29 +0200688 list_del_init(&rq->queuelist);
689 cfq_del_crq_rb(crq);
Tejun Heo98b11472005-10-20 16:46:54 +0200690 cfq_del_crq_hash(crq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
693static int
694cfq_merge(request_queue_t *q, struct request **req, struct bio *bio)
695{
696 struct cfq_data *cfqd = q->elevator->elevator_data;
697 struct request *__rq;
698 int ret;
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 __rq = cfq_find_rq_hash(cfqd, bio->bi_sector);
Jens Axboe22e2c502005-06-27 10:55:12 +0200701 if (__rq && elv_rq_merge_ok(__rq, bio)) {
702 ret = ELEVATOR_BACK_MERGE;
703 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705
Jens Axboe206dc692006-03-28 13:03:44 +0200706 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +0200707 if (__rq && elv_rq_merge_ok(__rq, bio)) {
708 ret = ELEVATOR_FRONT_MERGE;
709 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
712 return ELEVATOR_NO_MERGE;
713out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 *req = __rq;
715 return ret;
716}
717
718static void cfq_merged_request(request_queue_t *q, struct request *req)
719{
720 struct cfq_data *cfqd = q->elevator->elevator_data;
721 struct cfq_rq *crq = RQ_DATA(req);
722
723 cfq_del_crq_hash(crq);
724 cfq_add_crq_hash(cfqd, crq);
725
Jens Axboeb4878f22005-10-20 16:42:29 +0200726 if (rq_rb_key(req) != crq->rb_key) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct cfq_queue *cfqq = crq->cfq_queue;
728
729 cfq_update_next_crq(crq);
730 cfq_reposition_crq_rb(cfqq, crq);
731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
734static void
735cfq_merged_requests(request_queue_t *q, struct request *rq,
736 struct request *next)
737{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 cfq_merged_request(q, rq);
739
Jens Axboe22e2c502005-06-27 10:55:12 +0200740 /*
741 * reposition in fifo if next is older than rq
742 */
743 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
744 time_before(next->start_time, rq->start_time))
745 list_move(&rq->queuelist, &next->queuelist);
746
Jens Axboeb4878f22005-10-20 16:42:29 +0200747 cfq_remove_request(next);
Jens Axboe22e2c502005-06-27 10:55:12 +0200748}
749
750static inline void
751__cfq_set_active_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
752{
753 if (cfqq) {
754 /*
755 * stop potential idle class queues waiting service
756 */
757 del_timer(&cfqd->idle_class_timer);
758
759 cfqq->slice_start = jiffies;
760 cfqq->slice_end = 0;
761 cfqq->slice_left = 0;
Jens Axboe3b181522005-06-27 10:56:24 +0200762 cfq_clear_cfqq_must_alloc_slice(cfqq);
763 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200764 }
765
766 cfqd->active_queue = cfqq;
767}
768
769/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100770 * current cfqq expired its slice (or was too idle), select new one
771 */
772static void
773__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
774 int preempted)
775{
776 unsigned long now = jiffies;
777
778 if (cfq_cfqq_wait_request(cfqq))
779 del_timer(&cfqd->idle_slice_timer);
780
781 if (!preempted && !cfq_cfqq_dispatched(cfqq)) {
782 cfqq->service_last = now;
783 cfq_schedule_dispatch(cfqd);
784 }
785
786 cfq_clear_cfqq_must_dispatch(cfqq);
787 cfq_clear_cfqq_wait_request(cfqq);
788
789 /*
790 * store what was left of this slice, if the queue idled out
791 * or was preempted
792 */
793 if (time_after(cfqq->slice_end, now))
794 cfqq->slice_left = cfqq->slice_end - now;
795 else
796 cfqq->slice_left = 0;
797
798 if (cfq_cfqq_on_rr(cfqq))
799 cfq_resort_rr_list(cfqq, preempted);
800
801 if (cfqq == cfqd->active_queue)
802 cfqd->active_queue = NULL;
803
804 if (cfqd->active_cic) {
805 put_io_context(cfqd->active_cic->ioc);
806 cfqd->active_cic = NULL;
807 }
808
809 cfqd->dispatch_slice = 0;
810}
811
812static inline void cfq_slice_expired(struct cfq_data *cfqd, int preempted)
813{
814 struct cfq_queue *cfqq = cfqd->active_queue;
815
816 if (cfqq)
817 __cfq_slice_expired(cfqd, cfqq, preempted);
818}
819
820/*
Jens Axboe22e2c502005-06-27 10:55:12 +0200821 * 0
822 * 0,1
823 * 0,1,2
824 * 0,1,2,3
825 * 0,1,2,3,4
826 * 0,1,2,3,4,5
827 * 0,1,2,3,4,5,6
828 * 0,1,2,3,4,5,6,7
829 */
830static int cfq_get_next_prio_level(struct cfq_data *cfqd)
831{
832 int prio, wrap;
833
834 prio = -1;
835 wrap = 0;
836 do {
837 int p;
838
839 for (p = cfqd->cur_prio; p <= cfqd->cur_end_prio; p++) {
840 if (!list_empty(&cfqd->rr_list[p])) {
841 prio = p;
842 break;
843 }
844 }
845
846 if (prio != -1)
847 break;
848 cfqd->cur_prio = 0;
849 if (++cfqd->cur_end_prio == CFQ_PRIO_LISTS) {
850 cfqd->cur_end_prio = 0;
851 if (wrap)
852 break;
853 wrap = 1;
854 }
855 } while (1);
856
857 if (unlikely(prio == -1))
858 return -1;
859
860 BUG_ON(prio >= CFQ_PRIO_LISTS);
861
862 list_splice_init(&cfqd->rr_list[prio], &cfqd->cur_rr);
863
864 cfqd->cur_prio = prio + 1;
865 if (cfqd->cur_prio > cfqd->cur_end_prio) {
866 cfqd->cur_end_prio = cfqd->cur_prio;
867 cfqd->cur_prio = 0;
868 }
869 if (cfqd->cur_end_prio == CFQ_PRIO_LISTS) {
870 cfqd->cur_prio = 0;
871 cfqd->cur_end_prio = 0;
872 }
873
874 return prio;
875}
876
Jens Axboe3b181522005-06-27 10:56:24 +0200877static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +0200878{
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100879 struct cfq_queue *cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +0200880
881 /*
882 * if current list is non-empty, grab first entry. if it is empty,
883 * get next prio level and grab first entry then if any are spliced
884 */
885 if (!list_empty(&cfqd->cur_rr) || cfq_get_next_prio_level(cfqd) != -1)
886 cfqq = list_entry_cfqq(cfqd->cur_rr.next);
887
888 /*
Jens Axboee0de0202006-06-01 10:07:26 +0200889 * If no new queues are available, check if the busy list has some
890 * before falling back to idle io.
891 */
892 if (!cfqq && !list_empty(&cfqd->busy_rr))
893 cfqq = list_entry_cfqq(cfqd->busy_rr.next);
894
895 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200896 * if we have idle queues and no rt or be queues had pending
897 * requests, either allow immediate service if the grace period
898 * has passed or arm the idle grace timer
899 */
900 if (!cfqq && !list_empty(&cfqd->idle_rr)) {
901 unsigned long end = cfqd->last_end_request + CFQ_IDLE_GRACE;
902
903 if (time_after_eq(jiffies, end))
904 cfqq = list_entry_cfqq(cfqd->idle_rr.next);
905 else
906 mod_timer(&cfqd->idle_class_timer, end);
907 }
908
909 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +0200910 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200911}
912
Jens Axboe22e2c502005-06-27 10:55:12 +0200913static int cfq_arm_slice_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
914
915{
Jens Axboe206dc692006-03-28 13:03:44 +0200916 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100917 unsigned long sl;
918
Jens Axboe22e2c502005-06-27 10:55:12 +0200919 WARN_ON(!RB_EMPTY(&cfqq->sort_list));
920 WARN_ON(cfqq != cfqd->active_queue);
921
922 /*
923 * idle is disabled, either manually or by past process history
924 */
925 if (!cfqd->cfq_slice_idle)
926 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +0200927 if (!cfq_cfqq_idle_window(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +0200928 return 0;
929 /*
930 * task has exited, don't wait
931 */
Jens Axboe206dc692006-03-28 13:03:44 +0200932 cic = cfqd->active_cic;
933 if (!cic || !cic->ioc->task)
Jens Axboe22e2c502005-06-27 10:55:12 +0200934 return 0;
935
Jens Axboe3b181522005-06-27 10:56:24 +0200936 cfq_mark_cfqq_must_dispatch(cfqq);
937 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200938
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100939 sl = min(cfqq->slice_end - 1, (unsigned long) cfqd->cfq_slice_idle);
Jens Axboe206dc692006-03-28 13:03:44 +0200940
941 /*
942 * we don't want to idle for seeks, but we do want to allow
943 * fair distribution of slice time for a process doing back-to-back
944 * seeks. so allow a little bit of time for him to submit a new rq
945 */
946 if (sample_valid(cic->seek_samples) && cic->seek_mean > 131072)
947 sl = 2;
948
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100949 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Jens Axboe22e2c502005-06-27 10:55:12 +0200950 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Jens Axboeb4878f22005-10-20 16:42:29 +0200953static void cfq_dispatch_insert(request_queue_t *q, struct cfq_rq *crq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 struct cfq_data *cfqd = q->elevator->elevator_data;
956 struct cfq_queue *cfqq = crq->cfq_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +0200957
958 cfqq->next_crq = cfq_find_next_crq(cfqd, cfqq, crq);
Jens Axboeb4878f22005-10-20 16:42:29 +0200959 cfq_remove_request(crq->request);
Jens Axboe3b181522005-06-27 10:56:24 +0200960 cfqq->on_dispatch[cfq_crq_is_sync(crq)]++;
Jens Axboeb4878f22005-10-20 16:42:29 +0200961 elv_dispatch_sort(q, crq->request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
964/*
965 * return expired entry, or NULL to just start from scratch in rbtree
966 */
967static inline struct cfq_rq *cfq_check_fifo(struct cfq_queue *cfqq)
968{
969 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe22e2c502005-06-27 10:55:12 +0200970 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 struct cfq_rq *crq;
972
Jens Axboe3b181522005-06-27 10:56:24 +0200973 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return NULL;
975
Jens Axboe22e2c502005-06-27 10:55:12 +0200976 if (!list_empty(&cfqq->fifo)) {
Jens Axboe3b181522005-06-27 10:56:24 +0200977 int fifo = cfq_cfqq_class_sync(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Jens Axboe22e2c502005-06-27 10:55:12 +0200979 crq = RQ_DATA(list_entry_fifo(cfqq->fifo.next));
980 rq = crq->request;
981 if (time_after(jiffies, rq->start_time + cfqd->cfq_fifo_expire[fifo])) {
Jens Axboe3b181522005-06-27 10:56:24 +0200982 cfq_mark_cfqq_fifo_expire(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200983 return crq;
984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986
987 return NULL;
988}
989
990/*
Jens Axboe3b181522005-06-27 10:56:24 +0200991 * Scale schedule slice based on io priority. Use the sync time slice only
992 * if a queue is marked sync and has sync io queued. A sync queue with async
993 * io only, should not get full sync slice length.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 */
Jens Axboe22e2c502005-06-27 10:55:12 +0200995static inline int
996cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Jens Axboe22e2c502005-06-27 10:55:12 +0200998 const int base_slice = cfqd->cfq_slice[cfq_cfqq_sync(cfqq)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Jens Axboe22e2c502005-06-27 10:55:12 +02001000 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Jens Axboe22e2c502005-06-27 10:55:12 +02001002 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - cfqq->ioprio));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Jens Axboe22e2c502005-06-27 10:55:12 +02001005static inline void
1006cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1007{
1008 cfqq->slice_end = cfq_prio_to_slice(cfqd, cfqq) + jiffies;
1009}
1010
1011static inline int
1012cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1013{
1014 const int base_rq = cfqd->cfq_slice_async_rq;
1015
1016 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1017
1018 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
1019}
1020
1021/*
1022 * get next queue for service
1023 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001024static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001025{
1026 unsigned long now = jiffies;
1027 struct cfq_queue *cfqq;
1028
1029 cfqq = cfqd->active_queue;
1030 if (!cfqq)
1031 goto new_queue;
1032
1033 /*
1034 * slice has expired
1035 */
Jens Axboe3b181522005-06-27 10:56:24 +02001036 if (!cfq_cfqq_must_dispatch(cfqq) && time_after(now, cfqq->slice_end))
1037 goto expire;
Jens Axboe22e2c502005-06-27 10:55:12 +02001038
1039 /*
1040 * if queue has requests, dispatch one. if not, check if
1041 * enough slice is left to wait for one
1042 */
1043 if (!RB_EMPTY(&cfqq->sort_list))
1044 goto keep_queue;
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001045 else if (cfq_cfqq_class_sync(cfqq) &&
Jens Axboe22e2c502005-06-27 10:55:12 +02001046 time_before(now, cfqq->slice_end)) {
1047 if (cfq_arm_slice_timer(cfqd, cfqq))
1048 return NULL;
1049 }
1050
Jens Axboe3b181522005-06-27 10:56:24 +02001051expire:
Jens Axboe22e2c502005-06-27 10:55:12 +02001052 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02001053new_queue:
1054 cfqq = cfq_set_active_queue(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02001055keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02001056 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001057}
1058
1059static int
1060__cfq_dispatch_requests(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1061 int max_dispatch)
1062{
1063 int dispatched = 0;
1064
1065 BUG_ON(RB_EMPTY(&cfqq->sort_list));
1066
1067 do {
1068 struct cfq_rq *crq;
1069
1070 /*
1071 * follow expired path, else get first next available
1072 */
1073 if ((crq = cfq_check_fifo(cfqq)) == NULL)
1074 crq = cfqq->next_crq;
1075
1076 /*
1077 * finally, insert request into driver dispatch list
1078 */
Jens Axboeb4878f22005-10-20 16:42:29 +02001079 cfq_dispatch_insert(cfqd->queue, crq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001080
1081 cfqd->dispatch_slice++;
1082 dispatched++;
1083
1084 if (!cfqd->active_cic) {
1085 atomic_inc(&crq->io_context->ioc->refcount);
1086 cfqd->active_cic = crq->io_context;
1087 }
1088
1089 if (RB_EMPTY(&cfqq->sort_list))
1090 break;
1091
1092 } while (dispatched < max_dispatch);
1093
1094 /*
1095 * if slice end isn't set yet, set it. if at least one request was
1096 * sync, use the sync time slice value
1097 */
1098 if (!cfqq->slice_end)
1099 cfq_set_prio_slice(cfqd, cfqq);
1100
1101 /*
1102 * expire an async queue immediately if it has used up its slice. idle
1103 * queue always expire after 1 dispatch round.
1104 */
1105 if ((!cfq_cfqq_sync(cfqq) &&
1106 cfqd->dispatch_slice >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
1107 cfq_class_idle(cfqq))
1108 cfq_slice_expired(cfqd, 0);
1109
1110 return dispatched;
1111}
1112
1113static int
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001114cfq_forced_dispatch_cfqqs(struct list_head *list)
1115{
1116 int dispatched = 0;
1117 struct cfq_queue *cfqq, *next;
1118 struct cfq_rq *crq;
1119
1120 list_for_each_entry_safe(cfqq, next, list, cfq_list) {
1121 while ((crq = cfqq->next_crq)) {
1122 cfq_dispatch_insert(cfqq->cfqd->queue, crq);
1123 dispatched++;
1124 }
1125 BUG_ON(!list_empty(&cfqq->fifo));
1126 }
1127 return dispatched;
1128}
1129
1130static int
1131cfq_forced_dispatch(struct cfq_data *cfqd)
1132{
1133 int i, dispatched = 0;
1134
1135 for (i = 0; i < CFQ_PRIO_LISTS; i++)
1136 dispatched += cfq_forced_dispatch_cfqqs(&cfqd->rr_list[i]);
1137
1138 dispatched += cfq_forced_dispatch_cfqqs(&cfqd->busy_rr);
1139 dispatched += cfq_forced_dispatch_cfqqs(&cfqd->cur_rr);
1140 dispatched += cfq_forced_dispatch_cfqqs(&cfqd->idle_rr);
1141
1142 cfq_slice_expired(cfqd, 0);
1143
1144 BUG_ON(cfqd->busy_queues);
1145
1146 return dispatched;
1147}
1148
1149static int
Jens Axboeb4878f22005-10-20 16:42:29 +02001150cfq_dispatch_requests(request_queue_t *q, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 struct cfq_data *cfqd = q->elevator->elevator_data;
1153 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Jens Axboe22e2c502005-06-27 10:55:12 +02001155 if (!cfqd->busy_queues)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return 0;
1157
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001158 if (unlikely(force))
1159 return cfq_forced_dispatch(cfqd);
1160
1161 cfqq = cfq_select_queue(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02001162 if (cfqq) {
Jens Axboeb4878f22005-10-20 16:42:29 +02001163 int max_dispatch;
1164
Jens Axboe3b181522005-06-27 10:56:24 +02001165 cfq_clear_cfqq_must_dispatch(cfqq);
1166 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001167 del_timer(&cfqd->idle_slice_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001169 max_dispatch = cfqd->cfq_quantum;
1170 if (cfq_class_idle(cfqq))
1171 max_dispatch = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Jens Axboe22e2c502005-06-27 10:55:12 +02001173 return __cfq_dispatch_requests(cfqd, cfqq, max_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175
Jens Axboe22e2c502005-06-27 10:55:12 +02001176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179/*
1180 * task holds one reference to the queue, dropped when task exits. each crq
1181 * in-flight on this queue also holds a reference, dropped when crq is freed.
1182 *
1183 * queue lock must be held here.
1184 */
1185static void cfq_put_queue(struct cfq_queue *cfqq)
1186{
Jens Axboe22e2c502005-06-27 10:55:12 +02001187 struct cfq_data *cfqd = cfqq->cfqd;
1188
1189 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 if (!atomic_dec_and_test(&cfqq->ref))
1192 return;
1193
1194 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02001195 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Jens Axboe3b181522005-06-27 10:56:24 +02001196 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001198 if (unlikely(cfqd->active_queue == cfqq))
Jens Axboe3b181522005-06-27 10:56:24 +02001199 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 /*
1202 * it's on the empty list and still hashed
1203 */
1204 list_del(&cfqq->cfq_list);
1205 hlist_del(&cfqq->cfq_hash);
1206 kmem_cache_free(cfq_pool, cfqq);
1207}
1208
1209static inline struct cfq_queue *
Jens Axboe3b181522005-06-27 10:56:24 +02001210__cfq_find_cfq_hash(struct cfq_data *cfqd, unsigned int key, unsigned int prio,
1211 const int hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
1213 struct hlist_head *hash_list = &cfqd->cfq_hash[hashval];
Jens Axboe206dc692006-03-28 13:03:44 +02001214 struct hlist_node *entry;
1215 struct cfq_queue *__cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Jens Axboe206dc692006-03-28 13:03:44 +02001217 hlist_for_each_entry(__cfqq, entry, hash_list, cfq_hash) {
Al Virob0a69162006-03-14 15:32:50 -05001218 const unsigned short __p = IOPRIO_PRIO_VALUE(__cfqq->org_ioprio_class, __cfqq->org_ioprio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Jens Axboe206dc692006-03-28 13:03:44 +02001220 if (__cfqq->key == key && (__p == prio || !prio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return __cfqq;
1222 }
1223
1224 return NULL;
1225}
1226
1227static struct cfq_queue *
Jens Axboe3b181522005-06-27 10:56:24 +02001228cfq_find_cfq_hash(struct cfq_data *cfqd, unsigned int key, unsigned short prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Jens Axboe3b181522005-06-27 10:56:24 +02001230 return __cfq_find_cfq_hash(cfqd, key, prio, hash_long(key, CFQ_QHASH_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
Jens Axboee2d74ac2006-03-28 08:59:01 +02001233static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Jens Axboe22e2c502005-06-27 10:55:12 +02001235 struct cfq_io_context *__cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001236 struct rb_node *n;
1237 int freed = 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001238
Jens Axboee2d74ac2006-03-28 08:59:01 +02001239 while ((n = rb_first(&ioc->cic_root)) != NULL) {
1240 __cic = rb_entry(n, struct cfq_io_context, rb_node);
1241 rb_erase(&__cic->rb_node, &ioc->cic_root);
Jens Axboe22e2c502005-06-27 10:55:12 +02001242 kmem_cache_free(cfq_ioc_pool, __cic);
Al Viro334e94d2006-03-18 15:05:53 -05001243 freed++;
Jens Axboe22e2c502005-06-27 10:55:12 +02001244 }
1245
Al Viro334e94d2006-03-18 15:05:53 -05001246 if (atomic_sub_and_test(freed, &ioc_count) && ioc_gone)
1247 complete(ioc_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
Al Viroe17a9482006-03-18 13:21:20 -05001250static void cfq_trim(struct io_context *ioc)
1251{
1252 ioc->set_ioprio = NULL;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001253 cfq_free_io_context(ioc);
Al Viroe17a9482006-03-18 13:21:20 -05001254}
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256/*
Jens Axboe22e2c502005-06-27 10:55:12 +02001257 * Called with interrupts disabled
1258 */
1259static void cfq_exit_single_io_context(struct cfq_io_context *cic)
1260{
Al Viro478a82b2006-03-18 13:25:24 -05001261 struct cfq_data *cfqd = cic->key;
Al Virod9ff4182006-03-18 13:51:22 -05001262 request_queue_t *q;
1263
1264 if (!cfqd)
1265 return;
1266
1267 q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001268
1269 WARN_ON(!irqs_disabled());
1270
1271 spin_lock(q->queue_lock);
1272
Al Viro12a05732006-03-18 13:38:01 -05001273 if (cic->cfqq[ASYNC]) {
1274 if (unlikely(cic->cfqq[ASYNC] == cfqd->active_queue))
1275 __cfq_slice_expired(cfqd, cic->cfqq[ASYNC], 0);
1276 cfq_put_queue(cic->cfqq[ASYNC]);
1277 cic->cfqq[ASYNC] = NULL;
1278 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001279
Al Viro12a05732006-03-18 13:38:01 -05001280 if (cic->cfqq[SYNC]) {
1281 if (unlikely(cic->cfqq[SYNC] == cfqd->active_queue))
1282 __cfq_slice_expired(cfqd, cic->cfqq[SYNC], 0);
1283 cfq_put_queue(cic->cfqq[SYNC]);
1284 cic->cfqq[SYNC] = NULL;
1285 }
1286
Al Viro478a82b2006-03-18 13:25:24 -05001287 cic->key = NULL;
Al Virod9ff4182006-03-18 13:51:22 -05001288 list_del_init(&cic->queue_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001289 spin_unlock(q->queue_lock);
1290}
1291
Jens Axboee2d74ac2006-03-28 08:59:01 +02001292static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Jens Axboe22e2c502005-06-27 10:55:12 +02001294 struct cfq_io_context *__cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 unsigned long flags;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001296 struct rb_node *n;
Jens Axboe22e2c502005-06-27 10:55:12 +02001297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 /*
1299 * put the reference this task is holding to the various queues
1300 */
Jens Axboe3793c652006-05-30 21:11:04 +02001301 spin_lock_irqsave(&cfq_exit_lock, flags);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001302
1303 n = rb_first(&ioc->cic_root);
1304 while (n != NULL) {
1305 __cic = rb_entry(n, struct cfq_io_context, rb_node);
1306
Jens Axboe22e2c502005-06-27 10:55:12 +02001307 cfq_exit_single_io_context(__cic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001308 n = rb_next(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310
Jens Axboe3793c652006-05-30 21:11:04 +02001311 spin_unlock_irqrestore(&cfq_exit_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
1313
Jens Axboe22e2c502005-06-27 10:55:12 +02001314static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04001315cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Jens Axboe22e2c502005-06-27 10:55:12 +02001317 struct cfq_io_context *cic = kmem_cache_alloc(cfq_ioc_pool, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 if (cic) {
Jens Axboe553698f2006-06-14 19:11:57 +02001320 memset(cic, 0, sizeof(*cic));
Jens Axboe22e2c502005-06-27 10:55:12 +02001321 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02001322 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001323 cic->dtor = cfq_free_io_context;
1324 cic->exit = cfq_exit_io_context;
Al Viro334e94d2006-03-18 15:05:53 -05001325 atomic_inc(&ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
1327
1328 return cic;
1329}
1330
Jens Axboe22e2c502005-06-27 10:55:12 +02001331static void cfq_init_prio_data(struct cfq_queue *cfqq)
1332{
1333 struct task_struct *tsk = current;
1334 int ioprio_class;
1335
Jens Axboe3b181522005-06-27 10:56:24 +02001336 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001337 return;
1338
1339 ioprio_class = IOPRIO_PRIO_CLASS(tsk->ioprio);
1340 switch (ioprio_class) {
1341 default:
1342 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
1343 case IOPRIO_CLASS_NONE:
1344 /*
1345 * no prio set, place us in the middle of the BE classes
1346 */
1347 cfqq->ioprio = task_nice_ioprio(tsk);
1348 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1349 break;
1350 case IOPRIO_CLASS_RT:
1351 cfqq->ioprio = task_ioprio(tsk);
1352 cfqq->ioprio_class = IOPRIO_CLASS_RT;
1353 break;
1354 case IOPRIO_CLASS_BE:
1355 cfqq->ioprio = task_ioprio(tsk);
1356 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1357 break;
1358 case IOPRIO_CLASS_IDLE:
1359 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
1360 cfqq->ioprio = 7;
Jens Axboe3b181522005-06-27 10:56:24 +02001361 cfq_clear_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001362 break;
1363 }
1364
1365 /*
1366 * keep track of original prio settings in case we have to temporarily
1367 * elevate the priority of this queue
1368 */
1369 cfqq->org_ioprio = cfqq->ioprio;
1370 cfqq->org_ioprio_class = cfqq->ioprio_class;
1371
Jens Axboe3b181522005-06-27 10:56:24 +02001372 if (cfq_cfqq_on_rr(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001373 cfq_resort_rr_list(cfqq, 0);
1374
Jens Axboe3b181522005-06-27 10:56:24 +02001375 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001376}
1377
Al Viro478a82b2006-03-18 13:25:24 -05001378static inline void changed_ioprio(struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02001379{
Al Viro478a82b2006-03-18 13:25:24 -05001380 struct cfq_data *cfqd = cic->key;
1381 struct cfq_queue *cfqq;
1382 if (cfqd) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001383 spin_lock(cfqd->queue->queue_lock);
Al Viro12a05732006-03-18 13:38:01 -05001384 cfqq = cic->cfqq[ASYNC];
1385 if (cfqq) {
Al Viro6f325a12006-03-18 14:58:37 -05001386 struct cfq_queue *new_cfqq;
1387 new_cfqq = cfq_get_queue(cfqd, CFQ_KEY_ASYNC,
1388 cic->ioc->task, GFP_ATOMIC);
1389 if (new_cfqq) {
1390 cic->cfqq[ASYNC] = new_cfqq;
1391 cfq_put_queue(cfqq);
1392 }
Al Viro12a05732006-03-18 13:38:01 -05001393 }
1394 cfqq = cic->cfqq[SYNC];
Al Viro478a82b2006-03-18 13:25:24 -05001395 if (cfqq) {
1396 cfq_mark_cfqq_prio_changed(cfqq);
1397 cfq_init_prio_data(cfqq);
1398 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001399 spin_unlock(cfqd->queue->queue_lock);
1400 }
1401}
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403/*
Jens Axboe22e2c502005-06-27 10:55:12 +02001404 * callback from sys_ioprio_set, irqs are disabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 */
Jens Axboe22e2c502005-06-27 10:55:12 +02001406static int cfq_ioc_set_ioprio(struct io_context *ioc, unsigned int ioprio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
Al Viroa6a07632006-03-18 13:26:44 -05001408 struct cfq_io_context *cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001409 struct rb_node *n;
Al Viroa6a07632006-03-18 13:26:44 -05001410
Jens Axboe3793c652006-05-30 21:11:04 +02001411 spin_lock(&cfq_exit_lock);
Al Viroa6a07632006-03-18 13:26:44 -05001412
Jens Axboee2d74ac2006-03-28 08:59:01 +02001413 n = rb_first(&ioc->cic_root);
1414 while (n != NULL) {
1415 cic = rb_entry(n, struct cfq_io_context, rb_node);
Jens Axboe3793c652006-05-30 21:11:04 +02001416
Al Viro478a82b2006-03-18 13:25:24 -05001417 changed_ioprio(cic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001418 n = rb_next(n);
1419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Jens Axboe3793c652006-05-30 21:11:04 +02001421 spin_unlock(&cfq_exit_lock);
Al Viroa6a07632006-03-18 13:26:44 -05001422
Jens Axboe22e2c502005-06-27 10:55:12 +02001423 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
1426static struct cfq_queue *
Al Viro6f325a12006-03-18 14:58:37 -05001427cfq_get_queue(struct cfq_data *cfqd, unsigned int key, struct task_struct *tsk,
Al Viro8267e262005-10-21 03:20:53 -04001428 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
1430 const int hashval = hash_long(key, CFQ_QHASH_SHIFT);
1431 struct cfq_queue *cfqq, *new_cfqq = NULL;
Al Viro6f325a12006-03-18 14:58:37 -05001432 unsigned short ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434retry:
Al Viro6f325a12006-03-18 14:58:37 -05001435 ioprio = tsk->ioprio;
Jens Axboe3b181522005-06-27 10:56:24 +02001436 cfqq = __cfq_find_cfq_hash(cfqd, key, ioprio, hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 if (!cfqq) {
1439 if (new_cfqq) {
1440 cfqq = new_cfqq;
1441 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001442 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 spin_unlock_irq(cfqd->queue->queue_lock);
1444 new_cfqq = kmem_cache_alloc(cfq_pool, gfp_mask);
1445 spin_lock_irq(cfqd->queue->queue_lock);
1446 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02001447 } else {
1448 cfqq = kmem_cache_alloc(cfq_pool, gfp_mask);
1449 if (!cfqq)
1450 goto out;
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02001451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 memset(cfqq, 0, sizeof(*cfqq));
1454
1455 INIT_HLIST_NODE(&cfqq->cfq_hash);
1456 INIT_LIST_HEAD(&cfqq->cfq_list);
1457 RB_CLEAR_ROOT(&cfqq->sort_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001458 INIT_LIST_HEAD(&cfqq->fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 cfqq->key = key;
1461 hlist_add_head(&cfqq->cfq_hash, &cfqd->cfq_hash[hashval]);
1462 atomic_set(&cfqq->ref, 0);
1463 cfqq->cfqd = cfqd;
Jens Axboe22e2c502005-06-27 10:55:12 +02001464 cfqq->service_last = 0;
1465 /*
1466 * set ->slice_left to allow preemption for a new process
1467 */
1468 cfqq->slice_left = 2 * cfqd->cfq_slice_idle;
Jens Axboe25776e32006-06-01 10:12:26 +02001469 if (!cfqd->hw_tag)
1470 cfq_mark_cfqq_idle_window(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001471 cfq_mark_cfqq_prio_changed(cfqq);
1472 cfq_init_prio_data(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474
1475 if (new_cfqq)
1476 kmem_cache_free(cfq_pool, new_cfqq);
1477
1478 atomic_inc(&cfqq->ref);
1479out:
1480 WARN_ON((gfp_mask & __GFP_WAIT) && !cfqq);
1481 return cfqq;
1482}
1483
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001484static void
1485cfq_drop_dead_cic(struct io_context *ioc, struct cfq_io_context *cic)
1486{
Jens Axboe3793c652006-05-30 21:11:04 +02001487 spin_lock(&cfq_exit_lock);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001488 rb_erase(&cic->rb_node, &ioc->cic_root);
Jens Axboe3793c652006-05-30 21:11:04 +02001489 list_del_init(&cic->queue_list);
1490 spin_unlock(&cfq_exit_lock);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001491 kmem_cache_free(cfq_ioc_pool, cic);
1492 atomic_dec(&ioc_count);
1493}
1494
Jens Axboee2d74ac2006-03-28 08:59:01 +02001495static struct cfq_io_context *
1496cfq_cic_rb_lookup(struct cfq_data *cfqd, struct io_context *ioc)
1497{
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001498 struct rb_node *n;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001499 struct cfq_io_context *cic;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001500 void *k, *key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001501
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001502restart:
1503 n = ioc->cic_root.rb_node;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001504 while (n) {
1505 cic = rb_entry(n, struct cfq_io_context, rb_node);
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001506 /* ->key must be copied to avoid race with cfq_exit_queue() */
1507 k = cic->key;
1508 if (unlikely(!k)) {
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001509 cfq_drop_dead_cic(ioc, cic);
1510 goto restart;
1511 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001512
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001513 if (key < k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001514 n = n->rb_left;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001515 else if (key > k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001516 n = n->rb_right;
1517 else
1518 return cic;
1519 }
1520
1521 return NULL;
1522}
1523
1524static inline void
1525cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
1526 struct cfq_io_context *cic)
1527{
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001528 struct rb_node **p;
1529 struct rb_node *parent;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001530 struct cfq_io_context *__cic;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001531 void *k;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001532
Jens Axboee2d74ac2006-03-28 08:59:01 +02001533 cic->ioc = ioc;
1534 cic->key = cfqd;
1535
1536 ioc->set_ioprio = cfq_ioc_set_ioprio;
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001537restart:
1538 parent = NULL;
1539 p = &ioc->cic_root.rb_node;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001540 while (*p) {
1541 parent = *p;
1542 __cic = rb_entry(parent, struct cfq_io_context, rb_node);
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001543 /* ->key must be copied to avoid race with cfq_exit_queue() */
1544 k = __cic->key;
1545 if (unlikely(!k)) {
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001546 cfq_drop_dead_cic(ioc, cic);
1547 goto restart;
1548 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001549
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001550 if (cic->key < k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001551 p = &(*p)->rb_left;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001552 else if (cic->key > k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001553 p = &(*p)->rb_right;
1554 else
1555 BUG();
1556 }
1557
Jens Axboe3793c652006-05-30 21:11:04 +02001558 spin_lock(&cfq_exit_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001559 rb_link_node(&cic->rb_node, parent, p);
1560 rb_insert_color(&cic->rb_node, &ioc->cic_root);
1561 list_add(&cic->queue_list, &cfqd->cic_list);
Jens Axboe3793c652006-05-30 21:11:04 +02001562 spin_unlock(&cfq_exit_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001563}
1564
Jens Axboe22e2c502005-06-27 10:55:12 +02001565/*
1566 * Setup general io context and cfq io context. There can be several cfq
1567 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02001568 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02001569 */
1570static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02001571cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Jens Axboe22e2c502005-06-27 10:55:12 +02001573 struct io_context *ioc = NULL;
1574 struct cfq_io_context *cic;
1575
1576 might_sleep_if(gfp_mask & __GFP_WAIT);
1577
1578 ioc = get_io_context(gfp_mask);
1579 if (!ioc)
1580 return NULL;
1581
Jens Axboee2d74ac2006-03-28 08:59:01 +02001582 cic = cfq_cic_rb_lookup(cfqd, ioc);
1583 if (cic)
1584 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02001585
Jens Axboee2d74ac2006-03-28 08:59:01 +02001586 cic = cfq_alloc_io_context(cfqd, gfp_mask);
1587 if (cic == NULL)
1588 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02001589
Jens Axboee2d74ac2006-03-28 08:59:01 +02001590 cfq_cic_link(cfqd, ioc, cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02001591out:
1592 return cic;
1593err:
1594 put_io_context(ioc);
1595 return NULL;
1596}
1597
1598static void
1599cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
1600{
1601 unsigned long elapsed, ttime;
1602
1603 /*
1604 * if this context already has stuff queued, thinktime is from
1605 * last queue not last end
1606 */
1607#if 0
1608 if (time_after(cic->last_end_request, cic->last_queue))
1609 elapsed = jiffies - cic->last_end_request;
1610 else
1611 elapsed = jiffies - cic->last_queue;
1612#else
1613 elapsed = jiffies - cic->last_end_request;
1614#endif
1615
1616 ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
1617
1618 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
1619 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
1620 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
1621}
1622
Jens Axboe206dc692006-03-28 13:03:44 +02001623static void
1624cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_io_context *cic,
1625 struct cfq_rq *crq)
1626{
1627 sector_t sdist;
1628 u64 total;
1629
1630 if (cic->last_request_pos < crq->request->sector)
1631 sdist = crq->request->sector - cic->last_request_pos;
1632 else
1633 sdist = cic->last_request_pos - crq->request->sector;
1634
1635 /*
1636 * Don't allow the seek distance to get too large from the
1637 * odd fragment, pagein, etc
1638 */
1639 if (cic->seek_samples <= 60) /* second&third seek */
1640 sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*1024);
1641 else
1642 sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*64);
1643
1644 cic->seek_samples = (7*cic->seek_samples + 256) / 8;
1645 cic->seek_total = (7*cic->seek_total + (u64)256*sdist) / 8;
1646 total = cic->seek_total + (cic->seek_samples/2);
1647 do_div(total, cic->seek_samples);
1648 cic->seek_mean = (sector_t)total;
1649}
Jens Axboe22e2c502005-06-27 10:55:12 +02001650
1651/*
1652 * Disable idle window if the process thinks too long or seeks so much that
1653 * it doesn't matter
1654 */
1655static void
1656cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1657 struct cfq_io_context *cic)
1658{
Jens Axboe3b181522005-06-27 10:56:24 +02001659 int enable_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001660
Jens Axboe25776e32006-06-01 10:12:26 +02001661 if (!cic->ioc->task || !cfqd->cfq_slice_idle || cfqd->hw_tag)
Jens Axboe22e2c502005-06-27 10:55:12 +02001662 enable_idle = 0;
1663 else if (sample_valid(cic->ttime_samples)) {
1664 if (cic->ttime_mean > cfqd->cfq_slice_idle)
1665 enable_idle = 0;
1666 else
1667 enable_idle = 1;
1668 }
1669
Jens Axboe3b181522005-06-27 10:56:24 +02001670 if (enable_idle)
1671 cfq_mark_cfqq_idle_window(cfqq);
1672 else
1673 cfq_clear_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001674}
1675
1676
1677/*
1678 * Check if new_cfqq should preempt the currently active queue. Return 0 for
1679 * no or if we aren't sure, a 1 will cause a preempt.
1680 */
1681static int
1682cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
1683 struct cfq_rq *crq)
1684{
1685 struct cfq_queue *cfqq = cfqd->active_queue;
1686
1687 if (cfq_class_idle(new_cfqq))
1688 return 0;
1689
1690 if (!cfqq)
1691 return 1;
1692
1693 if (cfq_class_idle(cfqq))
1694 return 1;
Jens Axboe3b181522005-06-27 10:56:24 +02001695 if (!cfq_cfqq_wait_request(new_cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001696 return 0;
1697 /*
1698 * if it doesn't have slice left, forget it
1699 */
1700 if (new_cfqq->slice_left < cfqd->cfq_slice_idle)
1701 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02001702 if (cfq_crq_is_sync(crq) && !cfq_cfqq_sync(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001703 return 1;
1704
1705 return 0;
1706}
1707
1708/*
1709 * cfqq preempts the active queue. if we allowed preempt with no slice left,
1710 * let it have half of its nominal slice.
1711 */
1712static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1713{
1714 struct cfq_queue *__cfqq, *next;
1715
1716 list_for_each_entry_safe(__cfqq, next, &cfqd->cur_rr, cfq_list)
1717 cfq_resort_rr_list(__cfqq, 1);
1718
1719 if (!cfqq->slice_left)
1720 cfqq->slice_left = cfq_prio_to_slice(cfqd, cfqq) / 2;
1721
1722 cfqq->slice_end = cfqq->slice_left + jiffies;
Jens Axboe3b181522005-06-27 10:56:24 +02001723 __cfq_slice_expired(cfqd, cfqq, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02001724 __cfq_set_active_queue(cfqd, cfqq);
1725}
1726
1727/*
1728 * should really be a ll_rw_blk.c helper
1729 */
1730static void cfq_start_queueing(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1731{
1732 request_queue_t *q = cfqd->queue;
1733
1734 if (!blk_queue_plugged(q))
1735 q->request_fn(q);
1736 else
1737 __generic_unplug_device(q);
1738}
1739
1740/*
1741 * Called when a new fs request (crq) is added (to cfqq). Check if there's
1742 * something we should do about it
1743 */
1744static void
1745cfq_crq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1746 struct cfq_rq *crq)
1747{
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001748 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02001749
1750 cfqq->next_crq = cfq_choose_req(cfqd, cfqq->next_crq, crq);
1751
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001752 cic = crq->io_context;
1753
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001754 /*
1755 * we never wait for an async request and we don't allow preemption
1756 * of an async request. so just return early
1757 */
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001758 if (!cfq_crq_is_sync(crq)) {
1759 /*
1760 * sync process issued an async request, if it's waiting
1761 * then expire it and kick rq handling.
1762 */
1763 if (cic == cfqd->active_cic &&
1764 del_timer(&cfqd->idle_slice_timer)) {
1765 cfq_slice_expired(cfqd, 0);
1766 cfq_start_queueing(cfqd, cfqq);
1767 }
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001768 return;
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001769 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001770
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001771 cfq_update_io_thinktime(cfqd, cic);
Jens Axboe206dc692006-03-28 13:03:44 +02001772 cfq_update_io_seektime(cfqd, cic, crq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001773 cfq_update_idle_window(cfqd, cfqq, cic);
1774
1775 cic->last_queue = jiffies;
Jens Axboe206dc692006-03-28 13:03:44 +02001776 cic->last_request_pos = crq->request->sector + crq->request->nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02001777
1778 if (cfqq == cfqd->active_queue) {
1779 /*
1780 * if we are waiting for a request for this queue, let it rip
1781 * immediately and flag that we must not expire this queue
1782 * just now
1783 */
Jens Axboe3b181522005-06-27 10:56:24 +02001784 if (cfq_cfqq_wait_request(cfqq)) {
1785 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001786 del_timer(&cfqd->idle_slice_timer);
1787 cfq_start_queueing(cfqd, cfqq);
1788 }
1789 } else if (cfq_should_preempt(cfqd, cfqq, crq)) {
1790 /*
1791 * not the active queue - expire current slice if it is
1792 * idle and has expired it's mean thinktime or this new queue
1793 * has some old slice time left and is of higher priority
1794 */
1795 cfq_preempt_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001796 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001797 cfq_start_queueing(cfqd, cfqq);
1798 }
1799}
1800
Jens Axboeb4878f22005-10-20 16:42:29 +02001801static void cfq_insert_request(request_queue_t *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001802{
Jens Axboeb4878f22005-10-20 16:42:29 +02001803 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe22e2c502005-06-27 10:55:12 +02001804 struct cfq_rq *crq = RQ_DATA(rq);
1805 struct cfq_queue *cfqq = crq->cfq_queue;
1806
1807 cfq_init_prio_data(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 cfq_add_crq_rb(crq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Jens Axboe22e2c502005-06-27 10:55:12 +02001811 list_add_tail(&rq->queuelist, &cfqq->fifo);
1812
Tejun Heo98b11472005-10-20 16:46:54 +02001813 if (rq_mergeable(rq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001814 cfq_add_crq_hash(cfqd, crq);
1815
Jens Axboe22e2c502005-06-27 10:55:12 +02001816 cfq_crq_enqueued(cfqd, cfqq, crq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819static void cfq_completed_request(request_queue_t *q, struct request *rq)
1820{
1821 struct cfq_rq *crq = RQ_DATA(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001822 struct cfq_queue *cfqq = crq->cfq_queue;
1823 struct cfq_data *cfqd = cfqq->cfqd;
1824 const int sync = cfq_crq_is_sync(crq);
1825 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Jens Axboeb4878f22005-10-20 16:42:29 +02001827 now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Jens Axboeb4878f22005-10-20 16:42:29 +02001829 WARN_ON(!cfqd->rq_in_driver);
1830 WARN_ON(!cfqq->on_dispatch[sync]);
1831 cfqd->rq_in_driver--;
1832 cfqq->on_dispatch[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Jens Axboeb4878f22005-10-20 16:42:29 +02001834 if (!cfq_class_idle(cfqq))
1835 cfqd->last_end_request = now;
Jens Axboe3b181522005-06-27 10:56:24 +02001836
Jens Axboeb4878f22005-10-20 16:42:29 +02001837 if (!cfq_cfqq_dispatched(cfqq)) {
1838 if (cfq_cfqq_on_rr(cfqq)) {
1839 cfqq->service_last = now;
1840 cfq_resort_rr_list(cfqq, 0);
1841 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001842 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844
Jens Axboeb4878f22005-10-20 16:42:29 +02001845 if (cfq_crq_is_sync(crq))
1846 crq->io_context->last_end_request = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
1849static struct request *
1850cfq_former_request(request_queue_t *q, struct request *rq)
1851{
1852 struct cfq_rq *crq = RQ_DATA(rq);
1853 struct rb_node *rbprev = rb_prev(&crq->rb_node);
1854
1855 if (rbprev)
1856 return rb_entry_crq(rbprev)->request;
1857
1858 return NULL;
1859}
1860
1861static struct request *
1862cfq_latter_request(request_queue_t *q, struct request *rq)
1863{
1864 struct cfq_rq *crq = RQ_DATA(rq);
1865 struct rb_node *rbnext = rb_next(&crq->rb_node);
1866
1867 if (rbnext)
1868 return rb_entry_crq(rbnext)->request;
1869
1870 return NULL;
1871}
1872
Jens Axboe22e2c502005-06-27 10:55:12 +02001873/*
1874 * we temporarily boost lower priority queues if they are holding fs exclusive
1875 * resources. they are boosted to normal prio (CLASS_BE/4)
1876 */
1877static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
Jens Axboe22e2c502005-06-27 10:55:12 +02001879 const int ioprio_class = cfqq->ioprio_class;
1880 const int ioprio = cfqq->ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Jens Axboe22e2c502005-06-27 10:55:12 +02001882 if (has_fs_excl()) {
1883 /*
1884 * boost idle prio on transactions that would lock out other
1885 * users of the filesystem
1886 */
1887 if (cfq_class_idle(cfqq))
1888 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1889 if (cfqq->ioprio > IOPRIO_NORM)
1890 cfqq->ioprio = IOPRIO_NORM;
1891 } else {
1892 /*
1893 * check if we need to unboost the queue
1894 */
1895 if (cfqq->ioprio_class != cfqq->org_ioprio_class)
1896 cfqq->ioprio_class = cfqq->org_ioprio_class;
1897 if (cfqq->ioprio != cfqq->org_ioprio)
1898 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900
Jens Axboe22e2c502005-06-27 10:55:12 +02001901 /*
1902 * refile between round-robin lists if we moved the priority class
1903 */
1904 if ((ioprio_class != cfqq->ioprio_class || ioprio != cfqq->ioprio) &&
Jens Axboe3b181522005-06-27 10:56:24 +02001905 cfq_cfqq_on_rr(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001906 cfq_resort_rr_list(cfqq, 0);
1907}
1908
Jens Axboe22e2c502005-06-27 10:55:12 +02001909static inline int
1910__cfq_may_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1911 struct task_struct *task, int rw)
1912{
Jens Axboe3b181522005-06-27 10:56:24 +02001913#if 1
1914 if ((cfq_cfqq_wait_request(cfqq) || cfq_cfqq_must_alloc(cfqq)) &&
Andrew Morton99f95e52005-06-27 20:14:05 -07001915 !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02001916 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001917 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02001918 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001919
1920 return ELV_MQUEUE_MAY;
Jens Axboe3b181522005-06-27 10:56:24 +02001921#else
Jens Axboe22e2c502005-06-27 10:55:12 +02001922 if (!cfqq || task->flags & PF_MEMALLOC)
1923 return ELV_MQUEUE_MAY;
Jens Axboe3b181522005-06-27 10:56:24 +02001924 if (!cfqq->allocated[rw] || cfq_cfqq_must_alloc(cfqq)) {
1925 if (cfq_cfqq_wait_request(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001926 return ELV_MQUEUE_MUST;
1927
1928 /*
1929 * only allow 1 ELV_MQUEUE_MUST per slice, otherwise we
1930 * can quickly flood the queue with writes from a single task
1931 */
Andrew Morton99f95e52005-06-27 20:14:05 -07001932 if (rw == READ || !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02001933 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001934 return ELV_MQUEUE_MUST;
1935 }
1936
1937 return ELV_MQUEUE_MAY;
1938 }
1939 if (cfq_class_idle(cfqq))
1940 return ELV_MQUEUE_NO;
1941 if (cfqq->allocated[rw] >= cfqd->max_queued) {
1942 struct io_context *ioc = get_io_context(GFP_ATOMIC);
1943 int ret = ELV_MQUEUE_NO;
1944
1945 if (ioc && ioc->nr_batch_requests)
1946 ret = ELV_MQUEUE_MAY;
1947
1948 put_io_context(ioc);
1949 return ret;
1950 }
1951
1952 return ELV_MQUEUE_MAY;
1953#endif
1954}
1955
1956static int cfq_may_queue(request_queue_t *q, int rw, struct bio *bio)
1957{
1958 struct cfq_data *cfqd = q->elevator->elevator_data;
1959 struct task_struct *tsk = current;
1960 struct cfq_queue *cfqq;
1961
1962 /*
1963 * don't force setup of a queue from here, as a call to may_queue
1964 * does not necessarily imply that a request actually will be queued.
1965 * so just lookup a possibly existing queue, or return 'may queue'
1966 * if that fails
1967 */
Jens Axboe3b181522005-06-27 10:56:24 +02001968 cfqq = cfq_find_cfq_hash(cfqd, cfq_queue_pid(tsk, rw), tsk->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001969 if (cfqq) {
1970 cfq_init_prio_data(cfqq);
1971 cfq_prio_boost(cfqq);
1972
1973 return __cfq_may_queue(cfqd, cfqq, tsk, rw);
1974 }
1975
1976 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977}
1978
1979static void cfq_check_waiters(request_queue_t *q, struct cfq_queue *cfqq)
1980{
Jens Axboe22e2c502005-06-27 10:55:12 +02001981 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 struct request_list *rl = &q->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Jens Axboe22e2c502005-06-27 10:55:12 +02001984 if (cfqq->allocated[READ] <= cfqd->max_queued || cfqd->rq_starved) {
1985 smp_mb();
1986 if (waitqueue_active(&rl->wait[READ]))
1987 wake_up(&rl->wait[READ]);
1988 }
1989
1990 if (cfqq->allocated[WRITE] <= cfqd->max_queued || cfqd->rq_starved) {
1991 smp_mb();
1992 if (waitqueue_active(&rl->wait[WRITE]))
1993 wake_up(&rl->wait[WRITE]);
1994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995}
1996
1997/*
1998 * queue lock held here
1999 */
2000static void cfq_put_request(request_queue_t *q, struct request *rq)
2001{
2002 struct cfq_data *cfqd = q->elevator->elevator_data;
2003 struct cfq_rq *crq = RQ_DATA(rq);
2004
2005 if (crq) {
2006 struct cfq_queue *cfqq = crq->cfq_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002007 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Jens Axboe22e2c502005-06-27 10:55:12 +02002009 BUG_ON(!cfqq->allocated[rw]);
2010 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Jens Axboe22e2c502005-06-27 10:55:12 +02002012 put_io_context(crq->io_context->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 mempool_free(crq, cfqd->crq_pool);
2015 rq->elevator_private = NULL;
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 cfq_check_waiters(q, cfqq);
2018 cfq_put_queue(cfqq);
2019 }
2020}
2021
2022/*
Jens Axboe22e2c502005-06-27 10:55:12 +02002023 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 */
Jens Axboe22e2c502005-06-27 10:55:12 +02002025static int
2026cfq_set_request(request_queue_t *q, struct request *rq, struct bio *bio,
Al Viro8267e262005-10-21 03:20:53 -04002027 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
2029 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe3b181522005-06-27 10:56:24 +02002030 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 struct cfq_io_context *cic;
2032 const int rw = rq_data_dir(rq);
Jens Axboe3b181522005-06-27 10:56:24 +02002033 pid_t key = cfq_queue_pid(tsk, rw);
Jens Axboe22e2c502005-06-27 10:55:12 +02002034 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 struct cfq_rq *crq;
2036 unsigned long flags;
Al Viro12a05732006-03-18 13:38:01 -05002037 int is_sync = key != CFQ_KEY_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 might_sleep_if(gfp_mask & __GFP_WAIT);
2040
Jens Axboee2d74ac2006-03-28 08:59:01 +02002041 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 spin_lock_irqsave(q->queue_lock, flags);
2044
Jens Axboe22e2c502005-06-27 10:55:12 +02002045 if (!cic)
2046 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Al Viro12a05732006-03-18 13:38:01 -05002048 if (!cic->cfqq[is_sync]) {
Al Viro6f325a12006-03-18 14:58:37 -05002049 cfqq = cfq_get_queue(cfqd, key, tsk, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02002050 if (!cfqq)
2051 goto queue_fail;
2052
Al Viro12a05732006-03-18 13:38:01 -05002053 cic->cfqq[is_sync] = cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002054 } else
Al Viro12a05732006-03-18 13:38:01 -05002055 cfqq = cic->cfqq[is_sync];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
2057 cfqq->allocated[rw]++;
Jens Axboe3b181522005-06-27 10:56:24 +02002058 cfq_clear_cfqq_must_alloc(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002059 cfqd->rq_starved = 0;
2060 atomic_inc(&cfqq->ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 spin_unlock_irqrestore(q->queue_lock, flags);
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 crq = mempool_alloc(cfqd->crq_pool, gfp_mask);
2064 if (crq) {
2065 RB_CLEAR(&crq->rb_node);
2066 crq->rb_key = 0;
2067 crq->request = rq;
2068 INIT_HLIST_NODE(&crq->hash);
2069 crq->cfq_queue = cfqq;
2070 crq->io_context = cic;
Jens Axboe3b181522005-06-27 10:56:24 +02002071
Al Viro12a05732006-03-18 13:38:01 -05002072 if (is_sync)
Jens Axboe3b181522005-06-27 10:56:24 +02002073 cfq_mark_crq_is_sync(crq);
2074 else
2075 cfq_clear_crq_is_sync(crq);
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 rq->elevator_private = crq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 return 0;
2079 }
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 spin_lock_irqsave(q->queue_lock, flags);
2082 cfqq->allocated[rw]--;
Jens Axboe22e2c502005-06-27 10:55:12 +02002083 if (!(cfqq->allocated[0] + cfqq->allocated[1]))
Jens Axboe3b181522005-06-27 10:56:24 +02002084 cfq_mark_cfqq_must_alloc(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 cfq_put_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002086queue_fail:
2087 if (cic)
2088 put_io_context(cic->ioc);
2089 /*
2090 * mark us rq allocation starved. we need to kickstart the process
2091 * ourselves if there are no pending requests that can do it for us.
2092 * that would be an extremely rare OOM situation
2093 */
2094 cfqd->rq_starved = 1;
Jens Axboe3b181522005-06-27 10:56:24 +02002095 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 spin_unlock_irqrestore(q->queue_lock, flags);
2097 return 1;
2098}
2099
Jens Axboe22e2c502005-06-27 10:55:12 +02002100static void cfq_kick_queue(void *data)
2101{
2102 request_queue_t *q = data;
2103 struct cfq_data *cfqd = q->elevator->elevator_data;
2104 unsigned long flags;
2105
2106 spin_lock_irqsave(q->queue_lock, flags);
2107
2108 if (cfqd->rq_starved) {
2109 struct request_list *rl = &q->rq;
2110
2111 /*
2112 * we aren't guaranteed to get a request after this, but we
2113 * have to be opportunistic
2114 */
2115 smp_mb();
2116 if (waitqueue_active(&rl->wait[READ]))
2117 wake_up(&rl->wait[READ]);
2118 if (waitqueue_active(&rl->wait[WRITE]))
2119 wake_up(&rl->wait[WRITE]);
2120 }
2121
2122 blk_remove_plug(q);
2123 q->request_fn(q);
2124 spin_unlock_irqrestore(q->queue_lock, flags);
2125}
2126
2127/*
2128 * Timer running if the active_queue is currently idling inside its time slice
2129 */
2130static void cfq_idle_slice_timer(unsigned long data)
2131{
2132 struct cfq_data *cfqd = (struct cfq_data *) data;
2133 struct cfq_queue *cfqq;
2134 unsigned long flags;
2135
2136 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2137
2138 if ((cfqq = cfqd->active_queue) != NULL) {
2139 unsigned long now = jiffies;
2140
2141 /*
2142 * expired
2143 */
2144 if (time_after(now, cfqq->slice_end))
2145 goto expire;
2146
2147 /*
2148 * only expire and reinvoke request handler, if there are
2149 * other queues with pending requests
2150 */
Jens Axboeb4878f22005-10-20 16:42:29 +02002151 if (!cfqd->busy_queues) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002152 cfqd->idle_slice_timer.expires = min(now + cfqd->cfq_slice_idle, cfqq->slice_end);
2153 add_timer(&cfqd->idle_slice_timer);
2154 goto out_cont;
2155 }
2156
2157 /*
2158 * not expired and it has a request pending, let it dispatch
2159 */
2160 if (!RB_EMPTY(&cfqq->sort_list)) {
Jens Axboe3b181522005-06-27 10:56:24 +02002161 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002162 goto out_kick;
2163 }
2164 }
2165expire:
2166 cfq_slice_expired(cfqd, 0);
2167out_kick:
Jens Axboe3b181522005-06-27 10:56:24 +02002168 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02002169out_cont:
2170 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
2171}
2172
2173/*
2174 * Timer running if an idle class queue is waiting for service
2175 */
2176static void cfq_idle_class_timer(unsigned long data)
2177{
2178 struct cfq_data *cfqd = (struct cfq_data *) data;
2179 unsigned long flags, end;
2180
2181 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2182
2183 /*
2184 * race with a non-idle queue, reset timer
2185 */
2186 end = cfqd->last_end_request + CFQ_IDLE_GRACE;
Jens Axboeae818a32006-06-01 10:13:43 +02002187 if (!time_after_eq(jiffies, end))
2188 mod_timer(&cfqd->idle_class_timer, end);
2189 else
Jens Axboe3b181522005-06-27 10:56:24 +02002190 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02002191
2192 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
2193}
2194
Jens Axboe3b181522005-06-27 10:56:24 +02002195static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
2196{
2197 del_timer_sync(&cfqd->idle_slice_timer);
2198 del_timer_sync(&cfqd->idle_class_timer);
2199 blk_sync_queue(cfqd->queue);
2200}
Jens Axboe22e2c502005-06-27 10:55:12 +02002201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202static void cfq_exit_queue(elevator_t *e)
2203{
Jens Axboe22e2c502005-06-27 10:55:12 +02002204 struct cfq_data *cfqd = e->elevator_data;
Al Virod9ff4182006-03-18 13:51:22 -05002205 request_queue_t *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002206
Jens Axboe3b181522005-06-27 10:56:24 +02002207 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002208
Jens Axboe3793c652006-05-30 21:11:04 +02002209 spin_lock(&cfq_exit_lock);
Al Virod9ff4182006-03-18 13:51:22 -05002210 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002211
Al Virod9ff4182006-03-18 13:51:22 -05002212 if (cfqd->active_queue)
2213 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002214
2215 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05002216 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
2217 struct cfq_io_context,
2218 queue_list);
2219 if (cic->cfqq[ASYNC]) {
2220 cfq_put_queue(cic->cfqq[ASYNC]);
2221 cic->cfqq[ASYNC] = NULL;
2222 }
2223 if (cic->cfqq[SYNC]) {
2224 cfq_put_queue(cic->cfqq[SYNC]);
2225 cic->cfqq[SYNC] = NULL;
2226 }
2227 cic->key = NULL;
2228 list_del_init(&cic->queue_list);
2229 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002230
Al Virod9ff4182006-03-18 13:51:22 -05002231 spin_unlock_irq(q->queue_lock);
Jens Axboe3793c652006-05-30 21:11:04 +02002232 spin_unlock(&cfq_exit_lock);
Al Viroa90d7422006-03-18 12:05:37 -05002233
2234 cfq_shutdown_timer_wq(cfqd);
2235
2236 mempool_destroy(cfqd->crq_pool);
2237 kfree(cfqd->crq_hash);
2238 kfree(cfqd->cfq_hash);
2239 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240}
2241
Jens Axboebc1c1162006-06-08 08:49:06 +02002242static void *cfq_init_queue(request_queue_t *q, elevator_t *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
2244 struct cfq_data *cfqd;
2245 int i;
2246
2247 cfqd = kmalloc(sizeof(*cfqd), GFP_KERNEL);
2248 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02002249 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 memset(cfqd, 0, sizeof(*cfqd));
Jens Axboe22e2c502005-06-27 10:55:12 +02002252
2253 for (i = 0; i < CFQ_PRIO_LISTS; i++)
2254 INIT_LIST_HEAD(&cfqd->rr_list[i]);
2255
2256 INIT_LIST_HEAD(&cfqd->busy_rr);
2257 INIT_LIST_HEAD(&cfqd->cur_rr);
2258 INIT_LIST_HEAD(&cfqd->idle_rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 INIT_LIST_HEAD(&cfqd->empty_list);
Al Virod9ff4182006-03-18 13:51:22 -05002260 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 cfqd->crq_hash = kmalloc(sizeof(struct hlist_head) * CFQ_MHASH_ENTRIES, GFP_KERNEL);
2263 if (!cfqd->crq_hash)
2264 goto out_crqhash;
2265
2266 cfqd->cfq_hash = kmalloc(sizeof(struct hlist_head) * CFQ_QHASH_ENTRIES, GFP_KERNEL);
2267 if (!cfqd->cfq_hash)
2268 goto out_cfqhash;
2269
Matthew Dobson93d23412006-03-26 01:37:50 -08002270 cfqd->crq_pool = mempool_create_slab_pool(BLKDEV_MIN_RQ, crq_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 if (!cfqd->crq_pool)
2272 goto out_crqpool;
2273
2274 for (i = 0; i < CFQ_MHASH_ENTRIES; i++)
2275 INIT_HLIST_HEAD(&cfqd->crq_hash[i]);
2276 for (i = 0; i < CFQ_QHASH_ENTRIES; i++)
2277 INIT_HLIST_HEAD(&cfqd->cfq_hash[i]);
2278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Jens Axboe22e2c502005-06-27 10:55:12 +02002281 cfqd->max_queued = q->nr_requests / 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 q->nr_batching = cfq_queued;
Jens Axboe22e2c502005-06-27 10:55:12 +02002283
2284 init_timer(&cfqd->idle_slice_timer);
2285 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
2286 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
2287
2288 init_timer(&cfqd->idle_class_timer);
2289 cfqd->idle_class_timer.function = cfq_idle_class_timer;
2290 cfqd->idle_class_timer.data = (unsigned long) cfqd;
2291
2292 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue, q);
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 cfqd->cfq_queued = cfq_queued;
2295 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02002296 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
2297 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 cfqd->cfq_back_max = cfq_back_max;
2299 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02002300 cfqd->cfq_slice[0] = cfq_slice_async;
2301 cfqd->cfq_slice[1] = cfq_slice_sync;
2302 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
2303 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe3b181522005-06-27 10:56:24 +02002304
Jens Axboebc1c1162006-06-08 08:49:06 +02002305 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306out_crqpool:
2307 kfree(cfqd->cfq_hash);
2308out_cfqhash:
2309 kfree(cfqd->crq_hash);
2310out_crqhash:
2311 kfree(cfqd);
Jens Axboebc1c1162006-06-08 08:49:06 +02002312 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313}
2314
2315static void cfq_slab_kill(void)
2316{
2317 if (crq_pool)
2318 kmem_cache_destroy(crq_pool);
2319 if (cfq_pool)
2320 kmem_cache_destroy(cfq_pool);
2321 if (cfq_ioc_pool)
2322 kmem_cache_destroy(cfq_ioc_pool);
2323}
2324
2325static int __init cfq_slab_setup(void)
2326{
2327 crq_pool = kmem_cache_create("crq_pool", sizeof(struct cfq_rq), 0, 0,
2328 NULL, NULL);
2329 if (!crq_pool)
2330 goto fail;
2331
2332 cfq_pool = kmem_cache_create("cfq_pool", sizeof(struct cfq_queue), 0, 0,
2333 NULL, NULL);
2334 if (!cfq_pool)
2335 goto fail;
2336
2337 cfq_ioc_pool = kmem_cache_create("cfq_ioc_pool",
2338 sizeof(struct cfq_io_context), 0, 0, NULL, NULL);
2339 if (!cfq_ioc_pool)
2340 goto fail;
2341
2342 return 0;
2343fail:
2344 cfq_slab_kill();
2345 return -ENOMEM;
2346}
2347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348/*
2349 * sysfs parts below -->
2350 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352static ssize_t
2353cfq_var_show(unsigned int var, char *page)
2354{
2355 return sprintf(page, "%d\n", var);
2356}
2357
2358static ssize_t
2359cfq_var_store(unsigned int *var, const char *page, size_t count)
2360{
2361 char *p = (char *) page;
2362
2363 *var = simple_strtoul(p, &p, 10);
2364 return count;
2365}
2366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Al Viro3d1ab402006-03-18 18:35:43 -05002368static ssize_t __FUNC(elevator_t *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002370 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 unsigned int __data = __VAR; \
2372 if (__CONV) \
2373 __data = jiffies_to_msecs(__data); \
2374 return cfq_var_show(__data, (page)); \
2375}
2376SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
2377SHOW_FUNCTION(cfq_queued_show, cfqd->cfq_queued, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002378SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
2379SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05002380SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
2381SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002382SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
2383SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
2384SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
2385SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386#undef SHOW_FUNCTION
2387
2388#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Al Viro3d1ab402006-03-18 18:35:43 -05002389static ssize_t __FUNC(elevator_t *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002391 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 unsigned int __data; \
2393 int ret = cfq_var_store(&__data, (page), count); \
2394 if (__data < (MIN)) \
2395 __data = (MIN); \
2396 else if (__data > (MAX)) \
2397 __data = (MAX); \
2398 if (__CONV) \
2399 *(__PTR) = msecs_to_jiffies(__data); \
2400 else \
2401 *(__PTR) = __data; \
2402 return ret; \
2403}
2404STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
2405STORE_FUNCTION(cfq_queued_store, &cfqd->cfq_queued, 1, UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002406STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1, UINT_MAX, 1);
2407STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1, UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05002408STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
2409STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1, UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002410STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
2411STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
2412STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
2413STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1, UINT_MAX, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414#undef STORE_FUNCTION
2415
Al Viroe572ec72006-03-18 22:27:18 -05002416#define CFQ_ATTR(name) \
2417 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02002418
Al Viroe572ec72006-03-18 22:27:18 -05002419static struct elv_fs_entry cfq_attrs[] = {
2420 CFQ_ATTR(quantum),
2421 CFQ_ATTR(queued),
2422 CFQ_ATTR(fifo_expire_sync),
2423 CFQ_ATTR(fifo_expire_async),
2424 CFQ_ATTR(back_seek_max),
2425 CFQ_ATTR(back_seek_penalty),
2426 CFQ_ATTR(slice_sync),
2427 CFQ_ATTR(slice_async),
2428 CFQ_ATTR(slice_async_rq),
2429 CFQ_ATTR(slice_idle),
Al Viroe572ec72006-03-18 22:27:18 -05002430 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431};
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433static struct elevator_type iosched_cfq = {
2434 .ops = {
2435 .elevator_merge_fn = cfq_merge,
2436 .elevator_merged_fn = cfq_merged_request,
2437 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeb4878f22005-10-20 16:42:29 +02002438 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02002440 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 .elevator_deactivate_req_fn = cfq_deactivate_request,
2442 .elevator_queue_empty_fn = cfq_queue_empty,
2443 .elevator_completed_req_fn = cfq_completed_request,
2444 .elevator_former_req_fn = cfq_former_request,
2445 .elevator_latter_req_fn = cfq_latter_request,
2446 .elevator_set_req_fn = cfq_set_request,
2447 .elevator_put_req_fn = cfq_put_request,
2448 .elevator_may_queue_fn = cfq_may_queue,
2449 .elevator_init_fn = cfq_init_queue,
2450 .elevator_exit_fn = cfq_exit_queue,
Al Viroe17a9482006-03-18 13:21:20 -05002451 .trim = cfq_trim,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 },
Al Viro3d1ab402006-03-18 18:35:43 -05002453 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 .elevator_name = "cfq",
2455 .elevator_owner = THIS_MODULE,
2456};
2457
2458static int __init cfq_init(void)
2459{
2460 int ret;
2461
Jens Axboe22e2c502005-06-27 10:55:12 +02002462 /*
2463 * could be 0 on HZ < 1000 setups
2464 */
2465 if (!cfq_slice_async)
2466 cfq_slice_async = 1;
2467 if (!cfq_slice_idle)
2468 cfq_slice_idle = 1;
2469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 if (cfq_slab_setup())
2471 return -ENOMEM;
2472
2473 ret = elv_register(&iosched_cfq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002474 if (ret)
2475 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 return ret;
2478}
2479
2480static void __exit cfq_exit(void)
2481{
Al Viro334e94d2006-03-18 15:05:53 -05002482 DECLARE_COMPLETION(all_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05002484 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02002485 /* ioc_gone's update must be visible before reading ioc_count */
2486 smp_wmb();
Al Viro334e94d2006-03-18 15:05:53 -05002487 if (atomic_read(&ioc_count))
OGAWA Hirofumifba82272006-04-18 09:44:06 +02002488 wait_for_completion(ioc_gone);
Al Viro334e94d2006-03-18 15:05:53 -05002489 synchronize_rcu();
Christoph Hellwig83521d32005-10-30 15:01:39 -08002490 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
2493module_init(cfq_init);
2494module_exit(cfq_exit);
2495
2496MODULE_AUTHOR("Jens Axboe");
2497MODULE_LICENSE("GPL");
2498MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");