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