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