blob: 6e5c3d715ebe346b09e0768bcd8464eb7547f65c [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/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100137 * Index in the service_trees.
138 * IDLE is handled separately, so it has negative index
139 */
140enum wl_prio_t {
141 IDLE_WORKLOAD = -1,
142 BE_WORKLOAD = 0,
143 RT_WORKLOAD = 1
144};
145
146/*
Jens Axboe22e2c502005-06-27 10:55:12 +0200147 * Per block device queue structure
148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149struct cfq_data {
Jens Axboe165125e2007-07-24 09:28:11 +0200150 struct request_queue *queue;
Jens Axboe22e2c502005-06-27 10:55:12 +0200151
152 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100153 * rr lists of queues with requests, onle rr for each priority class.
154 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200155 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100156 struct cfq_rb_root service_trees[2];
157 struct cfq_rb_root service_tree_idle;
158 /*
159 * The priority currently being served
160 */
161 enum wl_prio_t serving_prio;
Jens Axboea36e71f2009-04-15 12:15:11 +0200162
163 /*
164 * Each priority tree is sorted by next_request position. These
165 * trees are used when determining if two or more queues are
166 * interleaving requests (see cfq_close_cooperator).
167 */
168 struct rb_root prio_trees[CFQ_PRIO_LISTS];
169
Jens Axboe22e2c502005-06-27 10:55:12 +0200170 unsigned int busy_queues;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100171 unsigned int busy_queues_avg[2];
Jens Axboe22e2c502005-06-27 10:55:12 +0200172
Jens Axboe5ad531d2009-07-03 12:57:48 +0200173 int rq_in_driver[2];
Jens Axboe3ed9a292007-04-23 08:33:33 +0200174 int sync_flight;
Aaron Carroll45333d52008-08-26 15:52:36 +0200175
176 /*
177 * queue-depth detection
178 */
179 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200180 int hw_tag;
Aaron Carroll45333d52008-08-26 15:52:36 +0200181 int hw_tag_samples;
182 int rq_in_driver_peak;
Jens Axboe22e2c502005-06-27 10:55:12 +0200183
184 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200185 * idle window management
186 */
187 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200188 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200189
190 struct cfq_queue *active_queue;
191 struct cfq_io_context *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200192
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200193 /*
194 * async queue for each priority case
195 */
196 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
197 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200198
Jens Axboe6d048f52007-04-25 12:44:27 +0200199 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /*
202 * tunables, see top of file
203 */
204 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200205 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 unsigned int cfq_back_penalty;
207 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200208 unsigned int cfq_slice[2];
209 unsigned int cfq_slice_async_rq;
210 unsigned int cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200211 unsigned int cfq_latency;
Al Virod9ff4182006-03-18 13:51:22 -0500212
213 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Jens Axboe6118b702009-06-30 09:34:12 +0200215 /*
216 * Fallback dummy cfqq for extreme OOM conditions
217 */
218 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200219
220 unsigned long last_end_sync_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221};
222
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100223static struct cfq_rb_root *service_tree_for(enum wl_prio_t prio,
224 struct cfq_data *cfqd)
225{
226 if (prio == IDLE_WORKLOAD)
227 return &cfqd->service_tree_idle;
228
229 return &cfqd->service_trees[prio];
230}
231
Jens Axboe3b181522005-06-27 10:56:24 +0200232enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100233 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
234 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200235 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100236 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100237 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
238 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
239 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100240 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200241 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400242 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Jens Axboe3b181522005-06-27 10:56:24 +0200243};
244
245#define CFQ_CFQQ_FNS(name) \
246static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
247{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100248 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200249} \
250static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
251{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100252 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200253} \
254static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
255{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100256 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200257}
258
259CFQ_CFQQ_FNS(on_rr);
260CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200261CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200262CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200263CFQ_CFQQ_FNS(fifo_expire);
264CFQ_CFQQ_FNS(idle_window);
265CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100266CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200267CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200268CFQ_CFQQ_FNS(coop);
Jens Axboe3b181522005-06-27 10:56:24 +0200269#undef CFQ_CFQQ_FNS
270
Jens Axboe7b679132008-05-30 12:23:07 +0200271#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
272 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
273#define cfq_log(cfqd, fmt, args...) \
274 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
275
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100276static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
277{
278 if (cfq_class_idle(cfqq))
279 return IDLE_WORKLOAD;
280 if (cfq_class_rt(cfqq))
281 return RT_WORKLOAD;
282 return BE_WORKLOAD;
283}
284
285static inline int cfq_busy_queues_wl(enum wl_prio_t wl, struct cfq_data *cfqd)
286{
287 if (wl == IDLE_WORKLOAD)
288 return cfqd->service_tree_idle.count;
289
290 return cfqd->service_trees[wl].count;
291}
292
Jens Axboe165125e2007-07-24 09:28:11 +0200293static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200294static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100295 struct io_context *, gfp_t);
Jens Axboe4ac845a2008-01-24 08:44:49 +0100296static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
Vasily Tarasov91fac312007-04-25 12:29:51 +0200297 struct io_context *);
298
Jens Axboe5ad531d2009-07-03 12:57:48 +0200299static inline int rq_in_driver(struct cfq_data *cfqd)
300{
301 return cfqd->rq_in_driver[0] + cfqd->rq_in_driver[1];
302}
303
Vasily Tarasov91fac312007-04-25 12:29:51 +0200304static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200305 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200306{
Jens Axboea6151c32009-10-07 20:02:57 +0200307 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200308}
309
310static inline void cic_set_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200311 struct cfq_queue *cfqq, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200312{
Jens Axboea6151c32009-10-07 20:02:57 +0200313 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200314}
315
316/*
317 * We regard a request as SYNC, if it's either a read or has the SYNC bit
318 * set (in which case it could also be direct WRITE).
319 */
Jens Axboea6151c32009-10-07 20:02:57 +0200320static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200321{
Jens Axboea6151c32009-10-07 20:02:57 +0200322 return bio_data_dir(bio) == READ || bio_rw_flagged(bio, BIO_RW_SYNCIO);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200323}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700326 * scheduler run of queue, if there are requests pending and no one in the
327 * driver that will restart queueing
328 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200329static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700330{
Jens Axboe7b679132008-05-30 12:23:07 +0200331 if (cfqd->busy_queues) {
332 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200333 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200334 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700335}
336
Jens Axboe165125e2007-07-24 09:28:11 +0200337static int cfq_queue_empty(struct request_queue *q)
Andrew Morton99f95e52005-06-27 20:14:05 -0700338{
339 struct cfq_data *cfqd = q->elevator->elevator_data;
340
Jens Axboeb4878f22005-10-20 16:42:29 +0200341 return !cfqd->busy_queues;
Andrew Morton99f95e52005-06-27 20:14:05 -0700342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100345 * Scale schedule slice based on io priority. Use the sync time slice only
346 * if a queue is marked sync and has sync io queued. A sync queue with async
347 * io only, should not get full sync slice length.
348 */
Jens Axboea6151c32009-10-07 20:02:57 +0200349static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200350 unsigned short prio)
351{
352 const int base_slice = cfqd->cfq_slice[sync];
353
354 WARN_ON(prio >= IOPRIO_BE_NR);
355
356 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
357}
358
Jens Axboe44f7c162007-01-19 11:51:58 +1100359static inline int
360cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
361{
Jens Axboed9e76202007-04-20 14:27:50 +0200362 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100363}
364
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100365/*
366 * get averaged number of queues of RT/BE priority.
367 * average is updated, with a formula that gives more weight to higher numbers,
368 * to quickly follows sudden increases and decrease slowly
369 */
370
371static inline unsigned
372cfq_get_avg_queues(struct cfq_data *cfqd, bool rt) {
373 unsigned min_q, max_q;
374 unsigned mult = cfq_hist_divisor - 1;
375 unsigned round = cfq_hist_divisor / 2;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100376 unsigned busy = cfq_busy_queues_wl(rt, cfqd);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100377
378 min_q = min(cfqd->busy_queues_avg[rt], busy);
379 max_q = max(cfqd->busy_queues_avg[rt], busy);
380 cfqd->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
381 cfq_hist_divisor;
382 return cfqd->busy_queues_avg[rt];
383}
384
Jens Axboe44f7c162007-01-19 11:51:58 +1100385static inline void
386cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
387{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100388 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
389 if (cfqd->cfq_latency) {
390 /* interested queues (we consider only the ones with the same
391 * priority class) */
392 unsigned iq = cfq_get_avg_queues(cfqd, cfq_class_rt(cfqq));
393 unsigned sync_slice = cfqd->cfq_slice[1];
394 unsigned expect_latency = sync_slice * iq;
395 if (expect_latency > cfq_target_latency) {
396 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
397 /* scale low_slice according to IO priority
398 * and sync vs async */
399 unsigned low_slice =
400 min(slice, base_low_slice * slice / sync_slice);
401 /* the adapted slice value is scaled to fit all iqs
402 * into the target latency */
403 slice = max(slice * cfq_target_latency / expect_latency,
404 low_slice);
405 }
406 }
407 cfqq->slice_end = jiffies + slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200408 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100409}
410
411/*
412 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
413 * isn't valid until the first request from the dispatch is activated
414 * and the slice time set.
415 */
Jens Axboea6151c32009-10-07 20:02:57 +0200416static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100417{
418 if (cfq_cfqq_slice_new(cfqq))
419 return 0;
420 if (time_before(jiffies, cfqq->slice_end))
421 return 0;
422
423 return 1;
424}
425
426/*
Jens Axboe5e705372006-07-13 12:39:25 +0200427 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200429 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
Jens Axboe5e705372006-07-13 12:39:25 +0200431static struct request *
432cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 sector_t last, s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200436#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
437#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
438 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Jens Axboe5e705372006-07-13 12:39:25 +0200440 if (rq1 == NULL || rq1 == rq2)
441 return rq2;
442 if (rq2 == NULL)
443 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200444
Jens Axboe5e705372006-07-13 12:39:25 +0200445 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
446 return rq1;
447 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
448 return rq2;
Jens Axboe374f84a2006-07-23 01:42:19 +0200449 if (rq_is_meta(rq1) && !rq_is_meta(rq2))
450 return rq1;
451 else if (rq_is_meta(rq2) && !rq_is_meta(rq1))
452 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Tejun Heo83096eb2009-05-07 22:24:39 +0900454 s1 = blk_rq_pos(rq1);
455 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Jens Axboe6d048f52007-04-25 12:44:27 +0200457 last = cfqd->last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /*
460 * by definition, 1KiB is 2 sectors
461 */
462 back_max = cfqd->cfq_back_max * 2;
463
464 /*
465 * Strict one way elevator _except_ in the case where we allow
466 * short backward seeks which are biased as twice the cost of a
467 * similar forward seek.
468 */
469 if (s1 >= last)
470 d1 = s1 - last;
471 else if (s1 + back_max >= last)
472 d1 = (last - s1) * cfqd->cfq_back_penalty;
473 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200474 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 if (s2 >= last)
477 d2 = s2 - last;
478 else if (s2 + back_max >= last)
479 d2 = (last - s2) * cfqd->cfq_back_penalty;
480 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200481 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Andreas Mohre8a99052006-03-28 08:59:49 +0200485 /*
486 * By doing switch() on the bit mask "wrap" we avoid having to
487 * check two variables for all permutations: --> faster!
488 */
489 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200490 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200491 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200492 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200493 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200494 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200495 else {
496 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200497 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200498 else
Jens Axboe5e705372006-07-13 12:39:25 +0200499 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200500 }
501
502 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200503 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200504 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200505 return rq2;
506 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200507 default:
508 /*
509 * Since both rqs are wrapped,
510 * start with the one that's further behind head
511 * (--> only *one* back seek required),
512 * since back seek takes more time than forward.
513 */
514 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200515 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 else
Jens Axboe5e705372006-07-13 12:39:25 +0200517 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519}
520
Jens Axboe498d3aa22007-04-26 12:54:48 +0200521/*
522 * The below is leftmost cache rbtree addon
523 */
Jens Axboe08717142008-01-28 11:38:15 +0100524static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200525{
526 if (!root->left)
527 root->left = rb_first(&root->rb);
528
Jens Axboe08717142008-01-28 11:38:15 +0100529 if (root->left)
530 return rb_entry(root->left, struct cfq_queue, rb_node);
531
532 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200533}
534
Jens Axboea36e71f2009-04-15 12:15:11 +0200535static void rb_erase_init(struct rb_node *n, struct rb_root *root)
536{
537 rb_erase(n, root);
538 RB_CLEAR_NODE(n);
539}
540
Jens Axboecc09e292007-04-26 12:53:50 +0200541static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
542{
543 if (root->left == n)
544 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200545 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100546 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/*
550 * would be nice to take fifo expire time into account as well
551 */
Jens Axboe5e705372006-07-13 12:39:25 +0200552static struct request *
553cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
554 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Jens Axboe21183b02006-07-13 12:33:14 +0200556 struct rb_node *rbnext = rb_next(&last->rb_node);
557 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200558 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Jens Axboe21183b02006-07-13 12:33:14 +0200560 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200563 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200566 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200567 else {
568 rbnext = rb_first(&cfqq->sort_list);
569 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200570 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Jens Axboe21183b02006-07-13 12:33:14 +0200573 return cfq_choose_req(cfqd, next, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Jens Axboed9e76202007-04-20 14:27:50 +0200576static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
577 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Jens Axboed9e76202007-04-20 14:27:50 +0200579 /*
580 * just an approximation, should be ok.
581 */
Jens Axboe67e6b492007-04-20 14:18:00 +0200582 return (cfqd->busy_queues - 1) * (cfq_prio_slice(cfqd, 1, 0) -
583 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200584}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Jens Axboe498d3aa22007-04-26 12:54:48 +0200586/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100587 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +0200588 * requests waiting to be processed. It is sorted in the order that
589 * we will service the queues.
590 */
Jens Axboea36e71f2009-04-15 12:15:11 +0200591static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +0200592 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +0200593{
Jens Axboe08717142008-01-28 11:38:15 +0100594 struct rb_node **p, *parent;
595 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +0200596 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100597 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +0200598 int left;
Jens Axboed9e76202007-04-20 14:27:50 +0200599
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100600 service_tree = service_tree_for(cfqq_prio(cfqq), cfqd);
Jens Axboe08717142008-01-28 11:38:15 +0100601 if (cfq_class_idle(cfqq)) {
602 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100603 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +0100604 if (parent && parent != &cfqq->rb_node) {
605 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
606 rb_key += __cfqq->rb_key;
607 } else
608 rb_key += jiffies;
609 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +0200610 /*
611 * Get our rb key offset. Subtract any residual slice
612 * value carried from last service. A negative resid
613 * count indicates slice overrun, and this should position
614 * the next service time further away in the tree.
615 */
Jens Axboeedd75ff2007-04-19 12:03:34 +0200616 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +0200617 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +0200618 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +0200619 } else {
620 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100621 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +0200622 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
623 }
Jens Axboed9e76202007-04-20 14:27:50 +0200624
625 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Jens Axboe99f96282007-02-05 11:56:25 +0100626 /*
Jens Axboed9e76202007-04-20 14:27:50 +0200627 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +0100628 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100629 if (rb_key == cfqq->rb_key &&
630 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +0200631 return;
Jens Axboe53b037442006-07-28 09:48:51 +0200632
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100633 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
634 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +0200635 }
Jens Axboed9e76202007-04-20 14:27:50 +0200636
Jens Axboe498d3aa22007-04-26 12:54:48 +0200637 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +0100638 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100639 cfqq->service_tree = service_tree;
640 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +0200641 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +0200642 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +0200643
Jens Axboed9e76202007-04-20 14:27:50 +0200644 parent = *p;
645 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
646
Jens Axboe0c534e02007-04-18 20:01:57 +0200647 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100648 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +0200649 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100650 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +0200651 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100652 else {
Jens Axboe67060e32007-04-18 20:13:32 +0200653 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +0200654 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100655 }
Jens Axboe67060e32007-04-18 20:13:32 +0200656
657 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +0200658 }
659
Jens Axboecc09e292007-04-26 12:53:50 +0200660 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100661 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +0200662
Jens Axboed9e76202007-04-20 14:27:50 +0200663 cfqq->rb_key = rb_key;
664 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100665 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
666 service_tree->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Jens Axboea36e71f2009-04-15 12:15:11 +0200669static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200670cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
671 sector_t sector, struct rb_node **ret_parent,
672 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +0200673{
Jens Axboea36e71f2009-04-15 12:15:11 +0200674 struct rb_node **p, *parent;
675 struct cfq_queue *cfqq = NULL;
676
677 parent = NULL;
678 p = &root->rb_node;
679 while (*p) {
680 struct rb_node **n;
681
682 parent = *p;
683 cfqq = rb_entry(parent, struct cfq_queue, p_node);
684
685 /*
686 * Sort strictly based on sector. Smallest to the left,
687 * largest to the right.
688 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900689 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +0200690 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900691 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +0200692 n = &(*p)->rb_left;
693 else
694 break;
695 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +0200696 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200697 }
698
699 *ret_parent = parent;
700 if (rb_link)
701 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +0200702 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +0200703}
704
705static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
706{
Jens Axboea36e71f2009-04-15 12:15:11 +0200707 struct rb_node **p, *parent;
708 struct cfq_queue *__cfqq;
709
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200710 if (cfqq->p_root) {
711 rb_erase(&cfqq->p_node, cfqq->p_root);
712 cfqq->p_root = NULL;
713 }
Jens Axboea36e71f2009-04-15 12:15:11 +0200714
715 if (cfq_class_idle(cfqq))
716 return;
717 if (!cfqq->next_rq)
718 return;
719
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200720 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900721 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
722 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +0200723 if (!__cfqq) {
724 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200725 rb_insert_color(&cfqq->p_node, cfqq->p_root);
726 } else
727 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200728}
729
Jens Axboe498d3aa22007-04-26 12:54:48 +0200730/*
731 * Update cfqq's position in the service tree.
732 */
Jens Axboeedd75ff2007-04-19 12:03:34 +0200733static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +0200734{
Jens Axboe6d048f52007-04-25 12:44:27 +0200735 /*
736 * Resorting requires the cfqq to be on the RR list already.
737 */
Jens Axboea36e71f2009-04-15 12:15:11 +0200738 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +0200739 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +0200740 cfq_prio_tree_add(cfqd, cfqq);
741 }
Jens Axboe6d048f52007-04-25 12:44:27 +0200742}
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744/*
745 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +0200746 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 */
Jens Axboefebffd62008-01-28 13:19:43 +0100748static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Jens Axboe7b679132008-05-30 12:23:07 +0200750 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +0200751 BUG_ON(cfq_cfqq_on_rr(cfqq));
752 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 cfqd->busy_queues++;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100754
Jens Axboeedd75ff2007-04-19 12:03:34 +0200755 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Jens Axboe498d3aa22007-04-26 12:54:48 +0200758/*
759 * Called when the cfqq no longer has requests pending, remove it from
760 * the service tree.
761 */
Jens Axboefebffd62008-01-28 13:19:43 +0100762static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Jens Axboe7b679132008-05-30 12:23:07 +0200764 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +0200765 BUG_ON(!cfq_cfqq_on_rr(cfqq));
766 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100768 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
769 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
770 cfqq->service_tree = NULL;
771 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200772 if (cfqq->p_root) {
773 rb_erase(&cfqq->p_node, cfqq->p_root);
774 cfqq->p_root = NULL;
775 }
Jens Axboed9e76202007-04-20 14:27:50 +0200776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 BUG_ON(!cfqd->busy_queues);
778 cfqd->busy_queues--;
779}
780
781/*
782 * rb tree support functions
783 */
Jens Axboefebffd62008-01-28 13:19:43 +0100784static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Jens Axboe5e705372006-07-13 12:39:25 +0200786 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +0200787 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5e705372006-07-13 12:39:25 +0200788 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Jens Axboeb4878f22005-10-20 16:42:29 +0200790 BUG_ON(!cfqq->queued[sync]);
791 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Jens Axboe5e705372006-07-13 12:39:25 +0200793 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Jens Axboedd67d052006-06-21 09:36:18 +0200795 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboeb4878f22005-10-20 16:42:29 +0200796 cfq_del_cfqq_rr(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
Jens Axboe5e705372006-07-13 12:39:25 +0200799static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Jens Axboe5e705372006-07-13 12:39:25 +0200801 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboea36e71f2009-04-15 12:15:11 +0200803 struct request *__alias, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Jens Axboe5380a102006-07-13 12:37:56 +0200805 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 /*
808 * looks a little odd, but the first insert might return an alias.
809 * if that happens, put the alias on the dispatch list
810 */
Jens Axboe21183b02006-07-13 12:33:14 +0200811 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +0200812 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +0100813
814 if (!cfq_cfqq_on_rr(cfqq))
815 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +0200816
817 /*
818 * check if this request is a better next-serve candidate
819 */
Jens Axboea36e71f2009-04-15 12:15:11 +0200820 prev = cfqq->next_rq;
Jens Axboe5044eed2007-04-25 11:53:48 +0200821 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq);
Jens Axboea36e71f2009-04-15 12:15:11 +0200822
823 /*
824 * adjust priority tree position, if ->next_rq changes
825 */
826 if (prev != cfqq->next_rq)
827 cfq_prio_tree_add(cfqd, cfqq);
828
Jens Axboe5044eed2007-04-25 11:53:48 +0200829 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Jens Axboefebffd62008-01-28 13:19:43 +0100832static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Jens Axboe5380a102006-07-13 12:37:56 +0200834 elv_rb_del(&cfqq->sort_list, rq);
835 cfqq->queued[rq_is_sync(rq)]--;
Jens Axboe5e705372006-07-13 12:39:25 +0200836 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
Jens Axboe206dc692006-03-28 13:03:44 +0200839static struct request *
840cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Jens Axboe206dc692006-03-28 13:03:44 +0200842 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200843 struct cfq_io_context *cic;
Jens Axboe206dc692006-03-28 13:03:44 +0200844 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Jens Axboe4ac845a2008-01-24 08:44:49 +0100846 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200847 if (!cic)
848 return NULL;
849
850 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +0200851 if (cfqq) {
852 sector_t sector = bio->bi_sector + bio_sectors(bio);
853
Jens Axboe21183b02006-07-13 12:33:14 +0200854 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +0200855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 return NULL;
858}
859
Jens Axboe165125e2007-07-24 09:28:11 +0200860static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +0200861{
862 struct cfq_data *cfqd = q->elevator->elevator_data;
863
Jens Axboe5ad531d2009-07-03 12:57:48 +0200864 cfqd->rq_in_driver[rq_is_sync(rq)]++;
Jens Axboe7b679132008-05-30 12:23:07 +0200865 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Jens Axboe5ad531d2009-07-03 12:57:48 +0200866 rq_in_driver(cfqd));
Jens Axboe25776e32006-06-01 10:12:26 +0200867
Tejun Heo5b936292009-05-07 22:24:38 +0900868 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +0200869}
870
Jens Axboe165125e2007-07-24 09:28:11 +0200871static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Jens Axboe22e2c502005-06-27 10:55:12 +0200873 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5ad531d2009-07-03 12:57:48 +0200874 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Jens Axboe5ad531d2009-07-03 12:57:48 +0200876 WARN_ON(!cfqd->rq_in_driver[sync]);
877 cfqd->rq_in_driver[sync]--;
Jens Axboe7b679132008-05-30 12:23:07 +0200878 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Jens Axboe5ad531d2009-07-03 12:57:48 +0200879 rq_in_driver(cfqd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Jens Axboeb4878f22005-10-20 16:42:29 +0200882static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Jens Axboe5e705372006-07-13 12:39:25 +0200884 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +0200885
Jens Axboe5e705372006-07-13 12:39:25 +0200886 if (cfqq->next_rq == rq)
887 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Jens Axboeb4878f22005-10-20 16:42:29 +0200889 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +0200890 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +0200891
Aaron Carroll45333d52008-08-26 15:52:36 +0200892 cfqq->cfqd->rq_queued--;
Jens Axboe374f84a2006-07-23 01:42:19 +0200893 if (rq_is_meta(rq)) {
894 WARN_ON(!cfqq->meta_pending);
895 cfqq->meta_pending--;
896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Jens Axboe165125e2007-07-24 09:28:11 +0200899static int cfq_merge(struct request_queue *q, struct request **req,
900 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 struct cfq_data *cfqd = q->elevator->elevator_data;
903 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Jens Axboe206dc692006-03-28 13:03:44 +0200905 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +0200906 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +0200907 *req = __rq;
908 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
911 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Jens Axboe165125e2007-07-24 09:28:11 +0200914static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +0200915 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Jens Axboe21183b02006-07-13 12:33:14 +0200917 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +0200918 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Jens Axboe5e705372006-07-13 12:39:25 +0200920 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
924static void
Jens Axboe165125e2007-07-24 09:28:11 +0200925cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 struct request *next)
927{
Jens Axboe22e2c502005-06-27 10:55:12 +0200928 /*
929 * reposition in fifo if next is older than rq
930 */
931 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +0200932 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200933 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +0200934 rq_set_fifo_time(rq, rq_fifo_time(next));
935 }
Jens Axboe22e2c502005-06-27 10:55:12 +0200936
Jens Axboeb4878f22005-10-20 16:42:29 +0200937 cfq_remove_request(next);
Jens Axboe22e2c502005-06-27 10:55:12 +0200938}
939
Jens Axboe165125e2007-07-24 09:28:11 +0200940static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +0100941 struct bio *bio)
942{
943 struct cfq_data *cfqd = q->elevator->elevator_data;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200944 struct cfq_io_context *cic;
Jens Axboeda775262006-12-20 11:04:12 +0100945 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +0100946
947 /*
Jens Axboeec8acb62007-01-02 18:32:11 +0100948 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +0100949 */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200950 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +0200951 return false;
Jens Axboeda775262006-12-20 11:04:12 +0100952
953 /*
Jens Axboe719d3402006-12-22 09:38:53 +0100954 * Lookup the cfqq that this bio will be queued with. Allow
955 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +0100956 */
Jens Axboe4ac845a2008-01-24 08:44:49 +0100957 cic = cfq_cic_lookup(cfqd, current->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200958 if (!cic)
Jens Axboea6151c32009-10-07 20:02:57 +0200959 return false;
Jens Axboe719d3402006-12-22 09:38:53 +0100960
Vasily Tarasov91fac312007-04-25 12:29:51 +0200961 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +0200962 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +0100963}
964
Jens Axboefebffd62008-01-28 13:19:43 +0100965static void __cfq_set_active_queue(struct cfq_data *cfqd,
966 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +0200967{
968 if (cfqq) {
Jens Axboe7b679132008-05-30 12:23:07 +0200969 cfq_log_cfqq(cfqd, cfqq, "set_active");
Jens Axboe22e2c502005-06-27 10:55:12 +0200970 cfqq->slice_end = 0;
Jens Axboe2f5cb732009-04-07 08:51:19 +0200971 cfqq->slice_dispatch = 0;
972
Jens Axboe2f5cb732009-04-07 08:51:19 +0200973 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboeb0291952009-04-07 11:38:31 +0200974 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +0200975 cfq_clear_cfqq_must_alloc_slice(cfqq);
976 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +1100977 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +0200978
979 del_timer(&cfqd->idle_slice_timer);
Jens Axboe22e2c502005-06-27 10:55:12 +0200980 }
981
982 cfqd->active_queue = cfqq;
983}
984
985/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100986 * current cfqq expired its slice (or was too idle), select new one
987 */
988static void
989__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +0200990 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100991{
Jens Axboe7b679132008-05-30 12:23:07 +0200992 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
993
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100994 if (cfq_cfqq_wait_request(cfqq))
995 del_timer(&cfqd->idle_slice_timer);
996
Jens Axboe7b14e3b2006-02-28 09:35:11 +0100997 cfq_clear_cfqq_wait_request(cfqq);
998
999 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001000 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001001 */
Jens Axboe7b679132008-05-30 12:23:07 +02001002 if (timed_out && !cfq_cfqq_slice_new(cfqq)) {
Jens Axboec5b680f2007-01-19 11:56:49 +11001003 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001004 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1005 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001006
Jens Axboeedd75ff2007-04-19 12:03:34 +02001007 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001008
1009 if (cfqq == cfqd->active_queue)
1010 cfqd->active_queue = NULL;
1011
1012 if (cfqd->active_cic) {
1013 put_io_context(cfqd->active_cic->ioc);
1014 cfqd->active_cic = NULL;
1015 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001016}
1017
Jens Axboea6151c32009-10-07 20:02:57 +02001018static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001019{
1020 struct cfq_queue *cfqq = cfqd->active_queue;
1021
1022 if (cfqq)
Jens Axboe6084cdd2007-04-23 08:25:00 +02001023 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001024}
1025
Jens Axboe498d3aa22007-04-26 12:54:48 +02001026/*
1027 * Get next queue for service. Unless we have a queue preemption,
1028 * we'll simply select the first cfqq in the service tree.
1029 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001030static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001031{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001032 struct cfq_rb_root *service_tree =
1033 service_tree_for(cfqd->serving_prio, cfqd);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001034
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001035 if (RB_EMPTY_ROOT(&service_tree->rb))
1036 return NULL;
1037 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001038}
1039
Jens Axboe498d3aa22007-04-26 12:54:48 +02001040/*
1041 * Get and set a new active queue for service.
1042 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001043static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1044 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001045{
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001046 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001047 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001048
Jens Axboe22e2c502005-06-27 10:55:12 +02001049 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001050 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001051}
1052
Jens Axboed9e76202007-04-20 14:27:50 +02001053static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1054 struct request *rq)
1055{
Tejun Heo83096eb2009-05-07 22:24:39 +09001056 if (blk_rq_pos(rq) >= cfqd->last_position)
1057 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001058 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001059 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001060}
1061
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001062#define CFQQ_SEEK_THR 8 * 1024
1063#define CFQQ_SEEKY(cfqq) ((cfqq)->seek_mean > CFQQ_SEEK_THR)
Jeff Moyer04dc6e72009-04-21 07:31:56 +02001064
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001065static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1066 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001067{
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001068 sector_t sdist = cfqq->seek_mean;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001069
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001070 if (!sample_valid(cfqq->seek_samples))
1071 sdist = CFQQ_SEEK_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001072
Jeff Moyer04dc6e72009-04-21 07:31:56 +02001073 return cfq_dist_from_last(cfqd, rq) <= sdist;
Jens Axboe6d048f52007-04-25 12:44:27 +02001074}
1075
Jens Axboea36e71f2009-04-15 12:15:11 +02001076static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1077 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001078{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001079 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001080 struct rb_node *parent, *node;
1081 struct cfq_queue *__cfqq;
1082 sector_t sector = cfqd->last_position;
1083
1084 if (RB_EMPTY_ROOT(root))
1085 return NULL;
1086
1087 /*
1088 * First, if we find a request starting at the end of the last
1089 * request, choose it.
1090 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001091 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001092 if (__cfqq)
1093 return __cfqq;
1094
1095 /*
1096 * If the exact sector wasn't found, the parent of the NULL leaf
1097 * will contain the closest sector.
1098 */
1099 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001100 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001101 return __cfqq;
1102
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001103 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001104 node = rb_next(&__cfqq->p_node);
1105 else
1106 node = rb_prev(&__cfqq->p_node);
1107 if (!node)
1108 return NULL;
1109
1110 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001111 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001112 return __cfqq;
1113
1114 return NULL;
1115}
1116
1117/*
1118 * cfqd - obvious
1119 * cur_cfqq - passed in so that we don't decide that the current queue is
1120 * closely cooperating with itself.
1121 *
1122 * So, basically we're assuming that that cur_cfqq has dispatched at least
1123 * one request, and that cfqd->last_position reflects a position on the disk
1124 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1125 * assumption.
1126 */
1127static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001128 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001129{
1130 struct cfq_queue *cfqq;
1131
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001132 if (!cfq_cfqq_sync(cur_cfqq))
1133 return NULL;
1134 if (CFQQ_SEEKY(cur_cfqq))
1135 return NULL;
1136
Jens Axboea36e71f2009-04-15 12:15:11 +02001137 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001138 * We should notice if some of the queues are cooperating, eg
1139 * working closely on the same area of the disk. In that case,
1140 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001141 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001142 cfqq = cfqq_close(cfqd, cur_cfqq);
1143 if (!cfqq)
1144 return NULL;
1145
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001146 /*
1147 * It only makes sense to merge sync queues.
1148 */
1149 if (!cfq_cfqq_sync(cfqq))
1150 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001151 if (CFQQ_SEEKY(cfqq))
1152 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001153
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001154 /*
1155 * Do not merge queues of different priority classes
1156 */
1157 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1158 return NULL;
1159
Jens Axboea36e71f2009-04-15 12:15:11 +02001160 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001161}
1162
Jens Axboe6d048f52007-04-25 12:44:27 +02001163static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001164{
Jens Axboe17926692007-01-19 11:59:30 +11001165 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +02001166 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001167 unsigned long sl;
1168
Jens Axboea68bbddba2008-09-24 13:03:33 +02001169 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001170 * SSD device without seek penalty, disable idling. But only do so
1171 * for devices that support queuing, otherwise we still have a problem
1172 * with sync vs async workloads.
Jens Axboea68bbddba2008-09-24 13:03:33 +02001173 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001174 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbddba2008-09-24 13:03:33 +02001175 return;
1176
Jens Axboedd67d052006-06-21 09:36:18 +02001177 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02001178 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02001179
1180 /*
1181 * idle is disabled, either manually or by past process history
1182 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001183 if (!cfqd->cfq_slice_idle || !cfq_cfqq_idle_window(cfqq))
1184 return;
1185
Jens Axboe22e2c502005-06-27 10:55:12 +02001186 /*
Jens Axboe7b679132008-05-30 12:23:07 +02001187 * still requests with the driver, don't idle
1188 */
Jens Axboe5ad531d2009-07-03 12:57:48 +02001189 if (rq_in_driver(cfqd))
Jens Axboe7b679132008-05-30 12:23:07 +02001190 return;
1191
1192 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02001193 * task has exited, don't wait
1194 */
Jens Axboe206dc692006-03-28 13:03:44 +02001195 cic = cfqd->active_cic;
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01001196 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02001197 return;
1198
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001199 /*
1200 * If our average think time is larger than the remaining time
1201 * slice, then don't idle. This avoids overrunning the allotted
1202 * time slice.
1203 */
1204 if (sample_valid(cic->ttime_samples) &&
1205 (cfqq->slice_end - jiffies < cic->ttime_mean))
1206 return;
1207
Jens Axboe3b181522005-06-27 10:56:24 +02001208 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001209
Jens Axboe206dc692006-03-28 13:03:44 +02001210 /*
1211 * we don't want to idle for seeks, but we do want to allow
1212 * fair distribution of slice time for a process doing back-to-back
1213 * seeks. so allow a little bit of time for him to submit a new rq
1214 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001215 sl = cfqd->cfq_slice_idle;
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001216 if (sample_valid(cfqq->seek_samples) && CFQQ_SEEKY(cfqq))
Jens Axboed9e76202007-04-20 14:27:50 +02001217 sl = min(sl, msecs_to_jiffies(CFQ_MIN_TT));
Jens Axboe206dc692006-03-28 13:03:44 +02001218
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001219 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Jens Axboe9481ffd2009-04-15 12:14:13 +02001220 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Jens Axboe498d3aa22007-04-26 12:54:48 +02001223/*
1224 * Move request from internal lists to the request queue dispatch list.
1225 */
Jens Axboe165125e2007-07-24 09:28:11 +02001226static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Jens Axboe3ed9a292007-04-23 08:33:33 +02001228 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001229 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001230
Jens Axboe7b679132008-05-30 12:23:07 +02001231 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
1232
Jeff Moyer06d21882009-09-11 17:08:59 +02001233 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02001234 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001235 cfqq->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02001236 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02001237
1238 if (cfq_cfqq_sync(cfqq))
1239 cfqd->sync_flight++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
1242/*
1243 * return expired entry, or NULL to just start from scratch in rbtree
1244 */
Jens Axboefebffd62008-01-28 13:19:43 +01001245static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Jens Axboe30996f42009-10-05 11:03:39 +02001247 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Jens Axboe3b181522005-06-27 10:56:24 +02001249 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11001251
1252 cfq_mark_cfqq_fifo_expire(cfqq);
1253
Jens Axboe89850f72006-07-22 16:48:31 +02001254 if (list_empty(&cfqq->fifo))
1255 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Jens Axboe89850f72006-07-22 16:48:31 +02001257 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02001258 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02001259 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Jens Axboe30996f42009-10-05 11:03:39 +02001261 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001262 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
Jens Axboe22e2c502005-06-27 10:55:12 +02001265static inline int
1266cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1267{
1268 const int base_rq = cfqd->cfq_slice_async_rq;
1269
1270 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1271
1272 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
1273}
1274
1275/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001276 * Must be called with the queue_lock held.
1277 */
1278static int cfqq_process_refs(struct cfq_queue *cfqq)
1279{
1280 int process_refs, io_refs;
1281
1282 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
1283 process_refs = atomic_read(&cfqq->ref) - io_refs;
1284 BUG_ON(process_refs < 0);
1285 return process_refs;
1286}
1287
1288static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
1289{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001290 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001291 struct cfq_queue *__cfqq;
1292
1293 /* Avoid a circular list and skip interim queue merges */
1294 while ((__cfqq = new_cfqq->new_cfqq)) {
1295 if (__cfqq == cfqq)
1296 return;
1297 new_cfqq = __cfqq;
1298 }
1299
1300 process_refs = cfqq_process_refs(cfqq);
1301 /*
1302 * If the process for the cfqq has gone away, there is no
1303 * sense in merging the queues.
1304 */
1305 if (process_refs == 0)
1306 return;
1307
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001308 /*
1309 * Merge in the direction of the lesser amount of work.
1310 */
1311 new_process_refs = cfqq_process_refs(new_cfqq);
1312 if (new_process_refs >= process_refs) {
1313 cfqq->new_cfqq = new_cfqq;
1314 atomic_add(process_refs, &new_cfqq->ref);
1315 } else {
1316 new_cfqq->new_cfqq = cfqq;
1317 atomic_add(new_process_refs, &cfqq->ref);
1318 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001319}
1320
1321/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02001322 * Select a queue for service. If we have a current active queue,
1323 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02001324 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001325static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001326{
Jens Axboea36e71f2009-04-15 12:15:11 +02001327 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001328
1329 cfqq = cfqd->active_queue;
1330 if (!cfqq)
1331 goto new_queue;
1332
1333 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02001334 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02001335 */
Jens Axboeb0291952009-04-07 11:38:31 +02001336 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq))
Jens Axboe3b181522005-06-27 10:56:24 +02001337 goto expire;
Jens Axboe22e2c502005-06-27 10:55:12 +02001338
1339 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02001340 * The active queue has requests and isn't expired, allow it to
1341 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02001342 */
Jens Axboedd67d052006-06-21 09:36:18 +02001343 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02001344 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02001345
1346 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02001347 * If another queue has a request waiting within our mean seek
1348 * distance, let it run. The expire code will check for close
1349 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001350 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02001351 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001352 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001353 if (new_cfqq) {
1354 if (!cfqq->new_cfqq)
1355 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02001356 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001357 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001358
1359 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02001360 * No requests pending. If the active queue still has requests in
1361 * flight or is idling for a new request, allow either of these
1362 * conditions to happen (or time out) before selecting a new queue.
1363 */
Jens Axboecc197472007-04-20 20:45:39 +02001364 if (timer_pending(&cfqd->idle_slice_timer) ||
1365 (cfqq->dispatched && cfq_cfqq_idle_window(cfqq))) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02001366 cfqq = NULL;
1367 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001368 }
1369
Jens Axboe3b181522005-06-27 10:56:24 +02001370expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +02001371 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02001372new_queue:
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001373 if (!new_cfqq) {
1374 if (cfq_busy_queues_wl(RT_WORKLOAD, cfqd))
1375 cfqd->serving_prio = RT_WORKLOAD;
1376 else if (cfq_busy_queues_wl(BE_WORKLOAD, cfqd))
1377 cfqd->serving_prio = BE_WORKLOAD;
1378 else
1379 cfqd->serving_prio = IDLE_WORKLOAD;
1380 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001381 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001382keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02001383 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001384}
1385
Jens Axboefebffd62008-01-28 13:19:43 +01001386static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02001387{
1388 int dispatched = 0;
1389
1390 while (cfqq->next_rq) {
1391 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
1392 dispatched++;
1393 }
1394
1395 BUG_ON(!list_empty(&cfqq->fifo));
1396 return dispatched;
1397}
1398
Jens Axboe498d3aa22007-04-26 12:54:48 +02001399/*
1400 * Drain our current requests. Used for barriers and when switching
1401 * io schedulers on-the-fly.
1402 */
Jens Axboed9e76202007-04-20 14:27:50 +02001403static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001404{
Jens Axboe08717142008-01-28 11:38:15 +01001405 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001406 int dispatched = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001407 int i;
1408 for (i = 0; i < 2; ++i)
1409 while ((cfqq = cfq_rb_first(&cfqd->service_trees[i])) != NULL)
1410 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001411
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001412 while ((cfqq = cfq_rb_first(&cfqd->service_tree_idle)) != NULL)
Jens Axboed9e76202007-04-20 14:27:50 +02001413 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001414
Jens Axboe6084cdd2007-04-23 08:25:00 +02001415 cfq_slice_expired(cfqd, 0);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001416
1417 BUG_ON(cfqd->busy_queues);
1418
Jeff Moyer6923715a2009-06-12 15:29:30 +02001419 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001420 return dispatched;
1421}
1422
Jens Axboe0b182d62009-10-06 20:49:37 +02001423static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02001424{
Jens Axboe2f5cb732009-04-07 08:51:19 +02001425 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Jens Axboe2f5cb732009-04-07 08:51:19 +02001427 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02001428 * Drain async requests before we start sync IO
1429 */
1430 if (cfq_cfqq_idle_window(cfqq) && cfqd->rq_in_driver[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02001431 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02001432
1433 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02001434 * If this is an async queue and we have sync IO in flight, let it wait
1435 */
1436 if (cfqd->sync_flight && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02001437 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02001438
1439 max_dispatch = cfqd->cfq_quantum;
1440 if (cfq_class_idle(cfqq))
1441 max_dispatch = 1;
1442
1443 /*
1444 * Does this cfqq already have too much IO in flight?
1445 */
1446 if (cfqq->dispatched >= max_dispatch) {
1447 /*
1448 * idle queue must always only have a single IO in flight
1449 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02001450 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02001451 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02001452
Jens Axboe2f5cb732009-04-07 08:51:19 +02001453 /*
1454 * We have other queues, don't allow more IO from this one
1455 */
1456 if (cfqd->busy_queues > 1)
Jens Axboe0b182d62009-10-06 20:49:37 +02001457 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11001458
Jens Axboe2f5cb732009-04-07 08:51:19 +02001459 /*
Jens Axboe8e296752009-10-03 16:26:03 +02001460 * Sole queue user, allow bigger slice
Vivek Goyal365722b2009-10-03 15:21:27 +02001461 */
Jens Axboe8e296752009-10-03 16:26:03 +02001462 max_dispatch *= 4;
1463 }
1464
1465 /*
1466 * Async queues must wait a bit before being allowed dispatch.
1467 * We also ramp up the dispatch depth gradually for async IO,
1468 * based on the last sync IO we serviced
1469 */
Jens Axboe963b72f2009-10-03 19:42:18 +02001470 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Jens Axboe8e296752009-10-03 16:26:03 +02001471 unsigned long last_sync = jiffies - cfqd->last_end_sync_rq;
1472 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02001473
Jens Axboe61f0c1d2009-10-03 19:46:03 +02001474 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02001475 if (!depth && !cfqq->dispatched)
1476 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02001477 if (depth < max_dispatch)
1478 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
1480
Jens Axboe0b182d62009-10-06 20:49:37 +02001481 /*
1482 * If we're below the current max, allow a dispatch
1483 */
1484 return cfqq->dispatched < max_dispatch;
1485}
1486
1487/*
1488 * Dispatch a request from cfqq, moving them to the request queue
1489 * dispatch list.
1490 */
1491static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1492{
1493 struct request *rq;
1494
1495 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
1496
1497 if (!cfq_may_dispatch(cfqd, cfqq))
1498 return false;
1499
1500 /*
1501 * follow expired path, else get first next available
1502 */
1503 rq = cfq_check_fifo(cfqq);
1504 if (!rq)
1505 rq = cfqq->next_rq;
1506
1507 /*
1508 * insert request into driver dispatch list
1509 */
1510 cfq_dispatch_insert(cfqd->queue, rq);
1511
1512 if (!cfqd->active_cic) {
1513 struct cfq_io_context *cic = RQ_CIC(rq);
1514
1515 atomic_long_inc(&cic->ioc->refcount);
1516 cfqd->active_cic = cic;
1517 }
1518
1519 return true;
1520}
1521
1522/*
1523 * Find the cfqq that we need to service and move a request from that to the
1524 * dispatch list
1525 */
1526static int cfq_dispatch_requests(struct request_queue *q, int force)
1527{
1528 struct cfq_data *cfqd = q->elevator->elevator_data;
1529 struct cfq_queue *cfqq;
1530
1531 if (!cfqd->busy_queues)
1532 return 0;
1533
1534 if (unlikely(force))
1535 return cfq_forced_dispatch(cfqd);
1536
1537 cfqq = cfq_select_queue(cfqd);
1538 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02001539 return 0;
1540
Jens Axboe2f5cb732009-04-07 08:51:19 +02001541 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02001542 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02001543 */
Jens Axboe0b182d62009-10-06 20:49:37 +02001544 if (!cfq_dispatch_request(cfqd, cfqq))
1545 return 0;
1546
Jens Axboe2f5cb732009-04-07 08:51:19 +02001547 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02001548 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02001549
1550 /*
1551 * expire an async queue immediately if it has used up its slice. idle
1552 * queue always expire after 1 dispatch round.
1553 */
1554 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
1555 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
1556 cfq_class_idle(cfqq))) {
1557 cfqq->slice_end = jiffies + 1;
1558 cfq_slice_expired(cfqd, 0);
1559 }
1560
Shan Weib217a902009-09-01 10:06:42 +02001561 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02001562 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565/*
Jens Axboe5e705372006-07-13 12:39:25 +02001566 * task holds one reference to the queue, dropped when task exits. each rq
1567 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 *
1569 * queue lock must be held here.
1570 */
1571static void cfq_put_queue(struct cfq_queue *cfqq)
1572{
Jens Axboe22e2c502005-06-27 10:55:12 +02001573 struct cfq_data *cfqd = cfqq->cfqd;
1574
1575 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 if (!atomic_dec_and_test(&cfqq->ref))
1578 return;
1579
Jens Axboe7b679132008-05-30 12:23:07 +02001580 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02001582 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Jens Axboe3b181522005-06-27 10:56:24 +02001583 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001585 if (unlikely(cfqd->active_queue == cfqq)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02001586 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02001587 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001588 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 kmem_cache_free(cfq_pool, cfqq);
1591}
1592
Jens Axboed6de8be2008-05-28 14:46:59 +02001593/*
1594 * Must always be called with the rcu_read_lock() held
1595 */
Jens Axboe07416d22008-05-07 09:17:12 +02001596static void
1597__call_for_each_cic(struct io_context *ioc,
1598 void (*func)(struct io_context *, struct cfq_io_context *))
1599{
1600 struct cfq_io_context *cic;
1601 struct hlist_node *n;
1602
1603 hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list)
1604 func(ioc, cic);
1605}
1606
Jens Axboe4ac845a2008-01-24 08:44:49 +01001607/*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001608 * Call func for each cic attached to this ioc.
Jens Axboe4ac845a2008-01-24 08:44:49 +01001609 */
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001610static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01001611call_for_each_cic(struct io_context *ioc,
1612 void (*func)(struct io_context *, struct cfq_io_context *))
1613{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001614 rcu_read_lock();
Jens Axboe07416d22008-05-07 09:17:12 +02001615 __call_for_each_cic(ioc, func);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001616 rcu_read_unlock();
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001617}
Jens Axboe4ac845a2008-01-24 08:44:49 +01001618
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001619static void cfq_cic_free_rcu(struct rcu_head *head)
1620{
1621 struct cfq_io_context *cic;
1622
1623 cic = container_of(head, struct cfq_io_context, rcu_head);
1624
1625 kmem_cache_free(cfq_ioc_pool, cic);
Tejun Heo245b2e72009-06-24 15:13:48 +09001626 elv_ioc_count_dec(cfq_ioc_count);
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001627
Jens Axboe9a11b4e2008-05-29 09:32:08 +02001628 if (ioc_gone) {
1629 /*
1630 * CFQ scheduler is exiting, grab exit lock and check
1631 * the pending io context count. If it hits zero,
1632 * complete ioc_gone and set it back to NULL
1633 */
1634 spin_lock(&ioc_gone_lock);
Tejun Heo245b2e72009-06-24 15:13:48 +09001635 if (ioc_gone && !elv_ioc_count_read(cfq_ioc_count)) {
Jens Axboe9a11b4e2008-05-29 09:32:08 +02001636 complete(ioc_gone);
1637 ioc_gone = NULL;
1638 }
1639 spin_unlock(&ioc_gone_lock);
1640 }
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001641}
1642
1643static void cfq_cic_free(struct cfq_io_context *cic)
1644{
1645 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001646}
1647
1648static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic)
1649{
1650 unsigned long flags;
1651
1652 BUG_ON(!cic->dead_key);
1653
1654 spin_lock_irqsave(&ioc->lock, flags);
1655 radix_tree_delete(&ioc->radix_root, cic->dead_key);
Jens Axboeffc4e752008-02-19 10:02:29 +01001656 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001657 spin_unlock_irqrestore(&ioc->lock, flags);
1658
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001659 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001660}
1661
Jens Axboed6de8be2008-05-28 14:46:59 +02001662/*
1663 * Must be called with rcu_read_lock() held or preemption otherwise disabled.
1664 * Only two callers of this - ->dtor() which is called with the rcu_read_lock(),
1665 * and ->trim() which is called with the task lock held
1666 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02001667static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001669 /*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02001670 * ioc->refcount is zero here, or we are called from elv_unregister(),
1671 * so no more cic's are allowed to be linked into this ioc. So it
1672 * should be ok to iterate over the known list, we will see all cic's
1673 * since no new ones are added.
Jens Axboe4ac845a2008-01-24 08:44:49 +01001674 */
Jens Axboe07416d22008-05-07 09:17:12 +02001675 __call_for_each_cic(ioc, cic_free_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676}
1677
Jens Axboe89850f72006-07-22 16:48:31 +02001678static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1679{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001680 struct cfq_queue *__cfqq, *next;
1681
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001682 if (unlikely(cfqq == cfqd->active_queue)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02001683 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02001684 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11001685 }
Jens Axboe89850f72006-07-22 16:48:31 +02001686
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001687 /*
1688 * If this queue was scheduled to merge with another queue, be
1689 * sure to drop the reference taken on that queue (and others in
1690 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
1691 */
1692 __cfqq = cfqq->new_cfqq;
1693 while (__cfqq) {
1694 if (__cfqq == cfqq) {
1695 WARN(1, "cfqq->new_cfqq loop detected\n");
1696 break;
1697 }
1698 next = __cfqq->new_cfqq;
1699 cfq_put_queue(__cfqq);
1700 __cfqq = next;
1701 }
1702
Jens Axboe89850f72006-07-22 16:48:31 +02001703 cfq_put_queue(cfqq);
1704}
1705
1706static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
1707 struct cfq_io_context *cic)
1708{
Fabio Checconi4faa3c82008-04-10 08:28:01 +02001709 struct io_context *ioc = cic->ioc;
1710
Jens Axboefc463792006-08-29 09:05:44 +02001711 list_del_init(&cic->queue_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001712
1713 /*
1714 * Make sure key == NULL is seen for dead queues
1715 */
Jens Axboefc463792006-08-29 09:05:44 +02001716 smp_wmb();
Jens Axboe4ac845a2008-01-24 08:44:49 +01001717 cic->dead_key = (unsigned long) cic->key;
Jens Axboefc463792006-08-29 09:05:44 +02001718 cic->key = NULL;
1719
Fabio Checconi4faa3c82008-04-10 08:28:01 +02001720 if (ioc->ioc_data == cic)
1721 rcu_assign_pointer(ioc->ioc_data, NULL);
1722
Jens Axboeff6657c2009-04-08 10:58:57 +02001723 if (cic->cfqq[BLK_RW_ASYNC]) {
1724 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
1725 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02001726 }
1727
Jens Axboeff6657c2009-04-08 10:58:57 +02001728 if (cic->cfqq[BLK_RW_SYNC]) {
1729 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
1730 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02001731 }
Jens Axboe89850f72006-07-22 16:48:31 +02001732}
1733
Jens Axboe4ac845a2008-01-24 08:44:49 +01001734static void cfq_exit_single_io_context(struct io_context *ioc,
1735 struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02001736{
Al Viro478a82b2006-03-18 13:25:24 -05001737 struct cfq_data *cfqd = cic->key;
Jens Axboe22e2c502005-06-27 10:55:12 +02001738
Jens Axboe89850f72006-07-22 16:48:31 +02001739 if (cfqd) {
Jens Axboe165125e2007-07-24 09:28:11 +02001740 struct request_queue *q = cfqd->queue;
Jens Axboe4ac845a2008-01-24 08:44:49 +01001741 unsigned long flags;
Jens Axboe22e2c502005-06-27 10:55:12 +02001742
Jens Axboe4ac845a2008-01-24 08:44:49 +01001743 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboe62c1fe92008-12-15 21:19:25 +01001744
1745 /*
1746 * Ensure we get a fresh copy of the ->key to prevent
1747 * race between exiting task and queue
1748 */
1749 smp_read_barrier_depends();
1750 if (cic->key)
1751 __cfq_exit_single_io_context(cfqd, cic);
1752
Jens Axboe4ac845a2008-01-24 08:44:49 +01001753 spin_unlock_irqrestore(q->queue_lock, flags);
Al Viro12a05732006-03-18 13:38:01 -05001754 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001755}
1756
Jens Axboe498d3aa22007-04-26 12:54:48 +02001757/*
1758 * The process that ioc belongs to has exited, we need to clean up
1759 * and put the internal structures we have that belongs to that process.
1760 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02001761static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001763 call_for_each_cic(ioc, cfq_exit_single_io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
Jens Axboe22e2c502005-06-27 10:55:12 +02001766static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04001767cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
Jens Axboeb5deef92006-07-19 23:39:40 +02001769 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Christoph Lameter94f60302007-07-17 04:03:29 -07001771 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
1772 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 if (cic) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001774 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02001775 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboeffc4e752008-02-19 10:02:29 +01001776 INIT_HLIST_NODE(&cic->cic_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02001777 cic->dtor = cfq_free_io_context;
1778 cic->exit = cfq_exit_io_context;
Tejun Heo245b2e72009-06-24 15:13:48 +09001779 elv_ioc_count_inc(cfq_ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
1781
1782 return cic;
1783}
1784
Jens Axboefd0928d2008-01-24 08:52:45 +01001785static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02001786{
1787 struct task_struct *tsk = current;
1788 int ioprio_class;
1789
Jens Axboe3b181522005-06-27 10:56:24 +02001790 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02001791 return;
1792
Jens Axboefd0928d2008-01-24 08:52:45 +01001793 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001794 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01001795 default:
1796 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
1797 case IOPRIO_CLASS_NONE:
1798 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02001799 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01001800 */
1801 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02001802 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01001803 break;
1804 case IOPRIO_CLASS_RT:
1805 cfqq->ioprio = task_ioprio(ioc);
1806 cfqq->ioprio_class = IOPRIO_CLASS_RT;
1807 break;
1808 case IOPRIO_CLASS_BE:
1809 cfqq->ioprio = task_ioprio(ioc);
1810 cfqq->ioprio_class = IOPRIO_CLASS_BE;
1811 break;
1812 case IOPRIO_CLASS_IDLE:
1813 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
1814 cfqq->ioprio = 7;
1815 cfq_clear_cfqq_idle_window(cfqq);
1816 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02001817 }
1818
1819 /*
1820 * keep track of original prio settings in case we have to temporarily
1821 * elevate the priority of this queue
1822 */
1823 cfqq->org_ioprio = cfqq->ioprio;
1824 cfqq->org_ioprio_class = cfqq->ioprio_class;
Jens Axboe3b181522005-06-27 10:56:24 +02001825 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001826}
1827
Jens Axboefebffd62008-01-28 13:19:43 +01001828static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02001829{
Al Viro478a82b2006-03-18 13:25:24 -05001830 struct cfq_data *cfqd = cic->key;
1831 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01001832 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02001833
Jens Axboecaaa5f92006-06-16 11:23:00 +02001834 if (unlikely(!cfqd))
1835 return;
1836
Jens Axboec1b707d2006-10-30 19:54:23 +01001837 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001838
Jens Axboeff6657c2009-04-08 10:58:57 +02001839 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02001840 if (cfqq) {
1841 struct cfq_queue *new_cfqq;
Jens Axboeff6657c2009-04-08 10:58:57 +02001842 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc,
1843 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02001844 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02001845 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001846 cfq_put_queue(cfqq);
1847 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001848 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02001849
Jens Axboeff6657c2009-04-08 10:58:57 +02001850 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02001851 if (cfqq)
1852 cfq_mark_cfqq_prio_changed(cfqq);
1853
Jens Axboec1b707d2006-10-30 19:54:23 +01001854 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02001855}
1856
Jens Axboefc463792006-08-29 09:05:44 +02001857static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001859 call_for_each_cic(ioc, changed_ioprio);
Jens Axboefc463792006-08-29 09:05:44 +02001860 ioc->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861}
1862
Jens Axboed5036d72009-06-26 10:44:34 +02001863static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001864 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02001865{
1866 RB_CLEAR_NODE(&cfqq->rb_node);
1867 RB_CLEAR_NODE(&cfqq->p_node);
1868 INIT_LIST_HEAD(&cfqq->fifo);
1869
1870 atomic_set(&cfqq->ref, 0);
1871 cfqq->cfqd = cfqd;
1872
1873 cfq_mark_cfqq_prio_changed(cfqq);
1874
1875 if (is_sync) {
1876 if (!cfq_class_idle(cfqq))
1877 cfq_mark_cfqq_idle_window(cfqq);
1878 cfq_mark_cfqq_sync(cfqq);
1879 }
1880 cfqq->pid = pid;
1881}
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02001884cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01001885 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001888 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890retry:
Jens Axboe4ac845a2008-01-24 08:44:49 +01001891 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001892 /* cic always exists here */
1893 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Jens Axboe6118b702009-06-30 09:34:12 +02001895 /*
1896 * Always try a new alloc if we fell back to the OOM cfqq
1897 * originally, since it should just be a temporary situation.
1898 */
1899 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
1900 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 if (new_cfqq) {
1902 cfqq = new_cfqq;
1903 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001904 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07001906 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02001907 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07001908 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02001910 if (new_cfqq)
1911 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02001912 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07001913 cfqq = kmem_cache_alloc_node(cfq_pool,
1914 gfp_mask | __GFP_ZERO,
1915 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02001916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Jens Axboe6118b702009-06-30 09:34:12 +02001918 if (cfqq) {
1919 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
1920 cfq_init_prio_data(cfqq, ioc);
1921 cfq_log_cfqq(cfqd, cfqq, "alloced");
1922 } else
1923 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
1925
1926 if (new_cfqq)
1927 kmem_cache_free(cfq_pool, new_cfqq);
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 return cfqq;
1930}
1931
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001932static struct cfq_queue **
1933cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
1934{
Jens Axboefe094d92008-01-31 13:08:54 +01001935 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001936 case IOPRIO_CLASS_RT:
1937 return &cfqd->async_cfqq[0][ioprio];
1938 case IOPRIO_CLASS_BE:
1939 return &cfqd->async_cfqq[1][ioprio];
1940 case IOPRIO_CLASS_IDLE:
1941 return &cfqd->async_idle_cfqq;
1942 default:
1943 BUG();
1944 }
1945}
1946
Jens Axboe15c31be2007-07-10 13:43:25 +02001947static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02001948cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02001949 gfp_t gfp_mask)
1950{
Jens Axboefd0928d2008-01-24 08:52:45 +01001951 const int ioprio = task_ioprio(ioc);
1952 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001953 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02001954 struct cfq_queue *cfqq = NULL;
1955
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001956 if (!is_sync) {
1957 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
1958 cfqq = *async_cfqq;
1959 }
1960
Jens Axboe6118b702009-06-30 09:34:12 +02001961 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01001962 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02001963
1964 /*
1965 * pin the queue now that it's allocated, scheduler exit will prune it
1966 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001967 if (!is_sync && !(*async_cfqq)) {
Jens Axboe15c31be2007-07-10 13:43:25 +02001968 atomic_inc(&cfqq->ref);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02001969 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02001970 }
1971
1972 atomic_inc(&cfqq->ref);
1973 return cfqq;
1974}
1975
Jens Axboe498d3aa22007-04-26 12:54:48 +02001976/*
1977 * We drop cfq io contexts lazily, so we may find a dead one.
1978 */
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001979static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01001980cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc,
1981 struct cfq_io_context *cic)
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001982{
Jens Axboe4ac845a2008-01-24 08:44:49 +01001983 unsigned long flags;
1984
Jens Axboefc463792006-08-29 09:05:44 +02001985 WARN_ON(!list_empty(&cic->queue_list));
Jens Axboe597bc482007-04-24 21:23:53 +02001986
Jens Axboe4ac845a2008-01-24 08:44:49 +01001987 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe597bc482007-04-24 21:23:53 +02001988
Fabio Checconi4faa3c82008-04-10 08:28:01 +02001989 BUG_ON(ioc->ioc_data == cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001990
1991 radix_tree_delete(&ioc->radix_root, (unsigned long) cfqd);
Jens Axboeffc4e752008-02-19 10:02:29 +01001992 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01001993 spin_unlock_irqrestore(&ioc->lock, flags);
1994
1995 cfq_cic_free(cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02001996}
1997
Jens Axboee2d74ac2006-03-28 08:59:01 +02001998static struct cfq_io_context *
Jens Axboe4ac845a2008-01-24 08:44:49 +01001999cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002000{
Jens Axboee2d74ac2006-03-28 08:59:01 +02002001 struct cfq_io_context *cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002002 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002003 void *k;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002004
Vasily Tarasov91fac312007-04-25 12:29:51 +02002005 if (unlikely(!ioc))
2006 return NULL;
2007
Jens Axboed6de8be2008-05-28 14:46:59 +02002008 rcu_read_lock();
2009
Jens Axboe597bc482007-04-24 21:23:53 +02002010 /*
2011 * we maintain a last-hit cache, to avoid browsing over the tree
2012 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01002013 cic = rcu_dereference(ioc->ioc_data);
Jens Axboed6de8be2008-05-28 14:46:59 +02002014 if (cic && cic->key == cfqd) {
2015 rcu_read_unlock();
Jens Axboe597bc482007-04-24 21:23:53 +02002016 return cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002017 }
Jens Axboe597bc482007-04-24 21:23:53 +02002018
Jens Axboe4ac845a2008-01-24 08:44:49 +01002019 do {
Jens Axboe4ac845a2008-01-24 08:44:49 +01002020 cic = radix_tree_lookup(&ioc->radix_root, (unsigned long) cfqd);
2021 rcu_read_unlock();
2022 if (!cic)
2023 break;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02002024 /* ->key must be copied to avoid race with cfq_exit_queue() */
2025 k = cic->key;
2026 if (unlikely(!k)) {
Jens Axboe4ac845a2008-01-24 08:44:49 +01002027 cfq_drop_dead_cic(cfqd, ioc, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002028 rcu_read_lock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01002029 continue;
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002030 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002031
Jens Axboed6de8be2008-05-28 14:46:59 +02002032 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002033 rcu_assign_pointer(ioc->ioc_data, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002034 spin_unlock_irqrestore(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002035 break;
2036 } while (1);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002037
Jens Axboe4ac845a2008-01-24 08:44:49 +01002038 return cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002039}
2040
Jens Axboe4ac845a2008-01-24 08:44:49 +01002041/*
2042 * Add cic into ioc, using cfqd as the search key. This enables us to lookup
2043 * the process specific cfq io context when entered from the block layer.
2044 * Also adds the cic to a per-cfqd list, used when this queue is removed.
2045 */
Jens Axboefebffd62008-01-28 13:19:43 +01002046static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
2047 struct cfq_io_context *cic, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002048{
Jens Axboe0261d682006-10-30 19:07:48 +01002049 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002050 int ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002051
Jens Axboe4ac845a2008-01-24 08:44:49 +01002052 ret = radix_tree_preload(gfp_mask);
2053 if (!ret) {
2054 cic->ioc = ioc;
2055 cic->key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002056
Jens Axboe4ac845a2008-01-24 08:44:49 +01002057 spin_lock_irqsave(&ioc->lock, flags);
2058 ret = radix_tree_insert(&ioc->radix_root,
2059 (unsigned long) cfqd, cic);
Jens Axboeffc4e752008-02-19 10:02:29 +01002060 if (!ret)
2061 hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002062 spin_unlock_irqrestore(&ioc->lock, flags);
2063
2064 radix_tree_preload_end();
2065
2066 if (!ret) {
2067 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2068 list_add(&cic->queue_list, &cfqd->cic_list);
2069 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002070 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002071 }
2072
Jens Axboe4ac845a2008-01-24 08:44:49 +01002073 if (ret)
2074 printk(KERN_ERR "cfq: cic link failed!\n");
Jens Axboefc463792006-08-29 09:05:44 +02002075
Jens Axboe4ac845a2008-01-24 08:44:49 +01002076 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002077}
2078
Jens Axboe22e2c502005-06-27 10:55:12 +02002079/*
2080 * Setup general io context and cfq io context. There can be several cfq
2081 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02002082 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02002083 */
2084static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02002085cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
Jens Axboe22e2c502005-06-27 10:55:12 +02002087 struct io_context *ioc = NULL;
2088 struct cfq_io_context *cic;
2089
2090 might_sleep_if(gfp_mask & __GFP_WAIT);
2091
Jens Axboeb5deef92006-07-19 23:39:40 +02002092 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02002093 if (!ioc)
2094 return NULL;
2095
Jens Axboe4ac845a2008-01-24 08:44:49 +01002096 cic = cfq_cic_lookup(cfqd, ioc);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002097 if (cic)
2098 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02002099
Jens Axboee2d74ac2006-03-28 08:59:01 +02002100 cic = cfq_alloc_io_context(cfqd, gfp_mask);
2101 if (cic == NULL)
2102 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02002103
Jens Axboe4ac845a2008-01-24 08:44:49 +01002104 if (cfq_cic_link(cfqd, ioc, cic, gfp_mask))
2105 goto err_free;
2106
Jens Axboe22e2c502005-06-27 10:55:12 +02002107out:
Jens Axboefc463792006-08-29 09:05:44 +02002108 smp_read_barrier_depends();
2109 if (unlikely(ioc->ioprio_changed))
2110 cfq_ioc_set_ioprio(ioc);
2111
Jens Axboe22e2c502005-06-27 10:55:12 +02002112 return cic;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002113err_free:
2114 cfq_cic_free(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02002115err:
2116 put_io_context(ioc);
2117 return NULL;
2118}
2119
2120static void
2121cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
2122{
Jens Axboeaaf12282007-01-19 11:30:16 +11002123 unsigned long elapsed = jiffies - cic->last_end_request;
2124 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02002125
2126 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
2127 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
2128 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
2129}
2130
Jens Axboe206dc692006-03-28 13:03:44 +02002131static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002132cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02002133 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02002134{
2135 sector_t sdist;
2136 u64 total;
2137
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002138 if (!cfqq->last_request_pos)
Jeff Moyer4d00aa42009-04-21 07:25:04 +02002139 sdist = 0;
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002140 else if (cfqq->last_request_pos < blk_rq_pos(rq))
2141 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
Jens Axboe206dc692006-03-28 13:03:44 +02002142 else
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002143 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
Jens Axboe206dc692006-03-28 13:03:44 +02002144
2145 /*
2146 * Don't allow the seek distance to get too large from the
2147 * odd fragment, pagein, etc
2148 */
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002149 if (cfqq->seek_samples <= 60) /* second&third seek */
2150 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*1024);
Jens Axboe206dc692006-03-28 13:03:44 +02002151 else
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002152 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*64);
Jens Axboe206dc692006-03-28 13:03:44 +02002153
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002154 cfqq->seek_samples = (7*cfqq->seek_samples + 256) / 8;
2155 cfqq->seek_total = (7*cfqq->seek_total + (u64)256*sdist) / 8;
2156 total = cfqq->seek_total + (cfqq->seek_samples/2);
2157 do_div(total, cfqq->seek_samples);
2158 cfqq->seek_mean = (sector_t)total;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002159
2160 /*
2161 * If this cfqq is shared between multiple processes, check to
2162 * make sure that those processes are still issuing I/Os within
2163 * the mean seek distance. If not, it may be time to break the
2164 * queues apart again.
2165 */
2166 if (cfq_cfqq_coop(cfqq)) {
2167 if (CFQQ_SEEKY(cfqq) && !cfqq->seeky_start)
2168 cfqq->seeky_start = jiffies;
2169 else if (!CFQQ_SEEKY(cfqq))
2170 cfqq->seeky_start = 0;
2171 }
Jens Axboe206dc692006-03-28 13:03:44 +02002172}
Jens Axboe22e2c502005-06-27 10:55:12 +02002173
2174/*
2175 * Disable idle window if the process thinks too long or seeks so much that
2176 * it doesn't matter
2177 */
2178static void
2179cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
2180 struct cfq_io_context *cic)
2181{
Jens Axboe7b679132008-05-30 12:23:07 +02002182 int old_idle, enable_idle;
Jens Axboe1be92f2f2007-04-19 14:32:26 +02002183
Jens Axboe08717142008-01-28 11:38:15 +01002184 /*
2185 * Don't idle for async or idle io prio class
2186 */
2187 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f2f2007-04-19 14:32:26 +02002188 return;
2189
Jens Axboec265a7f2008-06-26 13:49:33 +02002190 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002191
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01002192 if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002193 (!cfqd->cfq_latency && cfqd->hw_tag && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02002194 enable_idle = 0;
2195 else if (sample_valid(cic->ttime_samples)) {
Corrado Zoccoloec60e4f2009-10-07 19:51:54 +02002196 unsigned int slice_idle = cfqd->cfq_slice_idle;
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002197 if (sample_valid(cfqq->seek_samples) && CFQQ_SEEKY(cfqq))
Corrado Zoccoloec60e4f2009-10-07 19:51:54 +02002198 slice_idle = msecs_to_jiffies(CFQ_MIN_TT);
2199 if (cic->ttime_mean > slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02002200 enable_idle = 0;
2201 else
2202 enable_idle = 1;
2203 }
2204
Jens Axboe7b679132008-05-30 12:23:07 +02002205 if (old_idle != enable_idle) {
2206 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
2207 if (enable_idle)
2208 cfq_mark_cfqq_idle_window(cfqq);
2209 else
2210 cfq_clear_cfqq_idle_window(cfqq);
2211 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002212}
2213
Jens Axboe22e2c502005-06-27 10:55:12 +02002214/*
2215 * Check if new_cfqq should preempt the currently active queue. Return 0 for
2216 * no or if we aren't sure, a 1 will cause a preempt.
2217 */
Jens Axboea6151c32009-10-07 20:02:57 +02002218static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02002219cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02002220 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002221{
Jens Axboe6d048f52007-04-25 12:44:27 +02002222 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002223
Jens Axboe6d048f52007-04-25 12:44:27 +02002224 cfqq = cfqd->active_queue;
2225 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02002226 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002227
Jens Axboe6d048f52007-04-25 12:44:27 +02002228 if (cfq_slice_used(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002229 return true;
Jens Axboe6d048f52007-04-25 12:44:27 +02002230
2231 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002232 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002233
2234 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002235 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002236
Jens Axboe22e2c502005-06-27 10:55:12 +02002237 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02002238 * if the new request is sync, but the currently running queue is
2239 * not, let the sync request have priority.
2240 */
Jens Axboe5e705372006-07-13 12:39:25 +02002241 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002242 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002243
Jens Axboe374f84a2006-07-23 01:42:19 +02002244 /*
2245 * So both queues are sync. Let the new request get disk time if
2246 * it's a metadata request and the current queue is doing regular IO.
2247 */
2248 if (rq_is_meta(rq) && !cfqq->meta_pending)
Jens Axboea6151c32009-10-07 20:02:57 +02002249 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002250
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002251 /*
2252 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
2253 */
2254 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002255 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002256
Jens Axboe1e3335d2007-02-14 19:59:49 +01002257 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002258 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002259
2260 /*
2261 * if this request is as-good as one we would expect from the
2262 * current cfqq, let it preempt
2263 */
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002264 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02002265 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002266
Jens Axboea6151c32009-10-07 20:02:57 +02002267 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002268}
2269
2270/*
2271 * cfqq preempts the active queue. if we allowed preempt with no slice left,
2272 * let it have half of its nominal slice.
2273 */
2274static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2275{
Jens Axboe7b679132008-05-30 12:23:07 +02002276 cfq_log_cfqq(cfqd, cfqq, "preempt");
Jens Axboe6084cdd2007-04-23 08:25:00 +02002277 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02002278
Jens Axboebf572252006-07-19 20:29:12 +02002279 /*
2280 * Put the new queue at the front of the of the current list,
2281 * so we know that it will be selected next.
2282 */
2283 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02002284
2285 cfq_service_tree_add(cfqd, cfqq, 1);
Jens Axboebf572252006-07-19 20:29:12 +02002286
Jens Axboe44f7c162007-01-19 11:51:58 +11002287 cfqq->slice_end = 0;
2288 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002289}
2290
2291/*
Jens Axboe5e705372006-07-13 12:39:25 +02002292 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02002293 * something we should do about it
2294 */
2295static void
Jens Axboe5e705372006-07-13 12:39:25 +02002296cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
2297 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002298{
Jens Axboe5e705372006-07-13 12:39:25 +02002299 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02002300
Aaron Carroll45333d52008-08-26 15:52:36 +02002301 cfqd->rq_queued++;
Jens Axboe374f84a2006-07-23 01:42:19 +02002302 if (rq_is_meta(rq))
2303 cfqq->meta_pending++;
2304
Jens Axboe9c2c38a2005-08-24 14:57:54 +02002305 cfq_update_io_thinktime(cfqd, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002306 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02002307 cfq_update_idle_window(cfqd, cfqq, cic);
2308
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002309 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002310
2311 if (cfqq == cfqd->active_queue) {
2312 /*
Jens Axboeb0291952009-04-07 11:38:31 +02002313 * Remember that we saw a request from this process, but
2314 * don't start queuing just yet. Otherwise we risk seeing lots
2315 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02002316 * and merging. If the request is already larger than a single
2317 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02002318 * merging is already done. Ditto for a busy system that
2319 * has other work pending, don't risk delaying until the
2320 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02002321 */
Jens Axboed6ceb252009-04-14 14:18:16 +02002322 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02002323 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
2324 cfqd->busy_queues > 1) {
Jens Axboed6ceb252009-04-14 14:18:16 +02002325 del_timer(&cfqd->idle_slice_timer);
Tejun Heoa7f55792009-04-23 11:05:17 +09002326 __blk_run_queue(cfqd->queue);
Jens Axboed6ceb252009-04-14 14:18:16 +02002327 }
Jens Axboeb0291952009-04-07 11:38:31 +02002328 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboed6ceb252009-04-14 14:18:16 +02002329 }
Jens Axboe5e705372006-07-13 12:39:25 +02002330 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002331 /*
2332 * not the active queue - expire current slice if it is
2333 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002334 * has some old slice time left and is of higher priority or
2335 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02002336 */
2337 cfq_preempt_queue(cfqd, cfqq);
Tejun Heoa7f55792009-04-23 11:05:17 +09002338 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02002339 }
2340}
2341
Jens Axboe165125e2007-07-24 09:28:11 +02002342static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002343{
Jens Axboeb4878f22005-10-20 16:42:29 +02002344 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02002345 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002346
Jens Axboe7b679132008-05-30 12:23:07 +02002347 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Jens Axboefd0928d2008-01-24 08:52:45 +01002348 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Jens Axboe30996f42009-10-05 11:03:39 +02002350 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02002351 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01002352 cfq_add_rq_rb(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002353
Jens Axboe5e705372006-07-13 12:39:25 +02002354 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355}
2356
Aaron Carroll45333d52008-08-26 15:52:36 +02002357/*
2358 * Update hw_tag based on peak queue depth over 50 samples under
2359 * sufficient load.
2360 */
2361static void cfq_update_hw_tag(struct cfq_data *cfqd)
2362{
Shaohua Li1a1238a2009-10-27 08:46:23 +01002363 struct cfq_queue *cfqq = cfqd->active_queue;
2364
Jens Axboe5ad531d2009-07-03 12:57:48 +02002365 if (rq_in_driver(cfqd) > cfqd->rq_in_driver_peak)
2366 cfqd->rq_in_driver_peak = rq_in_driver(cfqd);
Aaron Carroll45333d52008-08-26 15:52:36 +02002367
2368 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Jens Axboe5ad531d2009-07-03 12:57:48 +02002369 rq_in_driver(cfqd) <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02002370 return;
2371
Shaohua Li1a1238a2009-10-27 08:46:23 +01002372 /*
2373 * If active queue hasn't enough requests and can idle, cfq might not
2374 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
2375 * case
2376 */
2377 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
2378 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
2379 CFQ_HW_QUEUE_MIN && rq_in_driver(cfqd) < CFQ_HW_QUEUE_MIN)
2380 return;
2381
Aaron Carroll45333d52008-08-26 15:52:36 +02002382 if (cfqd->hw_tag_samples++ < 50)
2383 return;
2384
2385 if (cfqd->rq_in_driver_peak >= CFQ_HW_QUEUE_MIN)
2386 cfqd->hw_tag = 1;
2387 else
2388 cfqd->hw_tag = 0;
2389
2390 cfqd->hw_tag_samples = 0;
2391 cfqd->rq_in_driver_peak = 0;
2392}
2393
Jens Axboe165125e2007-07-24 09:28:11 +02002394static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
Jens Axboe5e705372006-07-13 12:39:25 +02002396 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02002397 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02002398 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02002399 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Jens Axboeb4878f22005-10-20 16:42:29 +02002401 now = jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02002402 cfq_log_cfqq(cfqd, cfqq, "complete");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Aaron Carroll45333d52008-08-26 15:52:36 +02002404 cfq_update_hw_tag(cfqd);
2405
Jens Axboe5ad531d2009-07-03 12:57:48 +02002406 WARN_ON(!cfqd->rq_in_driver[sync]);
Jens Axboe6d048f52007-04-25 12:44:27 +02002407 WARN_ON(!cfqq->dispatched);
Jens Axboe5ad531d2009-07-03 12:57:48 +02002408 cfqd->rq_in_driver[sync]--;
Jens Axboe6d048f52007-04-25 12:44:27 +02002409 cfqq->dispatched--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Jens Axboe3ed9a292007-04-23 08:33:33 +02002411 if (cfq_cfqq_sync(cfqq))
2412 cfqd->sync_flight--;
2413
Vivek Goyal365722b2009-10-03 15:21:27 +02002414 if (sync) {
Jens Axboe5e705372006-07-13 12:39:25 +02002415 RQ_CIC(rq)->last_end_request = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02002416 cfqd->last_end_sync_rq = now;
2417 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002418
2419 /*
2420 * If this is the active queue, check if it needs to be expired,
2421 * or if we want to idle in case it has no pending requests.
2422 */
2423 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02002424 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
2425
Jens Axboe44f7c162007-01-19 11:51:58 +11002426 if (cfq_cfqq_slice_new(cfqq)) {
2427 cfq_set_prio_slice(cfqd, cfqq);
2428 cfq_clear_cfqq_slice_new(cfqq);
2429 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002430 /*
2431 * If there are no requests waiting in this queue, and
2432 * there are other queues ready to issue requests, AND
2433 * those other queues are issuing requests within our
2434 * mean seek distance, give them a chance to run instead
2435 * of idling.
2436 */
Jens Axboe08717142008-01-28 11:38:15 +01002437 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Jens Axboe6084cdd2007-04-23 08:25:00 +02002438 cfq_slice_expired(cfqd, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002439 else if (cfqq_empty && !cfq_close_cooperator(cfqd, cfqq) &&
Jens Axboea36e71f2009-04-15 12:15:11 +02002440 sync && !rq_noidle(rq))
Jens Axboe6d048f52007-04-25 12:44:27 +02002441 cfq_arm_slice_timer(cfqd);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002442 }
Jens Axboe6d048f52007-04-25 12:44:27 +02002443
Jens Axboe5ad531d2009-07-03 12:57:48 +02002444 if (!rq_in_driver(cfqd))
Jens Axboe23e018a2009-10-05 08:52:35 +02002445 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
Jens Axboe22e2c502005-06-27 10:55:12 +02002448/*
2449 * we temporarily boost lower priority queues if they are holding fs exclusive
2450 * resources. they are boosted to normal prio (CLASS_BE/4)
2451 */
2452static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
Jens Axboe22e2c502005-06-27 10:55:12 +02002454 if (has_fs_excl()) {
2455 /*
2456 * boost idle prio on transactions that would lock out other
2457 * users of the filesystem
2458 */
2459 if (cfq_class_idle(cfqq))
2460 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2461 if (cfqq->ioprio > IOPRIO_NORM)
2462 cfqq->ioprio = IOPRIO_NORM;
2463 } else {
2464 /*
2465 * check if we need to unboost the queue
2466 */
2467 if (cfqq->ioprio_class != cfqq->org_ioprio_class)
2468 cfqq->ioprio_class = cfqq->org_ioprio_class;
2469 if (cfqq->ioprio != cfqq->org_ioprio)
2470 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002472}
2473
Jens Axboe89850f72006-07-22 16:48:31 +02002474static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002475{
Jens Axboe1b379d82009-08-11 08:26:11 +02002476 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02002477 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002478 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02002479 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002480
2481 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02002482}
2483
Jens Axboe165125e2007-07-24 09:28:11 +02002484static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02002485{
2486 struct cfq_data *cfqd = q->elevator->elevator_data;
2487 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02002488 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02002489 struct cfq_queue *cfqq;
2490
2491 /*
2492 * don't force setup of a queue from here, as a call to may_queue
2493 * does not necessarily imply that a request actually will be queued.
2494 * so just lookup a possibly existing queue, or return 'may queue'
2495 * if that fails
2496 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01002497 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002498 if (!cic)
2499 return ELV_MQUEUE_MAY;
2500
Jens Axboeb0b78f82009-04-08 10:56:08 +02002501 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02002502 if (cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01002503 cfq_init_prio_data(cfqq, cic->ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02002504 cfq_prio_boost(cfqq);
2505
Jens Axboe89850f72006-07-22 16:48:31 +02002506 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002507 }
2508
2509 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510}
2511
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512/*
2513 * queue lock held here
2514 */
Jens Axboebb37b942006-12-01 10:42:33 +01002515static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516{
Jens Axboe5e705372006-07-13 12:39:25 +02002517 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Jens Axboe5e705372006-07-13 12:39:25 +02002519 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002520 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Jens Axboe22e2c502005-06-27 10:55:12 +02002522 BUG_ON(!cfqq->allocated[rw]);
2523 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Jens Axboe5e705372006-07-13 12:39:25 +02002525 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02002528 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 cfq_put_queue(cfqq);
2531 }
2532}
2533
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002534static struct cfq_queue *
2535cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic,
2536 struct cfq_queue *cfqq)
2537{
2538 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
2539 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002540 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002541 cfq_put_queue(cfqq);
2542 return cic_to_cfqq(cic, 1);
2543}
2544
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002545static int should_split_cfqq(struct cfq_queue *cfqq)
2546{
2547 if (cfqq->seeky_start &&
2548 time_after(jiffies, cfqq->seeky_start + CFQQ_COOP_TOUT))
2549 return 1;
2550 return 0;
2551}
2552
2553/*
2554 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
2555 * was the last process referring to said cfqq.
2556 */
2557static struct cfq_queue *
2558split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq)
2559{
2560 if (cfqq_process_refs(cfqq) == 1) {
2561 cfqq->seeky_start = 0;
2562 cfqq->pid = current->pid;
2563 cfq_clear_cfqq_coop(cfqq);
2564 return cfqq;
2565 }
2566
2567 cic_set_cfqq(cic, NULL, 1);
2568 cfq_put_queue(cfqq);
2569 return NULL;
2570}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571/*
Jens Axboe22e2c502005-06-27 10:55:12 +02002572 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 */
Jens Axboe22e2c502005-06-27 10:55:12 +02002574static int
Jens Axboe165125e2007-07-24 09:28:11 +02002575cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576{
2577 struct cfq_data *cfqd = q->elevator->elevator_data;
2578 struct cfq_io_context *cic;
2579 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02002580 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002581 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 unsigned long flags;
2583
2584 might_sleep_if(gfp_mask & __GFP_WAIT);
2585
Jens Axboee2d74ac2006-03-28 08:59:01 +02002586 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02002587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 spin_lock_irqsave(q->queue_lock, flags);
2589
Jens Axboe22e2c502005-06-27 10:55:12 +02002590 if (!cic)
2591 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002593new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02002594 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02002595 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01002596 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002597 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002598 } else {
2599 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002600 * If the queue was seeky for too long, break it apart.
2601 */
2602 if (cfq_cfqq_coop(cfqq) && should_split_cfqq(cfqq)) {
2603 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
2604 cfqq = split_cfqq(cic, cfqq);
2605 if (!cfqq)
2606 goto new_queue;
2607 }
2608
2609 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002610 * Check to see if this queue is scheduled to merge with
2611 * another, closely cooperating queue. The merging of
2612 * queues happens here as it must be done in process context.
2613 * The reference on new_cfqq was taken in merge_cfqqs.
2614 */
2615 if (cfqq->new_cfqq)
2616 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
2619 cfqq->allocated[rw]++;
Jens Axboe22e2c502005-06-27 10:55:12 +02002620 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02002621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 spin_unlock_irqrestore(q->queue_lock, flags);
2623
Jens Axboe5e705372006-07-13 12:39:25 +02002624 rq->elevator_private = cic;
2625 rq->elevator_private2 = cfqq;
2626 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02002627
Jens Axboe22e2c502005-06-27 10:55:12 +02002628queue_fail:
2629 if (cic)
2630 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02002631
Jens Axboe23e018a2009-10-05 08:52:35 +02002632 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 spin_unlock_irqrestore(q->queue_lock, flags);
Jens Axboe7b679132008-05-30 12:23:07 +02002634 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 return 1;
2636}
2637
David Howells65f27f32006-11-22 14:55:48 +00002638static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02002639{
David Howells65f27f32006-11-22 14:55:48 +00002640 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02002641 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02002642 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002643
Jens Axboe40bb54d2009-04-15 12:11:10 +02002644 spin_lock_irq(q->queue_lock);
Tejun Heoa7f55792009-04-23 11:05:17 +09002645 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02002646 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02002647}
2648
2649/*
2650 * Timer running if the active_queue is currently idling inside its time slice
2651 */
2652static void cfq_idle_slice_timer(unsigned long data)
2653{
2654 struct cfq_data *cfqd = (struct cfq_data *) data;
2655 struct cfq_queue *cfqq;
2656 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11002657 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02002658
Jens Axboe7b679132008-05-30 12:23:07 +02002659 cfq_log(cfqd, "idle timer fired");
2660
Jens Axboe22e2c502005-06-27 10:55:12 +02002661 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2662
Jens Axboefe094d92008-01-31 13:08:54 +01002663 cfqq = cfqd->active_queue;
2664 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11002665 timed_out = 0;
2666
Jens Axboe22e2c502005-06-27 10:55:12 +02002667 /*
Jens Axboeb0291952009-04-07 11:38:31 +02002668 * We saw a request before the queue expired, let it through
2669 */
2670 if (cfq_cfqq_must_dispatch(cfqq))
2671 goto out_kick;
2672
2673 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02002674 * expired
2675 */
Jens Axboe44f7c162007-01-19 11:51:58 +11002676 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002677 goto expire;
2678
2679 /*
2680 * only expire and reinvoke request handler, if there are
2681 * other queues with pending requests
2682 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02002683 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02002684 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02002685
2686 /*
2687 * not expired and it has a request pending, let it dispatch
2688 */
Jens Axboe75e50982009-04-07 08:56:14 +02002689 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002690 goto out_kick;
Jens Axboe22e2c502005-06-27 10:55:12 +02002691 }
2692expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +02002693 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02002694out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02002695 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02002696out_cont:
2697 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
2698}
2699
Jens Axboe3b181522005-06-27 10:56:24 +02002700static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
2701{
2702 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02002703 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02002704}
Jens Axboe22e2c502005-06-27 10:55:12 +02002705
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002706static void cfq_put_async_queues(struct cfq_data *cfqd)
2707{
2708 int i;
2709
2710 for (i = 0; i < IOPRIO_BE_NR; i++) {
2711 if (cfqd->async_cfqq[0][i])
2712 cfq_put_queue(cfqd->async_cfqq[0][i]);
2713 if (cfqd->async_cfqq[1][i])
2714 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002715 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01002716
2717 if (cfqd->async_idle_cfqq)
2718 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002719}
2720
Jens Axboeb374d182008-10-31 10:05:07 +01002721static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722{
Jens Axboe22e2c502005-06-27 10:55:12 +02002723 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02002724 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002725
Jens Axboe3b181522005-06-27 10:56:24 +02002726 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002727
Al Virod9ff4182006-03-18 13:51:22 -05002728 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002729
Al Virod9ff4182006-03-18 13:51:22 -05002730 if (cfqd->active_queue)
Jens Axboe6084cdd2007-04-23 08:25:00 +02002731 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002732
2733 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05002734 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
2735 struct cfq_io_context,
2736 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02002737
2738 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05002739 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002740
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002741 cfq_put_async_queues(cfqd);
Jens Axboe15c31be2007-07-10 13:43:25 +02002742
Al Virod9ff4182006-03-18 13:51:22 -05002743 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05002744
2745 cfq_shutdown_timer_wq(cfqd);
2746
Al Viroa90d7422006-03-18 12:05:37 -05002747 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748}
2749
Jens Axboe165125e2007-07-24 09:28:11 +02002750static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751{
2752 struct cfq_data *cfqd;
Jens Axboe26a2ac02009-04-23 12:13:27 +02002753 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Christoph Lameter94f60302007-07-17 04:03:29 -07002755 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02002757 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01002759 for (i = 0; i < 2; ++i)
2760 cfqd->service_trees[i] = CFQ_RB_ROOT;
2761 cfqd->service_tree_idle = CFQ_RB_ROOT;
Jens Axboe26a2ac02009-04-23 12:13:27 +02002762
2763 /*
2764 * Not strictly needed (since RB_ROOT just clears the node and we
2765 * zeroed cfqd on alloc), but better be safe in case someone decides
2766 * to add magic to the rb code
2767 */
2768 for (i = 0; i < CFQ_PRIO_LISTS; i++)
2769 cfqd->prio_trees[i] = RB_ROOT;
2770
Jens Axboe6118b702009-06-30 09:34:12 +02002771 /*
2772 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
2773 * Grab a permanent reference to it, so that the normal code flow
2774 * will not attempt to free it.
2775 */
2776 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
2777 atomic_inc(&cfqd->oom_cfqq.ref);
2778
Al Virod9ff4182006-03-18 13:51:22 -05002779 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Jens Axboe22e2c502005-06-27 10:55:12 +02002783 init_timer(&cfqd->idle_slice_timer);
2784 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
2785 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
2786
Jens Axboe23e018a2009-10-05 08:52:35 +02002787 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02002788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02002790 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
2791 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 cfqd->cfq_back_max = cfq_back_max;
2793 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02002794 cfqd->cfq_slice[0] = cfq_slice_async;
2795 cfqd->cfq_slice[1] = cfq_slice_sync;
2796 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
2797 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02002798 cfqd->cfq_latency = 1;
Aaron Carroll45333d52008-08-26 15:52:36 +02002799 cfqd->hw_tag = 1;
Vivek Goyal365722b2009-10-03 15:21:27 +02002800 cfqd->last_end_sync_rq = jiffies;
Jens Axboebc1c1162006-06-08 08:49:06 +02002801 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
2803
2804static void cfq_slab_kill(void)
2805{
Jens Axboed6de8be2008-05-28 14:46:59 +02002806 /*
2807 * Caller already ensured that pending RCU callbacks are completed,
2808 * so we should have no busy allocations at this point.
2809 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 if (cfq_pool)
2811 kmem_cache_destroy(cfq_pool);
2812 if (cfq_ioc_pool)
2813 kmem_cache_destroy(cfq_ioc_pool);
2814}
2815
2816static int __init cfq_slab_setup(void)
2817{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07002818 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 if (!cfq_pool)
2820 goto fail;
2821
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002822 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 if (!cfq_ioc_pool)
2824 goto fail;
2825
2826 return 0;
2827fail:
2828 cfq_slab_kill();
2829 return -ENOMEM;
2830}
2831
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832/*
2833 * sysfs parts below -->
2834 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835static ssize_t
2836cfq_var_show(unsigned int var, char *page)
2837{
2838 return sprintf(page, "%d\n", var);
2839}
2840
2841static ssize_t
2842cfq_var_store(unsigned int *var, const char *page, size_t count)
2843{
2844 char *p = (char *) page;
2845
2846 *var = simple_strtoul(p, &p, 10);
2847 return count;
2848}
2849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01002851static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002853 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 unsigned int __data = __VAR; \
2855 if (__CONV) \
2856 __data = jiffies_to_msecs(__data); \
2857 return cfq_var_show(__data, (page)); \
2858}
2859SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002860SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
2861SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05002862SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
2863SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002864SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
2865SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
2866SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
2867SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02002868SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869#undef SHOW_FUNCTION
2870
2871#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01002872static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{ \
Al Viro3d1ab402006-03-18 18:35:43 -05002874 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 unsigned int __data; \
2876 int ret = cfq_var_store(&__data, (page), count); \
2877 if (__data < (MIN)) \
2878 __data = (MIN); \
2879 else if (__data > (MAX)) \
2880 __data = (MAX); \
2881 if (__CONV) \
2882 *(__PTR) = msecs_to_jiffies(__data); \
2883 else \
2884 *(__PTR) = __data; \
2885 return ret; \
2886}
2887STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01002888STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
2889 UINT_MAX, 1);
2890STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
2891 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05002892STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01002893STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
2894 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02002895STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
2896STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
2897STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01002898STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
2899 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02002900STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901#undef STORE_FUNCTION
2902
Al Viroe572ec72006-03-18 22:27:18 -05002903#define CFQ_ATTR(name) \
2904 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02002905
Al Viroe572ec72006-03-18 22:27:18 -05002906static struct elv_fs_entry cfq_attrs[] = {
2907 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05002908 CFQ_ATTR(fifo_expire_sync),
2909 CFQ_ATTR(fifo_expire_async),
2910 CFQ_ATTR(back_seek_max),
2911 CFQ_ATTR(back_seek_penalty),
2912 CFQ_ATTR(slice_sync),
2913 CFQ_ATTR(slice_async),
2914 CFQ_ATTR(slice_async_rq),
2915 CFQ_ATTR(slice_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02002916 CFQ_ATTR(low_latency),
Al Viroe572ec72006-03-18 22:27:18 -05002917 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918};
2919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920static struct elevator_type iosched_cfq = {
2921 .ops = {
2922 .elevator_merge_fn = cfq_merge,
2923 .elevator_merged_fn = cfq_merged_request,
2924 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01002925 .elevator_allow_merge_fn = cfq_allow_merge,
Jens Axboeb4878f22005-10-20 16:42:29 +02002926 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02002928 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 .elevator_deactivate_req_fn = cfq_deactivate_request,
2930 .elevator_queue_empty_fn = cfq_queue_empty,
2931 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02002932 .elevator_former_req_fn = elv_rb_former_request,
2933 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 .elevator_set_req_fn = cfq_set_request,
2935 .elevator_put_req_fn = cfq_put_request,
2936 .elevator_may_queue_fn = cfq_may_queue,
2937 .elevator_init_fn = cfq_init_queue,
2938 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02002939 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 },
Al Viro3d1ab402006-03-18 18:35:43 -05002941 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 .elevator_name = "cfq",
2943 .elevator_owner = THIS_MODULE,
2944};
2945
2946static int __init cfq_init(void)
2947{
Jens Axboe22e2c502005-06-27 10:55:12 +02002948 /*
2949 * could be 0 on HZ < 1000 setups
2950 */
2951 if (!cfq_slice_async)
2952 cfq_slice_async = 1;
2953 if (!cfq_slice_idle)
2954 cfq_slice_idle = 1;
2955
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 if (cfq_slab_setup())
2957 return -ENOMEM;
2958
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01002959 elv_register(&iosched_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01002961 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962}
2963
2964static void __exit cfq_exit(void)
2965{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07002966 DECLARE_COMPLETION_ONSTACK(all_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05002968 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02002969 /* ioc_gone's update must be visible before reading ioc_count */
2970 smp_wmb();
Jens Axboed6de8be2008-05-28 14:46:59 +02002971
2972 /*
2973 * this also protects us from entering cfq_slab_kill() with
2974 * pending RCU callbacks
2975 */
Tejun Heo245b2e72009-06-24 15:13:48 +09002976 if (elv_ioc_count_read(cfq_ioc_count))
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002977 wait_for_completion(&all_gone);
Christoph Hellwig83521d32005-10-30 15:01:39 -08002978 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979}
2980
2981module_init(cfq_init);
2982module_exit(cfq_exit);
2983
2984MODULE_AUTHOR("Jens Axboe");
2985MODULE_LICENSE("GPL");
2986MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");