blob: 32aa3674f8a3d9423e3da00acf088470ce017fd7 [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/rbtree.h>
Jens Axboe22e2c502005-06-27 10:55:12 +020013#include <linux/ioprio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/*
16 * tunables
17 */
Jens Axboefe094d92008-01-31 13:08:54 +010018/* max queue in one round of service */
19static const int cfq_quantum = 4;
Arjan van de Ven64100092006-01-06 09:46:02 +010020static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
Jens Axboefe094d92008-01-31 13:08:54 +010021/* maximum backwards seek, in KiB */
22static const int cfq_back_max = 16 * 1024;
23/* penalty of a backwards seek */
24static const int cfq_back_penalty = 2;
Arjan van de Ven64100092006-01-06 09:46:02 +010025static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020026static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010027static const int cfq_slice_async_rq = 2;
Jens Axboecaaa5f92006-06-16 11:23:00 +020028static int cfq_slice_idle = HZ / 125;
Jens Axboe22e2c502005-06-27 10:55:12 +020029
Jens Axboed9e76202007-04-20 14:27:50 +020030/*
Jens Axboe08717142008-01-28 11:38:15 +010031 * offset from end of service tree
Jens Axboed9e76202007-04-20 14:27:50 +020032 */
Jens Axboe08717142008-01-28 11:38:15 +010033#define CFQ_IDLE_DELAY (HZ / 5)
Jens Axboed9e76202007-04-20 14:27:50 +020034
35/*
36 * below this threshold, we consider thinktime immediate
37 */
38#define CFQ_MIN_TT (2)
39
Jens Axboe22e2c502005-06-27 10:55:12 +020040#define CFQ_SLICE_SCALE (5)
41
Jens Axboefe094d92008-01-31 13:08:54 +010042#define RQ_CIC(rq) \
43 ((struct cfq_io_context *) (rq)->elevator_private)
Jens Axboe5e705372006-07-13 12:39:25 +020044#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;
Jens Axboe9a11b4e2008-05-29 09:32:08 +020051static DEFINE_SPINLOCK(ioc_gone_lock);
Al Viro334e94d2006-03-18 15:05:53 -050052
Jens Axboe22e2c502005-06-27 10:55:12 +020053#define CFQ_PRIO_LISTS IOPRIO_BE_NR
54#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
Jens Axboe22e2c502005-06-27 10:55:12 +020055#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
56
Jens Axboe3b181522005-06-27 10:56:24 +020057#define ASYNC (0)
58#define SYNC (1)
59
Jens Axboe206dc692006-03-28 13:03:44 +020060#define sample_valid(samples) ((samples) > 80)
61
Jens Axboe22e2c502005-06-27 10:55:12 +020062/*
Jens Axboecc09e292007-04-26 12:53:50 +020063 * Most of our rbtree usage is for sorting with min extraction, so
64 * if we cache the leftmost node we don't have to walk down the tree
65 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
66 * move this into the elevator for the rq sorting as well.
67 */
68struct cfq_rb_root {
69 struct rb_root rb;
70 struct rb_node *left;
71};
72#define CFQ_RB_ROOT (struct cfq_rb_root) { RB_ROOT, NULL, }
73
74/*
Jens Axboe22e2c502005-06-27 10:55:12 +020075 * Per block device queue structure
76 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077struct cfq_data {
Jens Axboe165125e2007-07-24 09:28:11 +020078 struct request_queue *queue;
Jens Axboe22e2c502005-06-27 10:55:12 +020079
80 /*
81 * rr list of queues with requests and the count of them
82 */
Jens Axboecc09e292007-04-26 12:53:50 +020083 struct cfq_rb_root service_tree;
Jens Axboe22e2c502005-06-27 10:55:12 +020084 unsigned int busy_queues;
85
Jens Axboe22e2c502005-06-27 10:55:12 +020086 int rq_in_driver;
Jens Axboe3ed9a292007-04-23 08:33:33 +020087 int sync_flight;
Jens Axboe25776e32006-06-01 10:12:26 +020088 int hw_tag;
Jens Axboe22e2c502005-06-27 10:55:12 +020089
90 /*
Jens Axboe22e2c502005-06-27 10:55:12 +020091 * idle window management
92 */
93 struct timer_list idle_slice_timer;
94 struct work_struct unplug_work;
95
96 struct cfq_queue *active_queue;
97 struct cfq_io_context *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +020098
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +020099 /*
100 * async queue for each priority case
101 */
102 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
103 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200104
Jens Axboe6d048f52007-04-25 12:44:27 +0200105 sector_t last_position;
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;
Richard Kennedybe754d22008-05-23 06:52:00 +0200128 /* various state flags, see below */
129 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /* parent cfq_data */
131 struct cfq_data *cfqd;
Jens Axboed9e76202007-04-20 14:27:50 +0200132 /* service_tree member */
133 struct rb_node rb_node;
134 /* service_tree key */
135 unsigned long rb_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /* 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];
144 /* fifo list of requests in sort_list */
Jens Axboe22e2c502005-06-27 10:55:12 +0200145 struct list_head fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Jens Axboe22e2c502005-06-27 10:55:12 +0200147 unsigned long slice_end;
Jens Axboec5b680f2007-01-19 11:56:49 +1100148 long slice_resid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Richard Kennedybe754d22008-05-23 06:52:00 +0200150 /* pending metadata requests */
151 int meta_pending;
Jens Axboe6d048f52007-04-25 12:44:27 +0200152 /* number of requests that are on the dispatch list or inside driver */
153 int dispatched;
Jens Axboe22e2c502005-06-27 10:55:12 +0200154
155 /* io prio of this group */
156 unsigned short ioprio, org_ioprio;
157 unsigned short ioprio_class, org_ioprio_class;
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
160
Jens Axboe3b181522005-06-27 10:56:24 +0200161enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100162 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
163 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
164 CFQ_CFQQ_FLAG_must_alloc, /* must be allowed rq alloc */
165 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
166 CFQ_CFQQ_FLAG_must_dispatch, /* must dispatch, even if expired */
167 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
168 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
169 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
170 CFQ_CFQQ_FLAG_queue_new, /* queue never been serviced */
Jens Axboe44f7c162007-01-19 11:51:58 +1100171 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200172 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jens Axboe3b181522005-06-27 10:56:24 +0200173};
174
175#define CFQ_CFQQ_FNS(name) \
176static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
177{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100178 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200179} \
180static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
181{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100182 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200183} \
184static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
185{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100186 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200187}
188
189CFQ_CFQQ_FNS(on_rr);
190CFQ_CFQQ_FNS(wait_request);
191CFQ_CFQQ_FNS(must_alloc);
192CFQ_CFQQ_FNS(must_alloc_slice);
193CFQ_CFQQ_FNS(must_dispatch);
194CFQ_CFQQ_FNS(fifo_expire);
195CFQ_CFQQ_FNS(idle_window);
196CFQ_CFQQ_FNS(prio_changed);
Jens Axboe53b037442006-07-28 09:48:51 +0200197CFQ_CFQQ_FNS(queue_new);
Jens Axboe44f7c162007-01-19 11:51:58 +1100198CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200199CFQ_CFQQ_FNS(sync);
Jens Axboe3b181522005-06-27 10:56:24 +0200200#undef CFQ_CFQQ_FNS
201
Jens Axboe165125e2007-07-24 09:28:11 +0200202static void cfq_dispatch_insert(struct request_queue *, struct request *);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200203static struct cfq_queue *cfq_get_queue(struct cfq_data *, int,
Jens Axboefd0928d2008-01-24 08:52:45 +0100204 struct io_context *, gfp_t);
Jens Axboe4ac845a2008-01-24 08:44:49 +0100205static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
Vasily Tarasov91fac312007-04-25 12:29:51 +0200206 struct io_context *);
207
208static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
209 int is_sync)
210{
211 return cic->cfqq[!!is_sync];
212}
213
214static inline void cic_set_cfqq(struct cfq_io_context *cic,
215 struct cfq_queue *cfqq, int is_sync)
216{
217 cic->cfqq[!!is_sync] = cfqq;
218}
219
220/*
221 * We regard a request as SYNC, if it's either a read or has the SYNC bit
222 * set (in which case it could also be direct WRITE).
223 */
224static inline int cfq_bio_sync(struct bio *bio)
225{
226 if (bio_data_dir(bio) == READ || bio_sync(bio))
227 return 1;
228
229 return 0;
230}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700233 * scheduler run of queue, if there are requests pending and no one in the
234 * driver that will restart queueing
235 */
236static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
237{
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100238 if (cfqd->busy_queues)
Andrew Morton99f95e52005-06-27 20:14:05 -0700239 kblockd_schedule_work(&cfqd->unplug_work);
240}
241
Jens Axboe165125e2007-07-24 09:28:11 +0200242static int cfq_queue_empty(struct request_queue *q)
Andrew Morton99f95e52005-06-27 20:14:05 -0700243{
244 struct cfq_data *cfqd = q->elevator->elevator_data;
245
Jens Axboeb4878f22005-10-20 16:42:29 +0200246 return !cfqd->busy_queues;
Andrew Morton99f95e52005-06-27 20:14:05 -0700247}
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100250 * Scale schedule slice based on io priority. Use the sync time slice only
251 * if a queue is marked sync and has sync io queued. A sync queue with async
252 * io only, should not get full sync slice length.
253 */
Jens Axboed9e76202007-04-20 14:27:50 +0200254static inline int cfq_prio_slice(struct cfq_data *cfqd, int sync,
255 unsigned short prio)
256{
257 const int base_slice = cfqd->cfq_slice[sync];
258
259 WARN_ON(prio >= IOPRIO_BE_NR);
260
261 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
262}
263
Jens Axboe44f7c162007-01-19 11:51:58 +1100264static inline int
265cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
266{
Jens Axboed9e76202007-04-20 14:27:50 +0200267 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100268}
269
270static inline void
271cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
272{
273 cfqq->slice_end = cfq_prio_to_slice(cfqd, cfqq) + jiffies;
274}
275
276/*
277 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
278 * isn't valid until the first request from the dispatch is activated
279 * and the slice time set.
280 */
281static inline int cfq_slice_used(struct cfq_queue *cfqq)
282{
283 if (cfq_cfqq_slice_new(cfqq))
284 return 0;
285 if (time_before(jiffies, cfqq->slice_end))
286 return 0;
287
288 return 1;
289}
290
291/*
Jens Axboe5e705372006-07-13 12:39:25 +0200292 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200294 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
Jens Axboe5e705372006-07-13 12:39:25 +0200296static struct request *
297cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 sector_t last, s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200301#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
302#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
303 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Jens Axboe5e705372006-07-13 12:39:25 +0200305 if (rq1 == NULL || rq1 == rq2)
306 return rq2;
307 if (rq2 == NULL)
308 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200309
Jens Axboe5e705372006-07-13 12:39:25 +0200310 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
311 return rq1;
312 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
313 return rq2;
Jens Axboe374f84a2006-07-23 01:42:19 +0200314 if (rq_is_meta(rq1) && !rq_is_meta(rq2))
315 return rq1;
316 else if (rq_is_meta(rq2) && !rq_is_meta(rq1))
317 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Jens Axboe5e705372006-07-13 12:39:25 +0200319 s1 = rq1->sector;
320 s2 = rq2->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Jens Axboe6d048f52007-04-25 12:44:27 +0200322 last = cfqd->last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /*
325 * by definition, 1KiB is 2 sectors
326 */
327 back_max = cfqd->cfq_back_max * 2;
328
329 /*
330 * Strict one way elevator _except_ in the case where we allow
331 * short backward seeks which are biased as twice the cost of a
332 * similar forward seek.
333 */
334 if (s1 >= last)
335 d1 = s1 - last;
336 else if (s1 + back_max >= last)
337 d1 = (last - s1) * cfqd->cfq_back_penalty;
338 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200339 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 if (s2 >= last)
342 d2 = s2 - last;
343 else if (s2 + back_max >= last)
344 d2 = (last - s2) * cfqd->cfq_back_penalty;
345 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200346 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Andreas Mohre8a99052006-03-28 08:59:49 +0200350 /*
351 * By doing switch() on the bit mask "wrap" we avoid having to
352 * check two variables for all permutations: --> faster!
353 */
354 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200355 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200356 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200357 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200358 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200359 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200360 else {
361 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200362 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200363 else
Jens Axboe5e705372006-07-13 12:39:25 +0200364 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200365 }
366
367 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200368 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200369 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200370 return rq2;
371 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200372 default:
373 /*
374 * Since both rqs are wrapped,
375 * start with the one that's further behind head
376 * (--> only *one* back seek required),
377 * since back seek takes more time than forward.
378 */
379 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200380 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 else
Jens Axboe5e705372006-07-13 12:39:25 +0200382 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384}
385
Jens Axboe498d3aa22007-04-26 12:54:48 +0200386/*
387 * The below is leftmost cache rbtree addon
388 */
Jens Axboe08717142008-01-28 11:38:15 +0100389static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200390{
391 if (!root->left)
392 root->left = rb_first(&root->rb);
393
Jens Axboe08717142008-01-28 11:38:15 +0100394 if (root->left)
395 return rb_entry(root->left, struct cfq_queue, rb_node);
396
397 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200398}
399
400static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
401{
402 if (root->left == n)
403 root->left = NULL;
404
405 rb_erase(n, &root->rb);
406 RB_CLEAR_NODE(n);
407}
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409/*
410 * would be nice to take fifo expire time into account as well
411 */
Jens Axboe5e705372006-07-13 12:39:25 +0200412static struct request *
413cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
414 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Jens Axboe21183b02006-07-13 12:33:14 +0200416 struct rb_node *rbnext = rb_next(&last->rb_node);
417 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200418 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Jens Axboe21183b02006-07-13 12:33:14 +0200420 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200423 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200426 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200427 else {
428 rbnext = rb_first(&cfqq->sort_list);
429 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200430 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Jens Axboe21183b02006-07-13 12:33:14 +0200433 return cfq_choose_req(cfqd, next, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Jens Axboed9e76202007-04-20 14:27:50 +0200436static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
437 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Jens Axboed9e76202007-04-20 14:27:50 +0200439 /*
440 * just an approximation, should be ok.
441 */
Jens Axboe67e6b492007-04-20 14:18:00 +0200442 return (cfqd->busy_queues - 1) * (cfq_prio_slice(cfqd, 1, 0) -
443 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200444}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Jens Axboe498d3aa22007-04-26 12:54:48 +0200446/*
447 * The cfqd->service_tree holds all pending cfq_queue's that have
448 * requests waiting to be processed. It is sorted in the order that
449 * we will service the queues.
450 */
Jens Axboed9e76202007-04-20 14:27:50 +0200451static void cfq_service_tree_add(struct cfq_data *cfqd,
Jens Axboeedd75ff2007-04-19 12:03:34 +0200452 struct cfq_queue *cfqq, int add_front)
Jens Axboed9e76202007-04-20 14:27:50 +0200453{
Jens Axboe08717142008-01-28 11:38:15 +0100454 struct rb_node **p, *parent;
455 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +0200456 unsigned long rb_key;
Jens Axboe498d3aa22007-04-26 12:54:48 +0200457 int left;
Jens Axboed9e76202007-04-20 14:27:50 +0200458
Jens Axboe08717142008-01-28 11:38:15 +0100459 if (cfq_class_idle(cfqq)) {
460 rb_key = CFQ_IDLE_DELAY;
461 parent = rb_last(&cfqd->service_tree.rb);
462 if (parent && parent != &cfqq->rb_node) {
463 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
464 rb_key += __cfqq->rb_key;
465 } else
466 rb_key += jiffies;
467 } else if (!add_front) {
Jens Axboeedd75ff2007-04-19 12:03:34 +0200468 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
469 rb_key += cfqq->slice_resid;
470 cfqq->slice_resid = 0;
471 } else
472 rb_key = 0;
Jens Axboed9e76202007-04-20 14:27:50 +0200473
474 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Jens Axboe99f96282007-02-05 11:56:25 +0100475 /*
Jens Axboed9e76202007-04-20 14:27:50 +0200476 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +0100477 */
Jens Axboed9e76202007-04-20 14:27:50 +0200478 if (rb_key == cfqq->rb_key)
479 return;
Jens Axboe53b037442006-07-28 09:48:51 +0200480
Jens Axboecc09e292007-04-26 12:53:50 +0200481 cfq_rb_erase(&cfqq->rb_node, &cfqd->service_tree);
Jens Axboe22e2c502005-06-27 10:55:12 +0200482 }
Jens Axboed9e76202007-04-20 14:27:50 +0200483
Jens Axboe498d3aa22007-04-26 12:54:48 +0200484 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +0100485 parent = NULL;
486 p = &cfqd->service_tree.rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +0200487 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +0200488 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +0200489
Jens Axboed9e76202007-04-20 14:27:50 +0200490 parent = *p;
491 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
492
Jens Axboe0c534e02007-04-18 20:01:57 +0200493 /*
494 * sort RT queues first, we always want to give
Jens Axboe67060e32007-04-18 20:13:32 +0200495 * preference to them. IDLE queues goes to the back.
496 * after that, sort on the next service time.
Jens Axboe0c534e02007-04-18 20:01:57 +0200497 */
498 if (cfq_class_rt(cfqq) > cfq_class_rt(__cfqq))
Jens Axboe67060e32007-04-18 20:13:32 +0200499 n = &(*p)->rb_left;
Jens Axboe0c534e02007-04-18 20:01:57 +0200500 else if (cfq_class_rt(cfqq) < cfq_class_rt(__cfqq))
Jens Axboe67060e32007-04-18 20:13:32 +0200501 n = &(*p)->rb_right;
502 else if (cfq_class_idle(cfqq) < cfq_class_idle(__cfqq))
503 n = &(*p)->rb_left;
504 else if (cfq_class_idle(cfqq) > cfq_class_idle(__cfqq))
505 n = &(*p)->rb_right;
Jens Axboe0c534e02007-04-18 20:01:57 +0200506 else if (rb_key < __cfqq->rb_key)
Jens Axboe67060e32007-04-18 20:13:32 +0200507 n = &(*p)->rb_left;
508 else
509 n = &(*p)->rb_right;
510
511 if (n == &(*p)->rb_right)
Jens Axboecc09e292007-04-26 12:53:50 +0200512 left = 0;
Jens Axboe67060e32007-04-18 20:13:32 +0200513
514 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +0200515 }
516
Jens Axboecc09e292007-04-26 12:53:50 +0200517 if (left)
518 cfqd->service_tree.left = &cfqq->rb_node;
519
Jens Axboed9e76202007-04-20 14:27:50 +0200520 cfqq->rb_key = rb_key;
521 rb_link_node(&cfqq->rb_node, parent, p);
Jens Axboecc09e292007-04-26 12:53:50 +0200522 rb_insert_color(&cfqq->rb_node, &cfqd->service_tree.rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Jens Axboe498d3aa22007-04-26 12:54:48 +0200525/*
526 * Update cfqq's position in the service tree.
527 */
Jens Axboeedd75ff2007-04-19 12:03:34 +0200528static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +0200529{
Jens Axboe6d048f52007-04-25 12:44:27 +0200530 /*
531 * Resorting requires the cfqq to be on the RR list already.
532 */
Jens Axboe498d3aa22007-04-26 12:54:48 +0200533 if (cfq_cfqq_on_rr(cfqq))
Jens Axboeedd75ff2007-04-19 12:03:34 +0200534 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboe6d048f52007-04-25 12:44:27 +0200535}
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537/*
538 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +0200539 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 */
Jens Axboefebffd62008-01-28 13:19:43 +0100541static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Jens Axboe3b181522005-06-27 10:56:24 +0200543 BUG_ON(cfq_cfqq_on_rr(cfqq));
544 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 cfqd->busy_queues++;
546
Jens Axboeedd75ff2007-04-19 12:03:34 +0200547 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Jens Axboe498d3aa22007-04-26 12:54:48 +0200550/*
551 * Called when the cfqq no longer has requests pending, remove it from
552 * the service tree.
553 */
Jens Axboefebffd62008-01-28 13:19:43 +0100554static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Jens Axboe3b181522005-06-27 10:56:24 +0200556 BUG_ON(!cfq_cfqq_on_rr(cfqq));
557 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Jens Axboecc09e292007-04-26 12:53:50 +0200559 if (!RB_EMPTY_NODE(&cfqq->rb_node))
560 cfq_rb_erase(&cfqq->rb_node, &cfqd->service_tree);
Jens Axboed9e76202007-04-20 14:27:50 +0200561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 BUG_ON(!cfqd->busy_queues);
563 cfqd->busy_queues--;
564}
565
566/*
567 * rb tree support functions
568 */
Jens Axboefebffd62008-01-28 13:19:43 +0100569static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Jens Axboe5e705372006-07-13 12:39:25 +0200571 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +0200572 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5e705372006-07-13 12:39:25 +0200573 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Jens Axboeb4878f22005-10-20 16:42:29 +0200575 BUG_ON(!cfqq->queued[sync]);
576 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Jens Axboe5e705372006-07-13 12:39:25 +0200578 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Jens Axboedd67d052006-06-21 09:36:18 +0200580 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboeb4878f22005-10-20 16:42:29 +0200581 cfq_del_cfqq_rr(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Jens Axboe5e705372006-07-13 12:39:25 +0200584static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Jens Axboe5e705372006-07-13 12:39:25 +0200586 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe21183b02006-07-13 12:33:14 +0200588 struct request *__alias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Jens Axboe5380a102006-07-13 12:37:56 +0200590 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 /*
593 * looks a little odd, but the first insert might return an alias.
594 * if that happens, put the alias on the dispatch list
595 */
Jens Axboe21183b02006-07-13 12:33:14 +0200596 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +0200597 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +0100598
599 if (!cfq_cfqq_on_rr(cfqq))
600 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +0200601
602 /*
603 * check if this request is a better next-serve candidate
604 */
605 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq);
606 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Jens Axboefebffd62008-01-28 13:19:43 +0100609static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Jens Axboe5380a102006-07-13 12:37:56 +0200611 elv_rb_del(&cfqq->sort_list, rq);
612 cfqq->queued[rq_is_sync(rq)]--;
Jens Axboe5e705372006-07-13 12:39:25 +0200613 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Jens Axboe206dc692006-03-28 13:03:44 +0200616static struct request *
617cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Jens Axboe206dc692006-03-28 13:03:44 +0200619 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200620 struct cfq_io_context *cic;
Jens Axboe206dc692006-03-28 13:03:44 +0200621 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Jens Axboe4ac845a2008-01-24 08:44:49 +0100623 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200624 if (!cic)
625 return NULL;
626
627 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +0200628 if (cfqq) {
629 sector_t sector = bio->bi_sector + bio_sectors(bio);
630
Jens Axboe21183b02006-07-13 12:33:14 +0200631 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +0200632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return NULL;
635}
636
Jens Axboe165125e2007-07-24 09:28:11 +0200637static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +0200638{
639 struct cfq_data *cfqd = q->elevator->elevator_data;
640
641 cfqd->rq_in_driver++;
Jens Axboe25776e32006-06-01 10:12:26 +0200642
643 /*
644 * If the depth is larger 1, it really could be queueing. But lets
645 * make the mark a little higher - idling could still be good for
646 * low queueing, and a low queueing number could also just indicate
647 * a SCSI mid layer like behaviour where limit+1 is often seen.
648 */
649 if (!cfqd->hw_tag && cfqd->rq_in_driver > 4)
650 cfqd->hw_tag = 1;
Jens Axboe6d048f52007-04-25 12:44:27 +0200651
652 cfqd->last_position = rq->hard_sector + rq->hard_nr_sectors;
Jens Axboeb4878f22005-10-20 16:42:29 +0200653}
654
Jens Axboe165125e2007-07-24 09:28:11 +0200655static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Jens Axboe22e2c502005-06-27 10:55:12 +0200657 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Jens Axboeb4878f22005-10-20 16:42:29 +0200659 WARN_ON(!cfqd->rq_in_driver);
660 cfqd->rq_in_driver--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Jens Axboeb4878f22005-10-20 16:42:29 +0200663static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Jens Axboe5e705372006-07-13 12:39:25 +0200665 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +0200666
Jens Axboe5e705372006-07-13 12:39:25 +0200667 if (cfqq->next_rq == rq)
668 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Jens Axboeb4878f22005-10-20 16:42:29 +0200670 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +0200671 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +0200672
673 if (rq_is_meta(rq)) {
674 WARN_ON(!cfqq->meta_pending);
675 cfqq->meta_pending--;
676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Jens Axboe165125e2007-07-24 09:28:11 +0200679static int cfq_merge(struct request_queue *q, struct request **req,
680 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 struct cfq_data *cfqd = q->elevator->elevator_data;
683 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Jens Axboe206dc692006-03-28 13:03:44 +0200685 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +0200686 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +0200687 *req = __rq;
688 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
691 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Jens Axboe165125e2007-07-24 09:28:11 +0200694static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +0200695 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Jens Axboe21183b02006-07-13 12:33:14 +0200697 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +0200698 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Jens Axboe5e705372006-07-13 12:39:25 +0200700 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704static void
Jens Axboe165125e2007-07-24 09:28:11 +0200705cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct request *next)
707{
Jens Axboe22e2c502005-06-27 10:55:12 +0200708 /*
709 * reposition in fifo if next is older than rq
710 */
711 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
712 time_before(next->start_time, rq->start_time))
713 list_move(&rq->queuelist, &next->queuelist);
714
Jens Axboeb4878f22005-10-20 16:42:29 +0200715 cfq_remove_request(next);
Jens Axboe22e2c502005-06-27 10:55:12 +0200716}
717
Jens Axboe165125e2007-07-24 09:28:11 +0200718static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +0100719 struct bio *bio)
720{
721 struct cfq_data *cfqd = q->elevator->elevator_data;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200722 struct cfq_io_context *cic;
Jens Axboeda775262006-12-20 11:04:12 +0100723 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +0100724
725 /*
Jens Axboeec8acb62007-01-02 18:32:11 +0100726 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +0100727 */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200728 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboeda775262006-12-20 11:04:12 +0100729 return 0;
730
731 /*
Jens Axboe719d3402006-12-22 09:38:53 +0100732 * Lookup the cfqq that this bio will be queued with. Allow
733 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +0100734 */
Jens Axboe4ac845a2008-01-24 08:44:49 +0100735 cic = cfq_cic_lookup(cfqd, current->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200736 if (!cic)
737 return 0;
Jens Axboe719d3402006-12-22 09:38:53 +0100738
Vasily Tarasov91fac312007-04-25 12:29:51 +0200739 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe719d3402006-12-22 09:38:53 +0100740 if (cfqq == RQ_CFQQ(rq))
741 return 1;
Jens Axboeda775262006-12-20 11:04:12 +0100742
Jens Axboeec8acb62007-01-02 18:32:11 +0100743 return 0;
Jens Axboeda775262006-12-20 11:04:12 +0100744}
745
Jens Axboefebffd62008-01-28 13:19:43 +0100746static void __cfq_set_active_queue(struct cfq_data *cfqd,
747 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +0200748{
749 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200750 cfqq->slice_end = 0;
Jens Axboe3b181522005-06-27 10:56:24 +0200751 cfq_clear_cfqq_must_alloc_slice(cfqq);
752 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +1100753 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe1afba042007-04-17 12:47:55 +0200754 cfq_clear_cfqq_queue_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200755 }
756
757 cfqd->active_queue = cfqq;
758}
759
760/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100761 * current cfqq expired its slice (or was too idle), select new one
762 */
763static void
764__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6084cdd2007-04-23 08:25:00 +0200765 int timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100766{
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100767 if (cfq_cfqq_wait_request(cfqq))
768 del_timer(&cfqd->idle_slice_timer);
769
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100770 cfq_clear_cfqq_must_dispatch(cfqq);
771 cfq_clear_cfqq_wait_request(cfqq);
772
773 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +0200774 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100775 */
Jens Axboe3c6bd2f2007-01-19 12:06:33 +1100776 if (timed_out && !cfq_cfqq_slice_new(cfqq))
Jens Axboec5b680f2007-01-19 11:56:49 +1100777 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100778
Jens Axboeedd75ff2007-04-19 12:03:34 +0200779 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100780
781 if (cfqq == cfqd->active_queue)
782 cfqd->active_queue = NULL;
783
784 if (cfqd->active_cic) {
785 put_io_context(cfqd->active_cic->ioc);
786 cfqd->active_cic = NULL;
787 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100788}
789
Jens Axboe6084cdd2007-04-23 08:25:00 +0200790static inline void cfq_slice_expired(struct cfq_data *cfqd, int timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100791{
792 struct cfq_queue *cfqq = cfqd->active_queue;
793
794 if (cfqq)
Jens Axboe6084cdd2007-04-23 08:25:00 +0200795 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100796}
797
Jens Axboe498d3aa22007-04-26 12:54:48 +0200798/*
799 * Get next queue for service. Unless we have a queue preemption,
800 * we'll simply select the first cfqq in the service tree.
801 */
Jens Axboe6d048f52007-04-25 12:44:27 +0200802static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +0200803{
Jens Axboeedd75ff2007-04-19 12:03:34 +0200804 if (RB_EMPTY_ROOT(&cfqd->service_tree.rb))
805 return NULL;
806
Jens Axboe08717142008-01-28 11:38:15 +0100807 return cfq_rb_first(&cfqd->service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +0200808}
809
Jens Axboe498d3aa22007-04-26 12:54:48 +0200810/*
811 * Get and set a new active queue for service.
812 */
Jens Axboe6d048f52007-04-25 12:44:27 +0200813static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd)
814{
815 struct cfq_queue *cfqq;
816
Jens Axboed9e76202007-04-20 14:27:50 +0200817 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +0200818 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +0200819 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200820}
821
Jens Axboed9e76202007-04-20 14:27:50 +0200822static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
823 struct request *rq)
824{
825 if (rq->sector >= cfqd->last_position)
826 return rq->sector - cfqd->last_position;
827 else
828 return cfqd->last_position - rq->sector;
829}
830
Jens Axboe6d048f52007-04-25 12:44:27 +0200831static inline int cfq_rq_close(struct cfq_data *cfqd, struct request *rq)
832{
833 struct cfq_io_context *cic = cfqd->active_cic;
Jens Axboecaaa5f92006-06-16 11:23:00 +0200834
Jens Axboe6d048f52007-04-25 12:44:27 +0200835 if (!sample_valid(cic->seek_samples))
836 return 0;
837
838 return cfq_dist_from_last(cfqd, rq) <= cic->seek_mean;
839}
840
Jens Axboed9e76202007-04-20 14:27:50 +0200841static int cfq_close_cooperator(struct cfq_data *cfq_data,
842 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +0200843{
Jens Axboe6d048f52007-04-25 12:44:27 +0200844 /*
Jens Axboed9e76202007-04-20 14:27:50 +0200845 * We should notice if some of the queues are cooperating, eg
846 * working closely on the same area of the disk. In that case,
847 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +0200848 */
Jens Axboed9e76202007-04-20 14:27:50 +0200849 return 0;
Jens Axboe6d048f52007-04-25 12:44:27 +0200850}
851
852#define CIC_SEEKY(cic) ((cic)->seek_mean > (8 * 1024))
853
854static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +0200855{
Jens Axboe17926692007-01-19 11:59:30 +1100856 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +0200857 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100858 unsigned long sl;
859
Jens Axboedd67d052006-06-21 09:36:18 +0200860 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +0200861 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +0200862
863 /*
864 * idle is disabled, either manually or by past process history
865 */
Jens Axboe6d048f52007-04-25 12:44:27 +0200866 if (!cfqd->cfq_slice_idle || !cfq_cfqq_idle_window(cfqq))
867 return;
868
Jens Axboe22e2c502005-06-27 10:55:12 +0200869 /*
870 * task has exited, don't wait
871 */
Jens Axboe206dc692006-03-28 13:03:44 +0200872 cic = cfqd->active_cic;
Nikanth Karthikesan66dac982007-11-27 12:47:04 +0100873 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +0200874 return;
875
876 /*
877 * See if this prio level has a good candidate
878 */
Jens Axboe1afba042007-04-17 12:47:55 +0200879 if (cfq_close_cooperator(cfqd, cfqq) &&
880 (sample_valid(cic->ttime_samples) && cic->ttime_mean > 2))
Jens Axboe6d048f52007-04-25 12:44:27 +0200881 return;
Jens Axboe22e2c502005-06-27 10:55:12 +0200882
Jens Axboe3b181522005-06-27 10:56:24 +0200883 cfq_mark_cfqq_must_dispatch(cfqq);
884 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200885
Jens Axboe206dc692006-03-28 13:03:44 +0200886 /*
887 * we don't want to idle for seeks, but we do want to allow
888 * fair distribution of slice time for a process doing back-to-back
889 * seeks. so allow a little bit of time for him to submit a new rq
890 */
Jens Axboe6d048f52007-04-25 12:44:27 +0200891 sl = cfqd->cfq_slice_idle;
Jens Axboecaaa5f92006-06-16 11:23:00 +0200892 if (sample_valid(cic->seek_samples) && CIC_SEEKY(cic))
Jens Axboed9e76202007-04-20 14:27:50 +0200893 sl = min(sl, msecs_to_jiffies(CFQ_MIN_TT));
Jens Axboe206dc692006-03-28 13:03:44 +0200894
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100895 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
Jens Axboe498d3aa22007-04-26 12:54:48 +0200898/*
899 * Move request from internal lists to the request queue dispatch list.
900 */
Jens Axboe165125e2007-07-24 09:28:11 +0200901static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Jens Axboe3ed9a292007-04-23 08:33:33 +0200903 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +0200904 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +0200905
Jens Axboe5380a102006-07-13 12:37:56 +0200906 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +0200907 cfqq->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +0200908 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +0200909
910 if (cfq_cfqq_sync(cfqq))
911 cfqd->sync_flight++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
914/*
915 * return expired entry, or NULL to just start from scratch in rbtree
916 */
Jens Axboefebffd62008-01-28 13:19:43 +0100917static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
919 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe22e2c502005-06-27 10:55:12 +0200920 struct request *rq;
Jens Axboe89850f72006-07-22 16:48:31 +0200921 int fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Jens Axboe3b181522005-06-27 10:56:24 +0200923 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +1100925
926 cfq_mark_cfqq_fifo_expire(cfqq);
927
Jens Axboe89850f72006-07-22 16:48:31 +0200928 if (list_empty(&cfqq->fifo))
929 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jens Axboe6d048f52007-04-25 12:44:27 +0200931 fifo = cfq_cfqq_sync(cfqq);
Jens Axboe89850f72006-07-22 16:48:31 +0200932 rq = rq_entry_fifo(cfqq->fifo.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Jens Axboe6d048f52007-04-25 12:44:27 +0200934 if (time_before(jiffies, rq->start_time + cfqd->cfq_fifo_expire[fifo]))
935 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Jens Axboe6d048f52007-04-25 12:44:27 +0200937 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Jens Axboe22e2c502005-06-27 10:55:12 +0200940static inline int
941cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
942{
943 const int base_rq = cfqd->cfq_slice_async_rq;
944
945 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
946
947 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
948}
949
950/*
Jens Axboe498d3aa22007-04-26 12:54:48 +0200951 * Select a queue for service. If we have a current active queue,
952 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +0200953 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +0100954static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +0200955{
Jens Axboe22e2c502005-06-27 10:55:12 +0200956 struct cfq_queue *cfqq;
957
958 cfqq = cfqd->active_queue;
959 if (!cfqq)
960 goto new_queue;
961
962 /*
Jens Axboe6d048f52007-04-25 12:44:27 +0200963 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +0200964 */
Jens Axboe6d048f52007-04-25 12:44:27 +0200965 if (cfq_slice_used(cfqq))
Jens Axboe3b181522005-06-27 10:56:24 +0200966 goto expire;
Jens Axboe22e2c502005-06-27 10:55:12 +0200967
968 /*
Jens Axboe6d048f52007-04-25 12:44:27 +0200969 * The active queue has requests and isn't expired, allow it to
970 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +0200971 */
Jens Axboedd67d052006-06-21 09:36:18 +0200972 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +0200973 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +0200974
975 /*
976 * No requests pending. If the active queue still has requests in
977 * flight or is idling for a new request, allow either of these
978 * conditions to happen (or time out) before selecting a new queue.
979 */
Jens Axboecc197472007-04-20 20:45:39 +0200980 if (timer_pending(&cfqd->idle_slice_timer) ||
981 (cfqq->dispatched && cfq_cfqq_idle_window(cfqq))) {
Jens Axboecaaa5f92006-06-16 11:23:00 +0200982 cfqq = NULL;
983 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +0200984 }
985
Jens Axboe3b181522005-06-27 10:56:24 +0200986expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +0200987 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +0200988new_queue:
989 cfqq = cfq_set_active_queue(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +0200990keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +0200991 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +0200992}
993
Jens Axboe498d3aa22007-04-26 12:54:48 +0200994/*
995 * Dispatch some requests from cfqq, moving them to the request queue
996 * dispatch list.
997 */
Jens Axboe22e2c502005-06-27 10:55:12 +0200998static int
999__cfq_dispatch_requests(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1000 int max_dispatch)
1001{
1002 int dispatched = 0;
1003
Jens Axboedd67d052006-06-21 09:36:18 +02001004 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02001005
1006 do {
Jens Axboe5e705372006-07-13 12:39:25 +02001007 struct request *rq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001008
1009 /*
1010 * follow expired path, else get first next available
1011 */
Jens Axboefe094d92008-01-31 13:08:54 +01001012 rq = cfq_check_fifo(cfqq);
1013 if (rq == NULL)
Jens Axboe5e705372006-07-13 12:39:25 +02001014 rq = cfqq->next_rq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001015
1016 /*
1017 * finally, insert request into driver dispatch list
1018 */
Jens Axboe5e705372006-07-13 12:39:25 +02001019 cfq_dispatch_insert(cfqd->queue, rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001020
Jens Axboe22e2c502005-06-27 10:55:12 +02001021 dispatched++;
1022
1023 if (!cfqd->active_cic) {
Jens Axboe5e705372006-07-13 12:39:25 +02001024 atomic_inc(&RQ_CIC(rq)->ioc->refcount);
1025 cfqd->active_cic = RQ_CIC(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001026 }
1027
Jens Axboedd67d052006-06-21 09:36:18 +02001028 if (RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02001029 break;
1030
1031 } while (dispatched < max_dispatch);
1032
1033 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02001034 * expire an async queue immediately if it has used up its slice. idle
1035 * queue always expire after 1 dispatch round.
1036 */
Jens Axboea9938002007-04-20 08:55:52 +02001037 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
Jens Axboe20e493a2007-04-23 08:26:36 +02001038 dispatched >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
Jens Axboea9938002007-04-20 08:55:52 +02001039 cfq_class_idle(cfqq))) {
Jens Axboe44f7c162007-01-19 11:51:58 +11001040 cfqq->slice_end = jiffies + 1;
Jens Axboe6084cdd2007-04-23 08:25:00 +02001041 cfq_slice_expired(cfqd, 0);
Jens Axboe44f7c162007-01-19 11:51:58 +11001042 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001043
1044 return dispatched;
1045}
1046
Jens Axboefebffd62008-01-28 13:19:43 +01001047static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02001048{
1049 int dispatched = 0;
1050
1051 while (cfqq->next_rq) {
1052 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
1053 dispatched++;
1054 }
1055
1056 BUG_ON(!list_empty(&cfqq->fifo));
1057 return dispatched;
1058}
1059
Jens Axboe498d3aa22007-04-26 12:54:48 +02001060/*
1061 * Drain our current requests. Used for barriers and when switching
1062 * io schedulers on-the-fly.
1063 */
Jens Axboed9e76202007-04-20 14:27:50 +02001064static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001065{
Jens Axboe08717142008-01-28 11:38:15 +01001066 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001067 int dispatched = 0;
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001068
Jens Axboe08717142008-01-28 11:38:15 +01001069 while ((cfqq = cfq_rb_first(&cfqd->service_tree)) != NULL)
Jens Axboed9e76202007-04-20 14:27:50 +02001070 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001071
Jens Axboe6084cdd2007-04-23 08:25:00 +02001072 cfq_slice_expired(cfqd, 0);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001073
1074 BUG_ON(cfqd->busy_queues);
1075
1076 return dispatched;
1077}
1078
Jens Axboe165125e2007-07-24 09:28:11 +02001079static int cfq_dispatch_requests(struct request_queue *q, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe6d048f52007-04-25 12:44:27 +02001082 struct cfq_queue *cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001083 int dispatched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Jens Axboe22e2c502005-06-27 10:55:12 +02001085 if (!cfqd->busy_queues)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 return 0;
1087
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001088 if (unlikely(force))
1089 return cfq_forced_dispatch(cfqd);
1090
Jens Axboecaaa5f92006-06-16 11:23:00 +02001091 dispatched = 0;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001092 while ((cfqq = cfq_select_queue(cfqd)) != NULL) {
Jens Axboeb4878f22005-10-20 16:42:29 +02001093 int max_dispatch;
1094
Jens Axboe3ed9a292007-04-23 08:33:33 +02001095 max_dispatch = cfqd->cfq_quantum;
1096 if (cfq_class_idle(cfqq))
1097 max_dispatch = 1;
1098
1099 if (cfqq->dispatched >= max_dispatch) {
1100 if (cfqd->busy_queues > 1)
Jens Axboe6d048f52007-04-25 12:44:27 +02001101 break;
Jens Axboe3ed9a292007-04-23 08:33:33 +02001102 if (cfqq->dispatched >= 4 * max_dispatch)
Jens Axboea9938002007-04-20 08:55:52 +02001103 break;
1104 }
Jens Axboe9ede2092007-01-19 12:11:44 +11001105
Jens Axboe3ed9a292007-04-23 08:33:33 +02001106 if (cfqd->sync_flight && !cfq_cfqq_sync(cfqq))
1107 break;
1108
Jens Axboe3b181522005-06-27 10:56:24 +02001109 cfq_clear_cfqq_must_dispatch(cfqq);
1110 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001111 del_timer(&cfqd->idle_slice_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Jens Axboecaaa5f92006-06-16 11:23:00 +02001113 dispatched += __cfq_dispatch_requests(cfqd, cfqq, max_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
1115
Jens Axboecaaa5f92006-06-16 11:23:00 +02001116 return dispatched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119/*
Jens Axboe5e705372006-07-13 12:39:25 +02001120 * task holds one reference to the queue, dropped when task exits. each rq
1121 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 *
1123 * queue lock must be held here.
1124 */
1125static void cfq_put_queue(struct cfq_queue *cfqq)
1126{
Jens Axboe22e2c502005-06-27 10:55:12 +02001127 struct cfq_data *cfqd = cfqq->cfqd;
1128
1129 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 if (!atomic_dec_and_test(&cfqq->ref))
1132 return;
1133
1134 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02001135 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Jens Axboe3b181522005-06-27 10:56:24 +02001136 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001138 if (unlikely(cfqd->active_queue == cfqq)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02001139 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001140 cfq_schedule_dispatch(cfqd);
1141 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 kmem_cache_free(cfq_pool, cfqq);
1144}
1145
Jens Axboed6de8be2008-05-28 14:46:59 +02001146/*
1147 * Must always be called with the rcu_read_lock() held
1148 */
Jens Axboe07416d22008-05-07 09:17:12 +02001149static void
1150__call_for_each_cic(struct io_context *ioc,
1151 void (*func)(struct io_context *, struct cfq_io_context *))
1152{
1153 struct cfq_io_context *cic;
1154 struct hlist_node *n;
1155
1156 hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list)
1157 func(ioc, cic);
1158}
1159
Jens Axboe4ac845a2008-01-24 08:44:49 +01001160/*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001161 * Call func for each cic attached to this ioc.
Jens Axboe4ac845a2008-01-24 08:44:49 +01001162 */
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001163static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01001164call_for_each_cic(struct io_context *ioc,
1165 void (*func)(struct io_context *, struct cfq_io_context *))
1166{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001167 rcu_read_lock();
Jens Axboe07416d22008-05-07 09:17:12 +02001168 __call_for_each_cic(ioc, func);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001169 rcu_read_unlock();
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001170}
Jens Axboe4ac845a2008-01-24 08:44:49 +01001171
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001172static void cfq_cic_free_rcu(struct rcu_head *head)
1173{
1174 struct cfq_io_context *cic;
1175
1176 cic = container_of(head, struct cfq_io_context, rcu_head);
1177
1178 kmem_cache_free(cfq_ioc_pool, cic);
1179 elv_ioc_count_dec(ioc_count);
1180
Jens Axboe9a11b4e2008-05-29 09:32:08 +02001181 if (ioc_gone) {
1182 /*
1183 * CFQ scheduler is exiting, grab exit lock and check
1184 * the pending io context count. If it hits zero,
1185 * complete ioc_gone and set it back to NULL
1186 */
1187 spin_lock(&ioc_gone_lock);
1188 if (ioc_gone && !elv_ioc_count_read(ioc_count)) {
1189 complete(ioc_gone);
1190 ioc_gone = NULL;
1191 }
1192 spin_unlock(&ioc_gone_lock);
1193 }
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001194}
1195
1196static void cfq_cic_free(struct cfq_io_context *cic)
1197{
1198 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001199}
1200
1201static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic)
1202{
1203 unsigned long flags;
1204
1205 BUG_ON(!cic->dead_key);
1206
1207 spin_lock_irqsave(&ioc->lock, flags);
1208 radix_tree_delete(&ioc->radix_root, cic->dead_key);
Jens Axboeffc4e752008-02-19 10:02:29 +01001209 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001210 spin_unlock_irqrestore(&ioc->lock, flags);
1211
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001212 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001213}
1214
Jens Axboed6de8be2008-05-28 14:46:59 +02001215/*
1216 * Must be called with rcu_read_lock() held or preemption otherwise disabled.
1217 * Only two callers of this - ->dtor() which is called with the rcu_read_lock(),
1218 * and ->trim() which is called with the task lock held
1219 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02001220static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001222 /*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001223 * ioc->refcount is zero here, or we are called from elv_unregister(),
1224 * so no more cic's are allowed to be linked into this ioc. So it
1225 * should be ok to iterate over the known list, we will see all cic's
1226 * since no new ones are added.
Jens Axboe4ac845a2008-01-24 08:44:49 +01001227 */
Jens Axboe07416d22008-05-07 09:17:12 +02001228 __call_for_each_cic(ioc, cic_free_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Jens Axboe89850f72006-07-22 16:48:31 +02001231static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1232{
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001233 if (unlikely(cfqq == cfqd->active_queue)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02001234 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001235 cfq_schedule_dispatch(cfqd);
1236 }
Jens Axboe89850f72006-07-22 16:48:31 +02001237
1238 cfq_put_queue(cfqq);
1239}
1240
1241static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
1242 struct cfq_io_context *cic)
1243{
Fabio Checconi4faa3c82008-04-10 08:28:01 +02001244 struct io_context *ioc = cic->ioc;
1245
Jens Axboefc463792006-08-29 09:05:44 +02001246 list_del_init(&cic->queue_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001247
1248 /*
1249 * Make sure key == NULL is seen for dead queues
1250 */
Jens Axboefc463792006-08-29 09:05:44 +02001251 smp_wmb();
Jens Axboe4ac845a2008-01-24 08:44:49 +01001252 cic->dead_key = (unsigned long) cic->key;
Jens Axboefc463792006-08-29 09:05:44 +02001253 cic->key = NULL;
1254
Fabio Checconi4faa3c82008-04-10 08:28:01 +02001255 if (ioc->ioc_data == cic)
1256 rcu_assign_pointer(ioc->ioc_data, NULL);
1257
Jens Axboe89850f72006-07-22 16:48:31 +02001258 if (cic->cfqq[ASYNC]) {
1259 cfq_exit_cfqq(cfqd, cic->cfqq[ASYNC]);
1260 cic->cfqq[ASYNC] = NULL;
1261 }
1262
1263 if (cic->cfqq[SYNC]) {
1264 cfq_exit_cfqq(cfqd, cic->cfqq[SYNC]);
1265 cic->cfqq[SYNC] = NULL;
1266 }
Jens Axboe89850f72006-07-22 16:48:31 +02001267}
1268
Jens Axboe4ac845a2008-01-24 08:44:49 +01001269static void cfq_exit_single_io_context(struct io_context *ioc,
1270 struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02001271{
Al Viro478a82b2006-03-18 13:25:24 -05001272 struct cfq_data *cfqd = cic->key;
Jens Axboe22e2c502005-06-27 10:55:12 +02001273
Jens Axboe89850f72006-07-22 16:48:31 +02001274 if (cfqd) {
Jens Axboe165125e2007-07-24 09:28:11 +02001275 struct request_queue *q = cfqd->queue;
Jens Axboe4ac845a2008-01-24 08:44:49 +01001276 unsigned long flags;
Jens Axboe22e2c502005-06-27 10:55:12 +02001277
Jens Axboe4ac845a2008-01-24 08:44:49 +01001278 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboe89850f72006-07-22 16:48:31 +02001279 __cfq_exit_single_io_context(cfqd, cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001280 spin_unlock_irqrestore(q->queue_lock, flags);
Al Viro12a05732006-03-18 13:38:01 -05001281 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001282}
1283
Jens Axboe498d3aa22007-04-26 12:54:48 +02001284/*
1285 * The process that ioc belongs to has exited, we need to clean up
1286 * and put the internal structures we have that belongs to that process.
1287 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02001288static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001290 call_for_each_cic(ioc, cfq_exit_single_io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
Jens Axboe22e2c502005-06-27 10:55:12 +02001293static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04001294cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Jens Axboeb5deef92006-07-19 23:39:40 +02001296 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Christoph Lameter94f60302007-07-17 04:03:29 -07001298 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
1299 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (cic) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001301 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02001302 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboeffc4e752008-02-19 10:02:29 +01001303 INIT_HLIST_NODE(&cic->cic_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001304 cic->dtor = cfq_free_io_context;
1305 cic->exit = cfq_exit_io_context;
Jens Axboe4050cf12006-07-19 05:07:12 +02001306 elv_ioc_count_inc(ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
1308
1309 return cic;
1310}
1311
Jens Axboefd0928d2008-01-24 08:52:45 +01001312static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02001313{
1314 struct task_struct *tsk = current;
1315 int ioprio_class;
1316
Jens Axboe3b181522005-06-27 10:56:24 +02001317 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001318 return;
1319
Jens Axboefd0928d2008-01-24 08:52:45 +01001320 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001321 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01001322 default:
1323 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
1324 case IOPRIO_CLASS_NONE:
1325 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02001326 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01001327 */
1328 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02001329 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01001330 break;
1331 case IOPRIO_CLASS_RT:
1332 cfqq->ioprio = task_ioprio(ioc);
1333 cfqq->ioprio_class = IOPRIO_CLASS_RT;
1334 break;
1335 case IOPRIO_CLASS_BE:
1336 cfqq->ioprio = task_ioprio(ioc);
1337 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1338 break;
1339 case IOPRIO_CLASS_IDLE:
1340 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
1341 cfqq->ioprio = 7;
1342 cfq_clear_cfqq_idle_window(cfqq);
1343 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02001344 }
1345
1346 /*
1347 * keep track of original prio settings in case we have to temporarily
1348 * elevate the priority of this queue
1349 */
1350 cfqq->org_ioprio = cfqq->ioprio;
1351 cfqq->org_ioprio_class = cfqq->ioprio_class;
Jens Axboe3b181522005-06-27 10:56:24 +02001352 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001353}
1354
Jens Axboefebffd62008-01-28 13:19:43 +01001355static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02001356{
Al Viro478a82b2006-03-18 13:25:24 -05001357 struct cfq_data *cfqd = cic->key;
1358 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01001359 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02001360
Jens Axboecaaa5f92006-06-16 11:23:00 +02001361 if (unlikely(!cfqd))
1362 return;
1363
Jens Axboec1b707d2006-10-30 19:54:23 +01001364 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001365
1366 cfqq = cic->cfqq[ASYNC];
1367 if (cfqq) {
1368 struct cfq_queue *new_cfqq;
Jens Axboefd0928d2008-01-24 08:52:45 +01001369 new_cfqq = cfq_get_queue(cfqd, ASYNC, cic->ioc, GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001370 if (new_cfqq) {
1371 cic->cfqq[ASYNC] = new_cfqq;
1372 cfq_put_queue(cfqq);
1373 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001374 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02001375
1376 cfqq = cic->cfqq[SYNC];
1377 if (cfqq)
1378 cfq_mark_cfqq_prio_changed(cfqq);
1379
Jens Axboec1b707d2006-10-30 19:54:23 +01001380 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02001381}
1382
Jens Axboefc463792006-08-29 09:05:44 +02001383static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001385 call_for_each_cic(ioc, changed_ioprio);
Jens Axboefc463792006-08-29 09:05:44 +02001386 ioc->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
1389static struct cfq_queue *
Jens Axboe15c31be2007-07-10 13:43:25 +02001390cfq_find_alloc_queue(struct cfq_data *cfqd, int is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01001391 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001394 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396retry:
Jens Axboe4ac845a2008-01-24 08:44:49 +01001397 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001398 /* cic always exists here */
1399 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 if (!cfqq) {
1402 if (new_cfqq) {
1403 cfqq = new_cfqq;
1404 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001405 } else if (gfp_mask & __GFP_WAIT) {
Jens Axboe89850f72006-07-22 16:48:31 +02001406 /*
1407 * Inform the allocator of the fact that we will
1408 * just repeat this allocation if it fails, to allow
1409 * the allocator to do whatever it needs to attempt to
1410 * free memory.
1411 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07001413 new_cfqq = kmem_cache_alloc_node(cfq_pool,
1414 gfp_mask | __GFP_NOFAIL | __GFP_ZERO,
1415 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 spin_lock_irq(cfqd->queue->queue_lock);
1417 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02001418 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07001419 cfqq = kmem_cache_alloc_node(cfq_pool,
1420 gfp_mask | __GFP_ZERO,
1421 cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02001422 if (!cfqq)
1423 goto out;
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02001424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Jens Axboed9e76202007-04-20 14:27:50 +02001426 RB_CLEAR_NODE(&cfqq->rb_node);
Jens Axboe22e2c502005-06-27 10:55:12 +02001427 INIT_LIST_HEAD(&cfqq->fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 atomic_set(&cfqq->ref, 0);
1430 cfqq->cfqd = cfqd;
Jens Axboec5b680f2007-01-19 11:56:49 +11001431
Jens Axboe3b181522005-06-27 10:56:24 +02001432 cfq_mark_cfqq_prio_changed(cfqq);
Jens Axboe53b037442006-07-28 09:48:51 +02001433 cfq_mark_cfqq_queue_new(cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001434
Jens Axboefd0928d2008-01-24 08:52:45 +01001435 cfq_init_prio_data(cfqq, ioc);
Jens Axboe08717142008-01-28 11:38:15 +01001436
1437 if (is_sync) {
1438 if (!cfq_class_idle(cfqq))
1439 cfq_mark_cfqq_idle_window(cfqq);
1440 cfq_mark_cfqq_sync(cfqq);
1441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443
1444 if (new_cfqq)
1445 kmem_cache_free(cfq_pool, new_cfqq);
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447out:
1448 WARN_ON((gfp_mask & __GFP_WAIT) && !cfqq);
1449 return cfqq;
1450}
1451
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001452static struct cfq_queue **
1453cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
1454{
Jens Axboefe094d92008-01-31 13:08:54 +01001455 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001456 case IOPRIO_CLASS_RT:
1457 return &cfqd->async_cfqq[0][ioprio];
1458 case IOPRIO_CLASS_BE:
1459 return &cfqd->async_cfqq[1][ioprio];
1460 case IOPRIO_CLASS_IDLE:
1461 return &cfqd->async_idle_cfqq;
1462 default:
1463 BUG();
1464 }
1465}
1466
Jens Axboe15c31be2007-07-10 13:43:25 +02001467static struct cfq_queue *
Jens Axboefd0928d2008-01-24 08:52:45 +01001468cfq_get_queue(struct cfq_data *cfqd, int is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02001469 gfp_t gfp_mask)
1470{
Jens Axboefd0928d2008-01-24 08:52:45 +01001471 const int ioprio = task_ioprio(ioc);
1472 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001473 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02001474 struct cfq_queue *cfqq = NULL;
1475
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001476 if (!is_sync) {
1477 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
1478 cfqq = *async_cfqq;
1479 }
1480
Oleg Nesterov0a0836a2007-10-23 15:08:21 +02001481 if (!cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01001482 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Oleg Nesterov0a0836a2007-10-23 15:08:21 +02001483 if (!cfqq)
1484 return NULL;
1485 }
Jens Axboe15c31be2007-07-10 13:43:25 +02001486
1487 /*
1488 * pin the queue now that it's allocated, scheduler exit will prune it
1489 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001490 if (!is_sync && !(*async_cfqq)) {
Jens Axboe15c31be2007-07-10 13:43:25 +02001491 atomic_inc(&cfqq->ref);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001492 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02001493 }
1494
1495 atomic_inc(&cfqq->ref);
1496 return cfqq;
1497}
1498
Jens Axboe498d3aa22007-04-26 12:54:48 +02001499/*
1500 * We drop cfq io contexts lazily, so we may find a dead one.
1501 */
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001502static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01001503cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc,
1504 struct cfq_io_context *cic)
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001505{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001506 unsigned long flags;
1507
Jens Axboefc463792006-08-29 09:05:44 +02001508 WARN_ON(!list_empty(&cic->queue_list));
Jens Axboe597bc482007-04-24 21:23:53 +02001509
Jens Axboe4ac845a2008-01-24 08:44:49 +01001510 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe597bc482007-04-24 21:23:53 +02001511
Fabio Checconi4faa3c82008-04-10 08:28:01 +02001512 BUG_ON(ioc->ioc_data == cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001513
1514 radix_tree_delete(&ioc->radix_root, (unsigned long) cfqd);
Jens Axboeffc4e752008-02-19 10:02:29 +01001515 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001516 spin_unlock_irqrestore(&ioc->lock, flags);
1517
1518 cfq_cic_free(cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001519}
1520
Jens Axboee2d74ac2006-03-28 08:59:01 +02001521static struct cfq_io_context *
Jens Axboe4ac845a2008-01-24 08:44:49 +01001522cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001523{
Jens Axboee2d74ac2006-03-28 08:59:01 +02001524 struct cfq_io_context *cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02001525 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01001526 void *k;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001527
Vasily Tarasov91fac312007-04-25 12:29:51 +02001528 if (unlikely(!ioc))
1529 return NULL;
1530
Jens Axboed6de8be2008-05-28 14:46:59 +02001531 rcu_read_lock();
1532
Jens Axboe597bc482007-04-24 21:23:53 +02001533 /*
1534 * we maintain a last-hit cache, to avoid browsing over the tree
1535 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01001536 cic = rcu_dereference(ioc->ioc_data);
Jens Axboed6de8be2008-05-28 14:46:59 +02001537 if (cic && cic->key == cfqd) {
1538 rcu_read_unlock();
Jens Axboe597bc482007-04-24 21:23:53 +02001539 return cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02001540 }
Jens Axboe597bc482007-04-24 21:23:53 +02001541
Jens Axboe4ac845a2008-01-24 08:44:49 +01001542 do {
Jens Axboe4ac845a2008-01-24 08:44:49 +01001543 cic = radix_tree_lookup(&ioc->radix_root, (unsigned long) cfqd);
1544 rcu_read_unlock();
1545 if (!cic)
1546 break;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001547 /* ->key must be copied to avoid race with cfq_exit_queue() */
1548 k = cic->key;
1549 if (unlikely(!k)) {
Jens Axboe4ac845a2008-01-24 08:44:49 +01001550 cfq_drop_dead_cic(cfqd, ioc, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02001551 rcu_read_lock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01001552 continue;
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001553 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001554
Jens Axboed6de8be2008-05-28 14:46:59 +02001555 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001556 rcu_assign_pointer(ioc->ioc_data, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02001557 spin_unlock_irqrestore(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001558 break;
1559 } while (1);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001560
Jens Axboe4ac845a2008-01-24 08:44:49 +01001561 return cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001562}
1563
Jens Axboe4ac845a2008-01-24 08:44:49 +01001564/*
1565 * Add cic into ioc, using cfqd as the search key. This enables us to lookup
1566 * the process specific cfq io context when entered from the block layer.
1567 * Also adds the cic to a per-cfqd list, used when this queue is removed.
1568 */
Jens Axboefebffd62008-01-28 13:19:43 +01001569static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
1570 struct cfq_io_context *cic, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001571{
Jens Axboe0261d682006-10-30 19:07:48 +01001572 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01001573 int ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001574
Jens Axboe4ac845a2008-01-24 08:44:49 +01001575 ret = radix_tree_preload(gfp_mask);
1576 if (!ret) {
1577 cic->ioc = ioc;
1578 cic->key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001579
Jens Axboe4ac845a2008-01-24 08:44:49 +01001580 spin_lock_irqsave(&ioc->lock, flags);
1581 ret = radix_tree_insert(&ioc->radix_root,
1582 (unsigned long) cfqd, cic);
Jens Axboeffc4e752008-02-19 10:02:29 +01001583 if (!ret)
1584 hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001585 spin_unlock_irqrestore(&ioc->lock, flags);
1586
1587 radix_tree_preload_end();
1588
1589 if (!ret) {
1590 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1591 list_add(&cic->queue_list, &cfqd->cic_list);
1592 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001593 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001594 }
1595
Jens Axboe4ac845a2008-01-24 08:44:49 +01001596 if (ret)
1597 printk(KERN_ERR "cfq: cic link failed!\n");
Jens Axboefc463792006-08-29 09:05:44 +02001598
Jens Axboe4ac845a2008-01-24 08:44:49 +01001599 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001600}
1601
Jens Axboe22e2c502005-06-27 10:55:12 +02001602/*
1603 * Setup general io context and cfq io context. There can be several cfq
1604 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02001605 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02001606 */
1607static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02001608cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
Jens Axboe22e2c502005-06-27 10:55:12 +02001610 struct io_context *ioc = NULL;
1611 struct cfq_io_context *cic;
1612
1613 might_sleep_if(gfp_mask & __GFP_WAIT);
1614
Jens Axboeb5deef92006-07-19 23:39:40 +02001615 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02001616 if (!ioc)
1617 return NULL;
1618
Jens Axboe4ac845a2008-01-24 08:44:49 +01001619 cic = cfq_cic_lookup(cfqd, ioc);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001620 if (cic)
1621 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02001622
Jens Axboee2d74ac2006-03-28 08:59:01 +02001623 cic = cfq_alloc_io_context(cfqd, gfp_mask);
1624 if (cic == NULL)
1625 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02001626
Jens Axboe4ac845a2008-01-24 08:44:49 +01001627 if (cfq_cic_link(cfqd, ioc, cic, gfp_mask))
1628 goto err_free;
1629
Jens Axboe22e2c502005-06-27 10:55:12 +02001630out:
Jens Axboefc463792006-08-29 09:05:44 +02001631 smp_read_barrier_depends();
1632 if (unlikely(ioc->ioprio_changed))
1633 cfq_ioc_set_ioprio(ioc);
1634
Jens Axboe22e2c502005-06-27 10:55:12 +02001635 return cic;
Jens Axboe4ac845a2008-01-24 08:44:49 +01001636err_free:
1637 cfq_cic_free(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02001638err:
1639 put_io_context(ioc);
1640 return NULL;
1641}
1642
1643static void
1644cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
1645{
Jens Axboeaaf12282007-01-19 11:30:16 +11001646 unsigned long elapsed = jiffies - cic->last_end_request;
1647 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02001648
1649 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
1650 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
1651 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
1652}
1653
Jens Axboe206dc692006-03-28 13:03:44 +02001654static void
Jens Axboe6d048f52007-04-25 12:44:27 +02001655cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_io_context *cic,
1656 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02001657{
1658 sector_t sdist;
1659 u64 total;
1660
Jens Axboe5e705372006-07-13 12:39:25 +02001661 if (cic->last_request_pos < rq->sector)
1662 sdist = rq->sector - cic->last_request_pos;
Jens Axboe206dc692006-03-28 13:03:44 +02001663 else
Jens Axboe5e705372006-07-13 12:39:25 +02001664 sdist = cic->last_request_pos - rq->sector;
Jens Axboe206dc692006-03-28 13:03:44 +02001665
1666 /*
1667 * Don't allow the seek distance to get too large from the
1668 * odd fragment, pagein, etc
1669 */
1670 if (cic->seek_samples <= 60) /* second&third seek */
1671 sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*1024);
1672 else
1673 sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*64);
1674
1675 cic->seek_samples = (7*cic->seek_samples + 256) / 8;
1676 cic->seek_total = (7*cic->seek_total + (u64)256*sdist) / 8;
1677 total = cic->seek_total + (cic->seek_samples/2);
1678 do_div(total, cic->seek_samples);
1679 cic->seek_mean = (sector_t)total;
1680}
Jens Axboe22e2c502005-06-27 10:55:12 +02001681
1682/*
1683 * Disable idle window if the process thinks too long or seeks so much that
1684 * it doesn't matter
1685 */
1686static void
1687cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1688 struct cfq_io_context *cic)
1689{
Jens Axboe1be92f22007-04-19 14:32:26 +02001690 int enable_idle;
1691
Jens Axboe08717142008-01-28 11:38:15 +01001692 /*
1693 * Don't idle for async or idle io prio class
1694 */
1695 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f22007-04-19 14:32:26 +02001696 return;
1697
1698 enable_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001699
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01001700 if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
Jens Axboecaaa5f92006-06-16 11:23:00 +02001701 (cfqd->hw_tag && CIC_SEEKY(cic)))
Jens Axboe22e2c502005-06-27 10:55:12 +02001702 enable_idle = 0;
1703 else if (sample_valid(cic->ttime_samples)) {
1704 if (cic->ttime_mean > cfqd->cfq_slice_idle)
1705 enable_idle = 0;
1706 else
1707 enable_idle = 1;
1708 }
1709
Jens Axboe3b181522005-06-27 10:56:24 +02001710 if (enable_idle)
1711 cfq_mark_cfqq_idle_window(cfqq);
1712 else
1713 cfq_clear_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001714}
1715
Jens Axboe22e2c502005-06-27 10:55:12 +02001716/*
1717 * Check if new_cfqq should preempt the currently active queue. Return 0 for
1718 * no or if we aren't sure, a 1 will cause a preempt.
1719 */
1720static int
1721cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02001722 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001723{
Jens Axboe6d048f52007-04-25 12:44:27 +02001724 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001725
Jens Axboe6d048f52007-04-25 12:44:27 +02001726 cfqq = cfqd->active_queue;
1727 if (!cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001728 return 0;
1729
Jens Axboe6d048f52007-04-25 12:44:27 +02001730 if (cfq_slice_used(cfqq))
1731 return 1;
1732
1733 if (cfq_class_idle(new_cfqq))
Jens Axboecaaa5f92006-06-16 11:23:00 +02001734 return 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001735
1736 if (cfq_class_idle(cfqq))
1737 return 1;
Jens Axboe1e3335d2007-02-14 19:59:49 +01001738
Jens Axboe22e2c502005-06-27 10:55:12 +02001739 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02001740 * if the new request is sync, but the currently running queue is
1741 * not, let the sync request have priority.
1742 */
Jens Axboe5e705372006-07-13 12:39:25 +02001743 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001744 return 1;
Jens Axboe1e3335d2007-02-14 19:59:49 +01001745
Jens Axboe374f84a2006-07-23 01:42:19 +02001746 /*
1747 * So both queues are sync. Let the new request get disk time if
1748 * it's a metadata request and the current queue is doing regular IO.
1749 */
1750 if (rq_is_meta(rq) && !cfqq->meta_pending)
1751 return 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02001752
Jens Axboe1e3335d2007-02-14 19:59:49 +01001753 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
1754 return 0;
1755
1756 /*
1757 * if this request is as-good as one we would expect from the
1758 * current cfqq, let it preempt
1759 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001760 if (cfq_rq_close(cfqd, rq))
Jens Axboe1e3335d2007-02-14 19:59:49 +01001761 return 1;
1762
Jens Axboe22e2c502005-06-27 10:55:12 +02001763 return 0;
1764}
1765
1766/*
1767 * cfqq preempts the active queue. if we allowed preempt with no slice left,
1768 * let it have half of its nominal slice.
1769 */
1770static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1771{
Jens Axboe6084cdd2007-04-23 08:25:00 +02001772 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02001773
Jens Axboebf572252006-07-19 20:29:12 +02001774 /*
1775 * Put the new queue at the front of the of the current list,
1776 * so we know that it will be selected next.
1777 */
1778 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02001779
1780 cfq_service_tree_add(cfqd, cfqq, 1);
Jens Axboebf572252006-07-19 20:29:12 +02001781
Jens Axboe44f7c162007-01-19 11:51:58 +11001782 cfqq->slice_end = 0;
1783 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001784}
1785
1786/*
Jens Axboe5e705372006-07-13 12:39:25 +02001787 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02001788 * something we should do about it
1789 */
1790static void
Jens Axboe5e705372006-07-13 12:39:25 +02001791cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1792 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001793{
Jens Axboe5e705372006-07-13 12:39:25 +02001794 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02001795
Jens Axboe374f84a2006-07-23 01:42:19 +02001796 if (rq_is_meta(rq))
1797 cfqq->meta_pending++;
1798
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001799 cfq_update_io_thinktime(cfqd, cic);
Jens Axboe6d048f52007-04-25 12:44:27 +02001800 cfq_update_io_seektime(cfqd, cic, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001801 cfq_update_idle_window(cfqd, cfqq, cic);
1802
Jens Axboe5e705372006-07-13 12:39:25 +02001803 cic->last_request_pos = rq->sector + rq->nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02001804
1805 if (cfqq == cfqd->active_queue) {
1806 /*
1807 * if we are waiting for a request for this queue, let it rip
1808 * immediately and flag that we must not expire this queue
1809 * just now
1810 */
Jens Axboe3b181522005-06-27 10:56:24 +02001811 if (cfq_cfqq_wait_request(cfqq)) {
1812 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001813 del_timer(&cfqd->idle_slice_timer);
Jens Axboedc72ef42006-07-20 14:54:05 +02001814 blk_start_queueing(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02001815 }
Jens Axboe5e705372006-07-13 12:39:25 +02001816 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001817 /*
1818 * not the active queue - expire current slice if it is
1819 * idle and has expired it's mean thinktime or this new queue
1820 * has some old slice time left and is of higher priority
1821 */
1822 cfq_preempt_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001823 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboedc72ef42006-07-20 14:54:05 +02001824 blk_start_queueing(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02001825 }
1826}
1827
Jens Axboe165125e2007-07-24 09:28:11 +02001828static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001829{
Jens Axboeb4878f22005-10-20 16:42:29 +02001830 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001831 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001832
Jens Axboefd0928d2008-01-24 08:52:45 +01001833 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Jens Axboe5e705372006-07-13 12:39:25 +02001835 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Jens Axboe22e2c502005-06-27 10:55:12 +02001837 list_add_tail(&rq->queuelist, &cfqq->fifo);
1838
Jens Axboe5e705372006-07-13 12:39:25 +02001839 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
Jens Axboe165125e2007-07-24 09:28:11 +02001842static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Jens Axboe5e705372006-07-13 12:39:25 +02001844 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001845 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02001846 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001847 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Jens Axboeb4878f22005-10-20 16:42:29 +02001849 now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Jens Axboeb4878f22005-10-20 16:42:29 +02001851 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02001852 WARN_ON(!cfqq->dispatched);
Jens Axboeb4878f22005-10-20 16:42:29 +02001853 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02001854 cfqq->dispatched--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Jens Axboe3ed9a292007-04-23 08:33:33 +02001856 if (cfq_cfqq_sync(cfqq))
1857 cfqd->sync_flight--;
1858
Jens Axboeb4878f22005-10-20 16:42:29 +02001859 if (!cfq_class_idle(cfqq))
1860 cfqd->last_end_request = now;
Jens Axboe3b181522005-06-27 10:56:24 +02001861
Jens Axboecaaa5f92006-06-16 11:23:00 +02001862 if (sync)
Jens Axboe5e705372006-07-13 12:39:25 +02001863 RQ_CIC(rq)->last_end_request = now;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001864
1865 /*
1866 * If this is the active queue, check if it needs to be expired,
1867 * or if we want to idle in case it has no pending requests.
1868 */
1869 if (cfqd->active_queue == cfqq) {
Jens Axboe44f7c162007-01-19 11:51:58 +11001870 if (cfq_cfqq_slice_new(cfqq)) {
1871 cfq_set_prio_slice(cfqd, cfqq);
1872 cfq_clear_cfqq_slice_new(cfqq);
1873 }
Jens Axboe08717142008-01-28 11:38:15 +01001874 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Jens Axboe6084cdd2007-04-23 08:25:00 +02001875 cfq_slice_expired(cfqd, 1);
Jens Axboe6d048f52007-04-25 12:44:27 +02001876 else if (sync && RB_EMPTY_ROOT(&cfqq->sort_list))
1877 cfq_arm_slice_timer(cfqd);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001878 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001879
1880 if (!cfqd->rq_in_driver)
1881 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
Jens Axboe22e2c502005-06-27 10:55:12 +02001884/*
1885 * we temporarily boost lower priority queues if they are holding fs exclusive
1886 * resources. they are boosted to normal prio (CLASS_BE/4)
1887 */
1888static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
Jens Axboe22e2c502005-06-27 10:55:12 +02001890 if (has_fs_excl()) {
1891 /*
1892 * boost idle prio on transactions that would lock out other
1893 * users of the filesystem
1894 */
1895 if (cfq_class_idle(cfqq))
1896 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1897 if (cfqq->ioprio > IOPRIO_NORM)
1898 cfqq->ioprio = IOPRIO_NORM;
1899 } else {
1900 /*
1901 * check if we need to unboost the queue
1902 */
1903 if (cfqq->ioprio_class != cfqq->org_ioprio_class)
1904 cfqq->ioprio_class = cfqq->org_ioprio_class;
1905 if (cfqq->ioprio != cfqq->org_ioprio)
1906 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001908}
1909
Jens Axboe89850f72006-07-22 16:48:31 +02001910static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001911{
Jens Axboe3b181522005-06-27 10:56:24 +02001912 if ((cfq_cfqq_wait_request(cfqq) || cfq_cfqq_must_alloc(cfqq)) &&
Andrew Morton99f95e52005-06-27 20:14:05 -07001913 !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02001914 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001915 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02001916 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001917
1918 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02001919}
1920
Jens Axboe165125e2007-07-24 09:28:11 +02001921static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02001922{
1923 struct cfq_data *cfqd = q->elevator->elevator_data;
1924 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001925 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02001926 struct cfq_queue *cfqq;
1927
1928 /*
1929 * don't force setup of a queue from here, as a call to may_queue
1930 * does not necessarily imply that a request actually will be queued.
1931 * so just lookup a possibly existing queue, or return 'may queue'
1932 * if that fails
1933 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01001934 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001935 if (!cic)
1936 return ELV_MQUEUE_MAY;
1937
1938 cfqq = cic_to_cfqq(cic, rw & REQ_RW_SYNC);
Jens Axboe22e2c502005-06-27 10:55:12 +02001939 if (cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01001940 cfq_init_prio_data(cfqq, cic->ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02001941 cfq_prio_boost(cfqq);
1942
Jens Axboe89850f72006-07-22 16:48:31 +02001943 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001944 }
1945
1946 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947}
1948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949/*
1950 * queue lock held here
1951 */
Jens Axboebb37b942006-12-01 10:42:33 +01001952static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Jens Axboe5e705372006-07-13 12:39:25 +02001954 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Jens Axboe5e705372006-07-13 12:39:25 +02001956 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001957 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Jens Axboe22e2c502005-06-27 10:55:12 +02001959 BUG_ON(!cfqq->allocated[rw]);
1960 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Jens Axboe5e705372006-07-13 12:39:25 +02001962 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02001965 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 cfq_put_queue(cfqq);
1968 }
1969}
1970
1971/*
Jens Axboe22e2c502005-06-27 10:55:12 +02001972 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 */
Jens Axboe22e2c502005-06-27 10:55:12 +02001974static int
Jens Axboe165125e2007-07-24 09:28:11 +02001975cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
1977 struct cfq_data *cfqd = q->elevator->elevator_data;
1978 struct cfq_io_context *cic;
1979 const int rw = rq_data_dir(rq);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001980 const int is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001981 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 unsigned long flags;
1983
1984 might_sleep_if(gfp_mask & __GFP_WAIT);
1985
Jens Axboee2d74ac2006-03-28 08:59:01 +02001986 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02001987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 spin_lock_irqsave(q->queue_lock, flags);
1989
Jens Axboe22e2c502005-06-27 10:55:12 +02001990 if (!cic)
1991 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Vasily Tarasov91fac312007-04-25 12:29:51 +02001993 cfqq = cic_to_cfqq(cic, is_sync);
1994 if (!cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01001995 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001996
Jens Axboe22e2c502005-06-27 10:55:12 +02001997 if (!cfqq)
1998 goto queue_fail;
1999
Vasily Tarasov91fac312007-04-25 12:29:51 +02002000 cic_set_cfqq(cic, cfqq, is_sync);
2001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
2003 cfqq->allocated[rw]++;
Jens Axboe3b181522005-06-27 10:56:24 +02002004 cfq_clear_cfqq_must_alloc(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002005 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 spin_unlock_irqrestore(q->queue_lock, flags);
2008
Jens Axboe5e705372006-07-13 12:39:25 +02002009 rq->elevator_private = cic;
2010 rq->elevator_private2 = cfqq;
2011 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02002012
Jens Axboe22e2c502005-06-27 10:55:12 +02002013queue_fail:
2014 if (cic)
2015 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02002016
Jens Axboe3b181522005-06-27 10:56:24 +02002017 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 spin_unlock_irqrestore(q->queue_lock, flags);
2019 return 1;
2020}
2021
David Howells65f27f32006-11-22 14:55:48 +00002022static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02002023{
David Howells65f27f32006-11-22 14:55:48 +00002024 struct cfq_data *cfqd =
2025 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02002026 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002027 unsigned long flags;
2028
2029 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboedc72ef42006-07-20 14:54:05 +02002030 blk_start_queueing(q);
Jens Axboe22e2c502005-06-27 10:55:12 +02002031 spin_unlock_irqrestore(q->queue_lock, flags);
2032}
2033
2034/*
2035 * Timer running if the active_queue is currently idling inside its time slice
2036 */
2037static void cfq_idle_slice_timer(unsigned long data)
2038{
2039 struct cfq_data *cfqd = (struct cfq_data *) data;
2040 struct cfq_queue *cfqq;
2041 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11002042 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02002043
2044 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2045
Jens Axboefe094d92008-01-31 13:08:54 +01002046 cfqq = cfqd->active_queue;
2047 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11002048 timed_out = 0;
2049
Jens Axboe22e2c502005-06-27 10:55:12 +02002050 /*
2051 * expired
2052 */
Jens Axboe44f7c162007-01-19 11:51:58 +11002053 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002054 goto expire;
2055
2056 /*
2057 * only expire and reinvoke request handler, if there are
2058 * other queues with pending requests
2059 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02002060 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02002061 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02002062
2063 /*
2064 * not expired and it has a request pending, let it dispatch
2065 */
Jens Axboedd67d052006-06-21 09:36:18 +02002066 if (!RB_EMPTY_ROOT(&cfqq->sort_list)) {
Jens Axboe3b181522005-06-27 10:56:24 +02002067 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002068 goto out_kick;
2069 }
2070 }
2071expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +02002072 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02002073out_kick:
Jens Axboe3b181522005-06-27 10:56:24 +02002074 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02002075out_cont:
2076 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
2077}
2078
Jens Axboe3b181522005-06-27 10:56:24 +02002079static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
2080{
2081 del_timer_sync(&cfqd->idle_slice_timer);
Oleg Nesterov43108642007-10-23 15:08:18 +02002082 kblockd_flush_work(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02002083}
Jens Axboe22e2c502005-06-27 10:55:12 +02002084
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002085static void cfq_put_async_queues(struct cfq_data *cfqd)
2086{
2087 int i;
2088
2089 for (i = 0; i < IOPRIO_BE_NR; i++) {
2090 if (cfqd->async_cfqq[0][i])
2091 cfq_put_queue(cfqd->async_cfqq[0][i]);
2092 if (cfqd->async_cfqq[1][i])
2093 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002094 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01002095
2096 if (cfqd->async_idle_cfqq)
2097 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002098}
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100static void cfq_exit_queue(elevator_t *e)
2101{
Jens Axboe22e2c502005-06-27 10:55:12 +02002102 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02002103 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002104
Jens Axboe3b181522005-06-27 10:56:24 +02002105 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002106
Al Virod9ff4182006-03-18 13:51:22 -05002107 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002108
Al Virod9ff4182006-03-18 13:51:22 -05002109 if (cfqd->active_queue)
Jens Axboe6084cdd2007-04-23 08:25:00 +02002110 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002111
2112 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05002113 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
2114 struct cfq_io_context,
2115 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02002116
2117 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05002118 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002119
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002120 cfq_put_async_queues(cfqd);
Jens Axboe15c31be2007-07-10 13:43:25 +02002121
Al Virod9ff4182006-03-18 13:51:22 -05002122 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05002123
2124 cfq_shutdown_timer_wq(cfqd);
2125
Al Viroa90d7422006-03-18 12:05:37 -05002126 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127}
2128
Jens Axboe165125e2007-07-24 09:28:11 +02002129static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 struct cfq_data *cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Christoph Lameter94f60302007-07-17 04:03:29 -07002133 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02002135 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Jens Axboecc09e292007-04-26 12:53:50 +02002137 cfqd->service_tree = CFQ_RB_ROOT;
Al Virod9ff4182006-03-18 13:51:22 -05002138 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Jens Axboe22e2c502005-06-27 10:55:12 +02002142 init_timer(&cfqd->idle_slice_timer);
2143 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
2144 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
2145
David Howells65f27f32006-11-22 14:55:48 +00002146 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02002147
Oleg Nesterovb70c8642007-11-07 09:46:13 +01002148 cfqd->last_end_request = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02002150 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
2151 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 cfqd->cfq_back_max = cfq_back_max;
2153 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02002154 cfqd->cfq_slice[0] = cfq_slice_async;
2155 cfqd->cfq_slice[1] = cfq_slice_sync;
2156 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
2157 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe3b181522005-06-27 10:56:24 +02002158
Jens Axboebc1c1162006-06-08 08:49:06 +02002159 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
2161
2162static void cfq_slab_kill(void)
2163{
Jens Axboed6de8be2008-05-28 14:46:59 +02002164 /*
2165 * Caller already ensured that pending RCU callbacks are completed,
2166 * so we should have no busy allocations at this point.
2167 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 if (cfq_pool)
2169 kmem_cache_destroy(cfq_pool);
2170 if (cfq_ioc_pool)
2171 kmem_cache_destroy(cfq_ioc_pool);
2172}
2173
2174static int __init cfq_slab_setup(void)
2175{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07002176 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (!cfq_pool)
2178 goto fail;
2179
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002180 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (!cfq_ioc_pool)
2182 goto fail;
2183
2184 return 0;
2185fail:
2186 cfq_slab_kill();
2187 return -ENOMEM;
2188}
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190/*
2191 * sysfs parts below -->
2192 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193static ssize_t
2194cfq_var_show(unsigned int var, char *page)
2195{
2196 return sprintf(page, "%d\n", var);
2197}
2198
2199static ssize_t
2200cfq_var_store(unsigned int *var, const char *page, size_t count)
2201{
2202 char *p = (char *) page;
2203
2204 *var = simple_strtoul(p, &p, 10);
2205 return count;
2206}
2207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Al Viro3d1ab402006-03-18 18:35:43 -05002209static ssize_t __FUNC(elevator_t *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002211 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 unsigned int __data = __VAR; \
2213 if (__CONV) \
2214 __data = jiffies_to_msecs(__data); \
2215 return cfq_var_show(__data, (page)); \
2216}
2217SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002218SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
2219SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05002220SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
2221SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002222SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
2223SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
2224SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
2225SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226#undef SHOW_FUNCTION
2227
2228#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Al Viro3d1ab402006-03-18 18:35:43 -05002229static ssize_t __FUNC(elevator_t *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002231 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 unsigned int __data; \
2233 int ret = cfq_var_store(&__data, (page), count); \
2234 if (__data < (MIN)) \
2235 __data = (MIN); \
2236 else if (__data > (MAX)) \
2237 __data = (MAX); \
2238 if (__CONV) \
2239 *(__PTR) = msecs_to_jiffies(__data); \
2240 else \
2241 *(__PTR) = __data; \
2242 return ret; \
2243}
2244STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01002245STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
2246 UINT_MAX, 1);
2247STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
2248 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05002249STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01002250STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
2251 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002252STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
2253STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
2254STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01002255STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
2256 UINT_MAX, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257#undef STORE_FUNCTION
2258
Al Viroe572ec72006-03-18 22:27:18 -05002259#define CFQ_ATTR(name) \
2260 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02002261
Al Viroe572ec72006-03-18 22:27:18 -05002262static struct elv_fs_entry cfq_attrs[] = {
2263 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05002264 CFQ_ATTR(fifo_expire_sync),
2265 CFQ_ATTR(fifo_expire_async),
2266 CFQ_ATTR(back_seek_max),
2267 CFQ_ATTR(back_seek_penalty),
2268 CFQ_ATTR(slice_sync),
2269 CFQ_ATTR(slice_async),
2270 CFQ_ATTR(slice_async_rq),
2271 CFQ_ATTR(slice_idle),
Al Viroe572ec72006-03-18 22:27:18 -05002272 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273};
2274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275static struct elevator_type iosched_cfq = {
2276 .ops = {
2277 .elevator_merge_fn = cfq_merge,
2278 .elevator_merged_fn = cfq_merged_request,
2279 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01002280 .elevator_allow_merge_fn = cfq_allow_merge,
Jens Axboeb4878f22005-10-20 16:42:29 +02002281 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02002283 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 .elevator_deactivate_req_fn = cfq_deactivate_request,
2285 .elevator_queue_empty_fn = cfq_queue_empty,
2286 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02002287 .elevator_former_req_fn = elv_rb_former_request,
2288 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 .elevator_set_req_fn = cfq_set_request,
2290 .elevator_put_req_fn = cfq_put_request,
2291 .elevator_may_queue_fn = cfq_may_queue,
2292 .elevator_init_fn = cfq_init_queue,
2293 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02002294 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 },
Al Viro3d1ab402006-03-18 18:35:43 -05002296 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 .elevator_name = "cfq",
2298 .elevator_owner = THIS_MODULE,
2299};
2300
2301static int __init cfq_init(void)
2302{
Jens Axboe22e2c502005-06-27 10:55:12 +02002303 /*
2304 * could be 0 on HZ < 1000 setups
2305 */
2306 if (!cfq_slice_async)
2307 cfq_slice_async = 1;
2308 if (!cfq_slice_idle)
2309 cfq_slice_idle = 1;
2310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (cfq_slab_setup())
2312 return -ENOMEM;
2313
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01002314 elv_register(&iosched_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01002316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317}
2318
2319static void __exit cfq_exit(void)
2320{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07002321 DECLARE_COMPLETION_ONSTACK(all_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05002323 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02002324 /* ioc_gone's update must be visible before reading ioc_count */
2325 smp_wmb();
Jens Axboed6de8be2008-05-28 14:46:59 +02002326
2327 /*
2328 * this also protects us from entering cfq_slab_kill() with
2329 * pending RCU callbacks
2330 */
Jens Axboe4050cf12006-07-19 05:07:12 +02002331 if (elv_ioc_count_read(ioc_count))
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002332 wait_for_completion(&all_gone);
Christoph Hellwig83521d32005-10-30 15:01:39 -08002333 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334}
2335
2336module_init(cfq_init);
2337module_exit(cfq_exit);
2338
2339MODULE_AUTHOR("Jens Axboe");
2340MODULE_LICENSE("GPL");
2341MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");