blob: c95c69e199f4cded3e9200c68756b8718bfda8d1 [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>
Jens Axboe7b679132008-05-30 12:23:07 +020014#include <linux/blktrace_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16/*
17 * tunables
18 */
Jens Axboefe094d92008-01-31 13:08:54 +010019/* max queue in one round of service */
20static const int cfq_quantum = 4;
Arjan van de Ven64100092006-01-06 09:46:02 +010021static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
Jens Axboefe094d92008-01-31 13:08:54 +010022/* maximum backwards seek, in KiB */
23static const int cfq_back_max = 16 * 1024;
24/* penalty of a backwards seek */
25static const int cfq_back_penalty = 2;
Arjan van de Ven64100092006-01-06 09:46:02 +010026static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020027static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010028static const int cfq_slice_async_rq = 2;
Jens Axboecaaa5f92006-06-16 11:23:00 +020029static int cfq_slice_idle = HZ / 125;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +010030static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
31static const int cfq_hist_divisor = 4;
Jens Axboe22e2c502005-06-27 10:55:12 +020032
Jens Axboed9e76202007-04-20 14:27:50 +020033/*
Jens Axboe08717142008-01-28 11:38:15 +010034 * offset from end of service tree
Jens Axboed9e76202007-04-20 14:27:50 +020035 */
Jens Axboe08717142008-01-28 11:38:15 +010036#define CFQ_IDLE_DELAY (HZ / 5)
Jens Axboed9e76202007-04-20 14:27:50 +020037
38/*
39 * below this threshold, we consider thinktime immediate
40 */
41#define CFQ_MIN_TT (2)
42
Jeff Moyere6c5bc72009-10-23 17:14:52 -040043/*
44 * Allow merged cfqqs to perform this amount of seeky I/O before
45 * deciding to break the queues up again.
46 */
47#define CFQQ_COOP_TOUT (HZ)
48
Jens Axboe22e2c502005-06-27 10:55:12 +020049#define CFQ_SLICE_SCALE (5)
Aaron Carroll45333d52008-08-26 15:52:36 +020050#define CFQ_HW_QUEUE_MIN (5)
Jens Axboe22e2c502005-06-27 10:55:12 +020051
Jens Axboefe094d92008-01-31 13:08:54 +010052#define RQ_CIC(rq) \
53 ((struct cfq_io_context *) (rq)->elevator_private)
Jens Axboe7b679132008-05-30 12:23:07 +020054#define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elevator_private2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Christoph Lametere18b8902006-12-06 20:33:20 -080056static struct kmem_cache *cfq_pool;
57static struct kmem_cache *cfq_ioc_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Tejun Heo245b2e72009-06-24 15:13:48 +090059static DEFINE_PER_CPU(unsigned long, cfq_ioc_count);
Al Viro334e94d2006-03-18 15:05:53 -050060static struct completion *ioc_gone;
Jens Axboe9a11b4e2008-05-29 09:32:08 +020061static DEFINE_SPINLOCK(ioc_gone_lock);
Al Viro334e94d2006-03-18 15:05:53 -050062
Jens Axboe22e2c502005-06-27 10:55:12 +020063#define CFQ_PRIO_LISTS IOPRIO_BE_NR
64#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
Jens Axboe22e2c502005-06-27 10:55:12 +020065#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
66
Jens Axboe206dc692006-03-28 13:03:44 +020067#define sample_valid(samples) ((samples) > 80)
68
Jens Axboe22e2c502005-06-27 10:55:12 +020069/*
Jens Axboecc09e292007-04-26 12:53:50 +020070 * Most of our rbtree usage is for sorting with min extraction, so
71 * if we cache the leftmost node we don't have to walk down the tree
72 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
73 * move this into the elevator for the rq sorting as well.
74 */
75struct cfq_rb_root {
76 struct rb_root rb;
77 struct rb_node *left;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010078 unsigned count;
Jens Axboecc09e292007-04-26 12:53:50 +020079};
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010080#define CFQ_RB_ROOT (struct cfq_rb_root) { RB_ROOT, NULL, 0, }
Jens Axboecc09e292007-04-26 12:53:50 +020081
82/*
Jens Axboe6118b702009-06-30 09:34:12 +020083 * Per process-grouping structure
84 */
85struct cfq_queue {
86 /* reference count */
87 atomic_t ref;
88 /* various state flags, see below */
89 unsigned int flags;
90 /* parent cfq_data */
91 struct cfq_data *cfqd;
92 /* service_tree member */
93 struct rb_node rb_node;
94 /* service_tree key */
95 unsigned long rb_key;
96 /* prio tree member */
97 struct rb_node p_node;
98 /* prio tree root we belong to, if any */
99 struct rb_root *p_root;
100 /* sorted list of pending requests */
101 struct rb_root sort_list;
102 /* if fifo isn't expired, next request to serve */
103 struct request *next_rq;
104 /* requests queued in sort_list */
105 int queued[2];
106 /* currently allocated requests */
107 int allocated[2];
108 /* fifo list of requests in sort_list */
109 struct list_head fifo;
110
111 unsigned long slice_end;
112 long slice_resid;
113 unsigned int slice_dispatch;
114
115 /* pending metadata requests */
116 int meta_pending;
117 /* number of requests that are on the dispatch list or inside driver */
118 int dispatched;
119
120 /* io prio of this group */
121 unsigned short ioprio, org_ioprio;
122 unsigned short ioprio_class, org_ioprio_class;
123
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400124 unsigned int seek_samples;
125 u64 seek_total;
126 sector_t seek_mean;
127 sector_t last_request_pos;
Jeff Moyere6c5bc72009-10-23 17:14:52 -0400128 unsigned long seeky_start;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400129
Jens Axboe6118b702009-06-30 09:34:12 +0200130 pid_t pid;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400131
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100132 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400133 struct cfq_queue *new_cfqq;
Jens Axboe6118b702009-06-30 09:34:12 +0200134};
135
136/*
Jens Axboe22e2c502005-06-27 10:55:12 +0200137 * Per block device queue structure
138 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139struct cfq_data {
Jens Axboe165125e2007-07-24 09:28:11 +0200140 struct request_queue *queue;
Jens Axboe22e2c502005-06-27 10:55:12 +0200141
142 /*
143 * rr list of queues with requests and the count of them
144 */
Jens Axboecc09e292007-04-26 12:53:50 +0200145 struct cfq_rb_root service_tree;
Jens Axboea36e71f2009-04-15 12:15:11 +0200146
147 /*
148 * Each priority tree is sorted by next_request position. These
149 * trees are used when determining if two or more queues are
150 * interleaving requests (see cfq_close_cooperator).
151 */
152 struct rb_root prio_trees[CFQ_PRIO_LISTS];
153
Jens Axboe22e2c502005-06-27 10:55:12 +0200154 unsigned int busy_queues;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100155 unsigned int busy_rt_queues;
156 unsigned int busy_queues_avg[2];
Jens Axboe22e2c502005-06-27 10:55:12 +0200157
Jens Axboe5ad531d2009-07-03 12:57:48 +0200158 int rq_in_driver[2];
Jens Axboe3ed9a292007-04-23 08:33:33 +0200159 int sync_flight;
Aaron Carroll45333d52008-08-26 15:52:36 +0200160
161 /*
162 * queue-depth detection
163 */
164 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200165 int hw_tag;
Aaron Carroll45333d52008-08-26 15:52:36 +0200166 int hw_tag_samples;
167 int rq_in_driver_peak;
Jens Axboe22e2c502005-06-27 10:55:12 +0200168
169 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200170 * idle window management
171 */
172 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200173 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200174
175 struct cfq_queue *active_queue;
176 struct cfq_io_context *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200177
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200178 /*
179 * async queue for each priority case
180 */
181 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
182 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200183
Jens Axboe6d048f52007-04-25 12:44:27 +0200184 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 /*
187 * tunables, see top of file
188 */
189 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200190 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 unsigned int cfq_back_penalty;
192 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200193 unsigned int cfq_slice[2];
194 unsigned int cfq_slice_async_rq;
195 unsigned int cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200196 unsigned int cfq_latency;
Al Virod9ff4182006-03-18 13:51:22 -0500197
198 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Jens Axboe6118b702009-06-30 09:34:12 +0200200 /*
201 * Fallback dummy cfqq for extreme OOM conditions
202 */
203 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200204
205 unsigned long last_end_sync_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
Jens Axboe3b181522005-06-27 10:56:24 +0200208enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100209 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
210 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200211 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100212 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100213 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
214 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
215 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100216 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200217 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400218 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Jens Axboe3b181522005-06-27 10:56:24 +0200219};
220
221#define CFQ_CFQQ_FNS(name) \
222static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
223{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100224 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200225} \
226static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
227{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100228 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200229} \
230static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
231{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100232 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200233}
234
235CFQ_CFQQ_FNS(on_rr);
236CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200237CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200238CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200239CFQ_CFQQ_FNS(fifo_expire);
240CFQ_CFQQ_FNS(idle_window);
241CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100242CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200243CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200244CFQ_CFQQ_FNS(coop);
Jens Axboe3b181522005-06-27 10:56:24 +0200245#undef CFQ_CFQQ_FNS
246
Jens Axboe7b679132008-05-30 12:23:07 +0200247#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
248 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
249#define cfq_log(cfqd, fmt, args...) \
250 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
251
Jens Axboe165125e2007-07-24 09:28:11 +0200252static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200253static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100254 struct io_context *, gfp_t);
Jens Axboe4ac845a2008-01-24 08:44:49 +0100255static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
Vasily Tarasov91fac312007-04-25 12:29:51 +0200256 struct io_context *);
257
Jens Axboe5ad531d2009-07-03 12:57:48 +0200258static inline int rq_in_driver(struct cfq_data *cfqd)
259{
260 return cfqd->rq_in_driver[0] + cfqd->rq_in_driver[1];
261}
262
Vasily Tarasov91fac312007-04-25 12:29:51 +0200263static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200264 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200265{
Jens Axboea6151c32009-10-07 20:02:57 +0200266 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200267}
268
269static inline void cic_set_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200270 struct cfq_queue *cfqq, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200271{
Jens Axboea6151c32009-10-07 20:02:57 +0200272 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200273}
274
275/*
276 * We regard a request as SYNC, if it's either a read or has the SYNC bit
277 * set (in which case it could also be direct WRITE).
278 */
Jens Axboea6151c32009-10-07 20:02:57 +0200279static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200280{
Jens Axboea6151c32009-10-07 20:02:57 +0200281 return bio_data_dir(bio) == READ || bio_rw_flagged(bio, BIO_RW_SYNCIO);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200282}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700285 * scheduler run of queue, if there are requests pending and no one in the
286 * driver that will restart queueing
287 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200288static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700289{
Jens Axboe7b679132008-05-30 12:23:07 +0200290 if (cfqd->busy_queues) {
291 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200292 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200293 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700294}
295
Jens Axboe165125e2007-07-24 09:28:11 +0200296static int cfq_queue_empty(struct request_queue *q)
Andrew Morton99f95e52005-06-27 20:14:05 -0700297{
298 struct cfq_data *cfqd = q->elevator->elevator_data;
299
Jens Axboeb4878f22005-10-20 16:42:29 +0200300 return !cfqd->busy_queues;
Andrew Morton99f95e52005-06-27 20:14:05 -0700301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100304 * Scale schedule slice based on io priority. Use the sync time slice only
305 * if a queue is marked sync and has sync io queued. A sync queue with async
306 * io only, should not get full sync slice length.
307 */
Jens Axboea6151c32009-10-07 20:02:57 +0200308static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200309 unsigned short prio)
310{
311 const int base_slice = cfqd->cfq_slice[sync];
312
313 WARN_ON(prio >= IOPRIO_BE_NR);
314
315 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
316}
317
Jens Axboe44f7c162007-01-19 11:51:58 +1100318static inline int
319cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
320{
Jens Axboed9e76202007-04-20 14:27:50 +0200321 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100322}
323
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100324/*
325 * get averaged number of queues of RT/BE priority.
326 * average is updated, with a formula that gives more weight to higher numbers,
327 * to quickly follows sudden increases and decrease slowly
328 */
329
330static inline unsigned
331cfq_get_avg_queues(struct cfq_data *cfqd, bool rt) {
332 unsigned min_q, max_q;
333 unsigned mult = cfq_hist_divisor - 1;
334 unsigned round = cfq_hist_divisor / 2;
335 unsigned busy = cfqd->busy_rt_queues;
336
337 if (!rt)
338 busy = cfqd->busy_queues - cfqd->busy_rt_queues;
339
340 min_q = min(cfqd->busy_queues_avg[rt], busy);
341 max_q = max(cfqd->busy_queues_avg[rt], busy);
342 cfqd->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
343 cfq_hist_divisor;
344 return cfqd->busy_queues_avg[rt];
345}
346
Jens Axboe44f7c162007-01-19 11:51:58 +1100347static inline void
348cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
349{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100350 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
351 if (cfqd->cfq_latency) {
352 /* interested queues (we consider only the ones with the same
353 * priority class) */
354 unsigned iq = cfq_get_avg_queues(cfqd, cfq_class_rt(cfqq));
355 unsigned sync_slice = cfqd->cfq_slice[1];
356 unsigned expect_latency = sync_slice * iq;
357 if (expect_latency > cfq_target_latency) {
358 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
359 /* scale low_slice according to IO priority
360 * and sync vs async */
361 unsigned low_slice =
362 min(slice, base_low_slice * slice / sync_slice);
363 /* the adapted slice value is scaled to fit all iqs
364 * into the target latency */
365 slice = max(slice * cfq_target_latency / expect_latency,
366 low_slice);
367 }
368 }
369 cfqq->slice_end = jiffies + slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200370 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100371}
372
373/*
374 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
375 * isn't valid until the first request from the dispatch is activated
376 * and the slice time set.
377 */
Jens Axboea6151c32009-10-07 20:02:57 +0200378static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100379{
380 if (cfq_cfqq_slice_new(cfqq))
381 return 0;
382 if (time_before(jiffies, cfqq->slice_end))
383 return 0;
384
385 return 1;
386}
387
388/*
Jens Axboe5e705372006-07-13 12:39:25 +0200389 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200391 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
Jens Axboe5e705372006-07-13 12:39:25 +0200393static struct request *
394cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 sector_t last, s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200398#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
399#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
400 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Jens Axboe5e705372006-07-13 12:39:25 +0200402 if (rq1 == NULL || rq1 == rq2)
403 return rq2;
404 if (rq2 == NULL)
405 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200406
Jens Axboe5e705372006-07-13 12:39:25 +0200407 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
408 return rq1;
409 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
410 return rq2;
Jens Axboe374f84a2006-07-23 01:42:19 +0200411 if (rq_is_meta(rq1) && !rq_is_meta(rq2))
412 return rq1;
413 else if (rq_is_meta(rq2) && !rq_is_meta(rq1))
414 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Tejun Heo83096eb2009-05-07 22:24:39 +0900416 s1 = blk_rq_pos(rq1);
417 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Jens Axboe6d048f52007-04-25 12:44:27 +0200419 last = cfqd->last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 /*
422 * by definition, 1KiB is 2 sectors
423 */
424 back_max = cfqd->cfq_back_max * 2;
425
426 /*
427 * Strict one way elevator _except_ in the case where we allow
428 * short backward seeks which are biased as twice the cost of a
429 * similar forward seek.
430 */
431 if (s1 >= last)
432 d1 = s1 - last;
433 else if (s1 + back_max >= last)
434 d1 = (last - s1) * cfqd->cfq_back_penalty;
435 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200436 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 if (s2 >= last)
439 d2 = s2 - last;
440 else if (s2 + back_max >= last)
441 d2 = (last - s2) * cfqd->cfq_back_penalty;
442 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200443 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Andreas Mohre8a99052006-03-28 08:59:49 +0200447 /*
448 * By doing switch() on the bit mask "wrap" we avoid having to
449 * check two variables for all permutations: --> faster!
450 */
451 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200452 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200453 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200454 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200455 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200456 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200457 else {
458 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200459 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200460 else
Jens Axboe5e705372006-07-13 12:39:25 +0200461 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200462 }
463
464 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200465 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200466 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200467 return rq2;
468 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200469 default:
470 /*
471 * Since both rqs are wrapped,
472 * start with the one that's further behind head
473 * (--> only *one* back seek required),
474 * since back seek takes more time than forward.
475 */
476 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200477 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 else
Jens Axboe5e705372006-07-13 12:39:25 +0200479 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481}
482
Jens Axboe498d3aa22007-04-26 12:54:48 +0200483/*
484 * The below is leftmost cache rbtree addon
485 */
Jens Axboe08717142008-01-28 11:38:15 +0100486static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200487{
488 if (!root->left)
489 root->left = rb_first(&root->rb);
490
Jens Axboe08717142008-01-28 11:38:15 +0100491 if (root->left)
492 return rb_entry(root->left, struct cfq_queue, rb_node);
493
494 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200495}
496
Jens Axboea36e71f2009-04-15 12:15:11 +0200497static void rb_erase_init(struct rb_node *n, struct rb_root *root)
498{
499 rb_erase(n, root);
500 RB_CLEAR_NODE(n);
501}
502
Jens Axboecc09e292007-04-26 12:53:50 +0200503static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
504{
505 if (root->left == n)
506 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200507 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100508 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/*
512 * would be nice to take fifo expire time into account as well
513 */
Jens Axboe5e705372006-07-13 12:39:25 +0200514static struct request *
515cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
516 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Jens Axboe21183b02006-07-13 12:33:14 +0200518 struct rb_node *rbnext = rb_next(&last->rb_node);
519 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200520 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Jens Axboe21183b02006-07-13 12:33:14 +0200522 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200525 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200528 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200529 else {
530 rbnext = rb_first(&cfqq->sort_list);
531 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200532 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Jens Axboe21183b02006-07-13 12:33:14 +0200535 return cfq_choose_req(cfqd, next, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Jens Axboed9e76202007-04-20 14:27:50 +0200538static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
539 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Jens Axboed9e76202007-04-20 14:27:50 +0200541 /*
542 * just an approximation, should be ok.
543 */
Jens Axboe67e6b492007-04-20 14:18:00 +0200544 return (cfqd->busy_queues - 1) * (cfq_prio_slice(cfqd, 1, 0) -
545 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200546}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Jens Axboe498d3aa22007-04-26 12:54:48 +0200548/*
549 * The cfqd->service_tree holds all pending cfq_queue's that have
550 * requests waiting to be processed. It is sorted in the order that
551 * we will service the queues.
552 */
Jens Axboea36e71f2009-04-15 12:15:11 +0200553static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +0200554 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +0200555{
Jens Axboe08717142008-01-28 11:38:15 +0100556 struct rb_node **p, *parent;
557 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +0200558 unsigned long rb_key;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100559 struct cfq_rb_root *service_tree = &cfqd->service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +0200560 int left;
Jens Axboed9e76202007-04-20 14:27:50 +0200561
Jens Axboe08717142008-01-28 11:38:15 +0100562 if (cfq_class_idle(cfqq)) {
563 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100564 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +0100565 if (parent && parent != &cfqq->rb_node) {
566 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
567 rb_key += __cfqq->rb_key;
568 } else
569 rb_key += jiffies;
570 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +0200571 /*
572 * Get our rb key offset. Subtract any residual slice
573 * value carried from last service. A negative resid
574 * count indicates slice overrun, and this should position
575 * the next service time further away in the tree.
576 */
Jens Axboeedd75ff2007-04-19 12:03:34 +0200577 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +0200578 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +0200579 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +0200580 } else {
581 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100582 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +0200583 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
584 }
Jens Axboed9e76202007-04-20 14:27:50 +0200585
586 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Jens Axboe99f96282007-02-05 11:56:25 +0100587 /*
Jens Axboed9e76202007-04-20 14:27:50 +0200588 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +0100589 */
Jens Axboed9e76202007-04-20 14:27:50 +0200590 if (rb_key == cfqq->rb_key)
591 return;
Jens Axboe53b037442006-07-28 09:48:51 +0200592
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100593 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
594 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +0200595 }
Jens Axboed9e76202007-04-20 14:27:50 +0200596
Jens Axboe498d3aa22007-04-26 12:54:48 +0200597 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +0100598 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100599 cfqq->service_tree = service_tree;
600 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +0200601 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +0200602 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +0200603
Jens Axboed9e76202007-04-20 14:27:50 +0200604 parent = *p;
605 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
606
Jens Axboe0c534e02007-04-18 20:01:57 +0200607 /*
608 * sort RT queues first, we always want to give
Jens Axboe67060e32007-04-18 20:13:32 +0200609 * preference to them. IDLE queues goes to the back.
610 * after that, sort on the next service time.
Jens Axboe0c534e02007-04-18 20:01:57 +0200611 */
612 if (cfq_class_rt(cfqq) > cfq_class_rt(__cfqq))
Jens Axboe67060e32007-04-18 20:13:32 +0200613 n = &(*p)->rb_left;
Jens Axboe0c534e02007-04-18 20:01:57 +0200614 else if (cfq_class_rt(cfqq) < cfq_class_rt(__cfqq))
Jens Axboe67060e32007-04-18 20:13:32 +0200615 n = &(*p)->rb_right;
616 else if (cfq_class_idle(cfqq) < cfq_class_idle(__cfqq))
617 n = &(*p)->rb_left;
618 else if (cfq_class_idle(cfqq) > cfq_class_idle(__cfqq))
619 n = &(*p)->rb_right;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +0200620 else if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +0200621 n = &(*p)->rb_left;
622 else
623 n = &(*p)->rb_right;
624
625 if (n == &(*p)->rb_right)
Jens Axboecc09e292007-04-26 12:53:50 +0200626 left = 0;
Jens Axboe67060e32007-04-18 20:13:32 +0200627
628 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +0200629 }
630
Jens Axboecc09e292007-04-26 12:53:50 +0200631 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100632 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +0200633
Jens Axboed9e76202007-04-20 14:27:50 +0200634 cfqq->rb_key = rb_key;
635 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100636 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
637 service_tree->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Jens Axboea36e71f2009-04-15 12:15:11 +0200640static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200641cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
642 sector_t sector, struct rb_node **ret_parent,
643 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +0200644{
Jens Axboea36e71f2009-04-15 12:15:11 +0200645 struct rb_node **p, *parent;
646 struct cfq_queue *cfqq = NULL;
647
648 parent = NULL;
649 p = &root->rb_node;
650 while (*p) {
651 struct rb_node **n;
652
653 parent = *p;
654 cfqq = rb_entry(parent, struct cfq_queue, p_node);
655
656 /*
657 * Sort strictly based on sector. Smallest to the left,
658 * largest to the right.
659 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900660 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +0200661 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900662 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +0200663 n = &(*p)->rb_left;
664 else
665 break;
666 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +0200667 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200668 }
669
670 *ret_parent = parent;
671 if (rb_link)
672 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +0200673 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +0200674}
675
676static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
677{
Jens Axboea36e71f2009-04-15 12:15:11 +0200678 struct rb_node **p, *parent;
679 struct cfq_queue *__cfqq;
680
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200681 if (cfqq->p_root) {
682 rb_erase(&cfqq->p_node, cfqq->p_root);
683 cfqq->p_root = NULL;
684 }
Jens Axboea36e71f2009-04-15 12:15:11 +0200685
686 if (cfq_class_idle(cfqq))
687 return;
688 if (!cfqq->next_rq)
689 return;
690
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200691 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900692 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
693 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +0200694 if (!__cfqq) {
695 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200696 rb_insert_color(&cfqq->p_node, cfqq->p_root);
697 } else
698 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200699}
700
Jens Axboe498d3aa22007-04-26 12:54:48 +0200701/*
702 * Update cfqq's position in the service tree.
703 */
Jens Axboeedd75ff2007-04-19 12:03:34 +0200704static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +0200705{
Jens Axboe6d048f52007-04-25 12:44:27 +0200706 /*
707 * Resorting requires the cfqq to be on the RR list already.
708 */
Jens Axboea36e71f2009-04-15 12:15:11 +0200709 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +0200710 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +0200711 cfq_prio_tree_add(cfqd, cfqq);
712 }
Jens Axboe6d048f52007-04-25 12:44:27 +0200713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715/*
716 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +0200717 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 */
Jens Axboefebffd62008-01-28 13:19:43 +0100719static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Jens Axboe7b679132008-05-30 12:23:07 +0200721 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +0200722 BUG_ON(cfq_cfqq_on_rr(cfqq));
723 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 cfqd->busy_queues++;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100725 if (cfq_class_rt(cfqq))
726 cfqd->busy_rt_queues++;
Jens Axboeedd75ff2007-04-19 12:03:34 +0200727 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Jens Axboe498d3aa22007-04-26 12:54:48 +0200730/*
731 * Called when the cfqq no longer has requests pending, remove it from
732 * the service tree.
733 */
Jens Axboefebffd62008-01-28 13:19:43 +0100734static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Jens Axboe7b679132008-05-30 12:23:07 +0200736 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +0200737 BUG_ON(!cfq_cfqq_on_rr(cfqq));
738 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100740 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
741 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
742 cfqq->service_tree = NULL;
743 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200744 if (cfqq->p_root) {
745 rb_erase(&cfqq->p_node, cfqq->p_root);
746 cfqq->p_root = NULL;
747 }
Jens Axboed9e76202007-04-20 14:27:50 +0200748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 BUG_ON(!cfqd->busy_queues);
750 cfqd->busy_queues--;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100751 if (cfq_class_rt(cfqq))
752 cfqd->busy_rt_queues--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
755/*
756 * rb tree support functions
757 */
Jens Axboefebffd62008-01-28 13:19:43 +0100758static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Jens Axboe5e705372006-07-13 12:39:25 +0200760 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +0200761 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5e705372006-07-13 12:39:25 +0200762 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Jens Axboeb4878f22005-10-20 16:42:29 +0200764 BUG_ON(!cfqq->queued[sync]);
765 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Jens Axboe5e705372006-07-13 12:39:25 +0200767 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Jens Axboedd67d052006-06-21 09:36:18 +0200769 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboeb4878f22005-10-20 16:42:29 +0200770 cfq_del_cfqq_rr(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Jens Axboe5e705372006-07-13 12:39:25 +0200773static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Jens Axboe5e705372006-07-13 12:39:25 +0200775 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboea36e71f2009-04-15 12:15:11 +0200777 struct request *__alias, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Jens Axboe5380a102006-07-13 12:37:56 +0200779 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 /*
782 * looks a little odd, but the first insert might return an alias.
783 * if that happens, put the alias on the dispatch list
784 */
Jens Axboe21183b02006-07-13 12:33:14 +0200785 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +0200786 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +0100787
788 if (!cfq_cfqq_on_rr(cfqq))
789 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +0200790
791 /*
792 * check if this request is a better next-serve candidate
793 */
Jens Axboea36e71f2009-04-15 12:15:11 +0200794 prev = cfqq->next_rq;
Jens Axboe5044eed2007-04-25 11:53:48 +0200795 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq);
Jens Axboea36e71f2009-04-15 12:15:11 +0200796
797 /*
798 * adjust priority tree position, if ->next_rq changes
799 */
800 if (prev != cfqq->next_rq)
801 cfq_prio_tree_add(cfqd, cfqq);
802
Jens Axboe5044eed2007-04-25 11:53:48 +0200803 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Jens Axboefebffd62008-01-28 13:19:43 +0100806static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Jens Axboe5380a102006-07-13 12:37:56 +0200808 elv_rb_del(&cfqq->sort_list, rq);
809 cfqq->queued[rq_is_sync(rq)]--;
Jens Axboe5e705372006-07-13 12:39:25 +0200810 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Jens Axboe206dc692006-03-28 13:03:44 +0200813static struct request *
814cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Jens Axboe206dc692006-03-28 13:03:44 +0200816 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200817 struct cfq_io_context *cic;
Jens Axboe206dc692006-03-28 13:03:44 +0200818 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Jens Axboe4ac845a2008-01-24 08:44:49 +0100820 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200821 if (!cic)
822 return NULL;
823
824 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +0200825 if (cfqq) {
826 sector_t sector = bio->bi_sector + bio_sectors(bio);
827
Jens Axboe21183b02006-07-13 12:33:14 +0200828 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +0200829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return NULL;
832}
833
Jens Axboe165125e2007-07-24 09:28:11 +0200834static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +0200835{
836 struct cfq_data *cfqd = q->elevator->elevator_data;
837
Jens Axboe5ad531d2009-07-03 12:57:48 +0200838 cfqd->rq_in_driver[rq_is_sync(rq)]++;
Jens Axboe7b679132008-05-30 12:23:07 +0200839 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Jens Axboe5ad531d2009-07-03 12:57:48 +0200840 rq_in_driver(cfqd));
Jens Axboe25776e32006-06-01 10:12:26 +0200841
Tejun Heo5b936292009-05-07 22:24:38 +0900842 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +0200843}
844
Jens Axboe165125e2007-07-24 09:28:11 +0200845static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Jens Axboe22e2c502005-06-27 10:55:12 +0200847 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5ad531d2009-07-03 12:57:48 +0200848 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Jens Axboe5ad531d2009-07-03 12:57:48 +0200850 WARN_ON(!cfqd->rq_in_driver[sync]);
851 cfqd->rq_in_driver[sync]--;
Jens Axboe7b679132008-05-30 12:23:07 +0200852 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Jens Axboe5ad531d2009-07-03 12:57:48 +0200853 rq_in_driver(cfqd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Jens Axboeb4878f22005-10-20 16:42:29 +0200856static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Jens Axboe5e705372006-07-13 12:39:25 +0200858 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +0200859
Jens Axboe5e705372006-07-13 12:39:25 +0200860 if (cfqq->next_rq == rq)
861 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Jens Axboeb4878f22005-10-20 16:42:29 +0200863 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +0200864 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +0200865
Aaron Carroll45333d52008-08-26 15:52:36 +0200866 cfqq->cfqd->rq_queued--;
Jens Axboe374f84a2006-07-23 01:42:19 +0200867 if (rq_is_meta(rq)) {
868 WARN_ON(!cfqq->meta_pending);
869 cfqq->meta_pending--;
870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
Jens Axboe165125e2007-07-24 09:28:11 +0200873static int cfq_merge(struct request_queue *q, struct request **req,
874 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
876 struct cfq_data *cfqd = q->elevator->elevator_data;
877 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Jens Axboe206dc692006-03-28 13:03:44 +0200879 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +0200880 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +0200881 *req = __rq;
882 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884
885 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
Jens Axboe165125e2007-07-24 09:28:11 +0200888static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +0200889 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Jens Axboe21183b02006-07-13 12:33:14 +0200891 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +0200892 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Jens Axboe5e705372006-07-13 12:39:25 +0200894 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
898static void
Jens Axboe165125e2007-07-24 09:28:11 +0200899cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 struct request *next)
901{
Jens Axboe22e2c502005-06-27 10:55:12 +0200902 /*
903 * reposition in fifo if next is older than rq
904 */
905 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +0200906 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200907 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +0200908 rq_set_fifo_time(rq, rq_fifo_time(next));
909 }
Jens Axboe22e2c502005-06-27 10:55:12 +0200910
Jens Axboeb4878f22005-10-20 16:42:29 +0200911 cfq_remove_request(next);
Jens Axboe22e2c502005-06-27 10:55:12 +0200912}
913
Jens Axboe165125e2007-07-24 09:28:11 +0200914static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +0100915 struct bio *bio)
916{
917 struct cfq_data *cfqd = q->elevator->elevator_data;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200918 struct cfq_io_context *cic;
Jens Axboeda775262006-12-20 11:04:12 +0100919 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +0100920
921 /*
Jens Axboeec8acb62007-01-02 18:32:11 +0100922 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +0100923 */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200924 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +0200925 return false;
Jens Axboeda775262006-12-20 11:04:12 +0100926
927 /*
Jens Axboe719d3402006-12-22 09:38:53 +0100928 * Lookup the cfqq that this bio will be queued with. Allow
929 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +0100930 */
Jens Axboe4ac845a2008-01-24 08:44:49 +0100931 cic = cfq_cic_lookup(cfqd, current->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200932 if (!cic)
Jens Axboea6151c32009-10-07 20:02:57 +0200933 return false;
Jens Axboe719d3402006-12-22 09:38:53 +0100934
Vasily Tarasov91fac312007-04-25 12:29:51 +0200935 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +0200936 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +0100937}
938
Jens Axboefebffd62008-01-28 13:19:43 +0100939static void __cfq_set_active_queue(struct cfq_data *cfqd,
940 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +0200941{
942 if (cfqq) {
Jens Axboe7b679132008-05-30 12:23:07 +0200943 cfq_log_cfqq(cfqd, cfqq, "set_active");
Jens Axboe22e2c502005-06-27 10:55:12 +0200944 cfqq->slice_end = 0;
Jens Axboe2f5cb732009-04-07 08:51:19 +0200945 cfqq->slice_dispatch = 0;
946
Jens Axboe2f5cb732009-04-07 08:51:19 +0200947 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboeb0291952009-04-07 11:38:31 +0200948 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +0200949 cfq_clear_cfqq_must_alloc_slice(cfqq);
950 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +1100951 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +0200952
953 del_timer(&cfqd->idle_slice_timer);
Jens Axboe22e2c502005-06-27 10:55:12 +0200954 }
955
956 cfqd->active_queue = cfqq;
957}
958
959/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100960 * current cfqq expired its slice (or was too idle), select new one
961 */
962static void
963__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +0200964 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100965{
Jens Axboe7b679132008-05-30 12:23:07 +0200966 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
967
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100968 if (cfq_cfqq_wait_request(cfqq))
969 del_timer(&cfqd->idle_slice_timer);
970
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100971 cfq_clear_cfqq_wait_request(cfqq);
972
973 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +0200974 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100975 */
Jens Axboe7b679132008-05-30 12:23:07 +0200976 if (timed_out && !cfq_cfqq_slice_new(cfqq)) {
Jens Axboec5b680f2007-01-19 11:56:49 +1100977 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +0200978 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
979 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100980
Jens Axboeedd75ff2007-04-19 12:03:34 +0200981 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100982
983 if (cfqq == cfqd->active_queue)
984 cfqd->active_queue = NULL;
985
986 if (cfqd->active_cic) {
987 put_io_context(cfqd->active_cic->ioc);
988 cfqd->active_cic = NULL;
989 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100990}
991
Jens Axboea6151c32009-10-07 20:02:57 +0200992static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100993{
994 struct cfq_queue *cfqq = cfqd->active_queue;
995
996 if (cfqq)
Jens Axboe6084cdd2007-04-23 08:25:00 +0200997 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100998}
999
Jens Axboe498d3aa22007-04-26 12:54:48 +02001000/*
1001 * Get next queue for service. Unless we have a queue preemption,
1002 * we'll simply select the first cfqq in the service tree.
1003 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001004static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001005{
Jens Axboeedd75ff2007-04-19 12:03:34 +02001006 if (RB_EMPTY_ROOT(&cfqd->service_tree.rb))
1007 return NULL;
1008
Jens Axboe08717142008-01-28 11:38:15 +01001009 return cfq_rb_first(&cfqd->service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001010}
1011
Jens Axboe498d3aa22007-04-26 12:54:48 +02001012/*
1013 * Get and set a new active queue for service.
1014 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001015static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1016 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001017{
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001018 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001019 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001020
Jens Axboe22e2c502005-06-27 10:55:12 +02001021 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001022 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001023}
1024
Jens Axboed9e76202007-04-20 14:27:50 +02001025static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1026 struct request *rq)
1027{
Tejun Heo83096eb2009-05-07 22:24:39 +09001028 if (blk_rq_pos(rq) >= cfqd->last_position)
1029 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001030 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001031 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001032}
1033
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001034#define CFQQ_SEEK_THR 8 * 1024
1035#define CFQQ_SEEKY(cfqq) ((cfqq)->seek_mean > CFQQ_SEEK_THR)
Jeff Moyer04dc6e72009-04-21 07:31:56 +02001036
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001037static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1038 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001039{
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001040 sector_t sdist = cfqq->seek_mean;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001041
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001042 if (!sample_valid(cfqq->seek_samples))
1043 sdist = CFQQ_SEEK_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001044
Jeff Moyer04dc6e72009-04-21 07:31:56 +02001045 return cfq_dist_from_last(cfqd, rq) <= sdist;
Jens Axboe6d048f52007-04-25 12:44:27 +02001046}
1047
Jens Axboea36e71f2009-04-15 12:15:11 +02001048static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1049 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001050{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001051 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001052 struct rb_node *parent, *node;
1053 struct cfq_queue *__cfqq;
1054 sector_t sector = cfqd->last_position;
1055
1056 if (RB_EMPTY_ROOT(root))
1057 return NULL;
1058
1059 /*
1060 * First, if we find a request starting at the end of the last
1061 * request, choose it.
1062 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001063 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001064 if (__cfqq)
1065 return __cfqq;
1066
1067 /*
1068 * If the exact sector wasn't found, the parent of the NULL leaf
1069 * will contain the closest sector.
1070 */
1071 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001072 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001073 return __cfqq;
1074
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001075 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001076 node = rb_next(&__cfqq->p_node);
1077 else
1078 node = rb_prev(&__cfqq->p_node);
1079 if (!node)
1080 return NULL;
1081
1082 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001083 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001084 return __cfqq;
1085
1086 return NULL;
1087}
1088
1089/*
1090 * cfqd - obvious
1091 * cur_cfqq - passed in so that we don't decide that the current queue is
1092 * closely cooperating with itself.
1093 *
1094 * So, basically we're assuming that that cur_cfqq has dispatched at least
1095 * one request, and that cfqd->last_position reflects a position on the disk
1096 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1097 * assumption.
1098 */
1099static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001100 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001101{
1102 struct cfq_queue *cfqq;
1103
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001104 if (!cfq_cfqq_sync(cur_cfqq))
1105 return NULL;
1106 if (CFQQ_SEEKY(cur_cfqq))
1107 return NULL;
1108
Jens Axboea36e71f2009-04-15 12:15:11 +02001109 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001110 * We should notice if some of the queues are cooperating, eg
1111 * working closely on the same area of the disk. In that case,
1112 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001113 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001114 cfqq = cfqq_close(cfqd, cur_cfqq);
1115 if (!cfqq)
1116 return NULL;
1117
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001118 /*
1119 * It only makes sense to merge sync queues.
1120 */
1121 if (!cfq_cfqq_sync(cfqq))
1122 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001123 if (CFQQ_SEEKY(cfqq))
1124 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001125
Jens Axboea36e71f2009-04-15 12:15:11 +02001126 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001127}
1128
Jens Axboe6d048f52007-04-25 12:44:27 +02001129static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001130{
Jens Axboe17926692007-01-19 11:59:30 +11001131 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +02001132 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001133 unsigned long sl;
1134
Jens Axboea68bbddba2008-09-24 13:03:33 +02001135 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001136 * SSD device without seek penalty, disable idling. But only do so
1137 * for devices that support queuing, otherwise we still have a problem
1138 * with sync vs async workloads.
Jens Axboea68bbddba2008-09-24 13:03:33 +02001139 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001140 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbddba2008-09-24 13:03:33 +02001141 return;
1142
Jens Axboedd67d052006-06-21 09:36:18 +02001143 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02001144 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02001145
1146 /*
1147 * idle is disabled, either manually or by past process history
1148 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001149 if (!cfqd->cfq_slice_idle || !cfq_cfqq_idle_window(cfqq))
1150 return;
1151
Jens Axboe22e2c502005-06-27 10:55:12 +02001152 /*
Jens Axboe7b679132008-05-30 12:23:07 +02001153 * still requests with the driver, don't idle
1154 */
Jens Axboe5ad531d2009-07-03 12:57:48 +02001155 if (rq_in_driver(cfqd))
Jens Axboe7b679132008-05-30 12:23:07 +02001156 return;
1157
1158 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02001159 * task has exited, don't wait
1160 */
Jens Axboe206dc692006-03-28 13:03:44 +02001161 cic = cfqd->active_cic;
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01001162 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02001163 return;
1164
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001165 /*
1166 * If our average think time is larger than the remaining time
1167 * slice, then don't idle. This avoids overrunning the allotted
1168 * time slice.
1169 */
1170 if (sample_valid(cic->ttime_samples) &&
1171 (cfqq->slice_end - jiffies < cic->ttime_mean))
1172 return;
1173
Jens Axboe3b181522005-06-27 10:56:24 +02001174 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001175
Jens Axboe206dc692006-03-28 13:03:44 +02001176 /*
1177 * we don't want to idle for seeks, but we do want to allow
1178 * fair distribution of slice time for a process doing back-to-back
1179 * seeks. so allow a little bit of time for him to submit a new rq
1180 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001181 sl = cfqd->cfq_slice_idle;
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001182 if (sample_valid(cfqq->seek_samples) && CFQQ_SEEKY(cfqq))
Jens Axboed9e76202007-04-20 14:27:50 +02001183 sl = min(sl, msecs_to_jiffies(CFQ_MIN_TT));
Jens Axboe206dc692006-03-28 13:03:44 +02001184
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001185 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Jens Axboe9481ffd2009-04-15 12:14:13 +02001186 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
Jens Axboe498d3aa22007-04-26 12:54:48 +02001189/*
1190 * Move request from internal lists to the request queue dispatch list.
1191 */
Jens Axboe165125e2007-07-24 09:28:11 +02001192static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Jens Axboe3ed9a292007-04-23 08:33:33 +02001194 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001195 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001196
Jens Axboe7b679132008-05-30 12:23:07 +02001197 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
1198
Jeff Moyer06d21882009-09-11 17:08:59 +02001199 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02001200 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001201 cfqq->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02001202 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02001203
1204 if (cfq_cfqq_sync(cfqq))
1205 cfqd->sync_flight++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208/*
1209 * return expired entry, or NULL to just start from scratch in rbtree
1210 */
Jens Axboefebffd62008-01-28 13:19:43 +01001211static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Jens Axboe30996f42009-10-05 11:03:39 +02001213 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Jens Axboe3b181522005-06-27 10:56:24 +02001215 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11001217
1218 cfq_mark_cfqq_fifo_expire(cfqq);
1219
Jens Axboe89850f72006-07-22 16:48:31 +02001220 if (list_empty(&cfqq->fifo))
1221 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Jens Axboe89850f72006-07-22 16:48:31 +02001223 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02001224 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02001225 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Jens Axboe30996f42009-10-05 11:03:39 +02001227 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001228 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Jens Axboe22e2c502005-06-27 10:55:12 +02001231static inline int
1232cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1233{
1234 const int base_rq = cfqd->cfq_slice_async_rq;
1235
1236 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1237
1238 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
1239}
1240
1241/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001242 * Must be called with the queue_lock held.
1243 */
1244static int cfqq_process_refs(struct cfq_queue *cfqq)
1245{
1246 int process_refs, io_refs;
1247
1248 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
1249 process_refs = atomic_read(&cfqq->ref) - io_refs;
1250 BUG_ON(process_refs < 0);
1251 return process_refs;
1252}
1253
1254static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
1255{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001256 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001257 struct cfq_queue *__cfqq;
1258
1259 /* Avoid a circular list and skip interim queue merges */
1260 while ((__cfqq = new_cfqq->new_cfqq)) {
1261 if (__cfqq == cfqq)
1262 return;
1263 new_cfqq = __cfqq;
1264 }
1265
1266 process_refs = cfqq_process_refs(cfqq);
1267 /*
1268 * If the process for the cfqq has gone away, there is no
1269 * sense in merging the queues.
1270 */
1271 if (process_refs == 0)
1272 return;
1273
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001274 /*
1275 * Merge in the direction of the lesser amount of work.
1276 */
1277 new_process_refs = cfqq_process_refs(new_cfqq);
1278 if (new_process_refs >= process_refs) {
1279 cfqq->new_cfqq = new_cfqq;
1280 atomic_add(process_refs, &new_cfqq->ref);
1281 } else {
1282 new_cfqq->new_cfqq = cfqq;
1283 atomic_add(new_process_refs, &cfqq->ref);
1284 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001285}
1286
1287/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02001288 * Select a queue for service. If we have a current active queue,
1289 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02001290 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001291static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001292{
Jens Axboea36e71f2009-04-15 12:15:11 +02001293 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001294
1295 cfqq = cfqd->active_queue;
1296 if (!cfqq)
1297 goto new_queue;
1298
1299 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02001300 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02001301 */
Jens Axboeb0291952009-04-07 11:38:31 +02001302 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq))
Jens Axboe3b181522005-06-27 10:56:24 +02001303 goto expire;
Jens Axboe22e2c502005-06-27 10:55:12 +02001304
1305 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02001306 * The active queue has requests and isn't expired, allow it to
1307 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02001308 */
Jens Axboedd67d052006-06-21 09:36:18 +02001309 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02001310 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02001311
1312 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02001313 * If another queue has a request waiting within our mean seek
1314 * distance, let it run. The expire code will check for close
1315 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001316 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02001317 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001318 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001319 if (new_cfqq) {
1320 if (!cfqq->new_cfqq)
1321 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02001322 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001323 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001324
1325 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02001326 * No requests pending. If the active queue still has requests in
1327 * flight or is idling for a new request, allow either of these
1328 * conditions to happen (or time out) before selecting a new queue.
1329 */
Jens Axboecc197472007-04-20 20:45:39 +02001330 if (timer_pending(&cfqd->idle_slice_timer) ||
1331 (cfqq->dispatched && cfq_cfqq_idle_window(cfqq))) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02001332 cfqq = NULL;
1333 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001334 }
1335
Jens Axboe3b181522005-06-27 10:56:24 +02001336expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +02001337 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02001338new_queue:
Jens Axboea36e71f2009-04-15 12:15:11 +02001339 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001340keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02001341 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001342}
1343
Jens Axboefebffd62008-01-28 13:19:43 +01001344static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02001345{
1346 int dispatched = 0;
1347
1348 while (cfqq->next_rq) {
1349 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
1350 dispatched++;
1351 }
1352
1353 BUG_ON(!list_empty(&cfqq->fifo));
1354 return dispatched;
1355}
1356
Jens Axboe498d3aa22007-04-26 12:54:48 +02001357/*
1358 * Drain our current requests. Used for barriers and when switching
1359 * io schedulers on-the-fly.
1360 */
Jens Axboed9e76202007-04-20 14:27:50 +02001361static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001362{
Jens Axboe08717142008-01-28 11:38:15 +01001363 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001364 int dispatched = 0;
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001365
Jens Axboe08717142008-01-28 11:38:15 +01001366 while ((cfqq = cfq_rb_first(&cfqd->service_tree)) != NULL)
Jens Axboed9e76202007-04-20 14:27:50 +02001367 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001368
Jens Axboe6084cdd2007-04-23 08:25:00 +02001369 cfq_slice_expired(cfqd, 0);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001370
1371 BUG_ON(cfqd->busy_queues);
1372
Jeff Moyer6923715a2009-06-12 15:29:30 +02001373 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001374 return dispatched;
1375}
1376
Jens Axboe0b182d62009-10-06 20:49:37 +02001377static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02001378{
Jens Axboe2f5cb732009-04-07 08:51:19 +02001379 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Jens Axboe2f5cb732009-04-07 08:51:19 +02001381 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02001382 * Drain async requests before we start sync IO
1383 */
1384 if (cfq_cfqq_idle_window(cfqq) && cfqd->rq_in_driver[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02001385 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02001386
1387 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02001388 * If this is an async queue and we have sync IO in flight, let it wait
1389 */
1390 if (cfqd->sync_flight && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02001391 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02001392
1393 max_dispatch = cfqd->cfq_quantum;
1394 if (cfq_class_idle(cfqq))
1395 max_dispatch = 1;
1396
1397 /*
1398 * Does this cfqq already have too much IO in flight?
1399 */
1400 if (cfqq->dispatched >= max_dispatch) {
1401 /*
1402 * idle queue must always only have a single IO in flight
1403 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02001404 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02001405 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02001406
Jens Axboe2f5cb732009-04-07 08:51:19 +02001407 /*
1408 * We have other queues, don't allow more IO from this one
1409 */
1410 if (cfqd->busy_queues > 1)
Jens Axboe0b182d62009-10-06 20:49:37 +02001411 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11001412
Jens Axboe2f5cb732009-04-07 08:51:19 +02001413 /*
Jens Axboe8e296752009-10-03 16:26:03 +02001414 * Sole queue user, allow bigger slice
Vivek Goyal365722b2009-10-03 15:21:27 +02001415 */
Jens Axboe8e296752009-10-03 16:26:03 +02001416 max_dispatch *= 4;
1417 }
1418
1419 /*
1420 * Async queues must wait a bit before being allowed dispatch.
1421 * We also ramp up the dispatch depth gradually for async IO,
1422 * based on the last sync IO we serviced
1423 */
Jens Axboe963b72f2009-10-03 19:42:18 +02001424 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Jens Axboe8e296752009-10-03 16:26:03 +02001425 unsigned long last_sync = jiffies - cfqd->last_end_sync_rq;
1426 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02001427
Jens Axboe61f0c1d2009-10-03 19:46:03 +02001428 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02001429 if (!depth && !cfqq->dispatched)
1430 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02001431 if (depth < max_dispatch)
1432 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434
Jens Axboe0b182d62009-10-06 20:49:37 +02001435 /*
1436 * If we're below the current max, allow a dispatch
1437 */
1438 return cfqq->dispatched < max_dispatch;
1439}
1440
1441/*
1442 * Dispatch a request from cfqq, moving them to the request queue
1443 * dispatch list.
1444 */
1445static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1446{
1447 struct request *rq;
1448
1449 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
1450
1451 if (!cfq_may_dispatch(cfqd, cfqq))
1452 return false;
1453
1454 /*
1455 * follow expired path, else get first next available
1456 */
1457 rq = cfq_check_fifo(cfqq);
1458 if (!rq)
1459 rq = cfqq->next_rq;
1460
1461 /*
1462 * insert request into driver dispatch list
1463 */
1464 cfq_dispatch_insert(cfqd->queue, rq);
1465
1466 if (!cfqd->active_cic) {
1467 struct cfq_io_context *cic = RQ_CIC(rq);
1468
1469 atomic_long_inc(&cic->ioc->refcount);
1470 cfqd->active_cic = cic;
1471 }
1472
1473 return true;
1474}
1475
1476/*
1477 * Find the cfqq that we need to service and move a request from that to the
1478 * dispatch list
1479 */
1480static int cfq_dispatch_requests(struct request_queue *q, int force)
1481{
1482 struct cfq_data *cfqd = q->elevator->elevator_data;
1483 struct cfq_queue *cfqq;
1484
1485 if (!cfqd->busy_queues)
1486 return 0;
1487
1488 if (unlikely(force))
1489 return cfq_forced_dispatch(cfqd);
1490
1491 cfqq = cfq_select_queue(cfqd);
1492 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02001493 return 0;
1494
Jens Axboe2f5cb732009-04-07 08:51:19 +02001495 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02001496 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02001497 */
Jens Axboe0b182d62009-10-06 20:49:37 +02001498 if (!cfq_dispatch_request(cfqd, cfqq))
1499 return 0;
1500
Jens Axboe2f5cb732009-04-07 08:51:19 +02001501 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02001502 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02001503
1504 /*
1505 * expire an async queue immediately if it has used up its slice. idle
1506 * queue always expire after 1 dispatch round.
1507 */
1508 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
1509 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
1510 cfq_class_idle(cfqq))) {
1511 cfqq->slice_end = jiffies + 1;
1512 cfq_slice_expired(cfqd, 0);
1513 }
1514
Shan Weib217a902009-09-01 10:06:42 +02001515 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02001516 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519/*
Jens Axboe5e705372006-07-13 12:39:25 +02001520 * task holds one reference to the queue, dropped when task exits. each rq
1521 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 *
1523 * queue lock must be held here.
1524 */
1525static void cfq_put_queue(struct cfq_queue *cfqq)
1526{
Jens Axboe22e2c502005-06-27 10:55:12 +02001527 struct cfq_data *cfqd = cfqq->cfqd;
1528
1529 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 if (!atomic_dec_and_test(&cfqq->ref))
1532 return;
1533
Jens Axboe7b679132008-05-30 12:23:07 +02001534 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02001536 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Jens Axboe3b181522005-06-27 10:56:24 +02001537 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001539 if (unlikely(cfqd->active_queue == cfqq)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02001540 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02001541 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001542 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 kmem_cache_free(cfq_pool, cfqq);
1545}
1546
Jens Axboed6de8be2008-05-28 14:46:59 +02001547/*
1548 * Must always be called with the rcu_read_lock() held
1549 */
Jens Axboe07416d22008-05-07 09:17:12 +02001550static void
1551__call_for_each_cic(struct io_context *ioc,
1552 void (*func)(struct io_context *, struct cfq_io_context *))
1553{
1554 struct cfq_io_context *cic;
1555 struct hlist_node *n;
1556
1557 hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list)
1558 func(ioc, cic);
1559}
1560
Jens Axboe4ac845a2008-01-24 08:44:49 +01001561/*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001562 * Call func for each cic attached to this ioc.
Jens Axboe4ac845a2008-01-24 08:44:49 +01001563 */
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001564static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01001565call_for_each_cic(struct io_context *ioc,
1566 void (*func)(struct io_context *, struct cfq_io_context *))
1567{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001568 rcu_read_lock();
Jens Axboe07416d22008-05-07 09:17:12 +02001569 __call_for_each_cic(ioc, func);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001570 rcu_read_unlock();
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001571}
Jens Axboe4ac845a2008-01-24 08:44:49 +01001572
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001573static void cfq_cic_free_rcu(struct rcu_head *head)
1574{
1575 struct cfq_io_context *cic;
1576
1577 cic = container_of(head, struct cfq_io_context, rcu_head);
1578
1579 kmem_cache_free(cfq_ioc_pool, cic);
Tejun Heo245b2e72009-06-24 15:13:48 +09001580 elv_ioc_count_dec(cfq_ioc_count);
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001581
Jens Axboe9a11b4e2008-05-29 09:32:08 +02001582 if (ioc_gone) {
1583 /*
1584 * CFQ scheduler is exiting, grab exit lock and check
1585 * the pending io context count. If it hits zero,
1586 * complete ioc_gone and set it back to NULL
1587 */
1588 spin_lock(&ioc_gone_lock);
Tejun Heo245b2e72009-06-24 15:13:48 +09001589 if (ioc_gone && !elv_ioc_count_read(cfq_ioc_count)) {
Jens Axboe9a11b4e2008-05-29 09:32:08 +02001590 complete(ioc_gone);
1591 ioc_gone = NULL;
1592 }
1593 spin_unlock(&ioc_gone_lock);
1594 }
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001595}
1596
1597static void cfq_cic_free(struct cfq_io_context *cic)
1598{
1599 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001600}
1601
1602static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic)
1603{
1604 unsigned long flags;
1605
1606 BUG_ON(!cic->dead_key);
1607
1608 spin_lock_irqsave(&ioc->lock, flags);
1609 radix_tree_delete(&ioc->radix_root, cic->dead_key);
Jens Axboeffc4e752008-02-19 10:02:29 +01001610 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001611 spin_unlock_irqrestore(&ioc->lock, flags);
1612
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001613 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001614}
1615
Jens Axboed6de8be2008-05-28 14:46:59 +02001616/*
1617 * Must be called with rcu_read_lock() held or preemption otherwise disabled.
1618 * Only two callers of this - ->dtor() which is called with the rcu_read_lock(),
1619 * and ->trim() which is called with the task lock held
1620 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02001621static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001623 /*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001624 * ioc->refcount is zero here, or we are called from elv_unregister(),
1625 * so no more cic's are allowed to be linked into this ioc. So it
1626 * should be ok to iterate over the known list, we will see all cic's
1627 * since no new ones are added.
Jens Axboe4ac845a2008-01-24 08:44:49 +01001628 */
Jens Axboe07416d22008-05-07 09:17:12 +02001629 __call_for_each_cic(ioc, cic_free_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
Jens Axboe89850f72006-07-22 16:48:31 +02001632static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1633{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001634 struct cfq_queue *__cfqq, *next;
1635
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001636 if (unlikely(cfqq == cfqd->active_queue)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02001637 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02001638 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001639 }
Jens Axboe89850f72006-07-22 16:48:31 +02001640
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001641 /*
1642 * If this queue was scheduled to merge with another queue, be
1643 * sure to drop the reference taken on that queue (and others in
1644 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
1645 */
1646 __cfqq = cfqq->new_cfqq;
1647 while (__cfqq) {
1648 if (__cfqq == cfqq) {
1649 WARN(1, "cfqq->new_cfqq loop detected\n");
1650 break;
1651 }
1652 next = __cfqq->new_cfqq;
1653 cfq_put_queue(__cfqq);
1654 __cfqq = next;
1655 }
1656
Jens Axboe89850f72006-07-22 16:48:31 +02001657 cfq_put_queue(cfqq);
1658}
1659
1660static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
1661 struct cfq_io_context *cic)
1662{
Fabio Checconi4faa3c82008-04-10 08:28:01 +02001663 struct io_context *ioc = cic->ioc;
1664
Jens Axboefc463792006-08-29 09:05:44 +02001665 list_del_init(&cic->queue_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001666
1667 /*
1668 * Make sure key == NULL is seen for dead queues
1669 */
Jens Axboefc463792006-08-29 09:05:44 +02001670 smp_wmb();
Jens Axboe4ac845a2008-01-24 08:44:49 +01001671 cic->dead_key = (unsigned long) cic->key;
Jens Axboefc463792006-08-29 09:05:44 +02001672 cic->key = NULL;
1673
Fabio Checconi4faa3c82008-04-10 08:28:01 +02001674 if (ioc->ioc_data == cic)
1675 rcu_assign_pointer(ioc->ioc_data, NULL);
1676
Jens Axboeff6657c2009-04-08 10:58:57 +02001677 if (cic->cfqq[BLK_RW_ASYNC]) {
1678 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
1679 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02001680 }
1681
Jens Axboeff6657c2009-04-08 10:58:57 +02001682 if (cic->cfqq[BLK_RW_SYNC]) {
1683 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
1684 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02001685 }
Jens Axboe89850f72006-07-22 16:48:31 +02001686}
1687
Jens Axboe4ac845a2008-01-24 08:44:49 +01001688static void cfq_exit_single_io_context(struct io_context *ioc,
1689 struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02001690{
Al Viro478a82b2006-03-18 13:25:24 -05001691 struct cfq_data *cfqd = cic->key;
Jens Axboe22e2c502005-06-27 10:55:12 +02001692
Jens Axboe89850f72006-07-22 16:48:31 +02001693 if (cfqd) {
Jens Axboe165125e2007-07-24 09:28:11 +02001694 struct request_queue *q = cfqd->queue;
Jens Axboe4ac845a2008-01-24 08:44:49 +01001695 unsigned long flags;
Jens Axboe22e2c502005-06-27 10:55:12 +02001696
Jens Axboe4ac845a2008-01-24 08:44:49 +01001697 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboe62c1fe92008-12-15 21:19:25 +01001698
1699 /*
1700 * Ensure we get a fresh copy of the ->key to prevent
1701 * race between exiting task and queue
1702 */
1703 smp_read_barrier_depends();
1704 if (cic->key)
1705 __cfq_exit_single_io_context(cfqd, cic);
1706
Jens Axboe4ac845a2008-01-24 08:44:49 +01001707 spin_unlock_irqrestore(q->queue_lock, flags);
Al Viro12a05732006-03-18 13:38:01 -05001708 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001709}
1710
Jens Axboe498d3aa22007-04-26 12:54:48 +02001711/*
1712 * The process that ioc belongs to has exited, we need to clean up
1713 * and put the internal structures we have that belongs to that process.
1714 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02001715static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001717 call_for_each_cic(ioc, cfq_exit_single_io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
Jens Axboe22e2c502005-06-27 10:55:12 +02001720static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04001721cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
Jens Axboeb5deef92006-07-19 23:39:40 +02001723 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Christoph Lameter94f60302007-07-17 04:03:29 -07001725 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
1726 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 if (cic) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001728 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02001729 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboeffc4e752008-02-19 10:02:29 +01001730 INIT_HLIST_NODE(&cic->cic_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001731 cic->dtor = cfq_free_io_context;
1732 cic->exit = cfq_exit_io_context;
Tejun Heo245b2e72009-06-24 15:13:48 +09001733 elv_ioc_count_inc(cfq_ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
1735
1736 return cic;
1737}
1738
Jens Axboefd0928d2008-01-24 08:52:45 +01001739static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02001740{
1741 struct task_struct *tsk = current;
1742 int ioprio_class;
1743
Jens Axboe3b181522005-06-27 10:56:24 +02001744 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001745 return;
1746
Jens Axboefd0928d2008-01-24 08:52:45 +01001747 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001748 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01001749 default:
1750 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
1751 case IOPRIO_CLASS_NONE:
1752 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02001753 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01001754 */
1755 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02001756 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01001757 break;
1758 case IOPRIO_CLASS_RT:
1759 cfqq->ioprio = task_ioprio(ioc);
1760 cfqq->ioprio_class = IOPRIO_CLASS_RT;
1761 break;
1762 case IOPRIO_CLASS_BE:
1763 cfqq->ioprio = task_ioprio(ioc);
1764 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1765 break;
1766 case IOPRIO_CLASS_IDLE:
1767 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
1768 cfqq->ioprio = 7;
1769 cfq_clear_cfqq_idle_window(cfqq);
1770 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02001771 }
1772
1773 /*
1774 * keep track of original prio settings in case we have to temporarily
1775 * elevate the priority of this queue
1776 */
1777 cfqq->org_ioprio = cfqq->ioprio;
1778 cfqq->org_ioprio_class = cfqq->ioprio_class;
Jens Axboe3b181522005-06-27 10:56:24 +02001779 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001780}
1781
Jens Axboefebffd62008-01-28 13:19:43 +01001782static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02001783{
Al Viro478a82b2006-03-18 13:25:24 -05001784 struct cfq_data *cfqd = cic->key;
1785 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01001786 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02001787
Jens Axboecaaa5f92006-06-16 11:23:00 +02001788 if (unlikely(!cfqd))
1789 return;
1790
Jens Axboec1b707d2006-10-30 19:54:23 +01001791 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001792
Jens Axboeff6657c2009-04-08 10:58:57 +02001793 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02001794 if (cfqq) {
1795 struct cfq_queue *new_cfqq;
Jens Axboeff6657c2009-04-08 10:58:57 +02001796 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc,
1797 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001798 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02001799 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001800 cfq_put_queue(cfqq);
1801 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001802 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02001803
Jens Axboeff6657c2009-04-08 10:58:57 +02001804 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02001805 if (cfqq)
1806 cfq_mark_cfqq_prio_changed(cfqq);
1807
Jens Axboec1b707d2006-10-30 19:54:23 +01001808 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02001809}
1810
Jens Axboefc463792006-08-29 09:05:44 +02001811static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001813 call_for_each_cic(ioc, changed_ioprio);
Jens Axboefc463792006-08-29 09:05:44 +02001814 ioc->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
Jens Axboed5036d72009-06-26 10:44:34 +02001817static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001818 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02001819{
1820 RB_CLEAR_NODE(&cfqq->rb_node);
1821 RB_CLEAR_NODE(&cfqq->p_node);
1822 INIT_LIST_HEAD(&cfqq->fifo);
1823
1824 atomic_set(&cfqq->ref, 0);
1825 cfqq->cfqd = cfqd;
1826
1827 cfq_mark_cfqq_prio_changed(cfqq);
1828
1829 if (is_sync) {
1830 if (!cfq_class_idle(cfqq))
1831 cfq_mark_cfqq_idle_window(cfqq);
1832 cfq_mark_cfqq_sync(cfqq);
1833 }
1834 cfqq->pid = pid;
1835}
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02001838cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01001839 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001842 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844retry:
Jens Axboe4ac845a2008-01-24 08:44:49 +01001845 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001846 /* cic always exists here */
1847 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Jens Axboe6118b702009-06-30 09:34:12 +02001849 /*
1850 * Always try a new alloc if we fell back to the OOM cfqq
1851 * originally, since it should just be a temporary situation.
1852 */
1853 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
1854 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 if (new_cfqq) {
1856 cfqq = new_cfqq;
1857 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001858 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07001860 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02001861 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07001862 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02001864 if (new_cfqq)
1865 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02001866 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07001867 cfqq = kmem_cache_alloc_node(cfq_pool,
1868 gfp_mask | __GFP_ZERO,
1869 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02001870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Jens Axboe6118b702009-06-30 09:34:12 +02001872 if (cfqq) {
1873 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
1874 cfq_init_prio_data(cfqq, ioc);
1875 cfq_log_cfqq(cfqd, cfqq, "alloced");
1876 } else
1877 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
1879
1880 if (new_cfqq)
1881 kmem_cache_free(cfq_pool, new_cfqq);
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return cfqq;
1884}
1885
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001886static struct cfq_queue **
1887cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
1888{
Jens Axboefe094d92008-01-31 13:08:54 +01001889 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001890 case IOPRIO_CLASS_RT:
1891 return &cfqd->async_cfqq[0][ioprio];
1892 case IOPRIO_CLASS_BE:
1893 return &cfqd->async_cfqq[1][ioprio];
1894 case IOPRIO_CLASS_IDLE:
1895 return &cfqd->async_idle_cfqq;
1896 default:
1897 BUG();
1898 }
1899}
1900
Jens Axboe15c31be2007-07-10 13:43:25 +02001901static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02001902cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02001903 gfp_t gfp_mask)
1904{
Jens Axboefd0928d2008-01-24 08:52:45 +01001905 const int ioprio = task_ioprio(ioc);
1906 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001907 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02001908 struct cfq_queue *cfqq = NULL;
1909
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001910 if (!is_sync) {
1911 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
1912 cfqq = *async_cfqq;
1913 }
1914
Jens Axboe6118b702009-06-30 09:34:12 +02001915 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01001916 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02001917
1918 /*
1919 * pin the queue now that it's allocated, scheduler exit will prune it
1920 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001921 if (!is_sync && !(*async_cfqq)) {
Jens Axboe15c31be2007-07-10 13:43:25 +02001922 atomic_inc(&cfqq->ref);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001923 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02001924 }
1925
1926 atomic_inc(&cfqq->ref);
1927 return cfqq;
1928}
1929
Jens Axboe498d3aa22007-04-26 12:54:48 +02001930/*
1931 * We drop cfq io contexts lazily, so we may find a dead one.
1932 */
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001933static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01001934cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc,
1935 struct cfq_io_context *cic)
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001936{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001937 unsigned long flags;
1938
Jens Axboefc463792006-08-29 09:05:44 +02001939 WARN_ON(!list_empty(&cic->queue_list));
Jens Axboe597bc482007-04-24 21:23:53 +02001940
Jens Axboe4ac845a2008-01-24 08:44:49 +01001941 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe597bc482007-04-24 21:23:53 +02001942
Fabio Checconi4faa3c82008-04-10 08:28:01 +02001943 BUG_ON(ioc->ioc_data == cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001944
1945 radix_tree_delete(&ioc->radix_root, (unsigned long) cfqd);
Jens Axboeffc4e752008-02-19 10:02:29 +01001946 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001947 spin_unlock_irqrestore(&ioc->lock, flags);
1948
1949 cfq_cic_free(cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001950}
1951
Jens Axboee2d74ac2006-03-28 08:59:01 +02001952static struct cfq_io_context *
Jens Axboe4ac845a2008-01-24 08:44:49 +01001953cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02001954{
Jens Axboee2d74ac2006-03-28 08:59:01 +02001955 struct cfq_io_context *cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02001956 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01001957 void *k;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001958
Vasily Tarasov91fac312007-04-25 12:29:51 +02001959 if (unlikely(!ioc))
1960 return NULL;
1961
Jens Axboed6de8be2008-05-28 14:46:59 +02001962 rcu_read_lock();
1963
Jens Axboe597bc482007-04-24 21:23:53 +02001964 /*
1965 * we maintain a last-hit cache, to avoid browsing over the tree
1966 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01001967 cic = rcu_dereference(ioc->ioc_data);
Jens Axboed6de8be2008-05-28 14:46:59 +02001968 if (cic && cic->key == cfqd) {
1969 rcu_read_unlock();
Jens Axboe597bc482007-04-24 21:23:53 +02001970 return cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02001971 }
Jens Axboe597bc482007-04-24 21:23:53 +02001972
Jens Axboe4ac845a2008-01-24 08:44:49 +01001973 do {
Jens Axboe4ac845a2008-01-24 08:44:49 +01001974 cic = radix_tree_lookup(&ioc->radix_root, (unsigned long) cfqd);
1975 rcu_read_unlock();
1976 if (!cic)
1977 break;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02001978 /* ->key must be copied to avoid race with cfq_exit_queue() */
1979 k = cic->key;
1980 if (unlikely(!k)) {
Jens Axboe4ac845a2008-01-24 08:44:49 +01001981 cfq_drop_dead_cic(cfqd, ioc, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02001982 rcu_read_lock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01001983 continue;
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001984 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02001985
Jens Axboed6de8be2008-05-28 14:46:59 +02001986 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001987 rcu_assign_pointer(ioc->ioc_data, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02001988 spin_unlock_irqrestore(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001989 break;
1990 } while (1);
Jens Axboee2d74ac2006-03-28 08:59:01 +02001991
Jens Axboe4ac845a2008-01-24 08:44:49 +01001992 return cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02001993}
1994
Jens Axboe4ac845a2008-01-24 08:44:49 +01001995/*
1996 * Add cic into ioc, using cfqd as the search key. This enables us to lookup
1997 * the process specific cfq io context when entered from the block layer.
1998 * Also adds the cic to a per-cfqd list, used when this queue is removed.
1999 */
Jens Axboefebffd62008-01-28 13:19:43 +01002000static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
2001 struct cfq_io_context *cic, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002002{
Jens Axboe0261d682006-10-30 19:07:48 +01002003 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002004 int ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002005
Jens Axboe4ac845a2008-01-24 08:44:49 +01002006 ret = radix_tree_preload(gfp_mask);
2007 if (!ret) {
2008 cic->ioc = ioc;
2009 cic->key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002010
Jens Axboe4ac845a2008-01-24 08:44:49 +01002011 spin_lock_irqsave(&ioc->lock, flags);
2012 ret = radix_tree_insert(&ioc->radix_root,
2013 (unsigned long) cfqd, cic);
Jens Axboeffc4e752008-02-19 10:02:29 +01002014 if (!ret)
2015 hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002016 spin_unlock_irqrestore(&ioc->lock, flags);
2017
2018 radix_tree_preload_end();
2019
2020 if (!ret) {
2021 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2022 list_add(&cic->queue_list, &cfqd->cic_list);
2023 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002024 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002025 }
2026
Jens Axboe4ac845a2008-01-24 08:44:49 +01002027 if (ret)
2028 printk(KERN_ERR "cfq: cic link failed!\n");
Jens Axboefc463792006-08-29 09:05:44 +02002029
Jens Axboe4ac845a2008-01-24 08:44:49 +01002030 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002031}
2032
Jens Axboe22e2c502005-06-27 10:55:12 +02002033/*
2034 * Setup general io context and cfq io context. There can be several cfq
2035 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02002036 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02002037 */
2038static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02002039cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Jens Axboe22e2c502005-06-27 10:55:12 +02002041 struct io_context *ioc = NULL;
2042 struct cfq_io_context *cic;
2043
2044 might_sleep_if(gfp_mask & __GFP_WAIT);
2045
Jens Axboeb5deef92006-07-19 23:39:40 +02002046 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02002047 if (!ioc)
2048 return NULL;
2049
Jens Axboe4ac845a2008-01-24 08:44:49 +01002050 cic = cfq_cic_lookup(cfqd, ioc);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002051 if (cic)
2052 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02002053
Jens Axboee2d74ac2006-03-28 08:59:01 +02002054 cic = cfq_alloc_io_context(cfqd, gfp_mask);
2055 if (cic == NULL)
2056 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02002057
Jens Axboe4ac845a2008-01-24 08:44:49 +01002058 if (cfq_cic_link(cfqd, ioc, cic, gfp_mask))
2059 goto err_free;
2060
Jens Axboe22e2c502005-06-27 10:55:12 +02002061out:
Jens Axboefc463792006-08-29 09:05:44 +02002062 smp_read_barrier_depends();
2063 if (unlikely(ioc->ioprio_changed))
2064 cfq_ioc_set_ioprio(ioc);
2065
Jens Axboe22e2c502005-06-27 10:55:12 +02002066 return cic;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002067err_free:
2068 cfq_cic_free(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02002069err:
2070 put_io_context(ioc);
2071 return NULL;
2072}
2073
2074static void
2075cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
2076{
Jens Axboeaaf12282007-01-19 11:30:16 +11002077 unsigned long elapsed = jiffies - cic->last_end_request;
2078 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02002079
2080 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
2081 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
2082 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
2083}
2084
Jens Axboe206dc692006-03-28 13:03:44 +02002085static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002086cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02002087 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02002088{
2089 sector_t sdist;
2090 u64 total;
2091
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002092 if (!cfqq->last_request_pos)
Jeff Moyer4d00aa42009-04-21 07:25:04 +02002093 sdist = 0;
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002094 else if (cfqq->last_request_pos < blk_rq_pos(rq))
2095 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
Jens Axboe206dc692006-03-28 13:03:44 +02002096 else
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002097 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
Jens Axboe206dc692006-03-28 13:03:44 +02002098
2099 /*
2100 * Don't allow the seek distance to get too large from the
2101 * odd fragment, pagein, etc
2102 */
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002103 if (cfqq->seek_samples <= 60) /* second&third seek */
2104 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*1024);
Jens Axboe206dc692006-03-28 13:03:44 +02002105 else
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002106 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*64);
Jens Axboe206dc692006-03-28 13:03:44 +02002107
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002108 cfqq->seek_samples = (7*cfqq->seek_samples + 256) / 8;
2109 cfqq->seek_total = (7*cfqq->seek_total + (u64)256*sdist) / 8;
2110 total = cfqq->seek_total + (cfqq->seek_samples/2);
2111 do_div(total, cfqq->seek_samples);
2112 cfqq->seek_mean = (sector_t)total;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002113
2114 /*
2115 * If this cfqq is shared between multiple processes, check to
2116 * make sure that those processes are still issuing I/Os within
2117 * the mean seek distance. If not, it may be time to break the
2118 * queues apart again.
2119 */
2120 if (cfq_cfqq_coop(cfqq)) {
2121 if (CFQQ_SEEKY(cfqq) && !cfqq->seeky_start)
2122 cfqq->seeky_start = jiffies;
2123 else if (!CFQQ_SEEKY(cfqq))
2124 cfqq->seeky_start = 0;
2125 }
Jens Axboe206dc692006-03-28 13:03:44 +02002126}
Jens Axboe22e2c502005-06-27 10:55:12 +02002127
2128/*
2129 * Disable idle window if the process thinks too long or seeks so much that
2130 * it doesn't matter
2131 */
2132static void
2133cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
2134 struct cfq_io_context *cic)
2135{
Jens Axboe7b679132008-05-30 12:23:07 +02002136 int old_idle, enable_idle;
Jens Axboe1be92f2f2007-04-19 14:32:26 +02002137
Jens Axboe08717142008-01-28 11:38:15 +01002138 /*
2139 * Don't idle for async or idle io prio class
2140 */
2141 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f2f2007-04-19 14:32:26 +02002142 return;
2143
Jens Axboec265a7f2008-06-26 13:49:33 +02002144 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002145
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01002146 if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002147 (!cfqd->cfq_latency && cfqd->hw_tag && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02002148 enable_idle = 0;
2149 else if (sample_valid(cic->ttime_samples)) {
Corrado Zoccoloec60e4f2009-10-07 19:51:54 +02002150 unsigned int slice_idle = cfqd->cfq_slice_idle;
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002151 if (sample_valid(cfqq->seek_samples) && CFQQ_SEEKY(cfqq))
Corrado Zoccoloec60e4f2009-10-07 19:51:54 +02002152 slice_idle = msecs_to_jiffies(CFQ_MIN_TT);
2153 if (cic->ttime_mean > slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02002154 enable_idle = 0;
2155 else
2156 enable_idle = 1;
2157 }
2158
Jens Axboe7b679132008-05-30 12:23:07 +02002159 if (old_idle != enable_idle) {
2160 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
2161 if (enable_idle)
2162 cfq_mark_cfqq_idle_window(cfqq);
2163 else
2164 cfq_clear_cfqq_idle_window(cfqq);
2165 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002166}
2167
Jens Axboe22e2c502005-06-27 10:55:12 +02002168/*
2169 * Check if new_cfqq should preempt the currently active queue. Return 0 for
2170 * no or if we aren't sure, a 1 will cause a preempt.
2171 */
Jens Axboea6151c32009-10-07 20:02:57 +02002172static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02002173cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02002174 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002175{
Jens Axboe6d048f52007-04-25 12:44:27 +02002176 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002177
Jens Axboe6d048f52007-04-25 12:44:27 +02002178 cfqq = cfqd->active_queue;
2179 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02002180 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002181
Jens Axboe6d048f52007-04-25 12:44:27 +02002182 if (cfq_slice_used(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002183 return true;
Jens Axboe6d048f52007-04-25 12:44:27 +02002184
2185 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002186 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002187
2188 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002189 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002190
Jens Axboe22e2c502005-06-27 10:55:12 +02002191 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02002192 * if the new request is sync, but the currently running queue is
2193 * not, let the sync request have priority.
2194 */
Jens Axboe5e705372006-07-13 12:39:25 +02002195 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002196 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002197
Jens Axboe374f84a2006-07-23 01:42:19 +02002198 /*
2199 * So both queues are sync. Let the new request get disk time if
2200 * it's a metadata request and the current queue is doing regular IO.
2201 */
2202 if (rq_is_meta(rq) && !cfqq->meta_pending)
Jens Axboea6151c32009-10-07 20:02:57 +02002203 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002204
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002205 /*
2206 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
2207 */
2208 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002209 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002210
Jens Axboe1e3335d2007-02-14 19:59:49 +01002211 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002212 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002213
2214 /*
2215 * if this request is as-good as one we would expect from the
2216 * current cfqq, let it preempt
2217 */
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002218 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02002219 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002220
Jens Axboea6151c32009-10-07 20:02:57 +02002221 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002222}
2223
2224/*
2225 * cfqq preempts the active queue. if we allowed preempt with no slice left,
2226 * let it have half of its nominal slice.
2227 */
2228static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2229{
Jens Axboe7b679132008-05-30 12:23:07 +02002230 cfq_log_cfqq(cfqd, cfqq, "preempt");
Jens Axboe6084cdd2007-04-23 08:25:00 +02002231 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02002232
Jens Axboebf572252006-07-19 20:29:12 +02002233 /*
2234 * Put the new queue at the front of the of the current list,
2235 * so we know that it will be selected next.
2236 */
2237 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02002238
2239 cfq_service_tree_add(cfqd, cfqq, 1);
Jens Axboebf572252006-07-19 20:29:12 +02002240
Jens Axboe44f7c162007-01-19 11:51:58 +11002241 cfqq->slice_end = 0;
2242 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002243}
2244
2245/*
Jens Axboe5e705372006-07-13 12:39:25 +02002246 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02002247 * something we should do about it
2248 */
2249static void
Jens Axboe5e705372006-07-13 12:39:25 +02002250cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
2251 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002252{
Jens Axboe5e705372006-07-13 12:39:25 +02002253 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02002254
Aaron Carroll45333d52008-08-26 15:52:36 +02002255 cfqd->rq_queued++;
Jens Axboe374f84a2006-07-23 01:42:19 +02002256 if (rq_is_meta(rq))
2257 cfqq->meta_pending++;
2258
Jens Axboe9c2c38a2005-08-24 14:57:54 +02002259 cfq_update_io_thinktime(cfqd, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002260 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02002261 cfq_update_idle_window(cfqd, cfqq, cic);
2262
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002263 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002264
2265 if (cfqq == cfqd->active_queue) {
2266 /*
Jens Axboeb0291952009-04-07 11:38:31 +02002267 * Remember that we saw a request from this process, but
2268 * don't start queuing just yet. Otherwise we risk seeing lots
2269 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02002270 * and merging. If the request is already larger than a single
2271 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02002272 * merging is already done. Ditto for a busy system that
2273 * has other work pending, don't risk delaying until the
2274 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02002275 */
Jens Axboed6ceb252009-04-14 14:18:16 +02002276 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02002277 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
2278 cfqd->busy_queues > 1) {
Jens Axboed6ceb252009-04-14 14:18:16 +02002279 del_timer(&cfqd->idle_slice_timer);
Tejun Heoa7f55792009-04-23 11:05:17 +09002280 __blk_run_queue(cfqd->queue);
Jens Axboed6ceb252009-04-14 14:18:16 +02002281 }
Jens Axboeb0291952009-04-07 11:38:31 +02002282 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboed6ceb252009-04-14 14:18:16 +02002283 }
Jens Axboe5e705372006-07-13 12:39:25 +02002284 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002285 /*
2286 * not the active queue - expire current slice if it is
2287 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002288 * has some old slice time left and is of higher priority or
2289 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02002290 */
2291 cfq_preempt_queue(cfqd, cfqq);
Tejun Heoa7f55792009-04-23 11:05:17 +09002292 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02002293 }
2294}
2295
Jens Axboe165125e2007-07-24 09:28:11 +02002296static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002297{
Jens Axboeb4878f22005-10-20 16:42:29 +02002298 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02002299 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002300
Jens Axboe7b679132008-05-30 12:23:07 +02002301 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Jens Axboefd0928d2008-01-24 08:52:45 +01002302 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Jens Axboe30996f42009-10-05 11:03:39 +02002304 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02002305 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01002306 cfq_add_rq_rb(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002307
Jens Axboe5e705372006-07-13 12:39:25 +02002308 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309}
2310
Aaron Carroll45333d52008-08-26 15:52:36 +02002311/*
2312 * Update hw_tag based on peak queue depth over 50 samples under
2313 * sufficient load.
2314 */
2315static void cfq_update_hw_tag(struct cfq_data *cfqd)
2316{
Shaohua Li1a1238a2009-10-27 08:46:23 +01002317 struct cfq_queue *cfqq = cfqd->active_queue;
2318
Jens Axboe5ad531d2009-07-03 12:57:48 +02002319 if (rq_in_driver(cfqd) > cfqd->rq_in_driver_peak)
2320 cfqd->rq_in_driver_peak = rq_in_driver(cfqd);
Aaron Carroll45333d52008-08-26 15:52:36 +02002321
2322 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Jens Axboe5ad531d2009-07-03 12:57:48 +02002323 rq_in_driver(cfqd) <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02002324 return;
2325
Shaohua Li1a1238a2009-10-27 08:46:23 +01002326 /*
2327 * If active queue hasn't enough requests and can idle, cfq might not
2328 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
2329 * case
2330 */
2331 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
2332 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
2333 CFQ_HW_QUEUE_MIN && rq_in_driver(cfqd) < CFQ_HW_QUEUE_MIN)
2334 return;
2335
Aaron Carroll45333d52008-08-26 15:52:36 +02002336 if (cfqd->hw_tag_samples++ < 50)
2337 return;
2338
2339 if (cfqd->rq_in_driver_peak >= CFQ_HW_QUEUE_MIN)
2340 cfqd->hw_tag = 1;
2341 else
2342 cfqd->hw_tag = 0;
2343
2344 cfqd->hw_tag_samples = 0;
2345 cfqd->rq_in_driver_peak = 0;
2346}
2347
Jens Axboe165125e2007-07-24 09:28:11 +02002348static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
Jens Axboe5e705372006-07-13 12:39:25 +02002350 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02002351 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02002352 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02002353 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Jens Axboeb4878f22005-10-20 16:42:29 +02002355 now = jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02002356 cfq_log_cfqq(cfqd, cfqq, "complete");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Aaron Carroll45333d52008-08-26 15:52:36 +02002358 cfq_update_hw_tag(cfqd);
2359
Jens Axboe5ad531d2009-07-03 12:57:48 +02002360 WARN_ON(!cfqd->rq_in_driver[sync]);
Jens Axboe6d048f52007-04-25 12:44:27 +02002361 WARN_ON(!cfqq->dispatched);
Jens Axboe5ad531d2009-07-03 12:57:48 +02002362 cfqd->rq_in_driver[sync]--;
Jens Axboe6d048f52007-04-25 12:44:27 +02002363 cfqq->dispatched--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Jens Axboe3ed9a292007-04-23 08:33:33 +02002365 if (cfq_cfqq_sync(cfqq))
2366 cfqd->sync_flight--;
2367
Vivek Goyal365722b2009-10-03 15:21:27 +02002368 if (sync) {
Jens Axboe5e705372006-07-13 12:39:25 +02002369 RQ_CIC(rq)->last_end_request = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02002370 cfqd->last_end_sync_rq = now;
2371 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002372
2373 /*
2374 * If this is the active queue, check if it needs to be expired,
2375 * or if we want to idle in case it has no pending requests.
2376 */
2377 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02002378 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
2379
Jens Axboe44f7c162007-01-19 11:51:58 +11002380 if (cfq_cfqq_slice_new(cfqq)) {
2381 cfq_set_prio_slice(cfqd, cfqq);
2382 cfq_clear_cfqq_slice_new(cfqq);
2383 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002384 /*
2385 * If there are no requests waiting in this queue, and
2386 * there are other queues ready to issue requests, AND
2387 * those other queues are issuing requests within our
2388 * mean seek distance, give them a chance to run instead
2389 * of idling.
2390 */
Jens Axboe08717142008-01-28 11:38:15 +01002391 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Jens Axboe6084cdd2007-04-23 08:25:00 +02002392 cfq_slice_expired(cfqd, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002393 else if (cfqq_empty && !cfq_close_cooperator(cfqd, cfqq) &&
Jens Axboea36e71f2009-04-15 12:15:11 +02002394 sync && !rq_noidle(rq))
Jens Axboe6d048f52007-04-25 12:44:27 +02002395 cfq_arm_slice_timer(cfqd);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002396 }
Jens Axboe6d048f52007-04-25 12:44:27 +02002397
Jens Axboe5ad531d2009-07-03 12:57:48 +02002398 if (!rq_in_driver(cfqd))
Jens Axboe23e018a2009-10-05 08:52:35 +02002399 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400}
2401
Jens Axboe22e2c502005-06-27 10:55:12 +02002402/*
2403 * we temporarily boost lower priority queues if they are holding fs exclusive
2404 * resources. they are boosted to normal prio (CLASS_BE/4)
2405 */
2406static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407{
Jens Axboe22e2c502005-06-27 10:55:12 +02002408 if (has_fs_excl()) {
2409 /*
2410 * boost idle prio on transactions that would lock out other
2411 * users of the filesystem
2412 */
2413 if (cfq_class_idle(cfqq))
2414 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2415 if (cfqq->ioprio > IOPRIO_NORM)
2416 cfqq->ioprio = IOPRIO_NORM;
2417 } else {
2418 /*
2419 * check if we need to unboost the queue
2420 */
2421 if (cfqq->ioprio_class != cfqq->org_ioprio_class)
2422 cfqq->ioprio_class = cfqq->org_ioprio_class;
2423 if (cfqq->ioprio != cfqq->org_ioprio)
2424 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002426}
2427
Jens Axboe89850f72006-07-22 16:48:31 +02002428static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002429{
Jens Axboe1b379d82009-08-11 08:26:11 +02002430 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02002431 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002432 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02002433 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002434
2435 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02002436}
2437
Jens Axboe165125e2007-07-24 09:28:11 +02002438static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02002439{
2440 struct cfq_data *cfqd = q->elevator->elevator_data;
2441 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02002442 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02002443 struct cfq_queue *cfqq;
2444
2445 /*
2446 * don't force setup of a queue from here, as a call to may_queue
2447 * does not necessarily imply that a request actually will be queued.
2448 * so just lookup a possibly existing queue, or return 'may queue'
2449 * if that fails
2450 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01002451 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002452 if (!cic)
2453 return ELV_MQUEUE_MAY;
2454
Jens Axboeb0b78f82009-04-08 10:56:08 +02002455 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02002456 if (cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01002457 cfq_init_prio_data(cfqq, cic->ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02002458 cfq_prio_boost(cfqq);
2459
Jens Axboe89850f72006-07-22 16:48:31 +02002460 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002461 }
2462
2463 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464}
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466/*
2467 * queue lock held here
2468 */
Jens Axboebb37b942006-12-01 10:42:33 +01002469static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470{
Jens Axboe5e705372006-07-13 12:39:25 +02002471 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Jens Axboe5e705372006-07-13 12:39:25 +02002473 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002474 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Jens Axboe22e2c502005-06-27 10:55:12 +02002476 BUG_ON(!cfqq->allocated[rw]);
2477 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Jens Axboe5e705372006-07-13 12:39:25 +02002479 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02002482 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 cfq_put_queue(cfqq);
2485 }
2486}
2487
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002488static struct cfq_queue *
2489cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic,
2490 struct cfq_queue *cfqq)
2491{
2492 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
2493 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002494 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002495 cfq_put_queue(cfqq);
2496 return cic_to_cfqq(cic, 1);
2497}
2498
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002499static int should_split_cfqq(struct cfq_queue *cfqq)
2500{
2501 if (cfqq->seeky_start &&
2502 time_after(jiffies, cfqq->seeky_start + CFQQ_COOP_TOUT))
2503 return 1;
2504 return 0;
2505}
2506
2507/*
2508 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
2509 * was the last process referring to said cfqq.
2510 */
2511static struct cfq_queue *
2512split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq)
2513{
2514 if (cfqq_process_refs(cfqq) == 1) {
2515 cfqq->seeky_start = 0;
2516 cfqq->pid = current->pid;
2517 cfq_clear_cfqq_coop(cfqq);
2518 return cfqq;
2519 }
2520
2521 cic_set_cfqq(cic, NULL, 1);
2522 cfq_put_queue(cfqq);
2523 return NULL;
2524}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525/*
Jens Axboe22e2c502005-06-27 10:55:12 +02002526 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 */
Jens Axboe22e2c502005-06-27 10:55:12 +02002528static int
Jens Axboe165125e2007-07-24 09:28:11 +02002529cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530{
2531 struct cfq_data *cfqd = q->elevator->elevator_data;
2532 struct cfq_io_context *cic;
2533 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02002534 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002535 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 unsigned long flags;
2537
2538 might_sleep_if(gfp_mask & __GFP_WAIT);
2539
Jens Axboee2d74ac2006-03-28 08:59:01 +02002540 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02002541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 spin_lock_irqsave(q->queue_lock, flags);
2543
Jens Axboe22e2c502005-06-27 10:55:12 +02002544 if (!cic)
2545 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002547new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02002548 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02002549 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01002550 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002551 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002552 } else {
2553 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002554 * If the queue was seeky for too long, break it apart.
2555 */
2556 if (cfq_cfqq_coop(cfqq) && should_split_cfqq(cfqq)) {
2557 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
2558 cfqq = split_cfqq(cic, cfqq);
2559 if (!cfqq)
2560 goto new_queue;
2561 }
2562
2563 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002564 * Check to see if this queue is scheduled to merge with
2565 * another, closely cooperating queue. The merging of
2566 * queues happens here as it must be done in process context.
2567 * The reference on new_cfqq was taken in merge_cfqqs.
2568 */
2569 if (cfqq->new_cfqq)
2570 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573 cfqq->allocated[rw]++;
Jens Axboe22e2c502005-06-27 10:55:12 +02002574 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02002575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 spin_unlock_irqrestore(q->queue_lock, flags);
2577
Jens Axboe5e705372006-07-13 12:39:25 +02002578 rq->elevator_private = cic;
2579 rq->elevator_private2 = cfqq;
2580 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02002581
Jens Axboe22e2c502005-06-27 10:55:12 +02002582queue_fail:
2583 if (cic)
2584 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02002585
Jens Axboe23e018a2009-10-05 08:52:35 +02002586 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 spin_unlock_irqrestore(q->queue_lock, flags);
Jens Axboe7b679132008-05-30 12:23:07 +02002588 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return 1;
2590}
2591
David Howells65f27f32006-11-22 14:55:48 +00002592static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02002593{
David Howells65f27f32006-11-22 14:55:48 +00002594 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02002595 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02002596 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002597
Jens Axboe40bb54d2009-04-15 12:11:10 +02002598 spin_lock_irq(q->queue_lock);
Tejun Heoa7f55792009-04-23 11:05:17 +09002599 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02002600 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02002601}
2602
2603/*
2604 * Timer running if the active_queue is currently idling inside its time slice
2605 */
2606static void cfq_idle_slice_timer(unsigned long data)
2607{
2608 struct cfq_data *cfqd = (struct cfq_data *) data;
2609 struct cfq_queue *cfqq;
2610 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11002611 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02002612
Jens Axboe7b679132008-05-30 12:23:07 +02002613 cfq_log(cfqd, "idle timer fired");
2614
Jens Axboe22e2c502005-06-27 10:55:12 +02002615 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2616
Jens Axboefe094d92008-01-31 13:08:54 +01002617 cfqq = cfqd->active_queue;
2618 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11002619 timed_out = 0;
2620
Jens Axboe22e2c502005-06-27 10:55:12 +02002621 /*
Jens Axboeb0291952009-04-07 11:38:31 +02002622 * We saw a request before the queue expired, let it through
2623 */
2624 if (cfq_cfqq_must_dispatch(cfqq))
2625 goto out_kick;
2626
2627 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02002628 * expired
2629 */
Jens Axboe44f7c162007-01-19 11:51:58 +11002630 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002631 goto expire;
2632
2633 /*
2634 * only expire and reinvoke request handler, if there are
2635 * other queues with pending requests
2636 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02002637 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02002638 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02002639
2640 /*
2641 * not expired and it has a request pending, let it dispatch
2642 */
Jens Axboe75e50982009-04-07 08:56:14 +02002643 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002644 goto out_kick;
Jens Axboe22e2c502005-06-27 10:55:12 +02002645 }
2646expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +02002647 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02002648out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02002649 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02002650out_cont:
2651 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
2652}
2653
Jens Axboe3b181522005-06-27 10:56:24 +02002654static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
2655{
2656 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02002657 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02002658}
Jens Axboe22e2c502005-06-27 10:55:12 +02002659
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002660static void cfq_put_async_queues(struct cfq_data *cfqd)
2661{
2662 int i;
2663
2664 for (i = 0; i < IOPRIO_BE_NR; i++) {
2665 if (cfqd->async_cfqq[0][i])
2666 cfq_put_queue(cfqd->async_cfqq[0][i]);
2667 if (cfqd->async_cfqq[1][i])
2668 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002669 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01002670
2671 if (cfqd->async_idle_cfqq)
2672 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002673}
2674
Jens Axboeb374d182008-10-31 10:05:07 +01002675static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676{
Jens Axboe22e2c502005-06-27 10:55:12 +02002677 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02002678 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002679
Jens Axboe3b181522005-06-27 10:56:24 +02002680 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002681
Al Virod9ff4182006-03-18 13:51:22 -05002682 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002683
Al Virod9ff4182006-03-18 13:51:22 -05002684 if (cfqd->active_queue)
Jens Axboe6084cdd2007-04-23 08:25:00 +02002685 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002686
2687 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05002688 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
2689 struct cfq_io_context,
2690 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02002691
2692 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05002693 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002694
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002695 cfq_put_async_queues(cfqd);
Jens Axboe15c31be2007-07-10 13:43:25 +02002696
Al Virod9ff4182006-03-18 13:51:22 -05002697 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05002698
2699 cfq_shutdown_timer_wq(cfqd);
2700
Al Viroa90d7422006-03-18 12:05:37 -05002701 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702}
2703
Jens Axboe165125e2007-07-24 09:28:11 +02002704static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
2706 struct cfq_data *cfqd;
Jens Axboe26a2ac02009-04-23 12:13:27 +02002707 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
Christoph Lameter94f60302007-07-17 04:03:29 -07002709 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02002711 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Jens Axboecc09e292007-04-26 12:53:50 +02002713 cfqd->service_tree = CFQ_RB_ROOT;
Jens Axboe26a2ac02009-04-23 12:13:27 +02002714
2715 /*
2716 * Not strictly needed (since RB_ROOT just clears the node and we
2717 * zeroed cfqd on alloc), but better be safe in case someone decides
2718 * to add magic to the rb code
2719 */
2720 for (i = 0; i < CFQ_PRIO_LISTS; i++)
2721 cfqd->prio_trees[i] = RB_ROOT;
2722
Jens Axboe6118b702009-06-30 09:34:12 +02002723 /*
2724 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
2725 * Grab a permanent reference to it, so that the normal code flow
2726 * will not attempt to free it.
2727 */
2728 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
2729 atomic_inc(&cfqd->oom_cfqq.ref);
2730
Al Virod9ff4182006-03-18 13:51:22 -05002731 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
Jens Axboe22e2c502005-06-27 10:55:12 +02002735 init_timer(&cfqd->idle_slice_timer);
2736 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
2737 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
2738
Jens Axboe23e018a2009-10-05 08:52:35 +02002739 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02002740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02002742 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
2743 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 cfqd->cfq_back_max = cfq_back_max;
2745 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02002746 cfqd->cfq_slice[0] = cfq_slice_async;
2747 cfqd->cfq_slice[1] = cfq_slice_sync;
2748 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
2749 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02002750 cfqd->cfq_latency = 1;
Aaron Carroll45333d52008-08-26 15:52:36 +02002751 cfqd->hw_tag = 1;
Vivek Goyal365722b2009-10-03 15:21:27 +02002752 cfqd->last_end_sync_rq = jiffies;
Jens Axboebc1c1162006-06-08 08:49:06 +02002753 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754}
2755
2756static void cfq_slab_kill(void)
2757{
Jens Axboed6de8be2008-05-28 14:46:59 +02002758 /*
2759 * Caller already ensured that pending RCU callbacks are completed,
2760 * so we should have no busy allocations at this point.
2761 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 if (cfq_pool)
2763 kmem_cache_destroy(cfq_pool);
2764 if (cfq_ioc_pool)
2765 kmem_cache_destroy(cfq_ioc_pool);
2766}
2767
2768static int __init cfq_slab_setup(void)
2769{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07002770 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 if (!cfq_pool)
2772 goto fail;
2773
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002774 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 if (!cfq_ioc_pool)
2776 goto fail;
2777
2778 return 0;
2779fail:
2780 cfq_slab_kill();
2781 return -ENOMEM;
2782}
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784/*
2785 * sysfs parts below -->
2786 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787static ssize_t
2788cfq_var_show(unsigned int var, char *page)
2789{
2790 return sprintf(page, "%d\n", var);
2791}
2792
2793static ssize_t
2794cfq_var_store(unsigned int *var, const char *page, size_t count)
2795{
2796 char *p = (char *) page;
2797
2798 *var = simple_strtoul(p, &p, 10);
2799 return count;
2800}
2801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01002803static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002805 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 unsigned int __data = __VAR; \
2807 if (__CONV) \
2808 __data = jiffies_to_msecs(__data); \
2809 return cfq_var_show(__data, (page)); \
2810}
2811SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002812SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
2813SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05002814SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
2815SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002816SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
2817SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
2818SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
2819SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02002820SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821#undef SHOW_FUNCTION
2822
2823#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01002824static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002826 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 unsigned int __data; \
2828 int ret = cfq_var_store(&__data, (page), count); \
2829 if (__data < (MIN)) \
2830 __data = (MIN); \
2831 else if (__data > (MAX)) \
2832 __data = (MAX); \
2833 if (__CONV) \
2834 *(__PTR) = msecs_to_jiffies(__data); \
2835 else \
2836 *(__PTR) = __data; \
2837 return ret; \
2838}
2839STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01002840STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
2841 UINT_MAX, 1);
2842STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
2843 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05002844STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01002845STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
2846 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002847STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
2848STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
2849STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01002850STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
2851 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02002852STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853#undef STORE_FUNCTION
2854
Al Viroe572ec72006-03-18 22:27:18 -05002855#define CFQ_ATTR(name) \
2856 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02002857
Al Viroe572ec72006-03-18 22:27:18 -05002858static struct elv_fs_entry cfq_attrs[] = {
2859 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05002860 CFQ_ATTR(fifo_expire_sync),
2861 CFQ_ATTR(fifo_expire_async),
2862 CFQ_ATTR(back_seek_max),
2863 CFQ_ATTR(back_seek_penalty),
2864 CFQ_ATTR(slice_sync),
2865 CFQ_ATTR(slice_async),
2866 CFQ_ATTR(slice_async_rq),
2867 CFQ_ATTR(slice_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02002868 CFQ_ATTR(low_latency),
Al Viroe572ec72006-03-18 22:27:18 -05002869 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870};
2871
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872static struct elevator_type iosched_cfq = {
2873 .ops = {
2874 .elevator_merge_fn = cfq_merge,
2875 .elevator_merged_fn = cfq_merged_request,
2876 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01002877 .elevator_allow_merge_fn = cfq_allow_merge,
Jens Axboeb4878f22005-10-20 16:42:29 +02002878 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02002880 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 .elevator_deactivate_req_fn = cfq_deactivate_request,
2882 .elevator_queue_empty_fn = cfq_queue_empty,
2883 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02002884 .elevator_former_req_fn = elv_rb_former_request,
2885 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 .elevator_set_req_fn = cfq_set_request,
2887 .elevator_put_req_fn = cfq_put_request,
2888 .elevator_may_queue_fn = cfq_may_queue,
2889 .elevator_init_fn = cfq_init_queue,
2890 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02002891 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 },
Al Viro3d1ab402006-03-18 18:35:43 -05002893 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 .elevator_name = "cfq",
2895 .elevator_owner = THIS_MODULE,
2896};
2897
2898static int __init cfq_init(void)
2899{
Jens Axboe22e2c502005-06-27 10:55:12 +02002900 /*
2901 * could be 0 on HZ < 1000 setups
2902 */
2903 if (!cfq_slice_async)
2904 cfq_slice_async = 1;
2905 if (!cfq_slice_idle)
2906 cfq_slice_idle = 1;
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 if (cfq_slab_setup())
2909 return -ENOMEM;
2910
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01002911 elv_register(&iosched_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01002913 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914}
2915
2916static void __exit cfq_exit(void)
2917{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07002918 DECLARE_COMPLETION_ONSTACK(all_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05002920 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02002921 /* ioc_gone's update must be visible before reading ioc_count */
2922 smp_wmb();
Jens Axboed6de8be2008-05-28 14:46:59 +02002923
2924 /*
2925 * this also protects us from entering cfq_slab_kill() with
2926 * pending RCU callbacks
2927 */
Tejun Heo245b2e72009-06-24 15:13:48 +09002928 if (elv_ioc_count_read(cfq_ioc_count))
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002929 wait_for_completion(&all_gone);
Christoph Hellwig83521d32005-10-30 15:01:39 -08002930 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931}
2932
2933module_init(cfq_init);
2934module_exit(cfq_exit);
2935
2936MODULE_AUTHOR("Jens Axboe");
2937MODULE_LICENSE("GPL");
2938MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");