blob: d44402a4c5cd99b5eec4d3fc8f9ca8c6531a2615 [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;
150 unsigned long slice_left;
Jens Axboe99f96282007-02-05 11:56:25 +0100151 unsigned long service_last;
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;
254}
255
256/*
257 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
258 * isn't valid until the first request from the dispatch is activated
259 * and the slice time set.
260 */
261static inline int cfq_slice_used(struct cfq_queue *cfqq)
262{
263 if (cfq_cfqq_slice_new(cfqq))
264 return 0;
265 if (time_before(jiffies, cfqq->slice_end))
266 return 0;
267
268 return 1;
269}
270
271/*
Jens Axboe5e705372006-07-13 12:39:25 +0200272 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200274 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 */
Jens Axboe5e705372006-07-13 12:39:25 +0200276static struct request *
277cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 sector_t last, s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200281#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
282#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
283 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Jens Axboe5e705372006-07-13 12:39:25 +0200285 if (rq1 == NULL || rq1 == rq2)
286 return rq2;
287 if (rq2 == NULL)
288 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200289
Jens Axboe5e705372006-07-13 12:39:25 +0200290 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
291 return rq1;
292 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
293 return rq2;
Jens Axboe374f84a2006-07-23 01:42:19 +0200294 if (rq_is_meta(rq1) && !rq_is_meta(rq2))
295 return rq1;
296 else if (rq_is_meta(rq2) && !rq_is_meta(rq1))
297 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Jens Axboe5e705372006-07-13 12:39:25 +0200299 s1 = rq1->sector;
300 s2 = rq2->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 last = cfqd->last_sector;
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /*
305 * by definition, 1KiB is 2 sectors
306 */
307 back_max = cfqd->cfq_back_max * 2;
308
309 /*
310 * Strict one way elevator _except_ in the case where we allow
311 * short backward seeks which are biased as twice the cost of a
312 * similar forward seek.
313 */
314 if (s1 >= last)
315 d1 = s1 - last;
316 else if (s1 + back_max >= last)
317 d1 = (last - s1) * cfqd->cfq_back_penalty;
318 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200319 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 if (s2 >= last)
322 d2 = s2 - last;
323 else if (s2 + back_max >= last)
324 d2 = (last - s2) * cfqd->cfq_back_penalty;
325 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200326 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Andreas Mohre8a99052006-03-28 08:59:49 +0200330 /*
331 * By doing switch() on the bit mask "wrap" we avoid having to
332 * check two variables for all permutations: --> faster!
333 */
334 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200335 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200336 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200337 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200338 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200339 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200340 else {
341 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200342 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200343 else
Jens Axboe5e705372006-07-13 12:39:25 +0200344 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200345 }
346
347 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200348 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200349 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200350 return rq2;
351 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200352 default:
353 /*
354 * Since both rqs are wrapped,
355 * start with the one that's further behind head
356 * (--> only *one* back seek required),
357 * since back seek takes more time than forward.
358 */
359 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200360 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 else
Jens Axboe5e705372006-07-13 12:39:25 +0200362 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364}
365
366/*
367 * would be nice to take fifo expire time into account as well
368 */
Jens Axboe5e705372006-07-13 12:39:25 +0200369static struct request *
370cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
371 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Jens Axboe21183b02006-07-13 12:33:14 +0200373 struct rb_node *rbnext = rb_next(&last->rb_node);
374 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200375 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Jens Axboe21183b02006-07-13 12:33:14 +0200377 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200380 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200383 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200384 else {
385 rbnext = rb_first(&cfqq->sort_list);
386 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200387 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Jens Axboe21183b02006-07-13 12:33:14 +0200390 return cfq_choose_req(cfqd, next, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Jens Axboe22e2c502005-06-27 10:55:12 +0200393static void cfq_resort_rr_list(struct cfq_queue *cfqq, int preempted)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Jens Axboe22e2c502005-06-27 10:55:12 +0200395 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe99f96282007-02-05 11:56:25 +0100396 struct list_head *list, *n;
397 struct cfq_queue *__cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Jens Axboe98e41c72007-02-05 11:55:35 +0100399 /*
400 * Resorting requires the cfqq to be on the RR list already.
401 */
402 if (!cfq_cfqq_on_rr(cfqq))
403 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 list_del(&cfqq->cfq_list);
406
Jens Axboe22e2c502005-06-27 10:55:12 +0200407 if (cfq_class_rt(cfqq))
408 list = &cfqd->cur_rr;
409 else if (cfq_class_idle(cfqq))
410 list = &cfqd->idle_rr;
411 else {
412 /*
413 * if cfqq has requests in flight, don't allow it to be
414 * found in cfq_set_active_queue before it has finished them.
415 * this is done to increase fairness between a process that
416 * has lots of io pending vs one that only generates one
417 * sporadically or synchronously
418 */
Jens Axboe3b181522005-06-27 10:56:24 +0200419 if (cfq_cfqq_dispatched(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +0200420 list = &cfqd->busy_rr;
421 else
422 list = &cfqd->rr_list[cfqq->ioprio];
423 }
424
Jens Axboe53b03742006-07-28 09:48:51 +0200425 if (preempted || cfq_cfqq_queue_new(cfqq)) {
Jens Axboe99f96282007-02-05 11:56:25 +0100426 /*
427 * If this queue was preempted or is new (never been serviced),
428 * let it be added first for fairness but beind other new
429 * queues.
430 */
431 n = list;
Jens Axboe53b03742006-07-28 09:48:51 +0200432 while (n->next != list) {
433 __cfqq = list_entry_cfqq(n->next);
434 if (!cfq_cfqq_queue_new(__cfqq))
435 break;
436
437 n = n->next;
438 }
Jens Axboe99f96282007-02-05 11:56:25 +0100439 list_add_tail(&cfqq->cfq_list, n);
440 } else if (!cfq_cfqq_class_sync(cfqq)) {
441 /*
442 * async queue always goes to the end. this wont be overly
443 * unfair to writes, as the sort of the sync queue wont be
444 * allowed to pass the async queue again.
445 */
446 list_add_tail(&cfqq->cfq_list, list);
447 } else {
448 /*
449 * sort by last service, but don't cross a new or async
450 * queue. we don't cross a new queue because it hasn't been
451 * service before, and we don't cross an async queue because
452 * it gets added to the end on expire.
453 */
454 n = list;
455 while ((n = n->prev) != list) {
456 struct cfq_queue *__cfqq = list_entry_cfqq(n);
Jens Axboe53b03742006-07-28 09:48:51 +0200457
Jens Axboe99f96282007-02-05 11:56:25 +0100458 if (!cfq_cfqq_class_sync(cfqq) || !__cfqq->service_last)
459 break;
460 if (time_before(__cfqq->service_last, cfqq->service_last))
461 break;
462 }
463 list_add(&cfqq->cfq_list, n);
Jens Axboe22e2c502005-06-27 10:55:12 +0200464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
467/*
468 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +0200469 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 */
471static inline void
Jens Axboeb4878f22005-10-20 16:42:29 +0200472cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Jens Axboe3b181522005-06-27 10:56:24 +0200474 BUG_ON(cfq_cfqq_on_rr(cfqq));
475 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 cfqd->busy_queues++;
477
Jens Axboeb4878f22005-10-20 16:42:29 +0200478 cfq_resort_rr_list(cfqq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481static inline void
482cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
483{
Jens Axboe3b181522005-06-27 10:56:24 +0200484 BUG_ON(!cfq_cfqq_on_rr(cfqq));
485 cfq_clear_cfqq_on_rr(cfqq);
Jens Axboe981a7972006-07-19 14:56:28 +0200486 list_del_init(&cfqq->cfq_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 BUG_ON(!cfqd->busy_queues);
489 cfqd->busy_queues--;
490}
491
492/*
493 * rb tree support functions
494 */
Jens Axboe5e705372006-07-13 12:39:25 +0200495static inline void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Jens Axboe5e705372006-07-13 12:39:25 +0200497 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +0200498 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5e705372006-07-13 12:39:25 +0200499 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Jens Axboeb4878f22005-10-20 16:42:29 +0200501 BUG_ON(!cfqq->queued[sync]);
502 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Jens Axboe5e705372006-07-13 12:39:25 +0200504 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Jens Axboedd67d052006-06-21 09:36:18 +0200506 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboeb4878f22005-10-20 16:42:29 +0200507 cfq_del_cfqq_rr(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
Jens Axboe5e705372006-07-13 12:39:25 +0200510static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Jens Axboe5e705372006-07-13 12:39:25 +0200512 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe21183b02006-07-13 12:33:14 +0200514 struct request *__alias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Jens Axboe5380a102006-07-13 12:37:56 +0200516 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 /*
519 * looks a little odd, but the first insert might return an alias.
520 * if that happens, put the alias on the dispatch list
521 */
Jens Axboe21183b02006-07-13 12:33:14 +0200522 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +0200523 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +0100524
525 if (!cfq_cfqq_on_rr(cfqq))
526 cfq_add_cfqq_rr(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
529static inline void
Jens Axboe5e705372006-07-13 12:39:25 +0200530cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Jens Axboe5380a102006-07-13 12:37:56 +0200532 elv_rb_del(&cfqq->sort_list, rq);
533 cfqq->queued[rq_is_sync(rq)]--;
Jens Axboe5e705372006-07-13 12:39:25 +0200534 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Jens Axboe206dc692006-03-28 13:03:44 +0200537static struct request *
538cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Jens Axboe206dc692006-03-28 13:03:44 +0200540 struct task_struct *tsk = current;
Jens Axboe7749a8d2006-12-13 13:02:26 +0100541 pid_t key = cfq_queue_pid(tsk, bio_data_dir(bio), bio_sync(bio));
Jens Axboe206dc692006-03-28 13:03:44 +0200542 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Jens Axboe206dc692006-03-28 13:03:44 +0200544 cfqq = cfq_find_cfq_hash(cfqd, key, tsk->ioprio);
Jens Axboe89850f72006-07-22 16:48:31 +0200545 if (cfqq) {
546 sector_t sector = bio->bi_sector + bio_sectors(bio);
547
Jens Axboe21183b02006-07-13 12:33:14 +0200548 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +0200549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return NULL;
552}
553
Jens Axboeb4878f22005-10-20 16:42:29 +0200554static void cfq_activate_request(request_queue_t *q, struct request *rq)
555{
556 struct cfq_data *cfqd = q->elevator->elevator_data;
557
558 cfqd->rq_in_driver++;
Jens Axboe25776e32006-06-01 10:12:26 +0200559
560 /*
561 * If the depth is larger 1, it really could be queueing. But lets
562 * make the mark a little higher - idling could still be good for
563 * low queueing, and a low queueing number could also just indicate
564 * a SCSI mid layer like behaviour where limit+1 is often seen.
565 */
566 if (!cfqd->hw_tag && cfqd->rq_in_driver > 4)
567 cfqd->hw_tag = 1;
Jens Axboeb4878f22005-10-20 16:42:29 +0200568}
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570static void cfq_deactivate_request(request_queue_t *q, struct request *rq)
571{
Jens Axboe22e2c502005-06-27 10:55:12 +0200572 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Jens Axboeb4878f22005-10-20 16:42:29 +0200574 WARN_ON(!cfqd->rq_in_driver);
575 cfqd->rq_in_driver--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Jens Axboeb4878f22005-10-20 16:42:29 +0200578static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Jens Axboe5e705372006-07-13 12:39:25 +0200580 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +0200581
Jens Axboe5e705372006-07-13 12:39:25 +0200582 if (cfqq->next_rq == rq)
583 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Jens Axboeb4878f22005-10-20 16:42:29 +0200585 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +0200586 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +0200587
588 if (rq_is_meta(rq)) {
589 WARN_ON(!cfqq->meta_pending);
590 cfqq->meta_pending--;
591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594static int
595cfq_merge(request_queue_t *q, struct request **req, struct bio *bio)
596{
597 struct cfq_data *cfqd = q->elevator->elevator_data;
598 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Jens Axboe206dc692006-03-28 13:03:44 +0200600 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +0200601 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +0200602 *req = __rq;
603 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
606 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Jens Axboe21183b02006-07-13 12:33:14 +0200609static void cfq_merged_request(request_queue_t *q, struct request *req,
610 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Jens Axboe21183b02006-07-13 12:33:14 +0200612 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +0200613 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Jens Axboe5e705372006-07-13 12:39:25 +0200615 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619static void
620cfq_merged_requests(request_queue_t *q, struct request *rq,
621 struct request *next)
622{
Jens Axboe22e2c502005-06-27 10:55:12 +0200623 /*
624 * reposition in fifo if next is older than rq
625 */
626 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
627 time_before(next->start_time, rq->start_time))
628 list_move(&rq->queuelist, &next->queuelist);
629
Jens Axboeb4878f22005-10-20 16:42:29 +0200630 cfq_remove_request(next);
Jens Axboe22e2c502005-06-27 10:55:12 +0200631}
632
Jens Axboeda775262006-12-20 11:04:12 +0100633static int cfq_allow_merge(request_queue_t *q, struct request *rq,
634 struct bio *bio)
635{
636 struct cfq_data *cfqd = q->elevator->elevator_data;
637 const int rw = bio_data_dir(bio);
638 struct cfq_queue *cfqq;
639 pid_t key;
640
641 /*
Jens Axboeec8acb62007-01-02 18:32:11 +0100642 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +0100643 */
Jens Axboeec8acb62007-01-02 18:32:11 +0100644 if ((bio_data_dir(bio) == READ || bio_sync(bio)) && !rq_is_sync(rq))
Jens Axboeda775262006-12-20 11:04:12 +0100645 return 0;
646
647 /*
Jens Axboe719d3402006-12-22 09:38:53 +0100648 * Lookup the cfqq that this bio will be queued with. Allow
649 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +0100650 */
Jens Axboe719d3402006-12-22 09:38:53 +0100651 key = cfq_queue_pid(current, rw, bio_sync(bio));
Jens Axboeda775262006-12-20 11:04:12 +0100652 cfqq = cfq_find_cfq_hash(cfqd, key, current->ioprio);
Jens Axboe719d3402006-12-22 09:38:53 +0100653
654 if (cfqq == RQ_CFQQ(rq))
655 return 1;
Jens Axboeda775262006-12-20 11:04:12 +0100656
Jens Axboeec8acb62007-01-02 18:32:11 +0100657 return 0;
Jens Axboeda775262006-12-20 11:04:12 +0100658}
659
Jens Axboe22e2c502005-06-27 10:55:12 +0200660static inline void
661__cfq_set_active_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
662{
663 if (cfqq) {
664 /*
665 * stop potential idle class queues waiting service
666 */
667 del_timer(&cfqd->idle_class_timer);
668
Jens Axboe22e2c502005-06-27 10:55:12 +0200669 cfqq->slice_end = 0;
670 cfqq->slice_left = 0;
Jens Axboe3b181522005-06-27 10:56:24 +0200671 cfq_clear_cfqq_must_alloc_slice(cfqq);
672 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +1100673 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200674 }
675
676 cfqd->active_queue = cfqq;
677}
678
679/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100680 * current cfqq expired its slice (or was too idle), select new one
681 */
682static void
683__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
684 int preempted)
685{
686 unsigned long now = jiffies;
687
688 if (cfq_cfqq_wait_request(cfqq))
689 del_timer(&cfqd->idle_slice_timer);
690
Jens Axboe53b03742006-07-28 09:48:51 +0200691 if (!preempted && !cfq_cfqq_dispatched(cfqq))
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100692 cfq_schedule_dispatch(cfqd);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100693
694 cfq_clear_cfqq_must_dispatch(cfqq);
695 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboe53b03742006-07-28 09:48:51 +0200696 cfq_clear_cfqq_queue_new(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100697
698 /*
699 * store what was left of this slice, if the queue idled out
700 * or was preempted
701 */
Jens Axboe44f7c162007-01-19 11:51:58 +1100702 if (cfq_slice_used(cfqq))
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100703 cfqq->slice_left = cfqq->slice_end - now;
704 else
705 cfqq->slice_left = 0;
706
Jens Axboe98e41c72007-02-05 11:55:35 +0100707 cfq_resort_rr_list(cfqq, preempted);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100708
709 if (cfqq == cfqd->active_queue)
710 cfqd->active_queue = NULL;
711
712 if (cfqd->active_cic) {
713 put_io_context(cfqd->active_cic->ioc);
714 cfqd->active_cic = NULL;
715 }
716
717 cfqd->dispatch_slice = 0;
718}
719
720static inline void cfq_slice_expired(struct cfq_data *cfqd, int preempted)
721{
722 struct cfq_queue *cfqq = cfqd->active_queue;
723
724 if (cfqq)
725 __cfq_slice_expired(cfqd, cfqq, preempted);
726}
727
728/*
Jens Axboe22e2c502005-06-27 10:55:12 +0200729 * 0
730 * 0,1
731 * 0,1,2
732 * 0,1,2,3
733 * 0,1,2,3,4
734 * 0,1,2,3,4,5
735 * 0,1,2,3,4,5,6
736 * 0,1,2,3,4,5,6,7
737 */
738static int cfq_get_next_prio_level(struct cfq_data *cfqd)
739{
740 int prio, wrap;
741
742 prio = -1;
743 wrap = 0;
744 do {
745 int p;
746
747 for (p = cfqd->cur_prio; p <= cfqd->cur_end_prio; p++) {
748 if (!list_empty(&cfqd->rr_list[p])) {
749 prio = p;
750 break;
751 }
752 }
753
754 if (prio != -1)
755 break;
756 cfqd->cur_prio = 0;
757 if (++cfqd->cur_end_prio == CFQ_PRIO_LISTS) {
758 cfqd->cur_end_prio = 0;
759 if (wrap)
760 break;
761 wrap = 1;
762 }
763 } while (1);
764
765 if (unlikely(prio == -1))
766 return -1;
767
768 BUG_ON(prio >= CFQ_PRIO_LISTS);
769
770 list_splice_init(&cfqd->rr_list[prio], &cfqd->cur_rr);
771
772 cfqd->cur_prio = prio + 1;
773 if (cfqd->cur_prio > cfqd->cur_end_prio) {
774 cfqd->cur_end_prio = cfqd->cur_prio;
775 cfqd->cur_prio = 0;
776 }
777 if (cfqd->cur_end_prio == CFQ_PRIO_LISTS) {
778 cfqd->cur_prio = 0;
779 cfqd->cur_end_prio = 0;
780 }
781
782 return prio;
783}
784
Jens Axboe3b181522005-06-27 10:56:24 +0200785static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +0200786{
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100787 struct cfq_queue *cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +0200788
Jens Axboe89850f72006-07-22 16:48:31 +0200789 if (!list_empty(&cfqd->cur_rr) || cfq_get_next_prio_level(cfqd) != -1) {
790 /*
791 * if current list is non-empty, grab first entry. if it is
792 * empty, get next prio level and grab first entry then if any
793 * are spliced
794 */
Jens Axboe22e2c502005-06-27 10:55:12 +0200795 cfqq = list_entry_cfqq(cfqd->cur_rr.next);
Jens Axboe89850f72006-07-22 16:48:31 +0200796 } else if (!list_empty(&cfqd->busy_rr)) {
797 /*
798 * If no new queues are available, check if the busy list has
799 * some before falling back to idle io.
800 */
Jens Axboee0de0202006-06-01 10:07:26 +0200801 cfqq = list_entry_cfqq(cfqd->busy_rr.next);
Jens Axboe89850f72006-07-22 16:48:31 +0200802 } else if (!list_empty(&cfqd->idle_rr)) {
803 /*
804 * if we have idle queues and no rt or be queues had pending
805 * requests, either allow immediate service if the grace period
806 * has passed or arm the idle grace timer
807 */
Jens Axboe22e2c502005-06-27 10:55:12 +0200808 unsigned long end = cfqd->last_end_request + CFQ_IDLE_GRACE;
809
810 if (time_after_eq(jiffies, end))
811 cfqq = list_entry_cfqq(cfqd->idle_rr.next);
812 else
813 mod_timer(&cfqd->idle_class_timer, end);
814 }
815
816 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +0200817 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200818}
819
Jens Axboecaaa5f92006-06-16 11:23:00 +0200820#define CIC_SEEKY(cic) ((cic)->seek_mean > (128 * 1024))
821
Jens Axboe22e2c502005-06-27 10:55:12 +0200822static int cfq_arm_slice_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
823
824{
Jens Axboe206dc692006-03-28 13:03:44 +0200825 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100826 unsigned long sl;
827
Jens Axboedd67d052006-06-21 09:36:18 +0200828 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +0200829 WARN_ON(cfqq != cfqd->active_queue);
830
831 /*
832 * idle is disabled, either manually or by past process history
833 */
834 if (!cfqd->cfq_slice_idle)
835 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +0200836 if (!cfq_cfqq_idle_window(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +0200837 return 0;
838 /*
839 * task has exited, don't wait
840 */
Jens Axboe206dc692006-03-28 13:03:44 +0200841 cic = cfqd->active_cic;
842 if (!cic || !cic->ioc->task)
Jens Axboe22e2c502005-06-27 10:55:12 +0200843 return 0;
844
Jens Axboe3b181522005-06-27 10:56:24 +0200845 cfq_mark_cfqq_must_dispatch(cfqq);
846 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200847
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100848 sl = min(cfqq->slice_end - 1, (unsigned long) cfqd->cfq_slice_idle);
Jens Axboe206dc692006-03-28 13:03:44 +0200849
850 /*
851 * we don't want to idle for seeks, but we do want to allow
852 * fair distribution of slice time for a process doing back-to-back
853 * seeks. so allow a little bit of time for him to submit a new rq
854 */
Jens Axboecaaa5f92006-06-16 11:23:00 +0200855 if (sample_valid(cic->seek_samples) && CIC_SEEKY(cic))
Jens Axboe44eb1232006-07-25 15:05:21 +0200856 sl = min(sl, msecs_to_jiffies(2));
Jens Axboe206dc692006-03-28 13:03:44 +0200857
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100858 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Jens Axboe22e2c502005-06-27 10:55:12 +0200859 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
861
Jens Axboe5e705372006-07-13 12:39:25 +0200862static void cfq_dispatch_insert(request_queue_t *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +0200865 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200866
Jens Axboe5380a102006-07-13 12:37:56 +0200867 cfq_remove_request(rq);
868 cfqq->on_dispatch[rq_is_sync(rq)]++;
869 elv_dispatch_sort(q, rq);
Jens Axboefd61af02006-06-16 15:35:39 +0200870
871 rq = list_entry(q->queue_head.prev, struct request, queuelist);
872 cfqd->last_sector = rq->sector + rq->nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
875/*
876 * return expired entry, or NULL to just start from scratch in rbtree
877 */
Jens Axboe5e705372006-07-13 12:39:25 +0200878static inline struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe22e2c502005-06-27 10:55:12 +0200881 struct request *rq;
Jens Axboe89850f72006-07-22 16:48:31 +0200882 int fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Jens Axboe3b181522005-06-27 10:56:24 +0200884 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return NULL;
Jens Axboe89850f72006-07-22 16:48:31 +0200886 if (list_empty(&cfqq->fifo))
887 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Jens Axboe89850f72006-07-22 16:48:31 +0200889 fifo = cfq_cfqq_class_sync(cfqq);
890 rq = rq_entry_fifo(cfqq->fifo.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Jens Axboe89850f72006-07-22 16:48:31 +0200892 if (time_after(jiffies, rq->start_time + cfqd->cfq_fifo_expire[fifo])) {
893 cfq_mark_cfqq_fifo_expire(cfqq);
894 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896
897 return NULL;
898}
899
Jens Axboe22e2c502005-06-27 10:55:12 +0200900static inline int
901cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
902{
903 const int base_rq = cfqd->cfq_slice_async_rq;
904
905 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
906
907 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
908}
909
910/*
911 * get next queue for service
912 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +0100913static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +0200914{
Jens Axboe22e2c502005-06-27 10:55:12 +0200915 struct cfq_queue *cfqq;
916
917 cfqq = cfqd->active_queue;
918 if (!cfqq)
919 goto new_queue;
920
921 /*
922 * slice has expired
923 */
Jens Axboe44f7c162007-01-19 11:51:58 +1100924 if (!cfq_cfqq_must_dispatch(cfqq) && cfq_slice_used(cfqq))
Jens Axboe3b181522005-06-27 10:56:24 +0200925 goto expire;
Jens Axboe22e2c502005-06-27 10:55:12 +0200926
927 /*
928 * if queue has requests, dispatch one. if not, check if
929 * enough slice is left to wait for one
930 */
Jens Axboedd67d052006-06-21 09:36:18 +0200931 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +0200932 goto keep_queue;
Jens Axboe44f7c162007-01-19 11:51:58 +1100933 else if (cfq_cfqq_slice_new(cfqq) || cfq_cfqq_dispatched(cfqq)) {
Jens Axboecaaa5f92006-06-16 11:23:00 +0200934 cfqq = NULL;
935 goto keep_queue;
936 } else if (cfq_cfqq_class_sync(cfqq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200937 if (cfq_arm_slice_timer(cfqd, cfqq))
938 return NULL;
939 }
940
Jens Axboe3b181522005-06-27 10:56:24 +0200941expire:
Jens Axboe22e2c502005-06-27 10:55:12 +0200942 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +0200943new_queue:
944 cfqq = cfq_set_active_queue(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +0200945keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +0200946 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200947}
948
949static int
950__cfq_dispatch_requests(struct cfq_data *cfqd, struct cfq_queue *cfqq,
951 int max_dispatch)
952{
953 int dispatched = 0;
954
Jens Axboedd67d052006-06-21 09:36:18 +0200955 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +0200956
957 do {
Jens Axboe5e705372006-07-13 12:39:25 +0200958 struct request *rq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200959
960 /*
961 * follow expired path, else get first next available
962 */
Jens Axboe5e705372006-07-13 12:39:25 +0200963 if ((rq = cfq_check_fifo(cfqq)) == NULL)
964 rq = cfqq->next_rq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200965
966 /*
967 * finally, insert request into driver dispatch list
968 */
Jens Axboe5e705372006-07-13 12:39:25 +0200969 cfq_dispatch_insert(cfqd->queue, rq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200970
971 cfqd->dispatch_slice++;
972 dispatched++;
973
974 if (!cfqd->active_cic) {
Jens Axboe5e705372006-07-13 12:39:25 +0200975 atomic_inc(&RQ_CIC(rq)->ioc->refcount);
976 cfqd->active_cic = RQ_CIC(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200977 }
978
Jens Axboedd67d052006-06-21 09:36:18 +0200979 if (RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +0200980 break;
981
982 } while (dispatched < max_dispatch);
983
984 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200985 * expire an async queue immediately if it has used up its slice. idle
986 * queue always expire after 1 dispatch round.
987 */
988 if ((!cfq_cfqq_sync(cfqq) &&
989 cfqd->dispatch_slice >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
Jens Axboe44f7c162007-01-19 11:51:58 +1100990 cfq_class_idle(cfqq)) {
991 cfqq->slice_end = jiffies + 1;
Jens Axboe22e2c502005-06-27 10:55:12 +0200992 cfq_slice_expired(cfqd, 0);
Jens Axboe44f7c162007-01-19 11:51:58 +1100993 }
Jens Axboe22e2c502005-06-27 10:55:12 +0200994
995 return dispatched;
996}
997
998static int
Tejun Heo1b5ed5e12005-11-10 08:49:19 +0100999cfq_forced_dispatch_cfqqs(struct list_head *list)
1000{
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001001 struct cfq_queue *cfqq, *next;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001002 int dispatched;
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001003
Jens Axboecaaa5f92006-06-16 11:23:00 +02001004 dispatched = 0;
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001005 list_for_each_entry_safe(cfqq, next, list, cfq_list) {
Jens Axboe5e705372006-07-13 12:39:25 +02001006 while (cfqq->next_rq) {
1007 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001008 dispatched++;
1009 }
1010 BUG_ON(!list_empty(&cfqq->fifo));
1011 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02001012
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001013 return dispatched;
1014}
1015
1016static int
1017cfq_forced_dispatch(struct cfq_data *cfqd)
1018{
1019 int i, dispatched = 0;
1020
1021 for (i = 0; i < CFQ_PRIO_LISTS; i++)
1022 dispatched += cfq_forced_dispatch_cfqqs(&cfqd->rr_list[i]);
1023
1024 dispatched += cfq_forced_dispatch_cfqqs(&cfqd->busy_rr);
1025 dispatched += cfq_forced_dispatch_cfqqs(&cfqd->cur_rr);
1026 dispatched += cfq_forced_dispatch_cfqqs(&cfqd->idle_rr);
1027
1028 cfq_slice_expired(cfqd, 0);
1029
1030 BUG_ON(cfqd->busy_queues);
1031
1032 return dispatched;
1033}
1034
1035static int
Jens Axboeb4878f22005-10-20 16:42:29 +02001036cfq_dispatch_requests(request_queue_t *q, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
1038 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001039 struct cfq_queue *cfqq, *prev_cfqq;
1040 int dispatched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Jens Axboe22e2c502005-06-27 10:55:12 +02001042 if (!cfqd->busy_queues)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 0;
1044
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001045 if (unlikely(force))
1046 return cfq_forced_dispatch(cfqd);
1047
Jens Axboecaaa5f92006-06-16 11:23:00 +02001048 dispatched = 0;
1049 prev_cfqq = NULL;
1050 while ((cfqq = cfq_select_queue(cfqd)) != NULL) {
Jens Axboeb4878f22005-10-20 16:42:29 +02001051 int max_dispatch;
1052
Jens Axboecaaa5f92006-06-16 11:23:00 +02001053 /*
1054 * Don't repeat dispatch from the previous queue.
1055 */
1056 if (prev_cfqq == cfqq)
1057 break;
1058
Jens Axboe3b181522005-06-27 10:56:24 +02001059 cfq_clear_cfqq_must_dispatch(cfqq);
1060 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001061 del_timer(&cfqd->idle_slice_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001063 max_dispatch = cfqd->cfq_quantum;
1064 if (cfq_class_idle(cfqq))
1065 max_dispatch = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Jens Axboecaaa5f92006-06-16 11:23:00 +02001067 dispatched += __cfq_dispatch_requests(cfqd, cfqq, max_dispatch);
1068
1069 /*
1070 * If the dispatch cfqq has idling enabled and is still
1071 * the active queue, break out.
1072 */
1073 if (cfq_cfqq_idle_window(cfqq) && cfqd->active_queue)
1074 break;
1075
1076 prev_cfqq = cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
1078
Jens Axboecaaa5f92006-06-16 11:23:00 +02001079 return dispatched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082/*
Jens Axboe5e705372006-07-13 12:39:25 +02001083 * task holds one reference to the queue, dropped when task exits. each rq
1084 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 *
1086 * queue lock must be held here.
1087 */
1088static void cfq_put_queue(struct cfq_queue *cfqq)
1089{
Jens Axboe22e2c502005-06-27 10:55:12 +02001090 struct cfq_data *cfqd = cfqq->cfqd;
1091
1092 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 if (!atomic_dec_and_test(&cfqq->ref))
1095 return;
1096
1097 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02001098 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Jens Axboe3b181522005-06-27 10:56:24 +02001099 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001101 if (unlikely(cfqd->active_queue == cfqq))
Jens Axboe3b181522005-06-27 10:56:24 +02001102 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02001103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 /*
1105 * it's on the empty list and still hashed
1106 */
1107 list_del(&cfqq->cfq_list);
1108 hlist_del(&cfqq->cfq_hash);
1109 kmem_cache_free(cfq_pool, cfqq);
1110}
1111
Jens Axboe1ea25ec2006-07-18 22:24:11 +02001112static struct cfq_queue *
Jens Axboe3b181522005-06-27 10:56:24 +02001113__cfq_find_cfq_hash(struct cfq_data *cfqd, unsigned int key, unsigned int prio,
1114 const int hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
1116 struct hlist_head *hash_list = &cfqd->cfq_hash[hashval];
Jens Axboe206dc692006-03-28 13:03:44 +02001117 struct hlist_node *entry;
1118 struct cfq_queue *__cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Jens Axboe206dc692006-03-28 13:03:44 +02001120 hlist_for_each_entry(__cfqq, entry, hash_list, cfq_hash) {
Al Virob0a69162006-03-14 15:32:50 -05001121 const unsigned short __p = IOPRIO_PRIO_VALUE(__cfqq->org_ioprio_class, __cfqq->org_ioprio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Jens Axboe206dc692006-03-28 13:03:44 +02001123 if (__cfqq->key == key && (__p == prio || !prio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return __cfqq;
1125 }
1126
1127 return NULL;
1128}
1129
1130static struct cfq_queue *
Jens Axboe3b181522005-06-27 10:56:24 +02001131cfq_find_cfq_hash(struct cfq_data *cfqd, unsigned int key, unsigned short prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Jens Axboe3b181522005-06-27 10:56:24 +02001133 return __cfq_find_cfq_hash(cfqd, key, prio, hash_long(key, CFQ_QHASH_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Jens Axboee2d74ac2006-03-28 08:59:01 +02001136static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Jens Axboe22e2c502005-06-27 10:55:12 +02001138 struct cfq_io_context *__cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001139 struct rb_node *n;
1140 int freed = 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001141
Jens Axboee2d74ac2006-03-28 08:59:01 +02001142 while ((n = rb_first(&ioc->cic_root)) != NULL) {
1143 __cic = rb_entry(n, struct cfq_io_context, rb_node);
1144 rb_erase(&__cic->rb_node, &ioc->cic_root);
Jens Axboe22e2c502005-06-27 10:55:12 +02001145 kmem_cache_free(cfq_ioc_pool, __cic);
Al Viro334e94d2006-03-18 15:05:53 -05001146 freed++;
Jens Axboe22e2c502005-06-27 10:55:12 +02001147 }
1148
Jens Axboe4050cf12006-07-19 05:07:12 +02001149 elv_ioc_count_mod(ioc_count, -freed);
1150
1151 if (ioc_gone && !elv_ioc_count_read(ioc_count))
Al Viro334e94d2006-03-18 15:05:53 -05001152 complete(ioc_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
Jens Axboe89850f72006-07-22 16:48:31 +02001155static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1156{
1157 if (unlikely(cfqq == cfqd->active_queue))
1158 __cfq_slice_expired(cfqd, cfqq, 0);
1159
1160 cfq_put_queue(cfqq);
1161}
1162
1163static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
1164 struct cfq_io_context *cic)
1165{
Jens Axboefc463792006-08-29 09:05:44 +02001166 list_del_init(&cic->queue_list);
1167 smp_wmb();
1168 cic->key = NULL;
1169
Jens Axboe89850f72006-07-22 16:48:31 +02001170 if (cic->cfqq[ASYNC]) {
1171 cfq_exit_cfqq(cfqd, cic->cfqq[ASYNC]);
1172 cic->cfqq[ASYNC] = NULL;
1173 }
1174
1175 if (cic->cfqq[SYNC]) {
1176 cfq_exit_cfqq(cfqd, cic->cfqq[SYNC]);
1177 cic->cfqq[SYNC] = NULL;
1178 }
Jens Axboe89850f72006-07-22 16:48:31 +02001179}
1180
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182/*
Jens Axboe22e2c502005-06-27 10:55:12 +02001183 * Called with interrupts disabled
1184 */
1185static void cfq_exit_single_io_context(struct cfq_io_context *cic)
1186{
Al Viro478a82b2006-03-18 13:25:24 -05001187 struct cfq_data *cfqd = cic->key;
Jens Axboe22e2c502005-06-27 10:55:12 +02001188
Jens Axboe89850f72006-07-22 16:48:31 +02001189 if (cfqd) {
1190 request_queue_t *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001191
Jens Axboefc463792006-08-29 09:05:44 +02001192 spin_lock_irq(q->queue_lock);
Jens Axboe89850f72006-07-22 16:48:31 +02001193 __cfq_exit_single_io_context(cfqd, cic);
Jens Axboefc463792006-08-29 09:05:44 +02001194 spin_unlock_irq(q->queue_lock);
Al Viro12a05732006-03-18 13:38:01 -05001195 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001196}
1197
Jens Axboee2d74ac2006-03-28 08:59:01 +02001198static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Jens Axboe22e2c502005-06-27 10:55:12 +02001200 struct cfq_io_context *__cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001201 struct rb_node *n;
Jens Axboe22e2c502005-06-27 10:55:12 +02001202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 /*
1204 * put the reference this task is holding to the various queues
1205 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02001206
1207 n = rb_first(&ioc->cic_root);
1208 while (n != NULL) {
1209 __cic = rb_entry(n, struct cfq_io_context, rb_node);
1210
Jens Axboe22e2c502005-06-27 10:55:12 +02001211 cfq_exit_single_io_context(__cic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001212 n = rb_next(n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
Jens Axboe22e2c502005-06-27 10:55:12 +02001216static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04001217cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Jens Axboeb5deef92006-07-19 23:39:40 +02001219 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Jens Axboeb5deef92006-07-19 23:39:40 +02001221 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask, cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (cic) {
Jens Axboe553698f2006-06-14 19:11:57 +02001223 memset(cic, 0, sizeof(*cic));
Jens Axboe22e2c502005-06-27 10:55:12 +02001224 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02001225 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001226 cic->dtor = cfq_free_io_context;
1227 cic->exit = cfq_exit_io_context;
Jens Axboe4050cf12006-07-19 05:07:12 +02001228 elv_ioc_count_inc(ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230
1231 return cic;
1232}
1233
Jens Axboe22e2c502005-06-27 10:55:12 +02001234static void cfq_init_prio_data(struct cfq_queue *cfqq)
1235{
1236 struct task_struct *tsk = current;
1237 int ioprio_class;
1238
Jens Axboe3b181522005-06-27 10:56:24 +02001239 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001240 return;
1241
1242 ioprio_class = IOPRIO_PRIO_CLASS(tsk->ioprio);
1243 switch (ioprio_class) {
1244 default:
1245 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
1246 case IOPRIO_CLASS_NONE:
1247 /*
1248 * no prio set, place us in the middle of the BE classes
1249 */
1250 cfqq->ioprio = task_nice_ioprio(tsk);
1251 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1252 break;
1253 case IOPRIO_CLASS_RT:
1254 cfqq->ioprio = task_ioprio(tsk);
1255 cfqq->ioprio_class = IOPRIO_CLASS_RT;
1256 break;
1257 case IOPRIO_CLASS_BE:
1258 cfqq->ioprio = task_ioprio(tsk);
1259 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1260 break;
1261 case IOPRIO_CLASS_IDLE:
1262 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
1263 cfqq->ioprio = 7;
Jens Axboe3b181522005-06-27 10:56:24 +02001264 cfq_clear_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001265 break;
1266 }
1267
1268 /*
1269 * keep track of original prio settings in case we have to temporarily
1270 * elevate the priority of this queue
1271 */
1272 cfqq->org_ioprio = cfqq->ioprio;
1273 cfqq->org_ioprio_class = cfqq->ioprio_class;
1274
Jens Axboe98e41c72007-02-05 11:55:35 +01001275 cfq_resort_rr_list(cfqq, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02001276 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001277}
1278
Al Viro478a82b2006-03-18 13:25:24 -05001279static inline void changed_ioprio(struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02001280{
Al Viro478a82b2006-03-18 13:25:24 -05001281 struct cfq_data *cfqd = cic->key;
1282 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01001283 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02001284
Jens Axboecaaa5f92006-06-16 11:23:00 +02001285 if (unlikely(!cfqd))
1286 return;
1287
Jens Axboec1b707d2006-10-30 19:54:23 +01001288 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001289
1290 cfqq = cic->cfqq[ASYNC];
1291 if (cfqq) {
1292 struct cfq_queue *new_cfqq;
1293 new_cfqq = cfq_get_queue(cfqd, CFQ_KEY_ASYNC, cic->ioc->task,
1294 GFP_ATOMIC);
1295 if (new_cfqq) {
1296 cic->cfqq[ASYNC] = new_cfqq;
1297 cfq_put_queue(cfqq);
1298 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001299 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02001300
1301 cfqq = cic->cfqq[SYNC];
1302 if (cfqq)
1303 cfq_mark_cfqq_prio_changed(cfqq);
1304
Jens Axboec1b707d2006-10-30 19:54:23 +01001305 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02001306}
1307
Jens Axboefc463792006-08-29 09:05:44 +02001308static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Al Viroa6a07632006-03-18 13:26:44 -05001310 struct cfq_io_context *cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001311 struct rb_node *n;
Al Viroa6a07632006-03-18 13:26:44 -05001312
Jens Axboefc463792006-08-29 09:05:44 +02001313 ioc->ioprio_changed = 0;
Al Viroa6a07632006-03-18 13:26:44 -05001314
Jens Axboee2d74ac2006-03-28 08:59:01 +02001315 n = rb_first(&ioc->cic_root);
1316 while (n != NULL) {
1317 cic = rb_entry(n, struct cfq_io_context, rb_node);
Jens Axboe3793c652006-05-30 21:11:04 +02001318
Al Viro478a82b2006-03-18 13:25:24 -05001319 changed_ioprio(cic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001320 n = rb_next(n);
1321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
1323
1324static struct cfq_queue *
Al Viro6f325a12006-03-18 14:58:37 -05001325cfq_get_queue(struct cfq_data *cfqd, unsigned int key, struct task_struct *tsk,
Al Viro8267e262005-10-21 03:20:53 -04001326 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 const int hashval = hash_long(key, CFQ_QHASH_SHIFT);
1329 struct cfq_queue *cfqq, *new_cfqq = NULL;
Al Viro6f325a12006-03-18 14:58:37 -05001330 unsigned short ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332retry:
Al Viro6f325a12006-03-18 14:58:37 -05001333 ioprio = tsk->ioprio;
Jens Axboe3b181522005-06-27 10:56:24 +02001334 cfqq = __cfq_find_cfq_hash(cfqd, key, ioprio, hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 if (!cfqq) {
1337 if (new_cfqq) {
1338 cfqq = new_cfqq;
1339 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001340 } else if (gfp_mask & __GFP_WAIT) {
Jens Axboe89850f72006-07-22 16:48:31 +02001341 /*
1342 * Inform the allocator of the fact that we will
1343 * just repeat this allocation if it fails, to allow
1344 * the allocator to do whatever it needs to attempt to
1345 * free memory.
1346 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 spin_unlock_irq(cfqd->queue->queue_lock);
Jens Axboeb5deef92006-07-19 23:39:40 +02001348 new_cfqq = kmem_cache_alloc_node(cfq_pool, gfp_mask|__GFP_NOFAIL, cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 spin_lock_irq(cfqd->queue->queue_lock);
1350 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02001351 } else {
Jens Axboeb5deef92006-07-19 23:39:40 +02001352 cfqq = kmem_cache_alloc_node(cfq_pool, gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02001353 if (!cfqq)
1354 goto out;
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02001355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 memset(cfqq, 0, sizeof(*cfqq));
1358
1359 INIT_HLIST_NODE(&cfqq->cfq_hash);
1360 INIT_LIST_HEAD(&cfqq->cfq_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001361 INIT_LIST_HEAD(&cfqq->fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 cfqq->key = key;
1364 hlist_add_head(&cfqq->cfq_hash, &cfqd->cfq_hash[hashval]);
1365 atomic_set(&cfqq->ref, 0);
1366 cfqq->cfqd = cfqd;
Jens Axboe22e2c502005-06-27 10:55:12 +02001367 /*
1368 * set ->slice_left to allow preemption for a new process
1369 */
1370 cfqq->slice_left = 2 * cfqd->cfq_slice_idle;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001371 cfq_mark_cfqq_idle_window(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001372 cfq_mark_cfqq_prio_changed(cfqq);
Jens Axboe53b03742006-07-28 09:48:51 +02001373 cfq_mark_cfqq_queue_new(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001374 cfq_init_prio_data(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376
1377 if (new_cfqq)
1378 kmem_cache_free(cfq_pool, new_cfqq);
1379
1380 atomic_inc(&cfqq->ref);
1381out:
1382 WARN_ON((gfp_mask & __GFP_WAIT) && !cfqq);
1383 return cfqq;
1384}
1385
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001386static void
1387cfq_drop_dead_cic(struct io_context *ioc, struct cfq_io_context *cic)
1388{
Jens Axboefc463792006-08-29 09:05:44 +02001389 WARN_ON(!list_empty(&cic->queue_list));
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001390 rb_erase(&cic->rb_node, &ioc->cic_root);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001391 kmem_cache_free(cfq_ioc_pool, cic);
Jens Axboe4050cf12006-07-19 05:07:12 +02001392 elv_ioc_count_dec(ioc_count);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001393}
1394
Jens Axboee2d74ac2006-03-28 08:59:01 +02001395static struct cfq_io_context *
1396cfq_cic_rb_lookup(struct cfq_data *cfqd, struct io_context *ioc)
1397{
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001398 struct rb_node *n;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001399 struct cfq_io_context *cic;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001400 void *k, *key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001401
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001402restart:
1403 n = ioc->cic_root.rb_node;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001404 while (n) {
1405 cic = rb_entry(n, struct cfq_io_context, rb_node);
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001406 /* ->key must be copied to avoid race with cfq_exit_queue() */
1407 k = cic->key;
1408 if (unlikely(!k)) {
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001409 cfq_drop_dead_cic(ioc, cic);
1410 goto restart;
1411 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001412
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001413 if (key < k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001414 n = n->rb_left;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001415 else if (key > k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001416 n = n->rb_right;
1417 else
1418 return cic;
1419 }
1420
1421 return NULL;
1422}
1423
1424static inline void
1425cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
1426 struct cfq_io_context *cic)
1427{
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001428 struct rb_node **p;
1429 struct rb_node *parent;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001430 struct cfq_io_context *__cic;
Jens Axboe0261d682006-10-30 19:07:48 +01001431 unsigned long flags;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001432 void *k;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001433
Jens Axboee2d74ac2006-03-28 08:59:01 +02001434 cic->ioc = ioc;
1435 cic->key = cfqd;
1436
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001437restart:
1438 parent = NULL;
1439 p = &ioc->cic_root.rb_node;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001440 while (*p) {
1441 parent = *p;
1442 __cic = rb_entry(parent, struct cfq_io_context, rb_node);
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001443 /* ->key must be copied to avoid race with cfq_exit_queue() */
1444 k = __cic->key;
1445 if (unlikely(!k)) {
Oleg Nesterovbe33c3a2006-08-21 08:36:12 +02001446 cfq_drop_dead_cic(ioc, __cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001447 goto restart;
1448 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001449
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001450 if (cic->key < k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001451 p = &(*p)->rb_left;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001452 else if (cic->key > k)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001453 p = &(*p)->rb_right;
1454 else
1455 BUG();
1456 }
1457
1458 rb_link_node(&cic->rb_node, parent, p);
1459 rb_insert_color(&cic->rb_node, &ioc->cic_root);
Jens Axboefc463792006-08-29 09:05:44 +02001460
Jens Axboe0261d682006-10-30 19:07:48 +01001461 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001462 list_add(&cic->queue_list, &cfqd->cic_list);
Jens Axboe0261d682006-10-30 19:07:48 +01001463 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001464}
1465
Jens Axboe22e2c502005-06-27 10:55:12 +02001466/*
1467 * Setup general io context and cfq io context. There can be several cfq
1468 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02001469 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02001470 */
1471static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02001472cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Jens Axboe22e2c502005-06-27 10:55:12 +02001474 struct io_context *ioc = NULL;
1475 struct cfq_io_context *cic;
1476
1477 might_sleep_if(gfp_mask & __GFP_WAIT);
1478
Jens Axboeb5deef92006-07-19 23:39:40 +02001479 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02001480 if (!ioc)
1481 return NULL;
1482
Jens Axboee2d74ac2006-03-28 08:59:01 +02001483 cic = cfq_cic_rb_lookup(cfqd, ioc);
1484 if (cic)
1485 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02001486
Jens Axboee2d74ac2006-03-28 08:59:01 +02001487 cic = cfq_alloc_io_context(cfqd, gfp_mask);
1488 if (cic == NULL)
1489 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02001490
Jens Axboee2d74ac2006-03-28 08:59:01 +02001491 cfq_cic_link(cfqd, ioc, cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02001492out:
Jens Axboefc463792006-08-29 09:05:44 +02001493 smp_read_barrier_depends();
1494 if (unlikely(ioc->ioprio_changed))
1495 cfq_ioc_set_ioprio(ioc);
1496
Jens Axboe22e2c502005-06-27 10:55:12 +02001497 return cic;
1498err:
1499 put_io_context(ioc);
1500 return NULL;
1501}
1502
1503static void
1504cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
1505{
Jens Axboeaaf12282007-01-19 11:30:16 +11001506 unsigned long elapsed = jiffies - cic->last_end_request;
1507 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02001508
1509 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
1510 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
1511 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
1512}
1513
Jens Axboe206dc692006-03-28 13:03:44 +02001514static void
Jens Axboebb37b942006-12-01 10:42:33 +01001515cfq_update_io_seektime(struct cfq_io_context *cic, struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02001516{
1517 sector_t sdist;
1518 u64 total;
1519
Jens Axboe5e705372006-07-13 12:39:25 +02001520 if (cic->last_request_pos < rq->sector)
1521 sdist = rq->sector - cic->last_request_pos;
Jens Axboe206dc692006-03-28 13:03:44 +02001522 else
Jens Axboe5e705372006-07-13 12:39:25 +02001523 sdist = cic->last_request_pos - rq->sector;
Jens Axboe206dc692006-03-28 13:03:44 +02001524
1525 /*
1526 * Don't allow the seek distance to get too large from the
1527 * odd fragment, pagein, etc
1528 */
1529 if (cic->seek_samples <= 60) /* second&third seek */
1530 sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*1024);
1531 else
1532 sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*64);
1533
1534 cic->seek_samples = (7*cic->seek_samples + 256) / 8;
1535 cic->seek_total = (7*cic->seek_total + (u64)256*sdist) / 8;
1536 total = cic->seek_total + (cic->seek_samples/2);
1537 do_div(total, cic->seek_samples);
1538 cic->seek_mean = (sector_t)total;
1539}
Jens Axboe22e2c502005-06-27 10:55:12 +02001540
1541/*
1542 * Disable idle window if the process thinks too long or seeks so much that
1543 * it doesn't matter
1544 */
1545static void
1546cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1547 struct cfq_io_context *cic)
1548{
Jens Axboe3b181522005-06-27 10:56:24 +02001549 int enable_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001550
Jens Axboecaaa5f92006-06-16 11:23:00 +02001551 if (!cic->ioc->task || !cfqd->cfq_slice_idle ||
1552 (cfqd->hw_tag && CIC_SEEKY(cic)))
Jens Axboe22e2c502005-06-27 10:55:12 +02001553 enable_idle = 0;
1554 else if (sample_valid(cic->ttime_samples)) {
1555 if (cic->ttime_mean > cfqd->cfq_slice_idle)
1556 enable_idle = 0;
1557 else
1558 enable_idle = 1;
1559 }
1560
Jens Axboe3b181522005-06-27 10:56:24 +02001561 if (enable_idle)
1562 cfq_mark_cfqq_idle_window(cfqq);
1563 else
1564 cfq_clear_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001565}
1566
1567
1568/*
1569 * Check if new_cfqq should preempt the currently active queue. Return 0 for
1570 * no or if we aren't sure, a 1 will cause a preempt.
1571 */
1572static int
1573cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02001574 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001575{
1576 struct cfq_queue *cfqq = cfqd->active_queue;
1577
1578 if (cfq_class_idle(new_cfqq))
1579 return 0;
1580
1581 if (!cfqq)
Jens Axboecaaa5f92006-06-16 11:23:00 +02001582 return 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001583
1584 if (cfq_class_idle(cfqq))
1585 return 1;
Jens Axboe3b181522005-06-27 10:56:24 +02001586 if (!cfq_cfqq_wait_request(new_cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001587 return 0;
1588 /*
1589 * if it doesn't have slice left, forget it
1590 */
1591 if (new_cfqq->slice_left < cfqd->cfq_slice_idle)
1592 return 0;
Jens Axboe374f84a2006-07-23 01:42:19 +02001593 /*
1594 * if the new request is sync, but the currently running queue is
1595 * not, let the sync request have priority.
1596 */
Jens Axboe5e705372006-07-13 12:39:25 +02001597 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001598 return 1;
Jens Axboe374f84a2006-07-23 01:42:19 +02001599 /*
1600 * So both queues are sync. Let the new request get disk time if
1601 * it's a metadata request and the current queue is doing regular IO.
1602 */
1603 if (rq_is_meta(rq) && !cfqq->meta_pending)
1604 return 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02001605
1606 return 0;
1607}
1608
1609/*
1610 * cfqq preempts the active queue. if we allowed preempt with no slice left,
1611 * let it have half of its nominal slice.
1612 */
1613static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1614{
Jens Axboebf572252006-07-19 20:29:12 +02001615 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02001616
1617 if (!cfqq->slice_left)
1618 cfqq->slice_left = cfq_prio_to_slice(cfqd, cfqq) / 2;
1619
Jens Axboebf572252006-07-19 20:29:12 +02001620 /*
1621 * Put the new queue at the front of the of the current list,
1622 * so we know that it will be selected next.
1623 */
1624 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1625 list_move(&cfqq->cfq_list, &cfqd->cur_rr);
1626
Jens Axboe44f7c162007-01-19 11:51:58 +11001627 cfqq->slice_end = 0;
1628 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001629}
1630
1631/*
Jens Axboe5e705372006-07-13 12:39:25 +02001632 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02001633 * something we should do about it
1634 */
1635static void
Jens Axboe5e705372006-07-13 12:39:25 +02001636cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1637 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001638{
Jens Axboe5e705372006-07-13 12:39:25 +02001639 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001640
Jens Axboe374f84a2006-07-23 01:42:19 +02001641 if (rq_is_meta(rq))
1642 cfqq->meta_pending++;
1643
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001644 /*
Jens Axboe5380a102006-07-13 12:37:56 +02001645 * check if this request is a better next-serve candidate)) {
Jens Axboe21183b02006-07-13 12:33:14 +02001646 */
Jens Axboe5e705372006-07-13 12:39:25 +02001647 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq);
1648 BUG_ON(!cfqq->next_rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001649
1650 /*
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001651 * we never wait for an async request and we don't allow preemption
1652 * of an async request. so just return early
1653 */
Jens Axboe5e705372006-07-13 12:39:25 +02001654 if (!rq_is_sync(rq)) {
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001655 /*
1656 * sync process issued an async request, if it's waiting
1657 * then expire it and kick rq handling.
1658 */
1659 if (cic == cfqd->active_cic &&
1660 del_timer(&cfqd->idle_slice_timer)) {
1661 cfq_slice_expired(cfqd, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +02001662 blk_start_queueing(cfqd->queue);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001663 }
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001664 return;
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001665 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001666
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001667 cfq_update_io_thinktime(cfqd, cic);
Jens Axboebb37b942006-12-01 10:42:33 +01001668 cfq_update_io_seektime(cic, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001669 cfq_update_idle_window(cfqd, cfqq, cic);
1670
Jens Axboe5e705372006-07-13 12:39:25 +02001671 cic->last_request_pos = rq->sector + rq->nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02001672
1673 if (cfqq == cfqd->active_queue) {
1674 /*
1675 * if we are waiting for a request for this queue, let it rip
1676 * immediately and flag that we must not expire this queue
1677 * just now
1678 */
Jens Axboe3b181522005-06-27 10:56:24 +02001679 if (cfq_cfqq_wait_request(cfqq)) {
1680 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001681 del_timer(&cfqd->idle_slice_timer);
Jens Axboedc72ef42006-07-20 14:54:05 +02001682 blk_start_queueing(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02001683 }
Jens Axboe5e705372006-07-13 12:39:25 +02001684 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001685 /*
1686 * not the active queue - expire current slice if it is
1687 * idle and has expired it's mean thinktime or this new queue
1688 * has some old slice time left and is of higher priority
1689 */
1690 cfq_preempt_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001691 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboedc72ef42006-07-20 14:54:05 +02001692 blk_start_queueing(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02001693 }
1694}
1695
Jens Axboeb4878f22005-10-20 16:42:29 +02001696static void cfq_insert_request(request_queue_t *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001697{
Jens Axboeb4878f22005-10-20 16:42:29 +02001698 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001699 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001700
1701 cfq_init_prio_data(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Jens Axboe5e705372006-07-13 12:39:25 +02001703 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Jens Axboe22e2c502005-06-27 10:55:12 +02001705 list_add_tail(&rq->queuelist, &cfqq->fifo);
1706
Jens Axboe5e705372006-07-13 12:39:25 +02001707 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710static void cfq_completed_request(request_queue_t *q, struct request *rq)
1711{
Jens Axboe5e705372006-07-13 12:39:25 +02001712 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001713 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02001714 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001715 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Jens Axboeb4878f22005-10-20 16:42:29 +02001717 now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Jens Axboeb4878f22005-10-20 16:42:29 +02001719 WARN_ON(!cfqd->rq_in_driver);
1720 WARN_ON(!cfqq->on_dispatch[sync]);
1721 cfqd->rq_in_driver--;
1722 cfqq->on_dispatch[sync]--;
Jens Axboe99f96282007-02-05 11:56:25 +01001723 cfqq->service_last = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Jens Axboeb4878f22005-10-20 16:42:29 +02001725 if (!cfq_class_idle(cfqq))
1726 cfqd->last_end_request = now;
Jens Axboe3b181522005-06-27 10:56:24 +02001727
Jens Axboe98e41c72007-02-05 11:55:35 +01001728 cfq_resort_rr_list(cfqq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Jens Axboecaaa5f92006-06-16 11:23:00 +02001730 if (sync)
Jens Axboe5e705372006-07-13 12:39:25 +02001731 RQ_CIC(rq)->last_end_request = now;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001732
1733 /*
1734 * If this is the active queue, check if it needs to be expired,
1735 * or if we want to idle in case it has no pending requests.
1736 */
1737 if (cfqd->active_queue == cfqq) {
Jens Axboe44f7c162007-01-19 11:51:58 +11001738 if (cfq_cfqq_slice_new(cfqq)) {
1739 cfq_set_prio_slice(cfqd, cfqq);
1740 cfq_clear_cfqq_slice_new(cfqq);
1741 }
1742 if (cfq_slice_used(cfqq))
Jens Axboecaaa5f92006-06-16 11:23:00 +02001743 cfq_slice_expired(cfqd, 0);
Jens Axboedd67d052006-06-21 09:36:18 +02001744 else if (sync && RB_EMPTY_ROOT(&cfqq->sort_list)) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02001745 if (!cfq_arm_slice_timer(cfqd, cfqq))
1746 cfq_schedule_dispatch(cfqd);
1747 }
1748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749}
1750
Jens Axboe22e2c502005-06-27 10:55:12 +02001751/*
1752 * we temporarily boost lower priority queues if they are holding fs exclusive
1753 * resources. they are boosted to normal prio (CLASS_BE/4)
1754 */
1755static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Jens Axboe22e2c502005-06-27 10:55:12 +02001757 const int ioprio_class = cfqq->ioprio_class;
1758 const int ioprio = cfqq->ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Jens Axboe22e2c502005-06-27 10:55:12 +02001760 if (has_fs_excl()) {
1761 /*
1762 * boost idle prio on transactions that would lock out other
1763 * users of the filesystem
1764 */
1765 if (cfq_class_idle(cfqq))
1766 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1767 if (cfqq->ioprio > IOPRIO_NORM)
1768 cfqq->ioprio = IOPRIO_NORM;
1769 } else {
1770 /*
1771 * check if we need to unboost the queue
1772 */
1773 if (cfqq->ioprio_class != cfqq->org_ioprio_class)
1774 cfqq->ioprio_class = cfqq->org_ioprio_class;
1775 if (cfqq->ioprio != cfqq->org_ioprio)
1776 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
1778
Jens Axboe22e2c502005-06-27 10:55:12 +02001779 /*
1780 * refile between round-robin lists if we moved the priority class
1781 */
Jens Axboe98e41c72007-02-05 11:55:35 +01001782 if ((ioprio_class != cfqq->ioprio_class || ioprio != cfqq->ioprio))
Jens Axboe22e2c502005-06-27 10:55:12 +02001783 cfq_resort_rr_list(cfqq, 0);
1784}
1785
Jens Axboe89850f72006-07-22 16:48:31 +02001786static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001787{
Jens Axboe3b181522005-06-27 10:56:24 +02001788 if ((cfq_cfqq_wait_request(cfqq) || cfq_cfqq_must_alloc(cfqq)) &&
Andrew Morton99f95e52005-06-27 20:14:05 -07001789 !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02001790 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001791 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02001792 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001793
1794 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02001795}
1796
Jens Axboecb78b282006-07-28 09:32:57 +02001797static int cfq_may_queue(request_queue_t *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02001798{
1799 struct cfq_data *cfqd = q->elevator->elevator_data;
1800 struct task_struct *tsk = current;
1801 struct cfq_queue *cfqq;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001802 unsigned int key;
1803
1804 key = cfq_queue_pid(tsk, rw, rw & REQ_RW_SYNC);
Jens Axboe22e2c502005-06-27 10:55:12 +02001805
1806 /*
1807 * don't force setup of a queue from here, as a call to may_queue
1808 * does not necessarily imply that a request actually will be queued.
1809 * so just lookup a possibly existing queue, or return 'may queue'
1810 * if that fails
1811 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001812 cfqq = cfq_find_cfq_hash(cfqd, key, tsk->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001813 if (cfqq) {
1814 cfq_init_prio_data(cfqq);
1815 cfq_prio_boost(cfqq);
1816
Jens Axboe89850f72006-07-22 16:48:31 +02001817 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001818 }
1819
1820 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823/*
1824 * queue lock held here
1825 */
Jens Axboebb37b942006-12-01 10:42:33 +01001826static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Jens Axboe5e705372006-07-13 12:39:25 +02001828 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Jens Axboe5e705372006-07-13 12:39:25 +02001830 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001831 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Jens Axboe22e2c502005-06-27 10:55:12 +02001833 BUG_ON(!cfqq->allocated[rw]);
1834 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Jens Axboe5e705372006-07-13 12:39:25 +02001836 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02001839 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 cfq_put_queue(cfqq);
1842 }
1843}
1844
1845/*
Jens Axboe22e2c502005-06-27 10:55:12 +02001846 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 */
Jens Axboe22e2c502005-06-27 10:55:12 +02001848static int
Jens Axboecb78b282006-07-28 09:32:57 +02001849cfq_set_request(request_queue_t *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
1851 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe3b181522005-06-27 10:56:24 +02001852 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 struct cfq_io_context *cic;
1854 const int rw = rq_data_dir(rq);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001855 const int is_sync = rq_is_sync(rq);
1856 pid_t key = cfq_queue_pid(tsk, rw, is_sync);
Jens Axboe22e2c502005-06-27 10:55:12 +02001857 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 unsigned long flags;
1859
1860 might_sleep_if(gfp_mask & __GFP_WAIT);
1861
Jens Axboee2d74ac2006-03-28 08:59:01 +02001862 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02001863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 spin_lock_irqsave(q->queue_lock, flags);
1865
Jens Axboe22e2c502005-06-27 10:55:12 +02001866 if (!cic)
1867 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Al Viro12a05732006-03-18 13:38:01 -05001869 if (!cic->cfqq[is_sync]) {
Al Viro6f325a12006-03-18 14:58:37 -05001870 cfqq = cfq_get_queue(cfqd, key, tsk, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02001871 if (!cfqq)
1872 goto queue_fail;
1873
Al Viro12a05732006-03-18 13:38:01 -05001874 cic->cfqq[is_sync] = cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001875 } else
Al Viro12a05732006-03-18 13:38:01 -05001876 cfqq = cic->cfqq[is_sync];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 cfqq->allocated[rw]++;
Jens Axboe3b181522005-06-27 10:56:24 +02001879 cfq_clear_cfqq_must_alloc(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001880 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02001881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 spin_unlock_irqrestore(q->queue_lock, flags);
1883
Jens Axboe5e705372006-07-13 12:39:25 +02001884 rq->elevator_private = cic;
1885 rq->elevator_private2 = cfqq;
1886 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02001887
Jens Axboe22e2c502005-06-27 10:55:12 +02001888queue_fail:
1889 if (cic)
1890 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02001891
Jens Axboe3b181522005-06-27 10:56:24 +02001892 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 spin_unlock_irqrestore(q->queue_lock, flags);
1894 return 1;
1895}
1896
David Howells65f27f32006-11-22 14:55:48 +00001897static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02001898{
David Howells65f27f32006-11-22 14:55:48 +00001899 struct cfq_data *cfqd =
1900 container_of(work, struct cfq_data, unplug_work);
1901 request_queue_t *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001902 unsigned long flags;
1903
1904 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboedc72ef42006-07-20 14:54:05 +02001905 blk_start_queueing(q);
Jens Axboe22e2c502005-06-27 10:55:12 +02001906 spin_unlock_irqrestore(q->queue_lock, flags);
1907}
1908
1909/*
1910 * Timer running if the active_queue is currently idling inside its time slice
1911 */
1912static void cfq_idle_slice_timer(unsigned long data)
1913{
1914 struct cfq_data *cfqd = (struct cfq_data *) data;
1915 struct cfq_queue *cfqq;
1916 unsigned long flags;
1917
1918 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1919
1920 if ((cfqq = cfqd->active_queue) != NULL) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001921 /*
1922 * expired
1923 */
Jens Axboe44f7c162007-01-19 11:51:58 +11001924 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001925 goto expire;
1926
1927 /*
1928 * only expire and reinvoke request handler, if there are
1929 * other queues with pending requests
1930 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02001931 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02001932 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02001933
1934 /*
1935 * not expired and it has a request pending, let it dispatch
1936 */
Jens Axboedd67d052006-06-21 09:36:18 +02001937 if (!RB_EMPTY_ROOT(&cfqq->sort_list)) {
Jens Axboe3b181522005-06-27 10:56:24 +02001938 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001939 goto out_kick;
1940 }
1941 }
1942expire:
1943 cfq_slice_expired(cfqd, 0);
1944out_kick:
Jens Axboe3b181522005-06-27 10:56:24 +02001945 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02001946out_cont:
1947 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1948}
1949
1950/*
1951 * Timer running if an idle class queue is waiting for service
1952 */
1953static void cfq_idle_class_timer(unsigned long data)
1954{
1955 struct cfq_data *cfqd = (struct cfq_data *) data;
1956 unsigned long flags, end;
1957
1958 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1959
1960 /*
1961 * race with a non-idle queue, reset timer
1962 */
1963 end = cfqd->last_end_request + CFQ_IDLE_GRACE;
Jens Axboeae818a32006-06-01 10:13:43 +02001964 if (!time_after_eq(jiffies, end))
1965 mod_timer(&cfqd->idle_class_timer, end);
1966 else
Jens Axboe3b181522005-06-27 10:56:24 +02001967 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02001968
1969 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1970}
1971
Jens Axboe3b181522005-06-27 10:56:24 +02001972static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
1973{
1974 del_timer_sync(&cfqd->idle_slice_timer);
1975 del_timer_sync(&cfqd->idle_class_timer);
1976 blk_sync_queue(cfqd->queue);
1977}
Jens Axboe22e2c502005-06-27 10:55:12 +02001978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979static void cfq_exit_queue(elevator_t *e)
1980{
Jens Axboe22e2c502005-06-27 10:55:12 +02001981 struct cfq_data *cfqd = e->elevator_data;
Al Virod9ff4182006-03-18 13:51:22 -05001982 request_queue_t *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001983
Jens Axboe3b181522005-06-27 10:56:24 +02001984 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001985
Al Virod9ff4182006-03-18 13:51:22 -05001986 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001987
Al Virod9ff4182006-03-18 13:51:22 -05001988 if (cfqd->active_queue)
1989 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001990
1991 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05001992 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
1993 struct cfq_io_context,
1994 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02001995
1996 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05001997 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001998
Al Virod9ff4182006-03-18 13:51:22 -05001999 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05002000
2001 cfq_shutdown_timer_wq(cfqd);
2002
Al Viroa90d7422006-03-18 12:05:37 -05002003 kfree(cfqd->cfq_hash);
2004 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
2006
Jens Axboebb37b942006-12-01 10:42:33 +01002007static void *cfq_init_queue(request_queue_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 struct cfq_data *cfqd;
2010 int i;
2011
Jens Axboeb5deef92006-07-19 23:39:40 +02002012 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02002014 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016 memset(cfqd, 0, sizeof(*cfqd));
Jens Axboe22e2c502005-06-27 10:55:12 +02002017
2018 for (i = 0; i < CFQ_PRIO_LISTS; i++)
2019 INIT_LIST_HEAD(&cfqd->rr_list[i]);
2020
2021 INIT_LIST_HEAD(&cfqd->busy_rr);
2022 INIT_LIST_HEAD(&cfqd->cur_rr);
2023 INIT_LIST_HEAD(&cfqd->idle_rr);
Al Virod9ff4182006-03-18 13:51:22 -05002024 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Jens Axboeb5deef92006-07-19 23:39:40 +02002026 cfqd->cfq_hash = kmalloc_node(sizeof(struct hlist_head) * CFQ_QHASH_ENTRIES, GFP_KERNEL, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (!cfqd->cfq_hash)
Jens Axboe5e705372006-07-13 12:39:25 +02002028 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 for (i = 0; i < CFQ_QHASH_ENTRIES; i++)
2031 INIT_HLIST_HEAD(&cfqd->cfq_hash[i]);
2032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Jens Axboe22e2c502005-06-27 10:55:12 +02002035 init_timer(&cfqd->idle_slice_timer);
2036 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
2037 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
2038
2039 init_timer(&cfqd->idle_class_timer);
2040 cfqd->idle_class_timer.function = cfq_idle_class_timer;
2041 cfqd->idle_class_timer.data = (unsigned long) cfqd;
2042
David Howells65f27f32006-11-22 14:55:48 +00002043 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02002044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02002046 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
2047 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 cfqd->cfq_back_max = cfq_back_max;
2049 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02002050 cfqd->cfq_slice[0] = cfq_slice_async;
2051 cfqd->cfq_slice[1] = cfq_slice_sync;
2052 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
2053 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe3b181522005-06-27 10:56:24 +02002054
Jens Axboebc1c1162006-06-08 08:49:06 +02002055 return cfqd;
Jens Axboe5e705372006-07-13 12:39:25 +02002056out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 kfree(cfqd);
Jens Axboebc1c1162006-06-08 08:49:06 +02002058 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}
2060
2061static void cfq_slab_kill(void)
2062{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (cfq_pool)
2064 kmem_cache_destroy(cfq_pool);
2065 if (cfq_ioc_pool)
2066 kmem_cache_destroy(cfq_ioc_pool);
2067}
2068
2069static int __init cfq_slab_setup(void)
2070{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 cfq_pool = kmem_cache_create("cfq_pool", sizeof(struct cfq_queue), 0, 0,
2072 NULL, NULL);
2073 if (!cfq_pool)
2074 goto fail;
2075
2076 cfq_ioc_pool = kmem_cache_create("cfq_ioc_pool",
2077 sizeof(struct cfq_io_context), 0, 0, NULL, NULL);
2078 if (!cfq_ioc_pool)
2079 goto fail;
2080
2081 return 0;
2082fail:
2083 cfq_slab_kill();
2084 return -ENOMEM;
2085}
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087/*
2088 * sysfs parts below -->
2089 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091static ssize_t
2092cfq_var_show(unsigned int var, char *page)
2093{
2094 return sprintf(page, "%d\n", var);
2095}
2096
2097static ssize_t
2098cfq_var_store(unsigned int *var, const char *page, size_t count)
2099{
2100 char *p = (char *) page;
2101
2102 *var = simple_strtoul(p, &p, 10);
2103 return count;
2104}
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Al Viro3d1ab402006-03-18 18:35:43 -05002107static ssize_t __FUNC(elevator_t *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002109 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 unsigned int __data = __VAR; \
2111 if (__CONV) \
2112 __data = jiffies_to_msecs(__data); \
2113 return cfq_var_show(__data, (page)); \
2114}
2115SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002116SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
2117SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05002118SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
2119SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002120SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
2121SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
2122SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
2123SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124#undef SHOW_FUNCTION
2125
2126#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Al Viro3d1ab402006-03-18 18:35:43 -05002127static ssize_t __FUNC(elevator_t *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002129 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 unsigned int __data; \
2131 int ret = cfq_var_store(&__data, (page), count); \
2132 if (__data < (MIN)) \
2133 __data = (MIN); \
2134 else if (__data > (MAX)) \
2135 __data = (MAX); \
2136 if (__CONV) \
2137 *(__PTR) = msecs_to_jiffies(__data); \
2138 else \
2139 *(__PTR) = __data; \
2140 return ret; \
2141}
2142STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002143STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1, UINT_MAX, 1);
2144STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1, UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05002145STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
2146STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1, UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002147STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
2148STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
2149STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
2150STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1, UINT_MAX, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151#undef STORE_FUNCTION
2152
Al Viroe572ec72006-03-18 22:27:18 -05002153#define CFQ_ATTR(name) \
2154 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02002155
Al Viroe572ec72006-03-18 22:27:18 -05002156static struct elv_fs_entry cfq_attrs[] = {
2157 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05002158 CFQ_ATTR(fifo_expire_sync),
2159 CFQ_ATTR(fifo_expire_async),
2160 CFQ_ATTR(back_seek_max),
2161 CFQ_ATTR(back_seek_penalty),
2162 CFQ_ATTR(slice_sync),
2163 CFQ_ATTR(slice_async),
2164 CFQ_ATTR(slice_async_rq),
2165 CFQ_ATTR(slice_idle),
Al Viroe572ec72006-03-18 22:27:18 -05002166 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167};
2168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169static struct elevator_type iosched_cfq = {
2170 .ops = {
2171 .elevator_merge_fn = cfq_merge,
2172 .elevator_merged_fn = cfq_merged_request,
2173 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01002174 .elevator_allow_merge_fn = cfq_allow_merge,
Jens Axboeb4878f22005-10-20 16:42:29 +02002175 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02002177 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 .elevator_deactivate_req_fn = cfq_deactivate_request,
2179 .elevator_queue_empty_fn = cfq_queue_empty,
2180 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02002181 .elevator_former_req_fn = elv_rb_former_request,
2182 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 .elevator_set_req_fn = cfq_set_request,
2184 .elevator_put_req_fn = cfq_put_request,
2185 .elevator_may_queue_fn = cfq_may_queue,
2186 .elevator_init_fn = cfq_init_queue,
2187 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02002188 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 },
Al Viro3d1ab402006-03-18 18:35:43 -05002190 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 .elevator_name = "cfq",
2192 .elevator_owner = THIS_MODULE,
2193};
2194
2195static int __init cfq_init(void)
2196{
2197 int ret;
2198
Jens Axboe22e2c502005-06-27 10:55:12 +02002199 /*
2200 * could be 0 on HZ < 1000 setups
2201 */
2202 if (!cfq_slice_async)
2203 cfq_slice_async = 1;
2204 if (!cfq_slice_idle)
2205 cfq_slice_idle = 1;
2206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 if (cfq_slab_setup())
2208 return -ENOMEM;
2209
2210 ret = elv_register(&iosched_cfq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002211 if (ret)
2212 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 return ret;
2215}
2216
2217static void __exit cfq_exit(void)
2218{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07002219 DECLARE_COMPLETION_ONSTACK(all_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05002221 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02002222 /* ioc_gone's update must be visible before reading ioc_count */
2223 smp_wmb();
Jens Axboe4050cf12006-07-19 05:07:12 +02002224 if (elv_ioc_count_read(ioc_count))
OGAWA Hirofumifba82272006-04-18 09:44:06 +02002225 wait_for_completion(ioc_gone);
Al Viro334e94d2006-03-18 15:05:53 -05002226 synchronize_rcu();
Christoph Hellwig83521d32005-10-30 15:01:39 -08002227 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228}
2229
2230module_init(cfq_init);
2231module_exit(cfq_exit);
2232
2233MODULE_AUTHOR("Jens Axboe");
2234MODULE_LICENSE("GPL");
2235MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");