blob: bfb396774cbb72f47f421e3d55d5bc88b07f8f4f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * CFQ, or complete fairness queueing, disk scheduler.
3 *
4 * Based on ideas from a previously unfinished io
5 * scheduler (round robin per-process disk scheduling) and Andrea Arcangeli.
6 *
Jens Axboe0fe23472006-09-04 15:41:16 +02007 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
Al Viro1cc9be62006-03-18 12:29:52 -050010#include <linux/blkdev.h>
11#include <linux/elevator.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/hash.h>
13#include <linux/rbtree.h>
Jens Axboe22e2c502005-06-27 10:55:12 +020014#include <linux/ioprio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16/*
17 * tunables
18 */
Arjan van de Ven64100092006-01-06 09:46:02 +010019static const int cfq_quantum = 4; /* max queue in one round of service */
Arjan van de Ven64100092006-01-06 09:46:02 +010020static 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Arjan van de Ven64100092006-01-06 09:46:02 +010024static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020025static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010026static const int cfq_slice_async_rq = 2;
Jens Axboecaaa5f92006-06-16 11:23:00 +020027static int cfq_slice_idle = HZ / 125;
Jens Axboe22e2c502005-06-27 10:55:12 +020028
29#define CFQ_IDLE_GRACE (HZ / 10)
30#define CFQ_SLICE_SCALE (5)
31
32#define CFQ_KEY_ASYNC (0)
Jens Axboe22e2c502005-06-27 10:55:12 +020033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
35 * for the hash of cfqq inside the cfqd
36 */
37#define CFQ_QHASH_SHIFT 6
38#define CFQ_QHASH_ENTRIES (1 << CFQ_QHASH_SHIFT)
39#define list_entry_qhash(entry) hlist_entry((entry), struct cfq_queue, cfq_hash)
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define list_entry_cfqq(ptr) list_entry((ptr), struct cfq_queue, cfq_list)
42
Jens Axboe5e705372006-07-13 12:39:25 +020043#define RQ_CIC(rq) ((struct cfq_io_context*)(rq)->elevator_private)
44#define RQ_CFQQ(rq) ((rq)->elevator_private2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Christoph Lametere18b8902006-12-06 20:33:20 -080046static struct kmem_cache *cfq_pool;
47static struct kmem_cache *cfq_ioc_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Jens Axboe4050cf12006-07-19 05:07:12 +020049static DEFINE_PER_CPU(unsigned long, ioc_count);
Al Viro334e94d2006-03-18 15:05:53 -050050static struct completion *ioc_gone;
51
Jens Axboe22e2c502005-06-27 10:55:12 +020052#define CFQ_PRIO_LISTS IOPRIO_BE_NR
53#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
Jens Axboe22e2c502005-06-27 10:55:12 +020054#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
55
Jens Axboe3b181522005-06-27 10:56:24 +020056#define ASYNC (0)
57#define SYNC (1)
58
59#define cfq_cfqq_dispatched(cfqq) \
60 ((cfqq)->on_dispatch[ASYNC] + (cfqq)->on_dispatch[SYNC])
61
62#define cfq_cfqq_class_sync(cfqq) ((cfqq)->key != CFQ_KEY_ASYNC)
63
64#define cfq_cfqq_sync(cfqq) \
65 (cfq_cfqq_class_sync(cfqq) || (cfqq)->on_dispatch[SYNC])
Jens Axboe22e2c502005-06-27 10:55:12 +020066
Jens Axboe206dc692006-03-28 13:03:44 +020067#define sample_valid(samples) ((samples) > 80)
68
Jens Axboe22e2c502005-06-27 10:55:12 +020069/*
70 * Per block device queue structure
71 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072struct cfq_data {
Jens Axboe22e2c502005-06-27 10:55:12 +020073 request_queue_t *queue;
74
75 /*
76 * rr list of queues with requests and the count of them
77 */
78 struct list_head rr_list[CFQ_PRIO_LISTS];
79 struct list_head busy_rr;
80 struct list_head cur_rr;
81 struct list_head idle_rr;
82 unsigned int busy_queues;
83
84 /*
Jens Axboe22e2c502005-06-27 10:55:12 +020085 * cfqq lookup hash
86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 struct hlist_head *cfq_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Jens Axboe22e2c502005-06-27 10:55:12 +020089 int rq_in_driver;
Jens Axboe25776e32006-06-01 10:12:26 +020090 int hw_tag;
Jens Axboe22e2c502005-06-27 10:55:12 +020091
92 /*
Jens Axboe22e2c502005-06-27 10:55:12 +020093 * idle window management
94 */
95 struct timer_list idle_slice_timer;
96 struct work_struct unplug_work;
97
98 struct cfq_queue *active_queue;
99 struct cfq_io_context *active_cic;
100 int cur_prio, cur_end_prio;
101 unsigned int dispatch_slice;
102
103 struct timer_list idle_class_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 sector_t last_sector;
Jens Axboe22e2c502005-06-27 10:55:12 +0200106 unsigned long last_end_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 /*
109 * tunables, see top of file
110 */
111 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200112 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 unsigned int cfq_back_penalty;
114 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200115 unsigned int cfq_slice[2];
116 unsigned int cfq_slice_async_rq;
117 unsigned int cfq_slice_idle;
Al Virod9ff4182006-03-18 13:51:22 -0500118
119 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Jens Axboe22e2c502005-06-27 10:55:12 +0200122/*
123 * Per process-grouping structure
124 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125struct cfq_queue {
126 /* reference count */
127 atomic_t ref;
128 /* parent cfq_data */
129 struct cfq_data *cfqd;
Jens Axboe22e2c502005-06-27 10:55:12 +0200130 /* cfqq lookup hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 struct hlist_node cfq_hash;
132 /* hash key */
Jens Axboe22e2c502005-06-27 10:55:12 +0200133 unsigned int key;
Jens Axboe981a7972006-07-19 14:56:28 +0200134 /* member of the rr/busy/cur/idle cfqd list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 struct list_head cfq_list;
136 /* sorted list of pending requests */
137 struct rb_root sort_list;
138 /* if fifo isn't expired, next request to serve */
Jens Axboe5e705372006-07-13 12:39:25 +0200139 struct request *next_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* requests queued in sort_list */
141 int queued[2];
142 /* currently allocated requests */
143 int allocated[2];
Jens Axboe374f84a2006-07-23 01:42:19 +0200144 /* pending metadata requests */
145 int meta_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 /* fifo list of requests in sort_list */
Jens Axboe22e2c502005-06-27 10:55:12 +0200147 struct list_head fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Jens Axboe22e2c502005-06-27 10:55:12 +0200149 unsigned long slice_end;
Jens Axboe99f96282007-02-05 11:56:25 +0100150 unsigned long service_last;
Jens Axboec5b680f2007-01-19 11:56:49 +1100151 long slice_resid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Jens Axboe3b181522005-06-27 10:56:24 +0200153 /* number of requests that are on the dispatch list */
154 int on_dispatch[2];
Jens Axboe22e2c502005-06-27 10:55:12 +0200155
156 /* io prio of this group */
157 unsigned short ioprio, org_ioprio;
158 unsigned short ioprio_class, org_ioprio_class;
159
Jens Axboe3b181522005-06-27 10:56:24 +0200160 /* various state flags, see below */
161 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
Jens Axboe3b181522005-06-27 10:56:24 +0200164enum cfqq_state_flags {
Jens Axboeb0b8d742007-01-19 11:35:30 +1100165 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
166 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
167 CFQ_CFQQ_FLAG_must_alloc, /* must be allowed rq alloc */
168 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
169 CFQ_CFQQ_FLAG_must_dispatch, /* must dispatch, even if expired */
170 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
171 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
172 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
173 CFQ_CFQQ_FLAG_queue_new, /* queue never been serviced */
Jens Axboe44f7c162007-01-19 11:51:58 +1100174 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Jens Axboe3b181522005-06-27 10:56:24 +0200175};
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);
Jens Axboe53b03742006-07-28 09:48:51 +0200199CFQ_CFQQ_FNS(queue_new);
Jens Axboe44f7c162007-01-19 11:51:58 +1100200CFQ_CFQQ_FNS(slice_new);
Jens Axboe3b181522005-06-27 10:56:24 +0200201#undef CFQ_CFQQ_FNS
202
Jens Axboe3b181522005-06-27 10:56:24 +0200203static struct cfq_queue *cfq_find_cfq_hash(struct cfq_data *, unsigned int, unsigned short);
Jens Axboe5e705372006-07-13 12:39:25 +0200204static void cfq_dispatch_insert(request_queue_t *, struct request *);
Al Viro6f325a12006-03-18 14:58:37 -0500205static struct cfq_queue *cfq_get_queue(struct cfq_data *cfqd, unsigned int key, struct task_struct *tsk, gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700208 * 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{
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100213 if (cfqd->busy_queues)
Andrew Morton99f95e52005-06-27 20:14:05 -0700214 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
Jens Axboeb4878f22005-10-20 16:42:29 +0200221 return !cfqd->busy_queues;
Andrew Morton99f95e52005-06-27 20:14:05 -0700222}
223
Jens Axboe7749a8d2006-12-13 13:02:26 +0100224static inline pid_t cfq_queue_pid(struct task_struct *task, int rw, int is_sync)
Jens Axboe206dc692006-03-28 13:03:44 +0200225{
Jens Axboe7749a8d2006-12-13 13:02:26 +0100226 /*
227 * Use the per-process queue, for read requests and syncronous writes
228 */
229 if (!(rw & REQ_RW) || is_sync)
Jens Axboe206dc692006-03-28 13:03:44 +0200230 return task->pid;
231
232 return CFQ_KEY_ASYNC;
233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100236 * 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;
Jens Axboec5b680f2007-01-19 11:56:49 +1100254 cfqq->slice_end += cfqq->slice_resid;
255
256 /*
257 * Don't carry over residual for more than one slice, we only want
258 * to slightly correct the fairness. Carrying over forever would
259 * easily introduce oscillations.
260 */
261 cfqq->slice_resid = 0;
Jens Axboe44f7c162007-01-19 11:51:58 +1100262}
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
279/*
Jens Axboe5e705372006-07-13 12:39:25 +0200280 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200282 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 */
Jens Axboe5e705372006-07-13 12:39:25 +0200284static struct request *
285cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 sector_t last, s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200289#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
290#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
291 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Jens Axboe5e705372006-07-13 12:39:25 +0200293 if (rq1 == NULL || rq1 == rq2)
294 return rq2;
295 if (rq2 == NULL)
296 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200297
Jens Axboe5e705372006-07-13 12:39:25 +0200298 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
299 return rq1;
300 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
301 return rq2;
Jens Axboe374f84a2006-07-23 01:42:19 +0200302 if (rq_is_meta(rq1) && !rq_is_meta(rq2))
303 return rq1;
304 else if (rq_is_meta(rq2) && !rq_is_meta(rq1))
305 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Jens Axboe5e705372006-07-13 12:39:25 +0200307 s1 = rq1->sector;
308 s2 = rq2->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 last = cfqd->last_sector;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /*
313 * by definition, 1KiB is 2 sectors
314 */
315 back_max = cfqd->cfq_back_max * 2;
316
317 /*
318 * Strict one way elevator _except_ in the case where we allow
319 * short backward seeks which are biased as twice the cost of a
320 * similar forward seek.
321 */
322 if (s1 >= last)
323 d1 = s1 - last;
324 else if (s1 + back_max >= last)
325 d1 = (last - s1) * cfqd->cfq_back_penalty;
326 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200327 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 if (s2 >= last)
330 d2 = s2 - last;
331 else if (s2 + back_max >= last)
332 d2 = (last - s2) * cfqd->cfq_back_penalty;
333 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200334 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Andreas Mohre8a99052006-03-28 08:59:49 +0200338 /*
339 * By doing switch() on the bit mask "wrap" we avoid having to
340 * check two variables for all permutations: --> faster!
341 */
342 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200343 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200344 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200345 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200346 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200347 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200348 else {
349 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200350 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200351 else
Jens Axboe5e705372006-07-13 12:39:25 +0200352 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200353 }
354
355 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200356 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200357 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200358 return rq2;
359 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200360 default:
361 /*
362 * Since both rqs are wrapped,
363 * start with the one that's further behind head
364 * (--> only *one* back seek required),
365 * since back seek takes more time than forward.
366 */
367 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200368 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 else
Jens Axboe5e705372006-07-13 12:39:25 +0200370 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372}
373
374/*
375 * would be nice to take fifo expire time into account as well
376 */
Jens Axboe5e705372006-07-13 12:39:25 +0200377static struct request *
378cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
379 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Jens Axboe21183b02006-07-13 12:33:14 +0200381 struct rb_node *rbnext = rb_next(&last->rb_node);
382 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200383 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Jens Axboe21183b02006-07-13 12:33:14 +0200385 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200388 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200391 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200392 else {
393 rbnext = rb_first(&cfqq->sort_list);
394 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200395 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Jens Axboe21183b02006-07-13 12:33:14 +0200398 return cfq_choose_req(cfqd, next, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Jens Axboe22e2c502005-06-27 10:55:12 +0200401static void cfq_resort_rr_list(struct cfq_queue *cfqq, int preempted)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Jens Axboe22e2c502005-06-27 10:55:12 +0200403 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe99f96282007-02-05 11:56:25 +0100404 struct list_head *list, *n;
405 struct cfq_queue *__cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Jens Axboe98e41c72007-02-05 11:55:35 +0100407 /*
408 * Resorting requires the cfqq to be on the RR list already.
409 */
410 if (!cfq_cfqq_on_rr(cfqq))
411 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 list_del(&cfqq->cfq_list);
414
Jens Axboe22e2c502005-06-27 10:55:12 +0200415 if (cfq_class_rt(cfqq))
416 list = &cfqd->cur_rr;
417 else if (cfq_class_idle(cfqq))
418 list = &cfqd->idle_rr;
419 else {
420 /*
421 * if cfqq has requests in flight, don't allow it to be
422 * found in cfq_set_active_queue before it has finished them.
423 * this is done to increase fairness between a process that
424 * has lots of io pending vs one that only generates one
425 * sporadically or synchronously
426 */
Jens Axboe3b181522005-06-27 10:56:24 +0200427 if (cfq_cfqq_dispatched(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +0200428 list = &cfqd->busy_rr;
429 else
430 list = &cfqd->rr_list[cfqq->ioprio];
431 }
432
Jens Axboe53b03742006-07-28 09:48:51 +0200433 if (preempted || cfq_cfqq_queue_new(cfqq)) {
Jens Axboe99f96282007-02-05 11:56:25 +0100434 /*
435 * If this queue was preempted or is new (never been serviced),
436 * let it be added first for fairness but beind other new
437 * queues.
438 */
439 n = list;
Jens Axboe53b03742006-07-28 09:48:51 +0200440 while (n->next != list) {
441 __cfqq = list_entry_cfqq(n->next);
442 if (!cfq_cfqq_queue_new(__cfqq))
443 break;
444
445 n = n->next;
446 }
Jens Axboe99f96282007-02-05 11:56:25 +0100447 list_add_tail(&cfqq->cfq_list, n);
448 } else if (!cfq_cfqq_class_sync(cfqq)) {
449 /*
450 * async queue always goes to the end. this wont be overly
451 * unfair to writes, as the sort of the sync queue wont be
452 * allowed to pass the async queue again.
453 */
454 list_add_tail(&cfqq->cfq_list, list);
455 } else {
456 /*
457 * sort by last service, but don't cross a new or async
458 * queue. we don't cross a new queue because it hasn't been
459 * service before, and we don't cross an async queue because
460 * it gets added to the end on expire.
461 */
462 n = list;
463 while ((n = n->prev) != list) {
464 struct cfq_queue *__cfqq = list_entry_cfqq(n);
Jens Axboe53b03742006-07-28 09:48:51 +0200465
Jens Axboe99f96282007-02-05 11:56:25 +0100466 if (!cfq_cfqq_class_sync(cfqq) || !__cfqq->service_last)
467 break;
468 if (time_before(__cfqq->service_last, cfqq->service_last))
469 break;
470 }
471 list_add(&cfqq->cfq_list, n);
Jens Axboe22e2c502005-06-27 10:55:12 +0200472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
475/*
476 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +0200477 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 */
479static inline void
Jens Axboeb4878f22005-10-20 16:42:29 +0200480cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Jens Axboe3b181522005-06-27 10:56:24 +0200482 BUG_ON(cfq_cfqq_on_rr(cfqq));
483 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 cfqd->busy_queues++;
485
Jens Axboeb4878f22005-10-20 16:42:29 +0200486 cfq_resort_rr_list(cfqq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489static inline void
490cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
491{
Jens Axboe3b181522005-06-27 10:56:24 +0200492 BUG_ON(!cfq_cfqq_on_rr(cfqq));
493 cfq_clear_cfqq_on_rr(cfqq);
Jens Axboe981a7972006-07-19 14:56:28 +0200494 list_del_init(&cfqq->cfq_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 BUG_ON(!cfqd->busy_queues);
497 cfqd->busy_queues--;
498}
499
500/*
501 * rb tree support functions
502 */
Jens Axboe5e705372006-07-13 12:39:25 +0200503static inline void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Jens Axboe5e705372006-07-13 12:39:25 +0200505 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +0200506 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5e705372006-07-13 12:39:25 +0200507 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Jens Axboeb4878f22005-10-20 16:42:29 +0200509 BUG_ON(!cfqq->queued[sync]);
510 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Jens Axboe5e705372006-07-13 12:39:25 +0200512 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Jens Axboedd67d052006-06-21 09:36:18 +0200514 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboeb4878f22005-10-20 16:42:29 +0200515 cfq_del_cfqq_rr(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Jens Axboe5e705372006-07-13 12:39:25 +0200518static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Jens Axboe5e705372006-07-13 12:39:25 +0200520 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe21183b02006-07-13 12:33:14 +0200522 struct request *__alias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Jens Axboe5380a102006-07-13 12:37:56 +0200524 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 /*
527 * looks a little odd, but the first insert might return an alias.
528 * if that happens, put the alias on the dispatch list
529 */
Jens Axboe21183b02006-07-13 12:33:14 +0200530 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +0200531 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +0100532
533 if (!cfq_cfqq_on_rr(cfqq))
534 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +0200535
536 /*
537 * check if this request is a better next-serve candidate
538 */
539 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq);
540 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543static inline void
Jens Axboe5e705372006-07-13 12:39:25 +0200544cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Jens Axboe5380a102006-07-13 12:37:56 +0200546 elv_rb_del(&cfqq->sort_list, rq);
547 cfqq->queued[rq_is_sync(rq)]--;
Jens Axboe5e705372006-07-13 12:39:25 +0200548 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Jens Axboe206dc692006-03-28 13:03:44 +0200551static struct request *
552cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Jens Axboe206dc692006-03-28 13:03:44 +0200554 struct task_struct *tsk = current;
Jens Axboe7749a8d2006-12-13 13:02:26 +0100555 pid_t key = cfq_queue_pid(tsk, bio_data_dir(bio), bio_sync(bio));
Jens Axboe206dc692006-03-28 13:03:44 +0200556 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Jens Axboe206dc692006-03-28 13:03:44 +0200558 cfqq = cfq_find_cfq_hash(cfqd, key, tsk->ioprio);
Jens Axboe89850f72006-07-22 16:48:31 +0200559 if (cfqq) {
560 sector_t sector = bio->bi_sector + bio_sectors(bio);
561
Jens Axboe21183b02006-07-13 12:33:14 +0200562 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +0200563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return NULL;
566}
567
Jens Axboeb4878f22005-10-20 16:42:29 +0200568static void cfq_activate_request(request_queue_t *q, struct request *rq)
569{
570 struct cfq_data *cfqd = q->elevator->elevator_data;
571
572 cfqd->rq_in_driver++;
Jens Axboe25776e32006-06-01 10:12:26 +0200573
574 /*
575 * If the depth is larger 1, it really could be queueing. But lets
576 * make the mark a little higher - idling could still be good for
577 * low queueing, and a low queueing number could also just indicate
578 * a SCSI mid layer like behaviour where limit+1 is often seen.
579 */
580 if (!cfqd->hw_tag && cfqd->rq_in_driver > 4)
581 cfqd->hw_tag = 1;
Jens Axboeb4878f22005-10-20 16:42:29 +0200582}
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584static void cfq_deactivate_request(request_queue_t *q, struct request *rq)
585{
Jens Axboe22e2c502005-06-27 10:55:12 +0200586 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Jens Axboeb4878f22005-10-20 16:42:29 +0200588 WARN_ON(!cfqd->rq_in_driver);
589 cfqd->rq_in_driver--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Jens Axboeb4878f22005-10-20 16:42:29 +0200592static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Jens Axboe5e705372006-07-13 12:39:25 +0200594 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +0200595
Jens Axboe5e705372006-07-13 12:39:25 +0200596 if (cfqq->next_rq == rq)
597 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Jens Axboeb4878f22005-10-20 16:42:29 +0200599 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +0200600 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +0200601
602 if (rq_is_meta(rq)) {
603 WARN_ON(!cfqq->meta_pending);
604 cfqq->meta_pending--;
605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608static int
609cfq_merge(request_queue_t *q, struct request **req, struct bio *bio)
610{
611 struct cfq_data *cfqd = q->elevator->elevator_data;
612 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Jens Axboe206dc692006-03-28 13:03:44 +0200614 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +0200615 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +0200616 *req = __rq;
617 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
620 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Jens Axboe21183b02006-07-13 12:33:14 +0200623static void cfq_merged_request(request_queue_t *q, struct request *req,
624 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Jens Axboe21183b02006-07-13 12:33:14 +0200626 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +0200627 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Jens Axboe5e705372006-07-13 12:39:25 +0200629 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633static void
634cfq_merged_requests(request_queue_t *q, struct request *rq,
635 struct request *next)
636{
Jens Axboe22e2c502005-06-27 10:55:12 +0200637 /*
638 * reposition in fifo if next is older than rq
639 */
640 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
641 time_before(next->start_time, rq->start_time))
642 list_move(&rq->queuelist, &next->queuelist);
643
Jens Axboeb4878f22005-10-20 16:42:29 +0200644 cfq_remove_request(next);
Jens Axboe22e2c502005-06-27 10:55:12 +0200645}
646
Jens Axboeda775262006-12-20 11:04:12 +0100647static int cfq_allow_merge(request_queue_t *q, struct request *rq,
648 struct bio *bio)
649{
650 struct cfq_data *cfqd = q->elevator->elevator_data;
651 const int rw = bio_data_dir(bio);
652 struct cfq_queue *cfqq;
653 pid_t key;
654
655 /*
Jens Axboeec8acb62007-01-02 18:32:11 +0100656 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +0100657 */
Jens Axboeec8acb62007-01-02 18:32:11 +0100658 if ((bio_data_dir(bio) == READ || bio_sync(bio)) && !rq_is_sync(rq))
Jens Axboeda775262006-12-20 11:04:12 +0100659 return 0;
660
661 /*
Jens Axboe719d3402006-12-22 09:38:53 +0100662 * Lookup the cfqq that this bio will be queued with. Allow
663 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +0100664 */
Jens Axboe719d3402006-12-22 09:38:53 +0100665 key = cfq_queue_pid(current, rw, bio_sync(bio));
Jens Axboeda775262006-12-20 11:04:12 +0100666 cfqq = cfq_find_cfq_hash(cfqd, key, current->ioprio);
Jens Axboe719d3402006-12-22 09:38:53 +0100667
668 if (cfqq == RQ_CFQQ(rq))
669 return 1;
Jens Axboeda775262006-12-20 11:04:12 +0100670
Jens Axboeec8acb62007-01-02 18:32:11 +0100671 return 0;
Jens Axboeda775262006-12-20 11:04:12 +0100672}
673
Jens Axboe22e2c502005-06-27 10:55:12 +0200674static inline void
675__cfq_set_active_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
676{
677 if (cfqq) {
678 /*
679 * stop potential idle class queues waiting service
680 */
681 del_timer(&cfqd->idle_class_timer);
682
Jens Axboe22e2c502005-06-27 10:55:12 +0200683 cfqq->slice_end = 0;
Jens Axboe3b181522005-06-27 10:56:24 +0200684 cfq_clear_cfqq_must_alloc_slice(cfqq);
685 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +1100686 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200687 }
688
689 cfqd->active_queue = cfqq;
690}
691
692/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100693 * current cfqq expired its slice (or was too idle), select new one
694 */
695static void
696__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe3c6bd2f2007-01-19 12:06:33 +1100697 int preempted, int timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100698{
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100699 if (cfq_cfqq_wait_request(cfqq))
700 del_timer(&cfqd->idle_slice_timer);
701
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100702 cfq_clear_cfqq_must_dispatch(cfqq);
703 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboe53b03742006-07-28 09:48:51 +0200704 cfq_clear_cfqq_queue_new(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100705
706 /*
707 * store what was left of this slice, if the queue idled out
708 * or was preempted
709 */
Jens Axboe3c6bd2f2007-01-19 12:06:33 +1100710 if (timed_out && !cfq_cfqq_slice_new(cfqq))
Jens Axboec5b680f2007-01-19 11:56:49 +1100711 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100712
Jens Axboe98e41c72007-02-05 11:55:35 +0100713 cfq_resort_rr_list(cfqq, preempted);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100714
715 if (cfqq == cfqd->active_queue)
716 cfqd->active_queue = NULL;
717
718 if (cfqd->active_cic) {
719 put_io_context(cfqd->active_cic->ioc);
720 cfqd->active_cic = NULL;
721 }
722
723 cfqd->dispatch_slice = 0;
724}
725
Jens Axboe3c6bd2f2007-01-19 12:06:33 +1100726static inline void cfq_slice_expired(struct cfq_data *cfqd, int preempted,
727 int timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100728{
729 struct cfq_queue *cfqq = cfqd->active_queue;
730
731 if (cfqq)
Jens Axboe3c6bd2f2007-01-19 12:06:33 +1100732 __cfq_slice_expired(cfqd, cfqq, preempted, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100733}
734
735/*
Jens Axboe22e2c502005-06-27 10:55:12 +0200736 * 0
737 * 0,1
738 * 0,1,2
739 * 0,1,2,3
740 * 0,1,2,3,4
741 * 0,1,2,3,4,5
742 * 0,1,2,3,4,5,6
743 * 0,1,2,3,4,5,6,7
744 */
745static int cfq_get_next_prio_level(struct cfq_data *cfqd)
746{
747 int prio, wrap;
748
749 prio = -1;
750 wrap = 0;
751 do {
752 int p;
753
754 for (p = cfqd->cur_prio; p <= cfqd->cur_end_prio; p++) {
755 if (!list_empty(&cfqd->rr_list[p])) {
756 prio = p;
757 break;
758 }
759 }
760
761 if (prio != -1)
762 break;
763 cfqd->cur_prio = 0;
764 if (++cfqd->cur_end_prio == CFQ_PRIO_LISTS) {
765 cfqd->cur_end_prio = 0;
766 if (wrap)
767 break;
768 wrap = 1;
769 }
770 } while (1);
771
772 if (unlikely(prio == -1))
773 return -1;
774
775 BUG_ON(prio >= CFQ_PRIO_LISTS);
776
777 list_splice_init(&cfqd->rr_list[prio], &cfqd->cur_rr);
778
779 cfqd->cur_prio = prio + 1;
780 if (cfqd->cur_prio > cfqd->cur_end_prio) {
781 cfqd->cur_end_prio = cfqd->cur_prio;
782 cfqd->cur_prio = 0;
783 }
784 if (cfqd->cur_end_prio == CFQ_PRIO_LISTS) {
785 cfqd->cur_prio = 0;
786 cfqd->cur_end_prio = 0;
787 }
788
789 return prio;
790}
791
Jens Axboe3b181522005-06-27 10:56:24 +0200792static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +0200793{
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100794 struct cfq_queue *cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +0200795
Jens Axboe89850f72006-07-22 16:48:31 +0200796 if (!list_empty(&cfqd->cur_rr) || cfq_get_next_prio_level(cfqd) != -1) {
797 /*
798 * if current list is non-empty, grab first entry. if it is
799 * empty, get next prio level and grab first entry then if any
800 * are spliced
801 */
Jens Axboe22e2c502005-06-27 10:55:12 +0200802 cfqq = list_entry_cfqq(cfqd->cur_rr.next);
Jens Axboe89850f72006-07-22 16:48:31 +0200803 } else if (!list_empty(&cfqd->busy_rr)) {
804 /*
805 * If no new queues are available, check if the busy list has
806 * some before falling back to idle io.
807 */
Jens Axboee0de0202006-06-01 10:07:26 +0200808 cfqq = list_entry_cfqq(cfqd->busy_rr.next);
Jens Axboe89850f72006-07-22 16:48:31 +0200809 } else if (!list_empty(&cfqd->idle_rr)) {
810 /*
811 * if we have idle queues and no rt or be queues had pending
812 * requests, either allow immediate service if the grace period
813 * has passed or arm the idle grace timer
814 */
Jens Axboe22e2c502005-06-27 10:55:12 +0200815 unsigned long end = cfqd->last_end_request + CFQ_IDLE_GRACE;
816
817 if (time_after_eq(jiffies, end))
818 cfqq = list_entry_cfqq(cfqd->idle_rr.next);
819 else
820 mod_timer(&cfqd->idle_class_timer, end);
821 }
822
823 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +0200824 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200825}
826
Jens Axboecaaa5f92006-06-16 11:23:00 +0200827#define CIC_SEEKY(cic) ((cic)->seek_mean > (128 * 1024))
828
Jens Axboe17926692007-01-19 11:59:30 +1100829static int cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +0200830{
Jens Axboe17926692007-01-19 11:59:30 +1100831 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +0200832 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100833 unsigned long sl;
834
Jens Axboedd67d052006-06-21 09:36:18 +0200835 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +0200836
837 /*
838 * idle is disabled, either manually or by past process history
839 */
840 if (!cfqd->cfq_slice_idle)
841 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +0200842 if (!cfq_cfqq_idle_window(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +0200843 return 0;
844 /*
845 * task has exited, don't wait
846 */
Jens Axboe206dc692006-03-28 13:03:44 +0200847 cic = cfqd->active_cic;
848 if (!cic || !cic->ioc->task)
Jens Axboe22e2c502005-06-27 10:55:12 +0200849 return 0;
850
Jens Axboe3b181522005-06-27 10:56:24 +0200851 cfq_mark_cfqq_must_dispatch(cfqq);
852 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200853
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100854 sl = min(cfqq->slice_end - 1, (unsigned long) cfqd->cfq_slice_idle);
Jens Axboe206dc692006-03-28 13:03:44 +0200855
856 /*
857 * we don't want to idle for seeks, but we do want to allow
858 * fair distribution of slice time for a process doing back-to-back
859 * seeks. so allow a little bit of time for him to submit a new rq
860 */
Jens Axboecaaa5f92006-06-16 11:23:00 +0200861 if (sample_valid(cic->seek_samples) && CIC_SEEKY(cic))
Jens Axboe44eb1232006-07-25 15:05:21 +0200862 sl = min(sl, msecs_to_jiffies(2));
Jens Axboe206dc692006-03-28 13:03:44 +0200863
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100864 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Jens Axboe22e2c502005-06-27 10:55:12 +0200865 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
Jens Axboe5e705372006-07-13 12:39:25 +0200868static void cfq_dispatch_insert(request_queue_t *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Jens Axboe5e705372006-07-13 12:39:25 +0200870 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200871
Jens Axboe5380a102006-07-13 12:37:56 +0200872 cfq_remove_request(rq);
873 cfqq->on_dispatch[rq_is_sync(rq)]++;
874 elv_dispatch_sort(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
877/*
878 * return expired entry, or NULL to just start from scratch in rbtree
879 */
Jens Axboe5e705372006-07-13 12:39:25 +0200880static inline struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe22e2c502005-06-27 10:55:12 +0200883 struct request *rq;
Jens Axboe89850f72006-07-22 16:48:31 +0200884 int fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Jens Axboe3b181522005-06-27 10:56:24 +0200886 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +1100888
889 cfq_mark_cfqq_fifo_expire(cfqq);
890
Jens Axboe89850f72006-07-22 16:48:31 +0200891 if (list_empty(&cfqq->fifo))
892 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Jens Axboe89850f72006-07-22 16:48:31 +0200894 fifo = cfq_cfqq_class_sync(cfqq);
895 rq = rq_entry_fifo(cfqq->fifo.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Jens Axboecb887412007-01-19 12:01:16 +1100897 if (time_after(jiffies, rq->start_time + cfqd->cfq_fifo_expire[fifo]))
Jens Axboe89850f72006-07-22 16:48:31 +0200898 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 return NULL;
901}
902
Jens Axboe22e2c502005-06-27 10:55:12 +0200903static 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;
907
908 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
909
910 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
911}
912
913/*
914 * get next queue for service
915 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +0100916static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +0200917{
Jens Axboe22e2c502005-06-27 10:55:12 +0200918 struct cfq_queue *cfqq;
919
920 cfqq = cfqd->active_queue;
921 if (!cfqq)
922 goto new_queue;
923
924 /*
925 * slice has expired
926 */
Jens Axboe44f7c162007-01-19 11:51:58 +1100927 if (!cfq_cfqq_must_dispatch(cfqq) && cfq_slice_used(cfqq))
Jens Axboe3b181522005-06-27 10:56:24 +0200928 goto expire;
Jens Axboe22e2c502005-06-27 10:55:12 +0200929
930 /*
931 * if queue has requests, dispatch one. if not, check if
932 * enough slice is left to wait for one
933 */
Jens Axboedd67d052006-06-21 09:36:18 +0200934 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +0200935 goto keep_queue;
Jens Axboe44f7c162007-01-19 11:51:58 +1100936 else if (cfq_cfqq_slice_new(cfqq) || cfq_cfqq_dispatched(cfqq)) {
Jens Axboecaaa5f92006-06-16 11:23:00 +0200937 cfqq = NULL;
938 goto keep_queue;
939 } else if (cfq_cfqq_class_sync(cfqq)) {
Jens Axboe17926692007-01-19 11:59:30 +1100940 if (cfq_arm_slice_timer(cfqd))
Jens Axboe22e2c502005-06-27 10:55:12 +0200941 return NULL;
942 }
943
Jens Axboe3b181522005-06-27 10:56:24 +0200944expire:
Jens Axboe3c6bd2f2007-01-19 12:06:33 +1100945 cfq_slice_expired(cfqd, 0, 0);
Jens Axboe3b181522005-06-27 10:56:24 +0200946new_queue:
947 cfqq = cfq_set_active_queue(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +0200948keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +0200949 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200950}
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
Jens Axboedd67d052006-06-21 09:36:18 +0200958 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +0200959
960 do {
Jens Axboe5e705372006-07-13 12:39:25 +0200961 struct request *rq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200962
963 /*
964 * follow expired path, else get first next available
965 */
Jens Axboe5e705372006-07-13 12:39:25 +0200966 if ((rq = cfq_check_fifo(cfqq)) == NULL)
967 rq = cfqq->next_rq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200968
969 /*
970 * finally, insert request into driver dispatch list
971 */
Jens Axboe5e705372006-07-13 12:39:25 +0200972 cfq_dispatch_insert(cfqd->queue, rq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200973
974 cfqd->dispatch_slice++;
975 dispatched++;
976
977 if (!cfqd->active_cic) {
Jens Axboe5e705372006-07-13 12:39:25 +0200978 atomic_inc(&RQ_CIC(rq)->ioc->refcount);
979 cfqd->active_cic = RQ_CIC(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200980 }
981
Jens Axboedd67d052006-06-21 09:36:18 +0200982 if (RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +0200983 break;
984
985 } while (dispatched < max_dispatch);
986
987 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200988 * expire an async queue immediately if it has used up its slice. idle
989 * queue always expire after 1 dispatch round.
990 */
Jens Axboea9938002007-04-20 08:55:52 +0200991 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
Jens Axboe22e2c502005-06-27 10:55:12 +0200992 cfqd->dispatch_slice >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
Jens Axboea9938002007-04-20 08:55:52 +0200993 cfq_class_idle(cfqq))) {
Jens Axboe44f7c162007-01-19 11:51:58 +1100994 cfqq->slice_end = jiffies + 1;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +1100995 cfq_slice_expired(cfqd, 0, 0);
Jens Axboe44f7c162007-01-19 11:51:58 +1100996 }
Jens Axboe22e2c502005-06-27 10:55:12 +0200997
998 return dispatched;
999}
1000
1001static int
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001002cfq_forced_dispatch_cfqqs(struct list_head *list)
1003{
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001004 struct cfq_queue *cfqq, *next;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001005 int dispatched;
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001006
Jens Axboecaaa5f92006-06-16 11:23:00 +02001007 dispatched = 0;
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001008 list_for_each_entry_safe(cfqq, next, list, cfq_list) {
Jens Axboe5e705372006-07-13 12:39:25 +02001009 while (cfqq->next_rq) {
1010 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001011 dispatched++;
1012 }
1013 BUG_ON(!list_empty(&cfqq->fifo));
1014 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02001015
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001016 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
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11001031 cfq_slice_expired(cfqd, 0, 0);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001032
1033 BUG_ON(cfqd->busy_queues);
1034
1035 return dispatched;
1036}
1037
1038static int
Jens Axboeb4878f22005-10-20 16:42:29 +02001039cfq_dispatch_requests(request_queue_t *q, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001042 struct cfq_queue *cfqq, *prev_cfqq;
1043 int dispatched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Jens Axboe22e2c502005-06-27 10:55:12 +02001045 if (!cfqd->busy_queues)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return 0;
1047
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001048 if (unlikely(force))
1049 return cfq_forced_dispatch(cfqd);
1050
Jens Axboecaaa5f92006-06-16 11:23:00 +02001051 dispatched = 0;
1052 prev_cfqq = NULL;
1053 while ((cfqq = cfq_select_queue(cfqd)) != NULL) {
Jens Axboeb4878f22005-10-20 16:42:29 +02001054 int max_dispatch;
1055
Jens Axboea9938002007-04-20 08:55:52 +02001056 if (cfqd->busy_queues > 1) {
1057 /*
1058 * Don't repeat dispatch from the previous queue.
1059 */
1060 if (prev_cfqq == cfqq)
1061 break;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001062
Jens Axboea9938002007-04-20 08:55:52 +02001063 /*
1064 * So we have dispatched before in this round, if the
1065 * next queue has idling enabled (must be sync), don't
1066 * allow it service until the previous have continued.
1067 */
1068 if (cfqd->rq_in_driver && cfq_cfqq_idle_window(cfqq))
1069 break;
1070 }
Jens Axboe9ede2092007-01-19 12:11:44 +11001071
Jens Axboe3b181522005-06-27 10:56:24 +02001072 cfq_clear_cfqq_must_dispatch(cfqq);
1073 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001074 del_timer(&cfqd->idle_slice_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001076 max_dispatch = cfqd->cfq_quantum;
1077 if (cfq_class_idle(cfqq))
1078 max_dispatch = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Jens Axboecaaa5f92006-06-16 11:23:00 +02001080 dispatched += __cfq_dispatch_requests(cfqd, cfqq, max_dispatch);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001081 prev_cfqq = cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083
Jens Axboecaaa5f92006-06-16 11:23:00 +02001084 return dispatched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087/*
Jens Axboe5e705372006-07-13 12:39:25 +02001088 * task holds one reference to the queue, dropped when task exits. each rq
1089 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 *
1091 * queue lock must be held here.
1092 */
1093static void cfq_put_queue(struct cfq_queue *cfqq)
1094{
Jens Axboe22e2c502005-06-27 10:55:12 +02001095 struct cfq_data *cfqd = cfqq->cfqd;
1096
1097 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 if (!atomic_dec_and_test(&cfqq->ref))
1100 return;
1101
1102 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02001103 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Jens Axboe3b181522005-06-27 10:56:24 +02001104 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001106 if (unlikely(cfqd->active_queue == cfqq)) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11001107 __cfq_slice_expired(cfqd, cfqq, 0, 0);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001108 cfq_schedule_dispatch(cfqd);
1109 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 /*
1112 * it's on the empty list and still hashed
1113 */
1114 list_del(&cfqq->cfq_list);
1115 hlist_del(&cfqq->cfq_hash);
1116 kmem_cache_free(cfq_pool, cfqq);
1117}
1118
Jens Axboe1ea25ec2006-07-18 22:24:11 +02001119static struct cfq_queue *
Jens Axboe3b181522005-06-27 10:56:24 +02001120__cfq_find_cfq_hash(struct cfq_data *cfqd, unsigned int key, unsigned int prio,
1121 const int hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
1123 struct hlist_head *hash_list = &cfqd->cfq_hash[hashval];
Jens Axboe206dc692006-03-28 13:03:44 +02001124 struct hlist_node *entry;
1125 struct cfq_queue *__cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Jens Axboe206dc692006-03-28 13:03:44 +02001127 hlist_for_each_entry(__cfqq, entry, hash_list, cfq_hash) {
Al Virob0a69162006-03-14 15:32:50 -05001128 const unsigned short __p = IOPRIO_PRIO_VALUE(__cfqq->org_ioprio_class, __cfqq->org_ioprio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Jens Axboe206dc692006-03-28 13:03:44 +02001130 if (__cfqq->key == key && (__p == prio || !prio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return __cfqq;
1132 }
1133
1134 return NULL;
1135}
1136
1137static struct cfq_queue *
Jens Axboe3b181522005-06-27 10:56:24 +02001138cfq_find_cfq_hash(struct cfq_data *cfqd, unsigned int key, unsigned short prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Jens Axboe3b181522005-06-27 10:56:24 +02001140 return __cfq_find_cfq_hash(cfqd, key, prio, hash_long(key, CFQ_QHASH_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
Jens Axboee2d74ac2006-03-28 08:59:01 +02001143static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Jens Axboe22e2c502005-06-27 10:55:12 +02001145 struct cfq_io_context *__cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001146 struct rb_node *n;
1147 int freed = 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001148
Jens Axboee2d74ac2006-03-28 08:59:01 +02001149 while ((n = rb_first(&ioc->cic_root)) != NULL) {
1150 __cic = rb_entry(n, struct cfq_io_context, rb_node);
1151 rb_erase(&__cic->rb_node, &ioc->cic_root);
Jens Axboe22e2c502005-06-27 10:55:12 +02001152 kmem_cache_free(cfq_ioc_pool, __cic);
Al Viro334e94d2006-03-18 15:05:53 -05001153 freed++;
Jens Axboe22e2c502005-06-27 10:55:12 +02001154 }
1155
Jens Axboe4050cf12006-07-19 05:07:12 +02001156 elv_ioc_count_mod(ioc_count, -freed);
1157
1158 if (ioc_gone && !elv_ioc_count_read(ioc_count))
Al Viro334e94d2006-03-18 15:05:53 -05001159 complete(ioc_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Jens Axboe89850f72006-07-22 16:48:31 +02001162static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1163{
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001164 if (unlikely(cfqq == cfqd->active_queue)) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11001165 __cfq_slice_expired(cfqd, cfqq, 0, 0);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001166 cfq_schedule_dispatch(cfqd);
1167 }
Jens Axboe89850f72006-07-22 16:48:31 +02001168
1169 cfq_put_queue(cfqq);
1170}
1171
1172static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
1173 struct cfq_io_context *cic)
1174{
Jens Axboefc463792006-08-29 09:05:44 +02001175 list_del_init(&cic->queue_list);
1176 smp_wmb();
1177 cic->key = NULL;
1178
Jens Axboe89850f72006-07-22 16:48:31 +02001179 if (cic->cfqq[ASYNC]) {
1180 cfq_exit_cfqq(cfqd, cic->cfqq[ASYNC]);
1181 cic->cfqq[ASYNC] = NULL;
1182 }
1183
1184 if (cic->cfqq[SYNC]) {
1185 cfq_exit_cfqq(cfqd, cic->cfqq[SYNC]);
1186 cic->cfqq[SYNC] = NULL;
1187 }
Jens Axboe89850f72006-07-22 16:48:31 +02001188}
1189
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191/*
Jens Axboe22e2c502005-06-27 10:55:12 +02001192 * Called with interrupts disabled
1193 */
1194static void cfq_exit_single_io_context(struct cfq_io_context *cic)
1195{
Al Viro478a82b2006-03-18 13:25:24 -05001196 struct cfq_data *cfqd = cic->key;
Jens Axboe22e2c502005-06-27 10:55:12 +02001197
Jens Axboe89850f72006-07-22 16:48:31 +02001198 if (cfqd) {
1199 request_queue_t *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001200
Jens Axboefc463792006-08-29 09:05:44 +02001201 spin_lock_irq(q->queue_lock);
Jens Axboe89850f72006-07-22 16:48:31 +02001202 __cfq_exit_single_io_context(cfqd, cic);
Jens Axboefc463792006-08-29 09:05:44 +02001203 spin_unlock_irq(q->queue_lock);
Al Viro12a05732006-03-18 13:38:01 -05001204 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001205}
1206
Jens Axboee2d74ac2006-03-28 08:59:01 +02001207static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Jens Axboe22e2c502005-06-27 10:55:12 +02001209 struct cfq_io_context *__cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001210 struct rb_node *n;
Jens Axboe22e2c502005-06-27 10:55:12 +02001211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 /*
1213 * put the reference this task is holding to the various queues
1214 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02001215
1216 n = rb_first(&ioc->cic_root);
1217 while (n != NULL) {
1218 __cic = rb_entry(n, struct cfq_io_context, rb_node);
1219
Jens Axboe22e2c502005-06-27 10:55:12 +02001220 cfq_exit_single_io_context(__cic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001221 n = rb_next(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
Jens Axboe22e2c502005-06-27 10:55:12 +02001225static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04001226cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Jens Axboeb5deef92006-07-19 23:39:40 +02001228 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Jens Axboeb5deef92006-07-19 23:39:40 +02001230 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask, cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (cic) {
Jens Axboe553698f2006-06-14 19:11:57 +02001232 memset(cic, 0, sizeof(*cic));
Jens Axboe22e2c502005-06-27 10:55:12 +02001233 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02001234 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001235 cic->dtor = cfq_free_io_context;
1236 cic->exit = cfq_exit_io_context;
Jens Axboe4050cf12006-07-19 05:07:12 +02001237 elv_ioc_count_inc(ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
1240 return cic;
1241}
1242
Jens Axboe22e2c502005-06-27 10:55:12 +02001243static void cfq_init_prio_data(struct cfq_queue *cfqq)
1244{
1245 struct task_struct *tsk = current;
1246 int ioprio_class;
1247
Jens Axboe3b181522005-06-27 10:56:24 +02001248 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001249 return;
1250
1251 ioprio_class = IOPRIO_PRIO_CLASS(tsk->ioprio);
1252 switch (ioprio_class) {
1253 default:
1254 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
1255 case IOPRIO_CLASS_NONE:
1256 /*
1257 * no prio set, place us in the middle of the BE classes
1258 */
1259 cfqq->ioprio = task_nice_ioprio(tsk);
1260 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1261 break;
1262 case IOPRIO_CLASS_RT:
1263 cfqq->ioprio = task_ioprio(tsk);
1264 cfqq->ioprio_class = IOPRIO_CLASS_RT;
1265 break;
1266 case IOPRIO_CLASS_BE:
1267 cfqq->ioprio = task_ioprio(tsk);
1268 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1269 break;
1270 case IOPRIO_CLASS_IDLE:
1271 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
1272 cfqq->ioprio = 7;
Jens Axboe3b181522005-06-27 10:56:24 +02001273 cfq_clear_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001274 break;
1275 }
1276
1277 /*
1278 * keep track of original prio settings in case we have to temporarily
1279 * elevate the priority of this queue
1280 */
1281 cfqq->org_ioprio = cfqq->ioprio;
1282 cfqq->org_ioprio_class = cfqq->ioprio_class;
1283
Jens Axboe98e41c72007-02-05 11:55:35 +01001284 cfq_resort_rr_list(cfqq, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02001285 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001286}
1287
Al Viro478a82b2006-03-18 13:25:24 -05001288static inline void changed_ioprio(struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02001289{
Al Viro478a82b2006-03-18 13:25:24 -05001290 struct cfq_data *cfqd = cic->key;
1291 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01001292 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02001293
Jens Axboecaaa5f92006-06-16 11:23:00 +02001294 if (unlikely(!cfqd))
1295 return;
1296
Jens Axboec1b707d2006-10-30 19:54:23 +01001297 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001298
1299 cfqq = cic->cfqq[ASYNC];
1300 if (cfqq) {
1301 struct cfq_queue *new_cfqq;
1302 new_cfqq = cfq_get_queue(cfqd, CFQ_KEY_ASYNC, cic->ioc->task,
1303 GFP_ATOMIC);
1304 if (new_cfqq) {
1305 cic->cfqq[ASYNC] = new_cfqq;
1306 cfq_put_queue(cfqq);
1307 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001308 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02001309
1310 cfqq = cic->cfqq[SYNC];
1311 if (cfqq)
1312 cfq_mark_cfqq_prio_changed(cfqq);
1313
Jens Axboec1b707d2006-10-30 19:54:23 +01001314 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02001315}
1316
Jens Axboefc463792006-08-29 09:05:44 +02001317static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Al Viroa6a07632006-03-18 13:26:44 -05001319 struct cfq_io_context *cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001320 struct rb_node *n;
Al Viroa6a07632006-03-18 13:26:44 -05001321
Jens Axboefc463792006-08-29 09:05:44 +02001322 ioc->ioprio_changed = 0;
Al Viroa6a07632006-03-18 13:26:44 -05001323
Jens Axboee2d74ac2006-03-28 08:59:01 +02001324 n = rb_first(&ioc->cic_root);
1325 while (n != NULL) {
1326 cic = rb_entry(n, struct cfq_io_context, rb_node);
Jens Axboe3793c652006-05-30 21:11:04 +02001327
Al Viro478a82b2006-03-18 13:25:24 -05001328 changed_ioprio(cic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001329 n = rb_next(n);
1330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
1333static struct cfq_queue *
Al Viro6f325a12006-03-18 14:58:37 -05001334cfq_get_queue(struct cfq_data *cfqd, unsigned int key, struct task_struct *tsk,
Al Viro8267e262005-10-21 03:20:53 -04001335 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
1337 const int hashval = hash_long(key, CFQ_QHASH_SHIFT);
1338 struct cfq_queue *cfqq, *new_cfqq = NULL;
Al Viro6f325a12006-03-18 14:58:37 -05001339 unsigned short ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341retry:
Al Viro6f325a12006-03-18 14:58:37 -05001342 ioprio = tsk->ioprio;
Jens Axboe3b181522005-06-27 10:56:24 +02001343 cfqq = __cfq_find_cfq_hash(cfqd, key, ioprio, hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 if (!cfqq) {
1346 if (new_cfqq) {
1347 cfqq = new_cfqq;
1348 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001349 } else if (gfp_mask & __GFP_WAIT) {
Jens Axboe89850f72006-07-22 16:48:31 +02001350 /*
1351 * Inform the allocator of the fact that we will
1352 * just repeat this allocation if it fails, to allow
1353 * the allocator to do whatever it needs to attempt to
1354 * free memory.
1355 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 spin_unlock_irq(cfqd->queue->queue_lock);
Jens Axboeb5deef92006-07-19 23:39:40 +02001357 new_cfqq = kmem_cache_alloc_node(cfq_pool, gfp_mask|__GFP_NOFAIL, cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 spin_lock_irq(cfqd->queue->queue_lock);
1359 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02001360 } else {
Jens Axboeb5deef92006-07-19 23:39:40 +02001361 cfqq = kmem_cache_alloc_node(cfq_pool, gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02001362 if (!cfqq)
1363 goto out;
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02001364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 memset(cfqq, 0, sizeof(*cfqq));
1367
1368 INIT_HLIST_NODE(&cfqq->cfq_hash);
1369 INIT_LIST_HEAD(&cfqq->cfq_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001370 INIT_LIST_HEAD(&cfqq->fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 cfqq->key = key;
1373 hlist_add_head(&cfqq->cfq_hash, &cfqd->cfq_hash[hashval]);
1374 atomic_set(&cfqq->ref, 0);
1375 cfqq->cfqd = cfqd;
Jens Axboec5b680f2007-01-19 11:56:49 +11001376
Jens Axboea9938002007-04-20 08:55:52 +02001377 if (key != CFQ_KEY_ASYNC)
1378 cfq_mark_cfqq_idle_window(cfqq);
1379
Jens Axboe3b181522005-06-27 10:56:24 +02001380 cfq_mark_cfqq_prio_changed(cfqq);
Jens Axboe53b03742006-07-28 09:48:51 +02001381 cfq_mark_cfqq_queue_new(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001382 cfq_init_prio_data(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384
1385 if (new_cfqq)
1386 kmem_cache_free(cfq_pool, new_cfqq);
1387
1388 atomic_inc(&cfqq->ref);
1389out:
1390 WARN_ON((gfp_mask & __GFP_WAIT) && !cfqq);
1391 return cfqq;
1392}
1393
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001394static void
1395cfq_drop_dead_cic(struct io_context *ioc, struct cfq_io_context *cic)
1396{
Jens Axboefc463792006-08-29 09:05:44 +02001397 WARN_ON(!list_empty(&cic->queue_list));
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001398 rb_erase(&cic->rb_node, &ioc->cic_root);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001399 kmem_cache_free(cfq_ioc_pool, cic);
Jens Axboe4050cf12006-07-19 05:07:12 +02001400 elv_ioc_count_dec(ioc_count);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001401}
1402
Jens Axboee2d74ac2006-03-28 08:59:01 +02001403static struct cfq_io_context *
1404cfq_cic_rb_lookup(struct cfq_data *cfqd, struct io_context *ioc)
1405{
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001406 struct rb_node *n;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001407 struct cfq_io_context *cic;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001408 void *k, *key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001409
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001410restart:
1411 n = ioc->cic_root.rb_node;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001412 while (n) {
1413 cic = rb_entry(n, struct cfq_io_context, rb_node);
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001414 /* ->key must be copied to avoid race with cfq_exit_queue() */
1415 k = cic->key;
1416 if (unlikely(!k)) {
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001417 cfq_drop_dead_cic(ioc, cic);
1418 goto restart;
1419 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001420
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001421 if (key < k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001422 n = n->rb_left;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001423 else if (key > k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001424 n = n->rb_right;
1425 else
1426 return cic;
1427 }
1428
1429 return NULL;
1430}
1431
1432static inline void
1433cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
1434 struct cfq_io_context *cic)
1435{
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001436 struct rb_node **p;
1437 struct rb_node *parent;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001438 struct cfq_io_context *__cic;
Jens Axboe0261d682006-10-30 19:07:48 +01001439 unsigned long flags;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001440 void *k;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001441
Jens Axboee2d74ac2006-03-28 08:59:01 +02001442 cic->ioc = ioc;
1443 cic->key = cfqd;
1444
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001445restart:
1446 parent = NULL;
1447 p = &ioc->cic_root.rb_node;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001448 while (*p) {
1449 parent = *p;
1450 __cic = rb_entry(parent, struct cfq_io_context, rb_node);
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001451 /* ->key must be copied to avoid race with cfq_exit_queue() */
1452 k = __cic->key;
1453 if (unlikely(!k)) {
Oleg Nesterovbe33c3a2006-08-21 08:36:12 +02001454 cfq_drop_dead_cic(ioc, __cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001455 goto restart;
1456 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001457
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001458 if (cic->key < k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001459 p = &(*p)->rb_left;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001460 else if (cic->key > k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001461 p = &(*p)->rb_right;
1462 else
1463 BUG();
1464 }
1465
1466 rb_link_node(&cic->rb_node, parent, p);
1467 rb_insert_color(&cic->rb_node, &ioc->cic_root);
Jens Axboefc463792006-08-29 09:05:44 +02001468
Jens Axboe0261d682006-10-30 19:07:48 +01001469 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001470 list_add(&cic->queue_list, &cfqd->cic_list);
Jens Axboe0261d682006-10-30 19:07:48 +01001471 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001472}
1473
Jens Axboe22e2c502005-06-27 10:55:12 +02001474/*
1475 * Setup general io context and cfq io context. There can be several cfq
1476 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02001477 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02001478 */
1479static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02001480cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
Jens Axboe22e2c502005-06-27 10:55:12 +02001482 struct io_context *ioc = NULL;
1483 struct cfq_io_context *cic;
1484
1485 might_sleep_if(gfp_mask & __GFP_WAIT);
1486
Jens Axboeb5deef92006-07-19 23:39:40 +02001487 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02001488 if (!ioc)
1489 return NULL;
1490
Jens Axboee2d74ac2006-03-28 08:59:01 +02001491 cic = cfq_cic_rb_lookup(cfqd, ioc);
1492 if (cic)
1493 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02001494
Jens Axboee2d74ac2006-03-28 08:59:01 +02001495 cic = cfq_alloc_io_context(cfqd, gfp_mask);
1496 if (cic == NULL)
1497 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02001498
Jens Axboee2d74ac2006-03-28 08:59:01 +02001499 cfq_cic_link(cfqd, ioc, cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02001500out:
Jens Axboefc463792006-08-29 09:05:44 +02001501 smp_read_barrier_depends();
1502 if (unlikely(ioc->ioprio_changed))
1503 cfq_ioc_set_ioprio(ioc);
1504
Jens Axboe22e2c502005-06-27 10:55:12 +02001505 return cic;
1506err:
1507 put_io_context(ioc);
1508 return NULL;
1509}
1510
1511static void
1512cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
1513{
Jens Axboeaaf12282007-01-19 11:30:16 +11001514 unsigned long elapsed = jiffies - cic->last_end_request;
1515 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02001516
1517 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
1518 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
1519 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
1520}
1521
Jens Axboe206dc692006-03-28 13:03:44 +02001522static void
Jens Axboebb37b942006-12-01 10:42:33 +01001523cfq_update_io_seektime(struct cfq_io_context *cic, struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02001524{
1525 sector_t sdist;
1526 u64 total;
1527
Jens Axboe5e705372006-07-13 12:39:25 +02001528 if (cic->last_request_pos < rq->sector)
1529 sdist = rq->sector - cic->last_request_pos;
Jens Axboe206dc692006-03-28 13:03:44 +02001530 else
Jens Axboe5e705372006-07-13 12:39:25 +02001531 sdist = cic->last_request_pos - rq->sector;
Jens Axboe206dc692006-03-28 13:03:44 +02001532
1533 /*
1534 * Don't allow the seek distance to get too large from the
1535 * odd fragment, pagein, etc
1536 */
1537 if (cic->seek_samples <= 60) /* second&third seek */
1538 sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*1024);
1539 else
1540 sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*64);
1541
1542 cic->seek_samples = (7*cic->seek_samples + 256) / 8;
1543 cic->seek_total = (7*cic->seek_total + (u64)256*sdist) / 8;
1544 total = cic->seek_total + (cic->seek_samples/2);
1545 do_div(total, cic->seek_samples);
1546 cic->seek_mean = (sector_t)total;
1547}
Jens Axboe22e2c502005-06-27 10:55:12 +02001548
1549/*
1550 * Disable idle window if the process thinks too long or seeks so much that
1551 * it doesn't matter
1552 */
1553static void
1554cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1555 struct cfq_io_context *cic)
1556{
Jens Axboe3b181522005-06-27 10:56:24 +02001557 int enable_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001558
Jens Axboecaaa5f92006-06-16 11:23:00 +02001559 if (!cic->ioc->task || !cfqd->cfq_slice_idle ||
1560 (cfqd->hw_tag && CIC_SEEKY(cic)))
Jens Axboe22e2c502005-06-27 10:55:12 +02001561 enable_idle = 0;
1562 else if (sample_valid(cic->ttime_samples)) {
1563 if (cic->ttime_mean > cfqd->cfq_slice_idle)
1564 enable_idle = 0;
1565 else
1566 enable_idle = 1;
1567 }
1568
Jens Axboe3b181522005-06-27 10:56:24 +02001569 if (enable_idle)
1570 cfq_mark_cfqq_idle_window(cfqq);
1571 else
1572 cfq_clear_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001573}
1574
Jens Axboe22e2c502005-06-27 10:55:12 +02001575/*
1576 * Check if new_cfqq should preempt the currently active queue. Return 0 for
1577 * no or if we aren't sure, a 1 will cause a preempt.
1578 */
1579static int
1580cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02001581 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001582{
1583 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe1e3335d2007-02-14 19:59:49 +01001584 sector_t dist;
Jens Axboe22e2c502005-06-27 10:55:12 +02001585
1586 if (cfq_class_idle(new_cfqq))
1587 return 0;
1588
1589 if (!cfqq)
Jens Axboecaaa5f92006-06-16 11:23:00 +02001590 return 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001591
1592 if (cfq_class_idle(cfqq))
1593 return 1;
Jens Axboe1e3335d2007-02-14 19:59:49 +01001594
Jens Axboe22e2c502005-06-27 10:55:12 +02001595 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02001596 * if the new request is sync, but the currently running queue is
1597 * not, let the sync request have priority.
1598 */
Jens Axboe5e705372006-07-13 12:39:25 +02001599 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001600 return 1;
Jens Axboe1e3335d2007-02-14 19:59:49 +01001601
Jens Axboe374f84a2006-07-23 01:42:19 +02001602 /*
1603 * So both queues are sync. Let the new request get disk time if
1604 * it's a metadata request and the current queue is doing regular IO.
1605 */
1606 if (rq_is_meta(rq) && !cfqq->meta_pending)
1607 return 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02001608
Jens Axboe1e3335d2007-02-14 19:59:49 +01001609 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
1610 return 0;
1611
1612 /*
1613 * if this request is as-good as one we would expect from the
1614 * current cfqq, let it preempt
1615 */
1616 if (rq->sector > cfqd->last_sector)
1617 dist = rq->sector - cfqd->last_sector;
1618 else
1619 dist = cfqd->last_sector - rq->sector;
1620
1621 if (dist <= cfqd->active_cic->seek_mean)
1622 return 1;
1623
Jens Axboe22e2c502005-06-27 10:55:12 +02001624 return 0;
1625}
1626
1627/*
1628 * cfqq preempts the active queue. if we allowed preempt with no slice left,
1629 * let it have half of its nominal slice.
1630 */
1631static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1632{
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11001633 cfq_slice_expired(cfqd, 1, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02001634
Jens Axboebf572252006-07-19 20:29:12 +02001635 /*
1636 * Put the new queue at the front of the of the current list,
1637 * so we know that it will be selected next.
1638 */
1639 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1640 list_move(&cfqq->cfq_list, &cfqd->cur_rr);
1641
Jens Axboe44f7c162007-01-19 11:51:58 +11001642 cfqq->slice_end = 0;
1643 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001644}
1645
1646/*
Jens Axboe5e705372006-07-13 12:39:25 +02001647 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02001648 * something we should do about it
1649 */
1650static void
Jens Axboe5e705372006-07-13 12:39:25 +02001651cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1652 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001653{
Jens Axboe5e705372006-07-13 12:39:25 +02001654 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001655
Jens Axboe374f84a2006-07-23 01:42:19 +02001656 if (rq_is_meta(rq))
1657 cfqq->meta_pending++;
1658
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001659 /*
1660 * we never wait for an async request and we don't allow preemption
1661 * of an async request. so just return early
1662 */
Jens Axboe5e705372006-07-13 12:39:25 +02001663 if (!rq_is_sync(rq)) {
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001664 /*
1665 * sync process issued an async request, if it's waiting
1666 * then expire it and kick rq handling.
1667 */
1668 if (cic == cfqd->active_cic &&
1669 del_timer(&cfqd->idle_slice_timer)) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11001670 cfq_slice_expired(cfqd, 0, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +02001671 blk_start_queueing(cfqd->queue);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001672 }
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001673 return;
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001674 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001675
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001676 cfq_update_io_thinktime(cfqd, cic);
Jens Axboebb37b942006-12-01 10:42:33 +01001677 cfq_update_io_seektime(cic, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001678 cfq_update_idle_window(cfqd, cfqq, cic);
1679
Jens Axboe5e705372006-07-13 12:39:25 +02001680 cic->last_request_pos = rq->sector + rq->nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02001681
1682 if (cfqq == cfqd->active_queue) {
1683 /*
1684 * if we are waiting for a request for this queue, let it rip
1685 * immediately and flag that we must not expire this queue
1686 * just now
1687 */
Jens Axboe3b181522005-06-27 10:56:24 +02001688 if (cfq_cfqq_wait_request(cfqq)) {
1689 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001690 del_timer(&cfqd->idle_slice_timer);
Jens Axboedc72ef42006-07-20 14:54:05 +02001691 blk_start_queueing(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02001692 }
Jens Axboe5e705372006-07-13 12:39:25 +02001693 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001694 /*
1695 * not the active queue - expire current slice if it is
1696 * idle and has expired it's mean thinktime or this new queue
1697 * has some old slice time left and is of higher priority
1698 */
1699 cfq_preempt_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001700 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboedc72ef42006-07-20 14:54:05 +02001701 blk_start_queueing(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02001702 }
1703}
1704
Jens Axboeb4878f22005-10-20 16:42:29 +02001705static void cfq_insert_request(request_queue_t *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001706{
Jens Axboeb4878f22005-10-20 16:42:29 +02001707 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001708 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001709
1710 cfq_init_prio_data(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Jens Axboe5e705372006-07-13 12:39:25 +02001712 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Jens Axboe22e2c502005-06-27 10:55:12 +02001714 list_add_tail(&rq->queuelist, &cfqq->fifo);
1715
Jens Axboe5e705372006-07-13 12:39:25 +02001716 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719static void cfq_completed_request(request_queue_t *q, struct request *rq)
1720{
Jens Axboe5e705372006-07-13 12:39:25 +02001721 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001722 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02001723 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001724 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Jens Axboeb4878f22005-10-20 16:42:29 +02001726 now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Jens Axboeb4878f22005-10-20 16:42:29 +02001728 WARN_ON(!cfqd->rq_in_driver);
1729 WARN_ON(!cfqq->on_dispatch[sync]);
1730 cfqd->rq_in_driver--;
1731 cfqq->on_dispatch[sync]--;
Jens Axboe99f96282007-02-05 11:56:25 +01001732 cfqq->service_last = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Jens Axboe1e3335d2007-02-14 19:59:49 +01001734 cfqd->last_sector = rq->hard_sector + rq->hard_nr_sectors;
1735
Jens Axboeb4878f22005-10-20 16:42:29 +02001736 if (!cfq_class_idle(cfqq))
1737 cfqd->last_end_request = now;
Jens Axboe3b181522005-06-27 10:56:24 +02001738
Jens Axboe98e41c72007-02-05 11:55:35 +01001739 cfq_resort_rr_list(cfqq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Jens Axboecaaa5f92006-06-16 11:23:00 +02001741 if (sync)
Jens Axboe5e705372006-07-13 12:39:25 +02001742 RQ_CIC(rq)->last_end_request = now;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001743
1744 /*
1745 * If this is the active queue, check if it needs to be expired,
1746 * or if we want to idle in case it has no pending requests.
1747 */
1748 if (cfqd->active_queue == cfqq) {
Jens Axboe44f7c162007-01-19 11:51:58 +11001749 if (cfq_cfqq_slice_new(cfqq)) {
1750 cfq_set_prio_slice(cfqd, cfqq);
1751 cfq_clear_cfqq_slice_new(cfqq);
1752 }
1753 if (cfq_slice_used(cfqq))
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11001754 cfq_slice_expired(cfqd, 0, 1);
Jens Axboedd67d052006-06-21 09:36:18 +02001755 else if (sync && RB_EMPTY_ROOT(&cfqq->sort_list)) {
Jens Axboe17926692007-01-19 11:59:30 +11001756 if (!cfq_arm_slice_timer(cfqd))
Jens Axboecaaa5f92006-06-16 11:23:00 +02001757 cfq_schedule_dispatch(cfqd);
1758 }
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
Jens Axboe22e2c502005-06-27 10:55:12 +02001762/*
1763 * we temporarily boost lower priority queues if they are holding fs exclusive
1764 * resources. they are boosted to normal prio (CLASS_BE/4)
1765 */
1766static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
Jens Axboe22e2c502005-06-27 10:55:12 +02001768 const int ioprio_class = cfqq->ioprio_class;
1769 const int ioprio = cfqq->ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Jens Axboe22e2c502005-06-27 10:55:12 +02001771 if (has_fs_excl()) {
1772 /*
1773 * boost idle prio on transactions that would lock out other
1774 * users of the filesystem
1775 */
1776 if (cfq_class_idle(cfqq))
1777 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1778 if (cfqq->ioprio > IOPRIO_NORM)
1779 cfqq->ioprio = IOPRIO_NORM;
1780 } else {
1781 /*
1782 * check if we need to unboost the queue
1783 */
1784 if (cfqq->ioprio_class != cfqq->org_ioprio_class)
1785 cfqq->ioprio_class = cfqq->org_ioprio_class;
1786 if (cfqq->ioprio != cfqq->org_ioprio)
1787 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789
Jens Axboe22e2c502005-06-27 10:55:12 +02001790 /*
1791 * refile between round-robin lists if we moved the priority class
1792 */
Jens Axboe98e41c72007-02-05 11:55:35 +01001793 if ((ioprio_class != cfqq->ioprio_class || ioprio != cfqq->ioprio))
Jens Axboe22e2c502005-06-27 10:55:12 +02001794 cfq_resort_rr_list(cfqq, 0);
1795}
1796
Jens Axboe89850f72006-07-22 16:48:31 +02001797static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001798{
Jens Axboe3b181522005-06-27 10:56:24 +02001799 if ((cfq_cfqq_wait_request(cfqq) || cfq_cfqq_must_alloc(cfqq)) &&
Andrew Morton99f95e52005-06-27 20:14:05 -07001800 !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02001801 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001802 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02001803 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001804
1805 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02001806}
1807
Jens Axboecb78b282006-07-28 09:32:57 +02001808static int cfq_may_queue(request_queue_t *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02001809{
1810 struct cfq_data *cfqd = q->elevator->elevator_data;
1811 struct task_struct *tsk = current;
1812 struct cfq_queue *cfqq;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001813 unsigned int key;
1814
1815 key = cfq_queue_pid(tsk, rw, rw & REQ_RW_SYNC);
Jens Axboe22e2c502005-06-27 10:55:12 +02001816
1817 /*
1818 * don't force setup of a queue from here, as a call to may_queue
1819 * does not necessarily imply that a request actually will be queued.
1820 * so just lookup a possibly existing queue, or return 'may queue'
1821 * if that fails
1822 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001823 cfqq = cfq_find_cfq_hash(cfqd, key, tsk->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001824 if (cfqq) {
1825 cfq_init_prio_data(cfqq);
1826 cfq_prio_boost(cfqq);
1827
Jens Axboe89850f72006-07-22 16:48:31 +02001828 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001829 }
1830
1831 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834/*
1835 * queue lock held here
1836 */
Jens Axboebb37b942006-12-01 10:42:33 +01001837static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
Jens Axboe5e705372006-07-13 12:39:25 +02001839 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Jens Axboe5e705372006-07-13 12:39:25 +02001841 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001842 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Jens Axboe22e2c502005-06-27 10:55:12 +02001844 BUG_ON(!cfqq->allocated[rw]);
1845 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Jens Axboe5e705372006-07-13 12:39:25 +02001847 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02001850 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 cfq_put_queue(cfqq);
1853 }
1854}
1855
1856/*
Jens Axboe22e2c502005-06-27 10:55:12 +02001857 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 */
Jens Axboe22e2c502005-06-27 10:55:12 +02001859static int
Jens Axboecb78b282006-07-28 09:32:57 +02001860cfq_set_request(request_queue_t *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
1862 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe3b181522005-06-27 10:56:24 +02001863 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 struct cfq_io_context *cic;
1865 const int rw = rq_data_dir(rq);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001866 const int is_sync = rq_is_sync(rq);
1867 pid_t key = cfq_queue_pid(tsk, rw, is_sync);
Jens Axboe22e2c502005-06-27 10:55:12 +02001868 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 unsigned long flags;
1870
1871 might_sleep_if(gfp_mask & __GFP_WAIT);
1872
Jens Axboee2d74ac2006-03-28 08:59:01 +02001873 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02001874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 spin_lock_irqsave(q->queue_lock, flags);
1876
Jens Axboe22e2c502005-06-27 10:55:12 +02001877 if (!cic)
1878 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Al Viro12a05732006-03-18 13:38:01 -05001880 if (!cic->cfqq[is_sync]) {
Al Viro6f325a12006-03-18 14:58:37 -05001881 cfqq = cfq_get_queue(cfqd, key, tsk, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02001882 if (!cfqq)
1883 goto queue_fail;
1884
Al Viro12a05732006-03-18 13:38:01 -05001885 cic->cfqq[is_sync] = cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001886 } else
Al Viro12a05732006-03-18 13:38:01 -05001887 cfqq = cic->cfqq[is_sync];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 cfqq->allocated[rw]++;
Jens Axboe3b181522005-06-27 10:56:24 +02001890 cfq_clear_cfqq_must_alloc(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001891 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02001892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 spin_unlock_irqrestore(q->queue_lock, flags);
1894
Jens Axboe5e705372006-07-13 12:39:25 +02001895 rq->elevator_private = cic;
1896 rq->elevator_private2 = cfqq;
1897 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02001898
Jens Axboe22e2c502005-06-27 10:55:12 +02001899queue_fail:
1900 if (cic)
1901 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02001902
Jens Axboe3b181522005-06-27 10:56:24 +02001903 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 spin_unlock_irqrestore(q->queue_lock, flags);
1905 return 1;
1906}
1907
David Howells65f27f32006-11-22 14:55:48 +00001908static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02001909{
David Howells65f27f32006-11-22 14:55:48 +00001910 struct cfq_data *cfqd =
1911 container_of(work, struct cfq_data, unplug_work);
1912 request_queue_t *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001913 unsigned long flags;
1914
1915 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboedc72ef42006-07-20 14:54:05 +02001916 blk_start_queueing(q);
Jens Axboe22e2c502005-06-27 10:55:12 +02001917 spin_unlock_irqrestore(q->queue_lock, flags);
1918}
1919
1920/*
1921 * Timer running if the active_queue is currently idling inside its time slice
1922 */
1923static void cfq_idle_slice_timer(unsigned long data)
1924{
1925 struct cfq_data *cfqd = (struct cfq_data *) data;
1926 struct cfq_queue *cfqq;
1927 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11001928 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02001929
1930 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1931
1932 if ((cfqq = cfqd->active_queue) != NULL) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11001933 timed_out = 0;
1934
Jens Axboe22e2c502005-06-27 10:55:12 +02001935 /*
1936 * expired
1937 */
Jens Axboe44f7c162007-01-19 11:51:58 +11001938 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001939 goto expire;
1940
1941 /*
1942 * only expire and reinvoke request handler, if there are
1943 * other queues with pending requests
1944 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02001945 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02001946 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02001947
1948 /*
1949 * not expired and it has a request pending, let it dispatch
1950 */
Jens Axboedd67d052006-06-21 09:36:18 +02001951 if (!RB_EMPTY_ROOT(&cfqq->sort_list)) {
Jens Axboe3b181522005-06-27 10:56:24 +02001952 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001953 goto out_kick;
1954 }
1955 }
1956expire:
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11001957 cfq_slice_expired(cfqd, 0, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02001958out_kick:
Jens Axboe3b181522005-06-27 10:56:24 +02001959 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02001960out_cont:
1961 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1962}
1963
1964/*
1965 * Timer running if an idle class queue is waiting for service
1966 */
1967static void cfq_idle_class_timer(unsigned long data)
1968{
1969 struct cfq_data *cfqd = (struct cfq_data *) data;
1970 unsigned long flags, end;
1971
1972 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1973
1974 /*
1975 * race with a non-idle queue, reset timer
1976 */
1977 end = cfqd->last_end_request + CFQ_IDLE_GRACE;
Jens Axboeae818a32006-06-01 10:13:43 +02001978 if (!time_after_eq(jiffies, end))
1979 mod_timer(&cfqd->idle_class_timer, end);
1980 else
Jens Axboe3b181522005-06-27 10:56:24 +02001981 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02001982
1983 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1984}
1985
Jens Axboe3b181522005-06-27 10:56:24 +02001986static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
1987{
1988 del_timer_sync(&cfqd->idle_slice_timer);
1989 del_timer_sync(&cfqd->idle_class_timer);
1990 blk_sync_queue(cfqd->queue);
1991}
Jens Axboe22e2c502005-06-27 10:55:12 +02001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993static void cfq_exit_queue(elevator_t *e)
1994{
Jens Axboe22e2c502005-06-27 10:55:12 +02001995 struct cfq_data *cfqd = e->elevator_data;
Al Virod9ff4182006-03-18 13:51:22 -05001996 request_queue_t *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001997
Jens Axboe3b181522005-06-27 10:56:24 +02001998 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001999
Al Virod9ff4182006-03-18 13:51:22 -05002000 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002001
Al Virod9ff4182006-03-18 13:51:22 -05002002 if (cfqd->active_queue)
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11002003 __cfq_slice_expired(cfqd, cfqd->active_queue, 0, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002004
2005 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05002006 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
2007 struct cfq_io_context,
2008 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02002009
2010 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05002011 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002012
Al Virod9ff4182006-03-18 13:51:22 -05002013 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05002014
2015 cfq_shutdown_timer_wq(cfqd);
2016
Al Viroa90d7422006-03-18 12:05:37 -05002017 kfree(cfqd->cfq_hash);
2018 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
Jens Axboebb37b942006-12-01 10:42:33 +01002021static void *cfq_init_queue(request_queue_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
2023 struct cfq_data *cfqd;
2024 int i;
2025
Jens Axboeb5deef92006-07-19 23:39:40 +02002026 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02002028 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 memset(cfqd, 0, sizeof(*cfqd));
Jens Axboe22e2c502005-06-27 10:55:12 +02002031
2032 for (i = 0; i < CFQ_PRIO_LISTS; i++)
2033 INIT_LIST_HEAD(&cfqd->rr_list[i]);
2034
2035 INIT_LIST_HEAD(&cfqd->busy_rr);
2036 INIT_LIST_HEAD(&cfqd->cur_rr);
2037 INIT_LIST_HEAD(&cfqd->idle_rr);
Al Virod9ff4182006-03-18 13:51:22 -05002038 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Jens Axboeb5deef92006-07-19 23:39:40 +02002040 cfqd->cfq_hash = kmalloc_node(sizeof(struct hlist_head) * CFQ_QHASH_ENTRIES, GFP_KERNEL, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 if (!cfqd->cfq_hash)
Jens Axboe5e705372006-07-13 12:39:25 +02002042 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 for (i = 0; i < CFQ_QHASH_ENTRIES; i++)
2045 INIT_HLIST_HEAD(&cfqd->cfq_hash[i]);
2046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Jens Axboe22e2c502005-06-27 10:55:12 +02002049 init_timer(&cfqd->idle_slice_timer);
2050 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
2051 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
2052
2053 init_timer(&cfqd->idle_class_timer);
2054 cfqd->idle_class_timer.function = cfq_idle_class_timer;
2055 cfqd->idle_class_timer.data = (unsigned long) cfqd;
2056
David Howells65f27f32006-11-22 14:55:48 +00002057 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02002060 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
2061 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 cfqd->cfq_back_max = cfq_back_max;
2063 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02002064 cfqd->cfq_slice[0] = cfq_slice_async;
2065 cfqd->cfq_slice[1] = cfq_slice_sync;
2066 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
2067 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe3b181522005-06-27 10:56:24 +02002068
Jens Axboebc1c1162006-06-08 08:49:06 +02002069 return cfqd;
Jens Axboe5e705372006-07-13 12:39:25 +02002070out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 kfree(cfqd);
Jens Axboebc1c1162006-06-08 08:49:06 +02002072 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
2075static void cfq_slab_kill(void)
2076{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (cfq_pool)
2078 kmem_cache_destroy(cfq_pool);
2079 if (cfq_ioc_pool)
2080 kmem_cache_destroy(cfq_ioc_pool);
2081}
2082
2083static int __init cfq_slab_setup(void)
2084{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 cfq_pool = kmem_cache_create("cfq_pool", sizeof(struct cfq_queue), 0, 0,
2086 NULL, NULL);
2087 if (!cfq_pool)
2088 goto fail;
2089
2090 cfq_ioc_pool = kmem_cache_create("cfq_ioc_pool",
2091 sizeof(struct cfq_io_context), 0, 0, NULL, NULL);
2092 if (!cfq_ioc_pool)
2093 goto fail;
2094
2095 return 0;
2096fail:
2097 cfq_slab_kill();
2098 return -ENOMEM;
2099}
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101/*
2102 * sysfs parts below -->
2103 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105static ssize_t
2106cfq_var_show(unsigned int var, char *page)
2107{
2108 return sprintf(page, "%d\n", var);
2109}
2110
2111static ssize_t
2112cfq_var_store(unsigned int *var, const char *page, size_t count)
2113{
2114 char *p = (char *) page;
2115
2116 *var = simple_strtoul(p, &p, 10);
2117 return count;
2118}
2119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Al Viro3d1ab402006-03-18 18:35:43 -05002121static ssize_t __FUNC(elevator_t *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002123 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 unsigned int __data = __VAR; \
2125 if (__CONV) \
2126 __data = jiffies_to_msecs(__data); \
2127 return cfq_var_show(__data, (page)); \
2128}
2129SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002130SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
2131SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05002132SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
2133SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002134SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
2135SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
2136SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
2137SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138#undef SHOW_FUNCTION
2139
2140#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Al Viro3d1ab402006-03-18 18:35:43 -05002141static ssize_t __FUNC(elevator_t *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002143 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 unsigned int __data; \
2145 int ret = cfq_var_store(&__data, (page), count); \
2146 if (__data < (MIN)) \
2147 __data = (MIN); \
2148 else if (__data > (MAX)) \
2149 __data = (MAX); \
2150 if (__CONV) \
2151 *(__PTR) = msecs_to_jiffies(__data); \
2152 else \
2153 *(__PTR) = __data; \
2154 return ret; \
2155}
2156STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002157STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1, UINT_MAX, 1);
2158STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1, UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05002159STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
2160STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1, UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002161STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
2162STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
2163STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
2164STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1, UINT_MAX, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165#undef STORE_FUNCTION
2166
Al Viroe572ec72006-03-18 22:27:18 -05002167#define CFQ_ATTR(name) \
2168 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02002169
Al Viroe572ec72006-03-18 22:27:18 -05002170static struct elv_fs_entry cfq_attrs[] = {
2171 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05002172 CFQ_ATTR(fifo_expire_sync),
2173 CFQ_ATTR(fifo_expire_async),
2174 CFQ_ATTR(back_seek_max),
2175 CFQ_ATTR(back_seek_penalty),
2176 CFQ_ATTR(slice_sync),
2177 CFQ_ATTR(slice_async),
2178 CFQ_ATTR(slice_async_rq),
2179 CFQ_ATTR(slice_idle),
Al Viroe572ec72006-03-18 22:27:18 -05002180 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181};
2182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183static struct elevator_type iosched_cfq = {
2184 .ops = {
2185 .elevator_merge_fn = cfq_merge,
2186 .elevator_merged_fn = cfq_merged_request,
2187 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01002188 .elevator_allow_merge_fn = cfq_allow_merge,
Jens Axboeb4878f22005-10-20 16:42:29 +02002189 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02002191 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 .elevator_deactivate_req_fn = cfq_deactivate_request,
2193 .elevator_queue_empty_fn = cfq_queue_empty,
2194 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02002195 .elevator_former_req_fn = elv_rb_former_request,
2196 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 .elevator_set_req_fn = cfq_set_request,
2198 .elevator_put_req_fn = cfq_put_request,
2199 .elevator_may_queue_fn = cfq_may_queue,
2200 .elevator_init_fn = cfq_init_queue,
2201 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02002202 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 },
Al Viro3d1ab402006-03-18 18:35:43 -05002204 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 .elevator_name = "cfq",
2206 .elevator_owner = THIS_MODULE,
2207};
2208
2209static int __init cfq_init(void)
2210{
2211 int ret;
2212
Jens Axboe22e2c502005-06-27 10:55:12 +02002213 /*
2214 * could be 0 on HZ < 1000 setups
2215 */
2216 if (!cfq_slice_async)
2217 cfq_slice_async = 1;
2218 if (!cfq_slice_idle)
2219 cfq_slice_idle = 1;
2220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 if (cfq_slab_setup())
2222 return -ENOMEM;
2223
2224 ret = elv_register(&iosched_cfq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002225 if (ret)
2226 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 return ret;
2229}
2230
2231static void __exit cfq_exit(void)
2232{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07002233 DECLARE_COMPLETION_ONSTACK(all_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05002235 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02002236 /* ioc_gone's update must be visible before reading ioc_count */
2237 smp_wmb();
Jens Axboe4050cf12006-07-19 05:07:12 +02002238 if (elv_ioc_count_read(ioc_count))
OGAWA Hirofumifba82272006-04-18 09:44:06 +02002239 wait_for_completion(ioc_gone);
Al Viro334e94d2006-03-18 15:05:53 -05002240 synchronize_rcu();
Christoph Hellwig83521d32005-10-30 15:01:39 -08002241 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
2243
2244module_init(cfq_init);
2245module_exit(cfq_exit);
2246
2247MODULE_AUTHOR("Jens Axboe");
2248MODULE_LICENSE("GPL");
2249MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");