Merge branch 'master' into for-2.6.34
[linux-2.6-block.git] / block / cfq-iosched.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * 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 *
0fe23479 7 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
1da177e4 8 */
1da177e4 9#include <linux/module.h>
1cc9be68
AV
10#include <linux/blkdev.h>
11#include <linux/elevator.h>
ad5ebd2f 12#include <linux/jiffies.h>
1da177e4 13#include <linux/rbtree.h>
22e2c507 14#include <linux/ioprio.h>
7b679138 15#include <linux/blktrace_api.h>
25bc6b07 16#include "blk-cgroup.h"
1da177e4
LT
17
18/*
19 * tunables
20 */
fe094d98
JA
21/* max queue in one round of service */
22static const int cfq_quantum = 4;
64100099 23static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
fe094d98
JA
24/* maximum backwards seek, in KiB */
25static const int cfq_back_max = 16 * 1024;
26/* penalty of a backwards seek */
27static const int cfq_back_penalty = 2;
64100099 28static const int cfq_slice_sync = HZ / 10;
3b18152c 29static int cfq_slice_async = HZ / 25;
64100099 30static const int cfq_slice_async_rq = 2;
caaa5f9f 31static int cfq_slice_idle = HZ / 125;
5db5d642
CZ
32static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
33static const int cfq_hist_divisor = 4;
22e2c507 34
d9e7620e 35/*
0871714e 36 * offset from end of service tree
d9e7620e 37 */
0871714e 38#define CFQ_IDLE_DELAY (HZ / 5)
d9e7620e
JA
39
40/*
41 * below this threshold, we consider thinktime immediate
42 */
43#define CFQ_MIN_TT (2)
44
22e2c507 45#define CFQ_SLICE_SCALE (5)
45333d5a 46#define CFQ_HW_QUEUE_MIN (5)
25bc6b07 47#define CFQ_SERVICE_SHIFT 12
22e2c507 48
ae54abed
SL
49#define CFQQ_SEEK_THR 8 * 1024
50#define CFQQ_SEEKY(cfqq) ((cfqq)->seek_mean > CFQQ_SEEK_THR)
51
fe094d98
JA
52#define RQ_CIC(rq) \
53 ((struct cfq_io_context *) (rq)->elevator_private)
7b679138 54#define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elevator_private2)
1da177e4 55
e18b890b
CL
56static struct kmem_cache *cfq_pool;
57static struct kmem_cache *cfq_ioc_pool;
1da177e4 58
245b2e70 59static DEFINE_PER_CPU(unsigned long, cfq_ioc_count);
334e94de 60static struct completion *ioc_gone;
9a11b4ed 61static DEFINE_SPINLOCK(ioc_gone_lock);
334e94de 62
22e2c507
JA
63#define CFQ_PRIO_LISTS IOPRIO_BE_NR
64#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
22e2c507
JA
65#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
66
206dc69b 67#define sample_valid(samples) ((samples) > 80)
1fa8f6d6 68#define rb_entry_cfqg(node) rb_entry((node), struct cfq_group, rb_node)
206dc69b 69
cc09e299
JA
70/*
71 * Most of our rbtree usage is for sorting with min extraction, so
72 * if we cache the leftmost node we don't have to walk down the tree
73 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
74 * move this into the elevator for the rq sorting as well.
75 */
76struct cfq_rb_root {
77 struct rb_root rb;
78 struct rb_node *left;
aa6f6a3d 79 unsigned count;
1fa8f6d6 80 u64 min_vdisktime;
25bc6b07 81 struct rb_node *active;
58ff82f3 82 unsigned total_weight;
cc09e299 83};
1fa8f6d6 84#define CFQ_RB_ROOT (struct cfq_rb_root) { RB_ROOT, NULL, 0, 0, }
cc09e299 85
6118b70b
JA
86/*
87 * Per process-grouping structure
88 */
89struct cfq_queue {
90 /* reference count */
91 atomic_t ref;
92 /* various state flags, see below */
93 unsigned int flags;
94 /* parent cfq_data */
95 struct cfq_data *cfqd;
96 /* service_tree member */
97 struct rb_node rb_node;
98 /* service_tree key */
99 unsigned long rb_key;
100 /* prio tree member */
101 struct rb_node p_node;
102 /* prio tree root we belong to, if any */
103 struct rb_root *p_root;
104 /* sorted list of pending requests */
105 struct rb_root sort_list;
106 /* if fifo isn't expired, next request to serve */
107 struct request *next_rq;
108 /* requests queued in sort_list */
109 int queued[2];
110 /* currently allocated requests */
111 int allocated[2];
112 /* fifo list of requests in sort_list */
113 struct list_head fifo;
114
dae739eb
VG
115 /* time when queue got scheduled in to dispatch first request. */
116 unsigned long dispatch_start;
f75edf2d 117 unsigned int allocated_slice;
dae739eb
VG
118 /* time when first request from queue completed and slice started. */
119 unsigned long slice_start;
6118b70b
JA
120 unsigned long slice_end;
121 long slice_resid;
122 unsigned int slice_dispatch;
123
124 /* pending metadata requests */
125 int meta_pending;
126 /* number of requests that are on the dispatch list or inside driver */
127 int dispatched;
128
129 /* io prio of this group */
130 unsigned short ioprio, org_ioprio;
131 unsigned short ioprio_class, org_ioprio_class;
132
b2c18e1e
JM
133 unsigned int seek_samples;
134 u64 seek_total;
135 sector_t seek_mean;
136 sector_t last_request_pos;
137
6118b70b 138 pid_t pid;
df5fe3e8 139
aa6f6a3d 140 struct cfq_rb_root *service_tree;
df5fe3e8 141 struct cfq_queue *new_cfqq;
cdb16e8f 142 struct cfq_group *cfqg;
ae30c286 143 struct cfq_group *orig_cfqg;
22084190
VG
144 /* Sectors dispatched in current dispatch round */
145 unsigned long nr_sectors;
6118b70b
JA
146};
147
c0324a02 148/*
718eee05 149 * First index in the service_trees.
c0324a02
CZ
150 * IDLE is handled separately, so it has negative index
151 */
152enum wl_prio_t {
c0324a02 153 BE_WORKLOAD = 0,
615f0259
VG
154 RT_WORKLOAD = 1,
155 IDLE_WORKLOAD = 2,
c0324a02
CZ
156};
157
718eee05
CZ
158/*
159 * Second index in the service_trees.
160 */
161enum wl_type_t {
162 ASYNC_WORKLOAD = 0,
163 SYNC_NOIDLE_WORKLOAD = 1,
164 SYNC_WORKLOAD = 2
165};
166
cdb16e8f
VG
167/* This is per cgroup per device grouping structure */
168struct cfq_group {
1fa8f6d6
VG
169 /* group service_tree member */
170 struct rb_node rb_node;
171
172 /* group service_tree key */
173 u64 vdisktime;
25bc6b07 174 unsigned int weight;
1fa8f6d6
VG
175 bool on_st;
176
177 /* number of cfqq currently on this group */
178 int nr_cfqq;
179
58ff82f3
VG
180 /* Per group busy queus average. Useful for workload slice calc. */
181 unsigned int busy_queues_avg[2];
cdb16e8f
VG
182 /*
183 * rr lists of queues with requests, onle rr for each priority class.
184 * Counts are embedded in the cfq_rb_root
185 */
186 struct cfq_rb_root service_trees[2][3];
187 struct cfq_rb_root service_tree_idle;
dae739eb
VG
188
189 unsigned long saved_workload_slice;
190 enum wl_type_t saved_workload;
191 enum wl_prio_t saved_serving_prio;
25fb5169
VG
192 struct blkio_group blkg;
193#ifdef CONFIG_CFQ_GROUP_IOSCHED
194 struct hlist_node cfqd_node;
b1c35769 195 atomic_t ref;
25fb5169 196#endif
cdb16e8f 197};
718eee05 198
22e2c507
JA
199/*
200 * Per block device queue structure
201 */
1da177e4 202struct cfq_data {
165125e1 203 struct request_queue *queue;
1fa8f6d6
VG
204 /* Root service tree for cfq_groups */
205 struct cfq_rb_root grp_service_tree;
cdb16e8f 206 struct cfq_group root_group;
22e2c507 207
c0324a02
CZ
208 /*
209 * The priority currently being served
22e2c507 210 */
c0324a02 211 enum wl_prio_t serving_prio;
718eee05
CZ
212 enum wl_type_t serving_type;
213 unsigned long workload_expires;
cdb16e8f 214 struct cfq_group *serving_group;
8e550632 215 bool noidle_tree_requires_idle;
a36e71f9
JA
216
217 /*
218 * Each priority tree is sorted by next_request position. These
219 * trees are used when determining if two or more queues are
220 * interleaving requests (see cfq_close_cooperator).
221 */
222 struct rb_root prio_trees[CFQ_PRIO_LISTS];
223
22e2c507
JA
224 unsigned int busy_queues;
225
5ad531db 226 int rq_in_driver[2];
3ed9a296 227 int sync_flight;
45333d5a
AC
228
229 /*
230 * queue-depth detection
231 */
232 int rq_queued;
25776e35 233 int hw_tag;
e459dd08
CZ
234 /*
235 * hw_tag can be
236 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
237 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
238 * 0 => no NCQ
239 */
240 int hw_tag_est_depth;
241 unsigned int hw_tag_samples;
1da177e4 242
22e2c507
JA
243 /*
244 * idle window management
245 */
246 struct timer_list idle_slice_timer;
23e018a1 247 struct work_struct unplug_work;
1da177e4 248
22e2c507
JA
249 struct cfq_queue *active_queue;
250 struct cfq_io_context *active_cic;
22e2c507 251
c2dea2d1
VT
252 /*
253 * async queue for each priority case
254 */
255 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
256 struct cfq_queue *async_idle_cfqq;
15c31be4 257
6d048f53 258 sector_t last_position;
1da177e4 259
1da177e4
LT
260 /*
261 * tunables, see top of file
262 */
263 unsigned int cfq_quantum;
22e2c507 264 unsigned int cfq_fifo_expire[2];
1da177e4
LT
265 unsigned int cfq_back_penalty;
266 unsigned int cfq_back_max;
22e2c507
JA
267 unsigned int cfq_slice[2];
268 unsigned int cfq_slice_async_rq;
269 unsigned int cfq_slice_idle;
963b72fc 270 unsigned int cfq_latency;
ae30c286 271 unsigned int cfq_group_isolation;
d9ff4187
AV
272
273 struct list_head cic_list;
1da177e4 274
6118b70b
JA
275 /*
276 * Fallback dummy cfqq for extreme OOM conditions
277 */
278 struct cfq_queue oom_cfqq;
365722bb 279
573412b2 280 unsigned long last_delayed_sync;
25fb5169
VG
281
282 /* List of cfq groups being managed on this device*/
283 struct hlist_head cfqg_list;
bb729bc9 284 struct rcu_head rcu;
1da177e4
LT
285};
286
25fb5169
VG
287static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
288
cdb16e8f
VG
289static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
290 enum wl_prio_t prio,
65b32a57 291 enum wl_type_t type)
c0324a02 292{
1fa8f6d6
VG
293 if (!cfqg)
294 return NULL;
295
c0324a02 296 if (prio == IDLE_WORKLOAD)
cdb16e8f 297 return &cfqg->service_tree_idle;
c0324a02 298
cdb16e8f 299 return &cfqg->service_trees[prio][type];
c0324a02
CZ
300}
301
3b18152c 302enum cfqq_state_flags {
b0b8d749
JA
303 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
304 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
b029195d 305 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
b0b8d749 306 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
b0b8d749
JA
307 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
308 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
309 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
44f7c160 310 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
91fac317 311 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
b3b6d040 312 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
ae54abed 313 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
76280aff 314 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
f75edf2d 315 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
3b18152c
JA
316};
317
318#define CFQ_CFQQ_FNS(name) \
319static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
320{ \
fe094d98 321 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
3b18152c
JA
322} \
323static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
324{ \
fe094d98 325 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
3b18152c
JA
326} \
327static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
328{ \
fe094d98 329 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
3b18152c
JA
330}
331
332CFQ_CFQQ_FNS(on_rr);
333CFQ_CFQQ_FNS(wait_request);
b029195d 334CFQ_CFQQ_FNS(must_dispatch);
3b18152c 335CFQ_CFQQ_FNS(must_alloc_slice);
3b18152c
JA
336CFQ_CFQQ_FNS(fifo_expire);
337CFQ_CFQQ_FNS(idle_window);
338CFQ_CFQQ_FNS(prio_changed);
44f7c160 339CFQ_CFQQ_FNS(slice_new);
91fac317 340CFQ_CFQQ_FNS(sync);
a36e71f9 341CFQ_CFQQ_FNS(coop);
ae54abed 342CFQ_CFQQ_FNS(split_coop);
76280aff 343CFQ_CFQQ_FNS(deep);
f75edf2d 344CFQ_CFQQ_FNS(wait_busy);
3b18152c
JA
345#undef CFQ_CFQQ_FNS
346
2868ef7b
VG
347#ifdef CONFIG_DEBUG_CFQ_IOSCHED
348#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
349 blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \
350 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
351 blkg_path(&(cfqq)->cfqg->blkg), ##args);
352
353#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \
354 blk_add_trace_msg((cfqd)->queue, "%s " fmt, \
355 blkg_path(&(cfqg)->blkg), ##args); \
356
357#else
7b679138
JA
358#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
359 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
2868ef7b
VG
360#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0);
361#endif
7b679138
JA
362#define cfq_log(cfqd, fmt, args...) \
363 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
364
615f0259
VG
365/* Traverses through cfq group service trees */
366#define for_each_cfqg_st(cfqg, i, j, st) \
367 for (i = 0; i <= IDLE_WORKLOAD; i++) \
368 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
369 : &cfqg->service_tree_idle; \
370 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
371 (i == IDLE_WORKLOAD && j == 0); \
372 j++, st = i < IDLE_WORKLOAD ? \
373 &cfqg->service_trees[i][j]: NULL) \
374
375
c0324a02
CZ
376static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
377{
378 if (cfq_class_idle(cfqq))
379 return IDLE_WORKLOAD;
380 if (cfq_class_rt(cfqq))
381 return RT_WORKLOAD;
382 return BE_WORKLOAD;
383}
384
718eee05
CZ
385
386static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
387{
388 if (!cfq_cfqq_sync(cfqq))
389 return ASYNC_WORKLOAD;
390 if (!cfq_cfqq_idle_window(cfqq))
391 return SYNC_NOIDLE_WORKLOAD;
392 return SYNC_WORKLOAD;
393}
394
58ff82f3
VG
395static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
396 struct cfq_data *cfqd,
397 struct cfq_group *cfqg)
c0324a02
CZ
398{
399 if (wl == IDLE_WORKLOAD)
cdb16e8f 400 return cfqg->service_tree_idle.count;
c0324a02 401
cdb16e8f
VG
402 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
403 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
404 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
c0324a02
CZ
405}
406
f26bd1f0
VG
407static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
408 struct cfq_group *cfqg)
409{
410 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count
411 + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
412}
413
165125e1 414static void cfq_dispatch_insert(struct request_queue *, struct request *);
a6151c3a 415static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
fd0928df 416 struct io_context *, gfp_t);
4ac845a2 417static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
91fac317
VT
418 struct io_context *);
419
5ad531db
JA
420static inline int rq_in_driver(struct cfq_data *cfqd)
421{
422 return cfqd->rq_in_driver[0] + cfqd->rq_in_driver[1];
423}
424
91fac317 425static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
a6151c3a 426 bool is_sync)
91fac317 427{
a6151c3a 428 return cic->cfqq[is_sync];
91fac317
VT
429}
430
431static inline void cic_set_cfqq(struct cfq_io_context *cic,
a6151c3a 432 struct cfq_queue *cfqq, bool is_sync)
91fac317 433{
a6151c3a 434 cic->cfqq[is_sync] = cfqq;
91fac317
VT
435}
436
437/*
438 * We regard a request as SYNC, if it's either a read or has the SYNC bit
439 * set (in which case it could also be direct WRITE).
440 */
a6151c3a 441static inline bool cfq_bio_sync(struct bio *bio)
91fac317 442{
a6151c3a 443 return bio_data_dir(bio) == READ || bio_rw_flagged(bio, BIO_RW_SYNCIO);
91fac317 444}
1da177e4 445
99f95e52
AM
446/*
447 * scheduler run of queue, if there are requests pending and no one in the
448 * driver that will restart queueing
449 */
23e018a1 450static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
99f95e52 451{
7b679138
JA
452 if (cfqd->busy_queues) {
453 cfq_log(cfqd, "schedule dispatch");
23e018a1 454 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
7b679138 455 }
99f95e52
AM
456}
457
165125e1 458static int cfq_queue_empty(struct request_queue *q)
99f95e52
AM
459{
460 struct cfq_data *cfqd = q->elevator->elevator_data;
461
f04a6424 462 return !cfqd->rq_queued;
99f95e52
AM
463}
464
44f7c160
JA
465/*
466 * Scale schedule slice based on io priority. Use the sync time slice only
467 * if a queue is marked sync and has sync io queued. A sync queue with async
468 * io only, should not get full sync slice length.
469 */
a6151c3a 470static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
d9e7620e 471 unsigned short prio)
44f7c160 472{
d9e7620e 473 const int base_slice = cfqd->cfq_slice[sync];
44f7c160 474
d9e7620e
JA
475 WARN_ON(prio >= IOPRIO_BE_NR);
476
477 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
478}
44f7c160 479
d9e7620e
JA
480static inline int
481cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
482{
483 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
44f7c160
JA
484}
485
25bc6b07
VG
486static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
487{
488 u64 d = delta << CFQ_SERVICE_SHIFT;
489
490 d = d * BLKIO_WEIGHT_DEFAULT;
491 do_div(d, cfqg->weight);
492 return d;
493}
494
495static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
496{
497 s64 delta = (s64)(vdisktime - min_vdisktime);
498 if (delta > 0)
499 min_vdisktime = vdisktime;
500
501 return min_vdisktime;
502}
503
504static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
505{
506 s64 delta = (s64)(vdisktime - min_vdisktime);
507 if (delta < 0)
508 min_vdisktime = vdisktime;
509
510 return min_vdisktime;
511}
512
513static void update_min_vdisktime(struct cfq_rb_root *st)
514{
515 u64 vdisktime = st->min_vdisktime;
516 struct cfq_group *cfqg;
517
518 if (st->active) {
519 cfqg = rb_entry_cfqg(st->active);
520 vdisktime = cfqg->vdisktime;
521 }
522
523 if (st->left) {
524 cfqg = rb_entry_cfqg(st->left);
525 vdisktime = min_vdisktime(vdisktime, cfqg->vdisktime);
526 }
527
528 st->min_vdisktime = max_vdisktime(st->min_vdisktime, vdisktime);
529}
530
5db5d642
CZ
531/*
532 * get averaged number of queues of RT/BE priority.
533 * average is updated, with a formula that gives more weight to higher numbers,
534 * to quickly follows sudden increases and decrease slowly
535 */
536
58ff82f3
VG
537static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
538 struct cfq_group *cfqg, bool rt)
5869619c 539{
5db5d642
CZ
540 unsigned min_q, max_q;
541 unsigned mult = cfq_hist_divisor - 1;
542 unsigned round = cfq_hist_divisor / 2;
58ff82f3 543 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
5db5d642 544
58ff82f3
VG
545 min_q = min(cfqg->busy_queues_avg[rt], busy);
546 max_q = max(cfqg->busy_queues_avg[rt], busy);
547 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
5db5d642 548 cfq_hist_divisor;
58ff82f3
VG
549 return cfqg->busy_queues_avg[rt];
550}
551
552static inline unsigned
553cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
554{
555 struct cfq_rb_root *st = &cfqd->grp_service_tree;
556
557 return cfq_target_latency * cfqg->weight / st->total_weight;
5db5d642
CZ
558}
559
44f7c160
JA
560static inline void
561cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
562{
5db5d642
CZ
563 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
564 if (cfqd->cfq_latency) {
58ff82f3
VG
565 /*
566 * interested queues (we consider only the ones with the same
567 * priority class in the cfq group)
568 */
569 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
570 cfq_class_rt(cfqq));
5db5d642
CZ
571 unsigned sync_slice = cfqd->cfq_slice[1];
572 unsigned expect_latency = sync_slice * iq;
58ff82f3
VG
573 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
574
575 if (expect_latency > group_slice) {
5db5d642
CZ
576 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
577 /* scale low_slice according to IO priority
578 * and sync vs async */
579 unsigned low_slice =
580 min(slice, base_low_slice * slice / sync_slice);
581 /* the adapted slice value is scaled to fit all iqs
582 * into the target latency */
58ff82f3 583 slice = max(slice * group_slice / expect_latency,
5db5d642
CZ
584 low_slice);
585 }
586 }
dae739eb 587 cfqq->slice_start = jiffies;
5db5d642 588 cfqq->slice_end = jiffies + slice;
f75edf2d 589 cfqq->allocated_slice = slice;
7b679138 590 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
44f7c160
JA
591}
592
593/*
594 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
595 * isn't valid until the first request from the dispatch is activated
596 * and the slice time set.
597 */
a6151c3a 598static inline bool cfq_slice_used(struct cfq_queue *cfqq)
44f7c160
JA
599{
600 if (cfq_cfqq_slice_new(cfqq))
601 return 0;
602 if (time_before(jiffies, cfqq->slice_end))
603 return 0;
604
605 return 1;
606}
607
1da177e4 608/*
5e705374 609 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
1da177e4 610 * We choose the request that is closest to the head right now. Distance
e8a99053 611 * behind the head is penalized and only allowed to a certain extent.
1da177e4 612 */
5e705374 613static struct request *
cf7c25cf 614cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
1da177e4 615{
cf7c25cf 616 sector_t s1, s2, d1 = 0, d2 = 0;
1da177e4 617 unsigned long back_max;
e8a99053
AM
618#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
619#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
620 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
1da177e4 621
5e705374
JA
622 if (rq1 == NULL || rq1 == rq2)
623 return rq2;
624 if (rq2 == NULL)
625 return rq1;
9c2c38a1 626
5e705374
JA
627 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
628 return rq1;
629 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
630 return rq2;
374f84ac
JA
631 if (rq_is_meta(rq1) && !rq_is_meta(rq2))
632 return rq1;
633 else if (rq_is_meta(rq2) && !rq_is_meta(rq1))
634 return rq2;
1da177e4 635
83096ebf
TH
636 s1 = blk_rq_pos(rq1);
637 s2 = blk_rq_pos(rq2);
1da177e4 638
1da177e4
LT
639 /*
640 * by definition, 1KiB is 2 sectors
641 */
642 back_max = cfqd->cfq_back_max * 2;
643
644 /*
645 * Strict one way elevator _except_ in the case where we allow
646 * short backward seeks which are biased as twice the cost of a
647 * similar forward seek.
648 */
649 if (s1 >= last)
650 d1 = s1 - last;
651 else if (s1 + back_max >= last)
652 d1 = (last - s1) * cfqd->cfq_back_penalty;
653 else
e8a99053 654 wrap |= CFQ_RQ1_WRAP;
1da177e4
LT
655
656 if (s2 >= last)
657 d2 = s2 - last;
658 else if (s2 + back_max >= last)
659 d2 = (last - s2) * cfqd->cfq_back_penalty;
660 else
e8a99053 661 wrap |= CFQ_RQ2_WRAP;
1da177e4
LT
662
663 /* Found required data */
e8a99053
AM
664
665 /*
666 * By doing switch() on the bit mask "wrap" we avoid having to
667 * check two variables for all permutations: --> faster!
668 */
669 switch (wrap) {
5e705374 670 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
e8a99053 671 if (d1 < d2)
5e705374 672 return rq1;
e8a99053 673 else if (d2 < d1)
5e705374 674 return rq2;
e8a99053
AM
675 else {
676 if (s1 >= s2)
5e705374 677 return rq1;
e8a99053 678 else
5e705374 679 return rq2;
e8a99053 680 }
1da177e4 681
e8a99053 682 case CFQ_RQ2_WRAP:
5e705374 683 return rq1;
e8a99053 684 case CFQ_RQ1_WRAP:
5e705374
JA
685 return rq2;
686 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
e8a99053
AM
687 default:
688 /*
689 * Since both rqs are wrapped,
690 * start with the one that's further behind head
691 * (--> only *one* back seek required),
692 * since back seek takes more time than forward.
693 */
694 if (s1 <= s2)
5e705374 695 return rq1;
1da177e4 696 else
5e705374 697 return rq2;
1da177e4
LT
698 }
699}
700
498d3aa2
JA
701/*
702 * The below is leftmost cache rbtree addon
703 */
0871714e 704static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
cc09e299 705{
615f0259
VG
706 /* Service tree is empty */
707 if (!root->count)
708 return NULL;
709
cc09e299
JA
710 if (!root->left)
711 root->left = rb_first(&root->rb);
712
0871714e
JA
713 if (root->left)
714 return rb_entry(root->left, struct cfq_queue, rb_node);
715
716 return NULL;
cc09e299
JA
717}
718
1fa8f6d6
VG
719static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
720{
721 if (!root->left)
722 root->left = rb_first(&root->rb);
723
724 if (root->left)
725 return rb_entry_cfqg(root->left);
726
727 return NULL;
728}
729
a36e71f9
JA
730static void rb_erase_init(struct rb_node *n, struct rb_root *root)
731{
732 rb_erase(n, root);
733 RB_CLEAR_NODE(n);
734}
735
cc09e299
JA
736static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
737{
738 if (root->left == n)
739 root->left = NULL;
a36e71f9 740 rb_erase_init(n, &root->rb);
aa6f6a3d 741 --root->count;
cc09e299
JA
742}
743
1da177e4
LT
744/*
745 * would be nice to take fifo expire time into account as well
746 */
5e705374
JA
747static struct request *
748cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
749 struct request *last)
1da177e4 750{
21183b07
JA
751 struct rb_node *rbnext = rb_next(&last->rb_node);
752 struct rb_node *rbprev = rb_prev(&last->rb_node);
5e705374 753 struct request *next = NULL, *prev = NULL;
1da177e4 754
21183b07 755 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
1da177e4
LT
756
757 if (rbprev)
5e705374 758 prev = rb_entry_rq(rbprev);
1da177e4 759
21183b07 760 if (rbnext)
5e705374 761 next = rb_entry_rq(rbnext);
21183b07
JA
762 else {
763 rbnext = rb_first(&cfqq->sort_list);
764 if (rbnext && rbnext != &last->rb_node)
5e705374 765 next = rb_entry_rq(rbnext);
21183b07 766 }
1da177e4 767
cf7c25cf 768 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
1da177e4
LT
769}
770
d9e7620e
JA
771static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
772 struct cfq_queue *cfqq)
1da177e4 773{
d9e7620e
JA
774 /*
775 * just an approximation, should be ok.
776 */
cdb16e8f 777 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
464191c6 778 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
d9e7620e
JA
779}
780
1fa8f6d6
VG
781static inline s64
782cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
783{
784 return cfqg->vdisktime - st->min_vdisktime;
785}
786
787static void
788__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
789{
790 struct rb_node **node = &st->rb.rb_node;
791 struct rb_node *parent = NULL;
792 struct cfq_group *__cfqg;
793 s64 key = cfqg_key(st, cfqg);
794 int left = 1;
795
796 while (*node != NULL) {
797 parent = *node;
798 __cfqg = rb_entry_cfqg(parent);
799
800 if (key < cfqg_key(st, __cfqg))
801 node = &parent->rb_left;
802 else {
803 node = &parent->rb_right;
804 left = 0;
805 }
806 }
807
808 if (left)
809 st->left = &cfqg->rb_node;
810
811 rb_link_node(&cfqg->rb_node, parent, node);
812 rb_insert_color(&cfqg->rb_node, &st->rb);
813}
814
815static void
816cfq_group_service_tree_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
817{
818 struct cfq_rb_root *st = &cfqd->grp_service_tree;
819 struct cfq_group *__cfqg;
820 struct rb_node *n;
821
822 cfqg->nr_cfqq++;
823 if (cfqg->on_st)
824 return;
825
826 /*
827 * Currently put the group at the end. Later implement something
828 * so that groups get lesser vtime based on their weights, so that
829 * if group does not loose all if it was not continously backlogged.
830 */
831 n = rb_last(&st->rb);
832 if (n) {
833 __cfqg = rb_entry_cfqg(n);
834 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
835 } else
836 cfqg->vdisktime = st->min_vdisktime;
837
838 __cfq_group_service_tree_add(st, cfqg);
839 cfqg->on_st = true;
58ff82f3 840 st->total_weight += cfqg->weight;
1fa8f6d6
VG
841}
842
843static void
844cfq_group_service_tree_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
845{
846 struct cfq_rb_root *st = &cfqd->grp_service_tree;
847
25bc6b07
VG
848 if (st->active == &cfqg->rb_node)
849 st->active = NULL;
850
1fa8f6d6
VG
851 BUG_ON(cfqg->nr_cfqq < 1);
852 cfqg->nr_cfqq--;
25bc6b07 853
1fa8f6d6
VG
854 /* If there are other cfq queues under this group, don't delete it */
855 if (cfqg->nr_cfqq)
856 return;
857
2868ef7b 858 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
1fa8f6d6 859 cfqg->on_st = false;
58ff82f3 860 st->total_weight -= cfqg->weight;
1fa8f6d6
VG
861 if (!RB_EMPTY_NODE(&cfqg->rb_node))
862 cfq_rb_erase(&cfqg->rb_node, st);
dae739eb 863 cfqg->saved_workload_slice = 0;
22084190 864 blkiocg_update_blkio_group_dequeue_stats(&cfqg->blkg, 1);
dae739eb
VG
865}
866
867static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq)
868{
f75edf2d 869 unsigned int slice_used;
dae739eb
VG
870
871 /*
872 * Queue got expired before even a single request completed or
873 * got expired immediately after first request completion.
874 */
875 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
876 /*
877 * Also charge the seek time incurred to the group, otherwise
878 * if there are mutiple queues in the group, each can dispatch
879 * a single request on seeky media and cause lots of seek time
880 * and group will never know it.
881 */
882 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
883 1);
884 } else {
885 slice_used = jiffies - cfqq->slice_start;
f75edf2d
VG
886 if (slice_used > cfqq->allocated_slice)
887 slice_used = cfqq->allocated_slice;
dae739eb
VG
888 }
889
22084190
VG
890 cfq_log_cfqq(cfqq->cfqd, cfqq, "sl_used=%u sect=%lu", slice_used,
891 cfqq->nr_sectors);
dae739eb
VG
892 return slice_used;
893}
894
895static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
896 struct cfq_queue *cfqq)
897{
898 struct cfq_rb_root *st = &cfqd->grp_service_tree;
f26bd1f0
VG
899 unsigned int used_sl, charge_sl;
900 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
901 - cfqg->service_tree_idle.count;
902
903 BUG_ON(nr_sync < 0);
904 used_sl = charge_sl = cfq_cfqq_slice_usage(cfqq);
dae739eb 905
f26bd1f0
VG
906 if (!cfq_cfqq_sync(cfqq) && !nr_sync)
907 charge_sl = cfqq->allocated_slice;
dae739eb
VG
908
909 /* Can't update vdisktime while group is on service tree */
910 cfq_rb_erase(&cfqg->rb_node, st);
f26bd1f0 911 cfqg->vdisktime += cfq_scale_slice(charge_sl, cfqg);
dae739eb
VG
912 __cfq_group_service_tree_add(st, cfqg);
913
914 /* This group is being expired. Save the context */
915 if (time_after(cfqd->workload_expires, jiffies)) {
916 cfqg->saved_workload_slice = cfqd->workload_expires
917 - jiffies;
918 cfqg->saved_workload = cfqd->serving_type;
919 cfqg->saved_serving_prio = cfqd->serving_prio;
920 } else
921 cfqg->saved_workload_slice = 0;
2868ef7b
VG
922
923 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
924 st->min_vdisktime);
22084190
VG
925 blkiocg_update_blkio_group_stats(&cfqg->blkg, used_sl,
926 cfqq->nr_sectors);
1fa8f6d6
VG
927}
928
25fb5169
VG
929#ifdef CONFIG_CFQ_GROUP_IOSCHED
930static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg)
931{
932 if (blkg)
933 return container_of(blkg, struct cfq_group, blkg);
934 return NULL;
935}
936
f8d461d6
VG
937void
938cfq_update_blkio_group_weight(struct blkio_group *blkg, unsigned int weight)
939{
940 cfqg_of_blkg(blkg)->weight = weight;
941}
942
25fb5169
VG
943static struct cfq_group *
944cfq_find_alloc_cfqg(struct cfq_data *cfqd, struct cgroup *cgroup, int create)
945{
946 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup);
947 struct cfq_group *cfqg = NULL;
948 void *key = cfqd;
949 int i, j;
950 struct cfq_rb_root *st;
22084190
VG
951 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
952 unsigned int major, minor;
25fb5169
VG
953
954 /* Do we need to take this reference */
9d6a986c 955 if (!blkiocg_css_tryget(blkcg))
25fb5169
VG
956 return NULL;;
957
958 cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key));
959 if (cfqg || !create)
960 goto done;
961
962 cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
963 if (!cfqg)
964 goto done;
965
966 cfqg->weight = blkcg->weight;
967 for_each_cfqg_st(cfqg, i, j, st)
968 *st = CFQ_RB_ROOT;
969 RB_CLEAR_NODE(&cfqg->rb_node);
970
b1c35769
VG
971 /*
972 * Take the initial reference that will be released on destroy
973 * This can be thought of a joint reference by cgroup and
974 * elevator which will be dropped by either elevator exit
975 * or cgroup deletion path depending on who is exiting first.
976 */
977 atomic_set(&cfqg->ref, 1);
978
25fb5169 979 /* Add group onto cgroup list */
22084190
VG
980 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
981 blkiocg_add_blkio_group(blkcg, &cfqg->blkg, (void *)cfqd,
982 MKDEV(major, minor));
25fb5169
VG
983
984 /* Add group on cfqd list */
985 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
986
987done:
9d6a986c 988 blkiocg_css_put(blkcg);
25fb5169
VG
989 return cfqg;
990}
991
992/*
993 * Search for the cfq group current task belongs to. If create = 1, then also
994 * create the cfq group if it does not exist. request_queue lock must be held.
995 */
996static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
997{
998 struct cgroup *cgroup;
999 struct cfq_group *cfqg = NULL;
1000
1001 rcu_read_lock();
1002 cgroup = task_cgroup(current, blkio_subsys_id);
1003 cfqg = cfq_find_alloc_cfqg(cfqd, cgroup, create);
1004 if (!cfqg && create)
1005 cfqg = &cfqd->root_group;
1006 rcu_read_unlock();
1007 return cfqg;
1008}
1009
1010static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1011{
1012 /* Currently, all async queues are mapped to root group */
1013 if (!cfq_cfqq_sync(cfqq))
1014 cfqg = &cfqq->cfqd->root_group;
1015
1016 cfqq->cfqg = cfqg;
b1c35769
VG
1017 /* cfqq reference on cfqg */
1018 atomic_inc(&cfqq->cfqg->ref);
1019}
1020
1021static void cfq_put_cfqg(struct cfq_group *cfqg)
1022{
1023 struct cfq_rb_root *st;
1024 int i, j;
1025
1026 BUG_ON(atomic_read(&cfqg->ref) <= 0);
1027 if (!atomic_dec_and_test(&cfqg->ref))
1028 return;
1029 for_each_cfqg_st(cfqg, i, j, st)
1030 BUG_ON(!RB_EMPTY_ROOT(&st->rb) || st->active != NULL);
1031 kfree(cfqg);
1032}
1033
1034static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1035{
1036 /* Something wrong if we are trying to remove same group twice */
1037 BUG_ON(hlist_unhashed(&cfqg->cfqd_node));
1038
1039 hlist_del_init(&cfqg->cfqd_node);
1040
1041 /*
1042 * Put the reference taken at the time of creation so that when all
1043 * queues are gone, group can be destroyed.
1044 */
1045 cfq_put_cfqg(cfqg);
1046}
1047
1048static void cfq_release_cfq_groups(struct cfq_data *cfqd)
1049{
1050 struct hlist_node *pos, *n;
1051 struct cfq_group *cfqg;
1052
1053 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1054 /*
1055 * If cgroup removal path got to blk_group first and removed
1056 * it from cgroup list, then it will take care of destroying
1057 * cfqg also.
1058 */
1059 if (!blkiocg_del_blkio_group(&cfqg->blkg))
1060 cfq_destroy_cfqg(cfqd, cfqg);
1061 }
25fb5169 1062}
b1c35769
VG
1063
1064/*
1065 * Blk cgroup controller notification saying that blkio_group object is being
1066 * delinked as associated cgroup object is going away. That also means that
1067 * no new IO will come in this group. So get rid of this group as soon as
1068 * any pending IO in the group is finished.
1069 *
1070 * This function is called under rcu_read_lock(). key is the rcu protected
1071 * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu
1072 * read lock.
1073 *
1074 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
1075 * it should not be NULL as even if elevator was exiting, cgroup deltion
1076 * path got to it first.
1077 */
1078void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
1079{
1080 unsigned long flags;
1081 struct cfq_data *cfqd = key;
1082
1083 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1084 cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg));
1085 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1086}
1087
25fb5169
VG
1088#else /* GROUP_IOSCHED */
1089static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
1090{
1091 return &cfqd->root_group;
1092}
1093static inline void
1094cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1095 cfqq->cfqg = cfqg;
1096}
1097
b1c35769
VG
1098static void cfq_release_cfq_groups(struct cfq_data *cfqd) {}
1099static inline void cfq_put_cfqg(struct cfq_group *cfqg) {}
1100
25fb5169
VG
1101#endif /* GROUP_IOSCHED */
1102
498d3aa2 1103/*
c0324a02 1104 * The cfqd->service_trees holds all pending cfq_queue's that have
498d3aa2
JA
1105 * requests waiting to be processed. It is sorted in the order that
1106 * we will service the queues.
1107 */
a36e71f9 1108static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
a6151c3a 1109 bool add_front)
d9e7620e 1110{
0871714e
JA
1111 struct rb_node **p, *parent;
1112 struct cfq_queue *__cfqq;
d9e7620e 1113 unsigned long rb_key;
c0324a02 1114 struct cfq_rb_root *service_tree;
498d3aa2 1115 int left;
dae739eb 1116 int new_cfqq = 1;
ae30c286
VG
1117 int group_changed = 0;
1118
1119#ifdef CONFIG_CFQ_GROUP_IOSCHED
1120 if (!cfqd->cfq_group_isolation
1121 && cfqq_type(cfqq) == SYNC_NOIDLE_WORKLOAD
1122 && cfqq->cfqg && cfqq->cfqg != &cfqd->root_group) {
1123 /* Move this cfq to root group */
1124 cfq_log_cfqq(cfqd, cfqq, "moving to root group");
1125 if (!RB_EMPTY_NODE(&cfqq->rb_node))
1126 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
1127 cfqq->orig_cfqg = cfqq->cfqg;
1128 cfqq->cfqg = &cfqd->root_group;
1129 atomic_inc(&cfqd->root_group.ref);
1130 group_changed = 1;
1131 } else if (!cfqd->cfq_group_isolation
1132 && cfqq_type(cfqq) == SYNC_WORKLOAD && cfqq->orig_cfqg) {
1133 /* cfqq is sequential now needs to go to its original group */
1134 BUG_ON(cfqq->cfqg != &cfqd->root_group);
1135 if (!RB_EMPTY_NODE(&cfqq->rb_node))
1136 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
1137 cfq_put_cfqg(cfqq->cfqg);
1138 cfqq->cfqg = cfqq->orig_cfqg;
1139 cfqq->orig_cfqg = NULL;
1140 group_changed = 1;
1141 cfq_log_cfqq(cfqd, cfqq, "moved to origin group");
1142 }
1143#endif
d9e7620e 1144
cdb16e8f 1145 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
65b32a57 1146 cfqq_type(cfqq));
0871714e
JA
1147 if (cfq_class_idle(cfqq)) {
1148 rb_key = CFQ_IDLE_DELAY;
aa6f6a3d 1149 parent = rb_last(&service_tree->rb);
0871714e
JA
1150 if (parent && parent != &cfqq->rb_node) {
1151 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1152 rb_key += __cfqq->rb_key;
1153 } else
1154 rb_key += jiffies;
1155 } else if (!add_front) {
b9c8946b
JA
1156 /*
1157 * Get our rb key offset. Subtract any residual slice
1158 * value carried from last service. A negative resid
1159 * count indicates slice overrun, and this should position
1160 * the next service time further away in the tree.
1161 */
edd75ffd 1162 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
b9c8946b 1163 rb_key -= cfqq->slice_resid;
edd75ffd 1164 cfqq->slice_resid = 0;
48e025e6
CZ
1165 } else {
1166 rb_key = -HZ;
aa6f6a3d 1167 __cfqq = cfq_rb_first(service_tree);
48e025e6
CZ
1168 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1169 }
1da177e4 1170
d9e7620e 1171 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
dae739eb 1172 new_cfqq = 0;
99f9628a 1173 /*
d9e7620e 1174 * same position, nothing more to do
99f9628a 1175 */
c0324a02
CZ
1176 if (rb_key == cfqq->rb_key &&
1177 cfqq->service_tree == service_tree)
d9e7620e 1178 return;
1da177e4 1179
aa6f6a3d
CZ
1180 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1181 cfqq->service_tree = NULL;
1da177e4 1182 }
d9e7620e 1183
498d3aa2 1184 left = 1;
0871714e 1185 parent = NULL;
aa6f6a3d
CZ
1186 cfqq->service_tree = service_tree;
1187 p = &service_tree->rb.rb_node;
d9e7620e 1188 while (*p) {
67060e37 1189 struct rb_node **n;
cc09e299 1190
d9e7620e
JA
1191 parent = *p;
1192 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1193
0c534e0a 1194 /*
c0324a02 1195 * sort by key, that represents service time.
0c534e0a 1196 */
c0324a02 1197 if (time_before(rb_key, __cfqq->rb_key))
67060e37 1198 n = &(*p)->rb_left;
c0324a02 1199 else {
67060e37 1200 n = &(*p)->rb_right;
cc09e299 1201 left = 0;
c0324a02 1202 }
67060e37
JA
1203
1204 p = n;
d9e7620e
JA
1205 }
1206
cc09e299 1207 if (left)
aa6f6a3d 1208 service_tree->left = &cfqq->rb_node;
cc09e299 1209
d9e7620e
JA
1210 cfqq->rb_key = rb_key;
1211 rb_link_node(&cfqq->rb_node, parent, p);
aa6f6a3d
CZ
1212 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1213 service_tree->count++;
ae30c286 1214 if ((add_front || !new_cfqq) && !group_changed)
dae739eb 1215 return;
1fa8f6d6 1216 cfq_group_service_tree_add(cfqd, cfqq->cfqg);
1da177e4
LT
1217}
1218
a36e71f9 1219static struct cfq_queue *
f2d1f0ae
JA
1220cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1221 sector_t sector, struct rb_node **ret_parent,
1222 struct rb_node ***rb_link)
a36e71f9 1223{
a36e71f9
JA
1224 struct rb_node **p, *parent;
1225 struct cfq_queue *cfqq = NULL;
1226
1227 parent = NULL;
1228 p = &root->rb_node;
1229 while (*p) {
1230 struct rb_node **n;
1231
1232 parent = *p;
1233 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1234
1235 /*
1236 * Sort strictly based on sector. Smallest to the left,
1237 * largest to the right.
1238 */
2e46e8b2 1239 if (sector > blk_rq_pos(cfqq->next_rq))
a36e71f9 1240 n = &(*p)->rb_right;
2e46e8b2 1241 else if (sector < blk_rq_pos(cfqq->next_rq))
a36e71f9
JA
1242 n = &(*p)->rb_left;
1243 else
1244 break;
1245 p = n;
3ac6c9f8 1246 cfqq = NULL;
a36e71f9
JA
1247 }
1248
1249 *ret_parent = parent;
1250 if (rb_link)
1251 *rb_link = p;
3ac6c9f8 1252 return cfqq;
a36e71f9
JA
1253}
1254
1255static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1256{
a36e71f9
JA
1257 struct rb_node **p, *parent;
1258 struct cfq_queue *__cfqq;
1259
f2d1f0ae
JA
1260 if (cfqq->p_root) {
1261 rb_erase(&cfqq->p_node, cfqq->p_root);
1262 cfqq->p_root = NULL;
1263 }
a36e71f9
JA
1264
1265 if (cfq_class_idle(cfqq))
1266 return;
1267 if (!cfqq->next_rq)
1268 return;
1269
f2d1f0ae 1270 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
2e46e8b2
TH
1271 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1272 blk_rq_pos(cfqq->next_rq), &parent, &p);
3ac6c9f8
JA
1273 if (!__cfqq) {
1274 rb_link_node(&cfqq->p_node, parent, p);
f2d1f0ae
JA
1275 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1276 } else
1277 cfqq->p_root = NULL;
a36e71f9
JA
1278}
1279
498d3aa2
JA
1280/*
1281 * Update cfqq's position in the service tree.
1282 */
edd75ffd 1283static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
6d048f53 1284{
6d048f53
JA
1285 /*
1286 * Resorting requires the cfqq to be on the RR list already.
1287 */
a36e71f9 1288 if (cfq_cfqq_on_rr(cfqq)) {
edd75ffd 1289 cfq_service_tree_add(cfqd, cfqq, 0);
a36e71f9
JA
1290 cfq_prio_tree_add(cfqd, cfqq);
1291 }
6d048f53
JA
1292}
1293
1da177e4
LT
1294/*
1295 * add to busy list of queues for service, trying to be fair in ordering
22e2c507 1296 * the pending list according to last request service
1da177e4 1297 */
febffd61 1298static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1da177e4 1299{
7b679138 1300 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
3b18152c
JA
1301 BUG_ON(cfq_cfqq_on_rr(cfqq));
1302 cfq_mark_cfqq_on_rr(cfqq);
1da177e4
LT
1303 cfqd->busy_queues++;
1304
edd75ffd 1305 cfq_resort_rr_list(cfqd, cfqq);
1da177e4
LT
1306}
1307
498d3aa2
JA
1308/*
1309 * Called when the cfqq no longer has requests pending, remove it from
1310 * the service tree.
1311 */
febffd61 1312static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1da177e4 1313{
7b679138 1314 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
3b18152c
JA
1315 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1316 cfq_clear_cfqq_on_rr(cfqq);
1da177e4 1317
aa6f6a3d
CZ
1318 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1319 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1320 cfqq->service_tree = NULL;
1321 }
f2d1f0ae
JA
1322 if (cfqq->p_root) {
1323 rb_erase(&cfqq->p_node, cfqq->p_root);
1324 cfqq->p_root = NULL;
1325 }
d9e7620e 1326
1fa8f6d6 1327 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
1da177e4
LT
1328 BUG_ON(!cfqd->busy_queues);
1329 cfqd->busy_queues--;
1330}
1331
1332/*
1333 * rb tree support functions
1334 */
febffd61 1335static void cfq_del_rq_rb(struct request *rq)
1da177e4 1336{
5e705374 1337 struct cfq_queue *cfqq = RQ_CFQQ(rq);
5e705374 1338 const int sync = rq_is_sync(rq);
1da177e4 1339
b4878f24
JA
1340 BUG_ON(!cfqq->queued[sync]);
1341 cfqq->queued[sync]--;
1da177e4 1342
5e705374 1343 elv_rb_del(&cfqq->sort_list, rq);
1da177e4 1344
f04a6424
VG
1345 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1346 /*
1347 * Queue will be deleted from service tree when we actually
1348 * expire it later. Right now just remove it from prio tree
1349 * as it is empty.
1350 */
1351 if (cfqq->p_root) {
1352 rb_erase(&cfqq->p_node, cfqq->p_root);
1353 cfqq->p_root = NULL;
1354 }
1355 }
1da177e4
LT
1356}
1357
5e705374 1358static void cfq_add_rq_rb(struct request *rq)
1da177e4 1359{
5e705374 1360 struct cfq_queue *cfqq = RQ_CFQQ(rq);
1da177e4 1361 struct cfq_data *cfqd = cfqq->cfqd;
a36e71f9 1362 struct request *__alias, *prev;
1da177e4 1363
5380a101 1364 cfqq->queued[rq_is_sync(rq)]++;
1da177e4
LT
1365
1366 /*
1367 * looks a little odd, but the first insert might return an alias.
1368 * if that happens, put the alias on the dispatch list
1369 */
21183b07 1370 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
5e705374 1371 cfq_dispatch_insert(cfqd->queue, __alias);
5fccbf61
JA
1372
1373 if (!cfq_cfqq_on_rr(cfqq))
1374 cfq_add_cfqq_rr(cfqd, cfqq);
5044eed4
JA
1375
1376 /*
1377 * check if this request is a better next-serve candidate
1378 */
a36e71f9 1379 prev = cfqq->next_rq;
cf7c25cf 1380 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
a36e71f9
JA
1381
1382 /*
1383 * adjust priority tree position, if ->next_rq changes
1384 */
1385 if (prev != cfqq->next_rq)
1386 cfq_prio_tree_add(cfqd, cfqq);
1387
5044eed4 1388 BUG_ON(!cfqq->next_rq);
1da177e4
LT
1389}
1390
febffd61 1391static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
1da177e4 1392{
5380a101
JA
1393 elv_rb_del(&cfqq->sort_list, rq);
1394 cfqq->queued[rq_is_sync(rq)]--;
5e705374 1395 cfq_add_rq_rb(rq);
1da177e4
LT
1396}
1397
206dc69b
JA
1398static struct request *
1399cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
1da177e4 1400{
206dc69b 1401 struct task_struct *tsk = current;
91fac317 1402 struct cfq_io_context *cic;
206dc69b 1403 struct cfq_queue *cfqq;
1da177e4 1404
4ac845a2 1405 cic = cfq_cic_lookup(cfqd, tsk->io_context);
91fac317
VT
1406 if (!cic)
1407 return NULL;
1408
1409 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
89850f7e
JA
1410 if (cfqq) {
1411 sector_t sector = bio->bi_sector + bio_sectors(bio);
1412
21183b07 1413 return elv_rb_find(&cfqq->sort_list, sector);
89850f7e 1414 }
1da177e4 1415
1da177e4
LT
1416 return NULL;
1417}
1418
165125e1 1419static void cfq_activate_request(struct request_queue *q, struct request *rq)
1da177e4 1420{
22e2c507 1421 struct cfq_data *cfqd = q->elevator->elevator_data;
3b18152c 1422
5ad531db 1423 cfqd->rq_in_driver[rq_is_sync(rq)]++;
7b679138 1424 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
5ad531db 1425 rq_in_driver(cfqd));
25776e35 1426
5b93629b 1427 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
1da177e4
LT
1428}
1429
165125e1 1430static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
1da177e4 1431{
b4878f24 1432 struct cfq_data *cfqd = q->elevator->elevator_data;
5ad531db 1433 const int sync = rq_is_sync(rq);
b4878f24 1434
5ad531db
JA
1435 WARN_ON(!cfqd->rq_in_driver[sync]);
1436 cfqd->rq_in_driver[sync]--;
7b679138 1437 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
5ad531db 1438 rq_in_driver(cfqd));
1da177e4
LT
1439}
1440
b4878f24 1441static void cfq_remove_request(struct request *rq)
1da177e4 1442{
5e705374 1443 struct cfq_queue *cfqq = RQ_CFQQ(rq);
21183b07 1444
5e705374
JA
1445 if (cfqq->next_rq == rq)
1446 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
1da177e4 1447
b4878f24 1448 list_del_init(&rq->queuelist);
5e705374 1449 cfq_del_rq_rb(rq);
374f84ac 1450
45333d5a 1451 cfqq->cfqd->rq_queued--;
374f84ac
JA
1452 if (rq_is_meta(rq)) {
1453 WARN_ON(!cfqq->meta_pending);
1454 cfqq->meta_pending--;
1455 }
1da177e4
LT
1456}
1457
165125e1
JA
1458static int cfq_merge(struct request_queue *q, struct request **req,
1459 struct bio *bio)
1da177e4
LT
1460{
1461 struct cfq_data *cfqd = q->elevator->elevator_data;
1462 struct request *__rq;
1da177e4 1463
206dc69b 1464 __rq = cfq_find_rq_fmerge(cfqd, bio);
22e2c507 1465 if (__rq && elv_rq_merge_ok(__rq, bio)) {
9817064b
JA
1466 *req = __rq;
1467 return ELEVATOR_FRONT_MERGE;
1da177e4
LT
1468 }
1469
1470 return ELEVATOR_NO_MERGE;
1da177e4
LT
1471}
1472
165125e1 1473static void cfq_merged_request(struct request_queue *q, struct request *req,
21183b07 1474 int type)
1da177e4 1475{
21183b07 1476 if (type == ELEVATOR_FRONT_MERGE) {
5e705374 1477 struct cfq_queue *cfqq = RQ_CFQQ(req);
1da177e4 1478
5e705374 1479 cfq_reposition_rq_rb(cfqq, req);
1da177e4 1480 }
1da177e4
LT
1481}
1482
1483static void
165125e1 1484cfq_merged_requests(struct request_queue *q, struct request *rq,
1da177e4
LT
1485 struct request *next)
1486{
cf7c25cf 1487 struct cfq_queue *cfqq = RQ_CFQQ(rq);
22e2c507
JA
1488 /*
1489 * reposition in fifo if next is older than rq
1490 */
1491 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
30996f40 1492 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
22e2c507 1493 list_move(&rq->queuelist, &next->queuelist);
30996f40
JA
1494 rq_set_fifo_time(rq, rq_fifo_time(next));
1495 }
22e2c507 1496
cf7c25cf
CZ
1497 if (cfqq->next_rq == next)
1498 cfqq->next_rq = rq;
b4878f24 1499 cfq_remove_request(next);
22e2c507
JA
1500}
1501
165125e1 1502static int cfq_allow_merge(struct request_queue *q, struct request *rq,
da775265
JA
1503 struct bio *bio)
1504{
1505 struct cfq_data *cfqd = q->elevator->elevator_data;
91fac317 1506 struct cfq_io_context *cic;
da775265 1507 struct cfq_queue *cfqq;
da775265
JA
1508
1509 /*
ec8acb69 1510 * Disallow merge of a sync bio into an async request.
da775265 1511 */
91fac317 1512 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
a6151c3a 1513 return false;
da775265
JA
1514
1515 /*
719d3402
JA
1516 * Lookup the cfqq that this bio will be queued with. Allow
1517 * merge only if rq is queued there.
da775265 1518 */
4ac845a2 1519 cic = cfq_cic_lookup(cfqd, current->io_context);
91fac317 1520 if (!cic)
a6151c3a 1521 return false;
719d3402 1522
91fac317 1523 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
a6151c3a 1524 return cfqq == RQ_CFQQ(rq);
da775265
JA
1525}
1526
febffd61
JA
1527static void __cfq_set_active_queue(struct cfq_data *cfqd,
1528 struct cfq_queue *cfqq)
22e2c507
JA
1529{
1530 if (cfqq) {
7b679138 1531 cfq_log_cfqq(cfqd, cfqq, "set_active");
dae739eb
VG
1532 cfqq->slice_start = 0;
1533 cfqq->dispatch_start = jiffies;
f75edf2d 1534 cfqq->allocated_slice = 0;
22e2c507 1535 cfqq->slice_end = 0;
2f5cb738 1536 cfqq->slice_dispatch = 0;
22084190 1537 cfqq->nr_sectors = 0;
2f5cb738 1538
2f5cb738 1539 cfq_clear_cfqq_wait_request(cfqq);
b029195d 1540 cfq_clear_cfqq_must_dispatch(cfqq);
3b18152c
JA
1541 cfq_clear_cfqq_must_alloc_slice(cfqq);
1542 cfq_clear_cfqq_fifo_expire(cfqq);
44f7c160 1543 cfq_mark_cfqq_slice_new(cfqq);
2f5cb738
JA
1544
1545 del_timer(&cfqd->idle_slice_timer);
22e2c507
JA
1546 }
1547
1548 cfqd->active_queue = cfqq;
1549}
1550
7b14e3b5
JA
1551/*
1552 * current cfqq expired its slice (or was too idle), select new one
1553 */
1554static void
1555__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
a6151c3a 1556 bool timed_out)
7b14e3b5 1557{
7b679138
JA
1558 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1559
7b14e3b5
JA
1560 if (cfq_cfqq_wait_request(cfqq))
1561 del_timer(&cfqd->idle_slice_timer);
1562
7b14e3b5 1563 cfq_clear_cfqq_wait_request(cfqq);
f75edf2d 1564 cfq_clear_cfqq_wait_busy(cfqq);
7b14e3b5 1565
ae54abed
SL
1566 /*
1567 * If this cfqq is shared between multiple processes, check to
1568 * make sure that those processes are still issuing I/Os within
1569 * the mean seek distance. If not, it may be time to break the
1570 * queues apart again.
1571 */
1572 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
1573 cfq_mark_cfqq_split_coop(cfqq);
1574
7b14e3b5 1575 /*
6084cdda 1576 * store what was left of this slice, if the queue idled/timed out
7b14e3b5 1577 */
7b679138 1578 if (timed_out && !cfq_cfqq_slice_new(cfqq)) {
c5b680f3 1579 cfqq->slice_resid = cfqq->slice_end - jiffies;
7b679138
JA
1580 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1581 }
7b14e3b5 1582
dae739eb
VG
1583 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
1584
f04a6424
VG
1585 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1586 cfq_del_cfqq_rr(cfqd, cfqq);
1587
edd75ffd 1588 cfq_resort_rr_list(cfqd, cfqq);
7b14e3b5
JA
1589
1590 if (cfqq == cfqd->active_queue)
1591 cfqd->active_queue = NULL;
1592
dae739eb
VG
1593 if (&cfqq->cfqg->rb_node == cfqd->grp_service_tree.active)
1594 cfqd->grp_service_tree.active = NULL;
1595
7b14e3b5
JA
1596 if (cfqd->active_cic) {
1597 put_io_context(cfqd->active_cic->ioc);
1598 cfqd->active_cic = NULL;
1599 }
7b14e3b5
JA
1600}
1601
a6151c3a 1602static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
7b14e3b5
JA
1603{
1604 struct cfq_queue *cfqq = cfqd->active_queue;
1605
1606 if (cfqq)
6084cdda 1607 __cfq_slice_expired(cfqd, cfqq, timed_out);
7b14e3b5
JA
1608}
1609
498d3aa2
JA
1610/*
1611 * Get next queue for service. Unless we have a queue preemption,
1612 * we'll simply select the first cfqq in the service tree.
1613 */
6d048f53 1614static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
22e2c507 1615{
c0324a02 1616 struct cfq_rb_root *service_tree =
cdb16e8f 1617 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
65b32a57 1618 cfqd->serving_type);
d9e7620e 1619
f04a6424
VG
1620 if (!cfqd->rq_queued)
1621 return NULL;
1622
1fa8f6d6
VG
1623 /* There is nothing to dispatch */
1624 if (!service_tree)
1625 return NULL;
c0324a02
CZ
1626 if (RB_EMPTY_ROOT(&service_tree->rb))
1627 return NULL;
1628 return cfq_rb_first(service_tree);
6d048f53
JA
1629}
1630
f04a6424
VG
1631static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1632{
25fb5169 1633 struct cfq_group *cfqg;
f04a6424
VG
1634 struct cfq_queue *cfqq;
1635 int i, j;
1636 struct cfq_rb_root *st;
1637
1638 if (!cfqd->rq_queued)
1639 return NULL;
1640
25fb5169
VG
1641 cfqg = cfq_get_next_cfqg(cfqd);
1642 if (!cfqg)
1643 return NULL;
1644
f04a6424
VG
1645 for_each_cfqg_st(cfqg, i, j, st)
1646 if ((cfqq = cfq_rb_first(st)) != NULL)
1647 return cfqq;
1648 return NULL;
1649}
1650
498d3aa2
JA
1651/*
1652 * Get and set a new active queue for service.
1653 */
a36e71f9
JA
1654static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1655 struct cfq_queue *cfqq)
6d048f53 1656{
e00ef799 1657 if (!cfqq)
a36e71f9 1658 cfqq = cfq_get_next_queue(cfqd);
6d048f53 1659
22e2c507 1660 __cfq_set_active_queue(cfqd, cfqq);
3b18152c 1661 return cfqq;
22e2c507
JA
1662}
1663
d9e7620e
JA
1664static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1665 struct request *rq)
1666{
83096ebf
TH
1667 if (blk_rq_pos(rq) >= cfqd->last_position)
1668 return blk_rq_pos(rq) - cfqd->last_position;
d9e7620e 1669 else
83096ebf 1670 return cfqd->last_position - blk_rq_pos(rq);
d9e7620e
JA
1671}
1672
b2c18e1e 1673static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
2f7a2d89 1674 struct request *rq, bool for_preempt)
6d048f53 1675{
b2c18e1e 1676 sector_t sdist = cfqq->seek_mean;
6d048f53 1677
b2c18e1e
JM
1678 if (!sample_valid(cfqq->seek_samples))
1679 sdist = CFQQ_SEEK_THR;
6d048f53 1680
2f7a2d89
SL
1681 /* if seek_mean is big, using it as close criteria is meaningless */
1682 if (sdist > CFQQ_SEEK_THR && !for_preempt)
1683 sdist = CFQQ_SEEK_THR;
1684
04dc6e71 1685 return cfq_dist_from_last(cfqd, rq) <= sdist;
6d048f53
JA
1686}
1687
a36e71f9
JA
1688static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1689 struct cfq_queue *cur_cfqq)
1690{
f2d1f0ae 1691 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
a36e71f9
JA
1692 struct rb_node *parent, *node;
1693 struct cfq_queue *__cfqq;
1694 sector_t sector = cfqd->last_position;
1695
1696 if (RB_EMPTY_ROOT(root))
1697 return NULL;
1698
1699 /*
1700 * First, if we find a request starting at the end of the last
1701 * request, choose it.
1702 */
f2d1f0ae 1703 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
a36e71f9
JA
1704 if (__cfqq)
1705 return __cfqq;
1706
1707 /*
1708 * If the exact sector wasn't found, the parent of the NULL leaf
1709 * will contain the closest sector.
1710 */
1711 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
2f7a2d89 1712 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq, false))
a36e71f9
JA
1713 return __cfqq;
1714
2e46e8b2 1715 if (blk_rq_pos(__cfqq->next_rq) < sector)
a36e71f9
JA
1716 node = rb_next(&__cfqq->p_node);
1717 else
1718 node = rb_prev(&__cfqq->p_node);
1719 if (!node)
1720 return NULL;
1721
1722 __cfqq = rb_entry(node, struct cfq_queue, p_node);
2f7a2d89 1723 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq, false))
a36e71f9
JA
1724 return __cfqq;
1725
1726 return NULL;
1727}
1728
1729/*
1730 * cfqd - obvious
1731 * cur_cfqq - passed in so that we don't decide that the current queue is
1732 * closely cooperating with itself.
1733 *
1734 * So, basically we're assuming that that cur_cfqq has dispatched at least
1735 * one request, and that cfqd->last_position reflects a position on the disk
1736 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1737 * assumption.
1738 */
1739static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
b3b6d040 1740 struct cfq_queue *cur_cfqq)
6d048f53 1741{
a36e71f9
JA
1742 struct cfq_queue *cfqq;
1743
e6c5bc73
JM
1744 if (!cfq_cfqq_sync(cur_cfqq))
1745 return NULL;
1746 if (CFQQ_SEEKY(cur_cfqq))
1747 return NULL;
1748
b9d8f4c7
GJ
1749 /*
1750 * Don't search priority tree if it's the only queue in the group.
1751 */
1752 if (cur_cfqq->cfqg->nr_cfqq == 1)
1753 return NULL;
1754
6d048f53 1755 /*
d9e7620e
JA
1756 * We should notice if some of the queues are cooperating, eg
1757 * working closely on the same area of the disk. In that case,
1758 * we can group them together and don't waste time idling.
6d048f53 1759 */
a36e71f9
JA
1760 cfqq = cfqq_close(cfqd, cur_cfqq);
1761 if (!cfqq)
1762 return NULL;
1763
8682e1f1
VG
1764 /* If new queue belongs to different cfq_group, don't choose it */
1765 if (cur_cfqq->cfqg != cfqq->cfqg)
1766 return NULL;
1767
df5fe3e8
JM
1768 /*
1769 * It only makes sense to merge sync queues.
1770 */
1771 if (!cfq_cfqq_sync(cfqq))
1772 return NULL;
e6c5bc73
JM
1773 if (CFQQ_SEEKY(cfqq))
1774 return NULL;
df5fe3e8 1775
c0324a02
CZ
1776 /*
1777 * Do not merge queues of different priority classes
1778 */
1779 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1780 return NULL;
1781
a36e71f9 1782 return cfqq;
6d048f53
JA
1783}
1784
a6d44e98
CZ
1785/*
1786 * Determine whether we should enforce idle window for this queue.
1787 */
1788
1789static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1790{
1791 enum wl_prio_t prio = cfqq_prio(cfqq);
718eee05 1792 struct cfq_rb_root *service_tree = cfqq->service_tree;
a6d44e98 1793
f04a6424
VG
1794 BUG_ON(!service_tree);
1795 BUG_ON(!service_tree->count);
1796
a6d44e98
CZ
1797 /* We never do for idle class queues. */
1798 if (prio == IDLE_WORKLOAD)
1799 return false;
1800
1801 /* We do for queues that were marked with idle window flag. */
3c764b7a
SL
1802 if (cfq_cfqq_idle_window(cfqq) &&
1803 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
a6d44e98
CZ
1804 return true;
1805
1806 /*
1807 * Otherwise, we do only if they are the last ones
1808 * in their service tree.
1809 */
1efe8fe1 1810 return service_tree->count == 1 && cfq_cfqq_sync(cfqq);
a6d44e98
CZ
1811}
1812
6d048f53 1813static void cfq_arm_slice_timer(struct cfq_data *cfqd)
22e2c507 1814{
1792669c 1815 struct cfq_queue *cfqq = cfqd->active_queue;
206dc69b 1816 struct cfq_io_context *cic;
7b14e3b5
JA
1817 unsigned long sl;
1818
a68bbddb 1819 /*
f7d7b7a7
JA
1820 * SSD device without seek penalty, disable idling. But only do so
1821 * for devices that support queuing, otherwise we still have a problem
1822 * with sync vs async workloads.
a68bbddb 1823 */
f7d7b7a7 1824 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
a68bbddb
JA
1825 return;
1826
dd67d051 1827 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
6d048f53 1828 WARN_ON(cfq_cfqq_slice_new(cfqq));
22e2c507
JA
1829
1830 /*
1831 * idle is disabled, either manually or by past process history
1832 */
a6d44e98 1833 if (!cfqd->cfq_slice_idle || !cfq_should_idle(cfqd, cfqq))
6d048f53
JA
1834 return;
1835
7b679138 1836 /*
8e550632 1837 * still active requests from this queue, don't idle
7b679138 1838 */
8e550632 1839 if (cfqq->dispatched)
7b679138
JA
1840 return;
1841
22e2c507
JA
1842 /*
1843 * task has exited, don't wait
1844 */
206dc69b 1845 cic = cfqd->active_cic;
66dac98e 1846 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
6d048f53
JA
1847 return;
1848
355b659c
CZ
1849 /*
1850 * If our average think time is larger than the remaining time
1851 * slice, then don't idle. This avoids overrunning the allotted
1852 * time slice.
1853 */
1854 if (sample_valid(cic->ttime_samples) &&
1855 (cfqq->slice_end - jiffies < cic->ttime_mean))
1856 return;
1857
3b18152c 1858 cfq_mark_cfqq_wait_request(cfqq);
22e2c507 1859
6d048f53 1860 sl = cfqd->cfq_slice_idle;
206dc69b 1861
7b14e3b5 1862 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
9481ffdc 1863 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl);
1da177e4
LT
1864}
1865
498d3aa2
JA
1866/*
1867 * Move request from internal lists to the request queue dispatch list.
1868 */
165125e1 1869static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
1da177e4 1870{
3ed9a296 1871 struct cfq_data *cfqd = q->elevator->elevator_data;
5e705374 1872 struct cfq_queue *cfqq = RQ_CFQQ(rq);
22e2c507 1873
7b679138
JA
1874 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
1875
06d21886 1876 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
5380a101 1877 cfq_remove_request(rq);
6d048f53 1878 cfqq->dispatched++;
5380a101 1879 elv_dispatch_sort(q, rq);
3ed9a296
JA
1880
1881 if (cfq_cfqq_sync(cfqq))
1882 cfqd->sync_flight++;
22084190 1883 cfqq->nr_sectors += blk_rq_sectors(rq);
1da177e4
LT
1884}
1885
1886/*
1887 * return expired entry, or NULL to just start from scratch in rbtree
1888 */
febffd61 1889static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
1da177e4 1890{
30996f40 1891 struct request *rq = NULL;
1da177e4 1892
3b18152c 1893 if (cfq_cfqq_fifo_expire(cfqq))
1da177e4 1894 return NULL;
cb887411
JA
1895
1896 cfq_mark_cfqq_fifo_expire(cfqq);
1897
89850f7e
JA
1898 if (list_empty(&cfqq->fifo))
1899 return NULL;
1da177e4 1900
89850f7e 1901 rq = rq_entry_fifo(cfqq->fifo.next);
30996f40 1902 if (time_before(jiffies, rq_fifo_time(rq)))
7b679138 1903 rq = NULL;
1da177e4 1904
30996f40 1905 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
6d048f53 1906 return rq;
1da177e4
LT
1907}
1908
22e2c507
JA
1909static inline int
1910cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1911{
1912 const int base_rq = cfqd->cfq_slice_async_rq;
1da177e4 1913
22e2c507 1914 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1da177e4 1915
22e2c507 1916 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
1da177e4
LT
1917}
1918
df5fe3e8
JM
1919/*
1920 * Must be called with the queue_lock held.
1921 */
1922static int cfqq_process_refs(struct cfq_queue *cfqq)
1923{
1924 int process_refs, io_refs;
1925
1926 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
1927 process_refs = atomic_read(&cfqq->ref) - io_refs;
1928 BUG_ON(process_refs < 0);
1929 return process_refs;
1930}
1931
1932static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
1933{
e6c5bc73 1934 int process_refs, new_process_refs;
df5fe3e8
JM
1935 struct cfq_queue *__cfqq;
1936
1937 /* Avoid a circular list and skip interim queue merges */
1938 while ((__cfqq = new_cfqq->new_cfqq)) {
1939 if (__cfqq == cfqq)
1940 return;
1941 new_cfqq = __cfqq;
1942 }
1943
1944 process_refs = cfqq_process_refs(cfqq);
1945 /*
1946 * If the process for the cfqq has gone away, there is no
1947 * sense in merging the queues.
1948 */
1949 if (process_refs == 0)
1950 return;
1951
e6c5bc73
JM
1952 /*
1953 * Merge in the direction of the lesser amount of work.
1954 */
1955 new_process_refs = cfqq_process_refs(new_cfqq);
1956 if (new_process_refs >= process_refs) {
1957 cfqq->new_cfqq = new_cfqq;
1958 atomic_add(process_refs, &new_cfqq->ref);
1959 } else {
1960 new_cfqq->new_cfqq = cfqq;
1961 atomic_add(new_process_refs, &cfqq->ref);
1962 }
df5fe3e8
JM
1963}
1964
cdb16e8f 1965static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
65b32a57 1966 struct cfq_group *cfqg, enum wl_prio_t prio)
718eee05
CZ
1967{
1968 struct cfq_queue *queue;
1969 int i;
1970 bool key_valid = false;
1971 unsigned long lowest_key = 0;
1972 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
1973
65b32a57
VG
1974 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
1975 /* select the one with lowest rb_key */
1976 queue = cfq_rb_first(service_tree_for(cfqg, prio, i));
718eee05
CZ
1977 if (queue &&
1978 (!key_valid || time_before(queue->rb_key, lowest_key))) {
1979 lowest_key = queue->rb_key;
1980 cur_best = i;
1981 key_valid = true;
1982 }
1983 }
1984
1985 return cur_best;
1986}
1987
cdb16e8f 1988static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
718eee05 1989{
718eee05
CZ
1990 unsigned slice;
1991 unsigned count;
cdb16e8f 1992 struct cfq_rb_root *st;
58ff82f3 1993 unsigned group_slice;
718eee05 1994
1fa8f6d6
VG
1995 if (!cfqg) {
1996 cfqd->serving_prio = IDLE_WORKLOAD;
1997 cfqd->workload_expires = jiffies + 1;
1998 return;
1999 }
2000
718eee05 2001 /* Choose next priority. RT > BE > IDLE */
58ff82f3 2002 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
718eee05 2003 cfqd->serving_prio = RT_WORKLOAD;
58ff82f3 2004 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
718eee05
CZ
2005 cfqd->serving_prio = BE_WORKLOAD;
2006 else {
2007 cfqd->serving_prio = IDLE_WORKLOAD;
2008 cfqd->workload_expires = jiffies + 1;
2009 return;
2010 }
2011
2012 /*
2013 * For RT and BE, we have to choose also the type
2014 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2015 * expiration time
2016 */
65b32a57 2017 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
cdb16e8f 2018 count = st->count;
718eee05
CZ
2019
2020 /*
65b32a57 2021 * check workload expiration, and that we still have other queues ready
718eee05 2022 */
65b32a57 2023 if (count && !time_after(jiffies, cfqd->workload_expires))
718eee05
CZ
2024 return;
2025
2026 /* otherwise select new workload type */
2027 cfqd->serving_type =
65b32a57
VG
2028 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio);
2029 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
cdb16e8f 2030 count = st->count;
718eee05
CZ
2031
2032 /*
2033 * the workload slice is computed as a fraction of target latency
2034 * proportional to the number of queues in that workload, over
2035 * all the queues in the same priority class
2036 */
58ff82f3
VG
2037 group_slice = cfq_group_slice(cfqd, cfqg);
2038
2039 slice = group_slice * count /
2040 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2041 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
718eee05 2042
f26bd1f0
VG
2043 if (cfqd->serving_type == ASYNC_WORKLOAD) {
2044 unsigned int tmp;
2045
2046 /*
2047 * Async queues are currently system wide. Just taking
2048 * proportion of queues with-in same group will lead to higher
2049 * async ratio system wide as generally root group is going
2050 * to have higher weight. A more accurate thing would be to
2051 * calculate system wide asnc/sync ratio.
2052 */
2053 tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg);
2054 tmp = tmp/cfqd->busy_queues;
2055 slice = min_t(unsigned, slice, tmp);
2056
718eee05
CZ
2057 /* async workload slice is scaled down according to
2058 * the sync/async slice ratio. */
2059 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
f26bd1f0 2060 } else
718eee05
CZ
2061 /* sync workload slice is at least 2 * cfq_slice_idle */
2062 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2063
2064 slice = max_t(unsigned, slice, CFQ_MIN_TT);
2065 cfqd->workload_expires = jiffies + slice;
8e550632 2066 cfqd->noidle_tree_requires_idle = false;
718eee05
CZ
2067}
2068
1fa8f6d6
VG
2069static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2070{
2071 struct cfq_rb_root *st = &cfqd->grp_service_tree;
25bc6b07 2072 struct cfq_group *cfqg;
1fa8f6d6
VG
2073
2074 if (RB_EMPTY_ROOT(&st->rb))
2075 return NULL;
25bc6b07
VG
2076 cfqg = cfq_rb_first_group(st);
2077 st->active = &cfqg->rb_node;
2078 update_min_vdisktime(st);
2079 return cfqg;
1fa8f6d6
VG
2080}
2081
cdb16e8f
VG
2082static void cfq_choose_cfqg(struct cfq_data *cfqd)
2083{
1fa8f6d6
VG
2084 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2085
2086 cfqd->serving_group = cfqg;
dae739eb
VG
2087
2088 /* Restore the workload type data */
2089 if (cfqg->saved_workload_slice) {
2090 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2091 cfqd->serving_type = cfqg->saved_workload;
2092 cfqd->serving_prio = cfqg->saved_serving_prio;
66ae2919
GJ
2093 } else
2094 cfqd->workload_expires = jiffies - 1;
2095
1fa8f6d6 2096 choose_service_tree(cfqd, cfqg);
cdb16e8f
VG
2097}
2098
22e2c507 2099/*
498d3aa2
JA
2100 * Select a queue for service. If we have a current active queue,
2101 * check whether to continue servicing it, or retrieve and set a new one.
22e2c507 2102 */
1b5ed5e1 2103static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
1da177e4 2104{
a36e71f9 2105 struct cfq_queue *cfqq, *new_cfqq = NULL;
1da177e4 2106
22e2c507
JA
2107 cfqq = cfqd->active_queue;
2108 if (!cfqq)
2109 goto new_queue;
1da177e4 2110
f04a6424
VG
2111 if (!cfqd->rq_queued)
2112 return NULL;
c244bb50
VG
2113
2114 /*
2115 * We were waiting for group to get backlogged. Expire the queue
2116 */
2117 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2118 goto expire;
2119
22e2c507 2120 /*
6d048f53 2121 * The active queue has run out of time, expire it and select new.
22e2c507 2122 */
7667aa06
VG
2123 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2124 /*
2125 * If slice had not expired at the completion of last request
2126 * we might not have turned on wait_busy flag. Don't expire
2127 * the queue yet. Allow the group to get backlogged.
2128 *
2129 * The very fact that we have used the slice, that means we
2130 * have been idling all along on this queue and it should be
2131 * ok to wait for this request to complete.
2132 */
82bbbf28
VG
2133 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2134 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2135 cfqq = NULL;
7667aa06 2136 goto keep_queue;
82bbbf28 2137 } else
7667aa06
VG
2138 goto expire;
2139 }
1da177e4 2140
22e2c507 2141 /*
6d048f53
JA
2142 * The active queue has requests and isn't expired, allow it to
2143 * dispatch.
22e2c507 2144 */
dd67d051 2145 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
22e2c507 2146 goto keep_queue;
6d048f53 2147
a36e71f9
JA
2148 /*
2149 * If another queue has a request waiting within our mean seek
2150 * distance, let it run. The expire code will check for close
2151 * cooperators and put the close queue at the front of the service
df5fe3e8 2152 * tree. If possible, merge the expiring queue with the new cfqq.
a36e71f9 2153 */
b3b6d040 2154 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
df5fe3e8
JM
2155 if (new_cfqq) {
2156 if (!cfqq->new_cfqq)
2157 cfq_setup_merge(cfqq, new_cfqq);
a36e71f9 2158 goto expire;
df5fe3e8 2159 }
a36e71f9 2160
6d048f53
JA
2161 /*
2162 * No requests pending. If the active queue still has requests in
2163 * flight or is idling for a new request, allow either of these
2164 * conditions to happen (or time out) before selecting a new queue.
2165 */
cc197479 2166 if (timer_pending(&cfqd->idle_slice_timer) ||
a6d44e98 2167 (cfqq->dispatched && cfq_should_idle(cfqd, cfqq))) {
caaa5f9f
JA
2168 cfqq = NULL;
2169 goto keep_queue;
22e2c507
JA
2170 }
2171
3b18152c 2172expire:
6084cdda 2173 cfq_slice_expired(cfqd, 0);
3b18152c 2174new_queue:
718eee05
CZ
2175 /*
2176 * Current queue expired. Check if we have to switch to a new
2177 * service tree
2178 */
2179 if (!new_cfqq)
cdb16e8f 2180 cfq_choose_cfqg(cfqd);
718eee05 2181
a36e71f9 2182 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
22e2c507 2183keep_queue:
3b18152c 2184 return cfqq;
22e2c507
JA
2185}
2186
febffd61 2187static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
d9e7620e
JA
2188{
2189 int dispatched = 0;
2190
2191 while (cfqq->next_rq) {
2192 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2193 dispatched++;
2194 }
2195
2196 BUG_ON(!list_empty(&cfqq->fifo));
f04a6424
VG
2197
2198 /* By default cfqq is not expired if it is empty. Do it explicitly */
2199 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
d9e7620e
JA
2200 return dispatched;
2201}
2202
498d3aa2
JA
2203/*
2204 * Drain our current requests. Used for barriers and when switching
2205 * io schedulers on-the-fly.
2206 */
d9e7620e 2207static int cfq_forced_dispatch(struct cfq_data *cfqd)
1b5ed5e1 2208{
0871714e 2209 struct cfq_queue *cfqq;
d9e7620e 2210 int dispatched = 0;
cdb16e8f 2211
f04a6424
VG
2212 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL)
2213 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
1b5ed5e1 2214
6084cdda 2215 cfq_slice_expired(cfqd, 0);
1b5ed5e1
TH
2216 BUG_ON(cfqd->busy_queues);
2217
6923715a 2218 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
1b5ed5e1
TH
2219 return dispatched;
2220}
2221
0b182d61 2222static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2f5cb738 2223{
2f5cb738 2224 unsigned int max_dispatch;
22e2c507 2225
5ad531db
JA
2226 /*
2227 * Drain async requests before we start sync IO
2228 */
a6d44e98 2229 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_driver[BLK_RW_ASYNC])
0b182d61 2230 return false;
5ad531db 2231
2f5cb738
JA
2232 /*
2233 * If this is an async queue and we have sync IO in flight, let it wait
2234 */
2235 if (cfqd->sync_flight && !cfq_cfqq_sync(cfqq))
0b182d61 2236 return false;
2f5cb738
JA
2237
2238 max_dispatch = cfqd->cfq_quantum;
2239 if (cfq_class_idle(cfqq))
2240 max_dispatch = 1;
b4878f24 2241
2f5cb738
JA
2242 /*
2243 * Does this cfqq already have too much IO in flight?
2244 */
2245 if (cfqq->dispatched >= max_dispatch) {
2246 /*
2247 * idle queue must always only have a single IO in flight
2248 */
3ed9a296 2249 if (cfq_class_idle(cfqq))
0b182d61 2250 return false;
3ed9a296 2251
2f5cb738
JA
2252 /*
2253 * We have other queues, don't allow more IO from this one
2254 */
2255 if (cfqd->busy_queues > 1)
0b182d61 2256 return false;
9ede209e 2257
365722bb 2258 /*
474b18cc 2259 * Sole queue user, no limit
365722bb 2260 */
474b18cc 2261 max_dispatch = -1;
8e296755
JA
2262 }
2263
2264 /*
2265 * Async queues must wait a bit before being allowed dispatch.
2266 * We also ramp up the dispatch depth gradually for async IO,
2267 * based on the last sync IO we serviced
2268 */
963b72fc 2269 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
573412b2 2270 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
8e296755 2271 unsigned int depth;
365722bb 2272
61f0c1dc 2273 depth = last_sync / cfqd->cfq_slice[1];
e00c54c3
JA
2274 if (!depth && !cfqq->dispatched)
2275 depth = 1;
8e296755
JA
2276 if (depth < max_dispatch)
2277 max_dispatch = depth;
2f5cb738 2278 }
3ed9a296 2279
0b182d61
JA
2280 /*
2281 * If we're below the current max, allow a dispatch
2282 */
2283 return cfqq->dispatched < max_dispatch;
2284}
2285
2286/*
2287 * Dispatch a request from cfqq, moving them to the request queue
2288 * dispatch list.
2289 */
2290static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2291{
2292 struct request *rq;
2293
2294 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2295
2296 if (!cfq_may_dispatch(cfqd, cfqq))
2297 return false;
2298
2299 /*
2300 * follow expired path, else get first next available
2301 */
2302 rq = cfq_check_fifo(cfqq);
2303 if (!rq)
2304 rq = cfqq->next_rq;
2305
2306 /*
2307 * insert request into driver dispatch list
2308 */
2309 cfq_dispatch_insert(cfqd->queue, rq);
2310
2311 if (!cfqd->active_cic) {
2312 struct cfq_io_context *cic = RQ_CIC(rq);
2313
2314 atomic_long_inc(&cic->ioc->refcount);
2315 cfqd->active_cic = cic;
2316 }
2317
2318 return true;
2319}
2320
2321/*
2322 * Find the cfqq that we need to service and move a request from that to the
2323 * dispatch list
2324 */
2325static int cfq_dispatch_requests(struct request_queue *q, int force)
2326{
2327 struct cfq_data *cfqd = q->elevator->elevator_data;
2328 struct cfq_queue *cfqq;
2329
2330 if (!cfqd->busy_queues)
2331 return 0;
2332
2333 if (unlikely(force))
2334 return cfq_forced_dispatch(cfqd);
2335
2336 cfqq = cfq_select_queue(cfqd);
2337 if (!cfqq)
8e296755
JA
2338 return 0;
2339
2f5cb738 2340 /*
0b182d61 2341 * Dispatch a request from this cfqq, if it is allowed
2f5cb738 2342 */
0b182d61
JA
2343 if (!cfq_dispatch_request(cfqd, cfqq))
2344 return 0;
2345
2f5cb738 2346 cfqq->slice_dispatch++;
b029195d 2347 cfq_clear_cfqq_must_dispatch(cfqq);
22e2c507 2348
2f5cb738
JA
2349 /*
2350 * expire an async queue immediately if it has used up its slice. idle
2351 * queue always expire after 1 dispatch round.
2352 */
2353 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2354 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2355 cfq_class_idle(cfqq))) {
2356 cfqq->slice_end = jiffies + 1;
2357 cfq_slice_expired(cfqd, 0);
1da177e4
LT
2358 }
2359
b217a903 2360 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
2f5cb738 2361 return 1;
1da177e4
LT
2362}
2363
1da177e4 2364/*
5e705374
JA
2365 * task holds one reference to the queue, dropped when task exits. each rq
2366 * in-flight on this queue also holds a reference, dropped when rq is freed.
1da177e4 2367 *
b1c35769 2368 * Each cfq queue took a reference on the parent group. Drop it now.
1da177e4
LT
2369 * queue lock must be held here.
2370 */
2371static void cfq_put_queue(struct cfq_queue *cfqq)
2372{
22e2c507 2373 struct cfq_data *cfqd = cfqq->cfqd;
878eaddd 2374 struct cfq_group *cfqg, *orig_cfqg;
22e2c507
JA
2375
2376 BUG_ON(atomic_read(&cfqq->ref) <= 0);
1da177e4
LT
2377
2378 if (!atomic_dec_and_test(&cfqq->ref))
2379 return;
2380
7b679138 2381 cfq_log_cfqq(cfqd, cfqq, "put_queue");
1da177e4 2382 BUG_ON(rb_first(&cfqq->sort_list));
22e2c507 2383 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
b1c35769 2384 cfqg = cfqq->cfqg;
878eaddd 2385 orig_cfqg = cfqq->orig_cfqg;
1da177e4 2386
28f95cbc 2387 if (unlikely(cfqd->active_queue == cfqq)) {
6084cdda 2388 __cfq_slice_expired(cfqd, cfqq, 0);
23e018a1 2389 cfq_schedule_dispatch(cfqd);
28f95cbc 2390 }
22e2c507 2391
f04a6424 2392 BUG_ON(cfq_cfqq_on_rr(cfqq));
1da177e4 2393 kmem_cache_free(cfq_pool, cfqq);
b1c35769 2394 cfq_put_cfqg(cfqg);
878eaddd
VG
2395 if (orig_cfqg)
2396 cfq_put_cfqg(orig_cfqg);
1da177e4
LT
2397}
2398
d6de8be7
JA
2399/*
2400 * Must always be called with the rcu_read_lock() held
2401 */
07416d29
JA
2402static void
2403__call_for_each_cic(struct io_context *ioc,
2404 void (*func)(struct io_context *, struct cfq_io_context *))
2405{
2406 struct cfq_io_context *cic;
2407 struct hlist_node *n;
2408
2409 hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list)
2410 func(ioc, cic);
2411}
2412
4ac845a2 2413/*
34e6bbf2 2414 * Call func for each cic attached to this ioc.
4ac845a2 2415 */
34e6bbf2 2416static void
4ac845a2
JA
2417call_for_each_cic(struct io_context *ioc,
2418 void (*func)(struct io_context *, struct cfq_io_context *))
1da177e4 2419{
4ac845a2 2420 rcu_read_lock();
07416d29 2421 __call_for_each_cic(ioc, func);
4ac845a2 2422 rcu_read_unlock();
34e6bbf2
FC
2423}
2424
2425static void cfq_cic_free_rcu(struct rcu_head *head)
2426{
2427 struct cfq_io_context *cic;
2428
2429 cic = container_of(head, struct cfq_io_context, rcu_head);
2430
2431 kmem_cache_free(cfq_ioc_pool, cic);
245b2e70 2432 elv_ioc_count_dec(cfq_ioc_count);
34e6bbf2 2433
9a11b4ed
JA
2434 if (ioc_gone) {
2435 /*
2436 * CFQ scheduler is exiting, grab exit lock and check
2437 * the pending io context count. If it hits zero,
2438 * complete ioc_gone and set it back to NULL
2439 */
2440 spin_lock(&ioc_gone_lock);
245b2e70 2441 if (ioc_gone && !elv_ioc_count_read(cfq_ioc_count)) {
9a11b4ed
JA
2442 complete(ioc_gone);
2443 ioc_gone = NULL;
2444 }
2445 spin_unlock(&ioc_gone_lock);
2446 }
34e6bbf2 2447}
4ac845a2 2448
34e6bbf2
FC
2449static void cfq_cic_free(struct cfq_io_context *cic)
2450{
2451 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
4ac845a2
JA
2452}
2453
2454static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic)
2455{
2456 unsigned long flags;
2457
2458 BUG_ON(!cic->dead_key);
2459
2460 spin_lock_irqsave(&ioc->lock, flags);
2461 radix_tree_delete(&ioc->radix_root, cic->dead_key);
ffc4e759 2462 hlist_del_rcu(&cic->cic_list);
4ac845a2
JA
2463 spin_unlock_irqrestore(&ioc->lock, flags);
2464
34e6bbf2 2465 cfq_cic_free(cic);
4ac845a2
JA
2466}
2467
d6de8be7
JA
2468/*
2469 * Must be called with rcu_read_lock() held or preemption otherwise disabled.
2470 * Only two callers of this - ->dtor() which is called with the rcu_read_lock(),
2471 * and ->trim() which is called with the task lock held
2472 */
4ac845a2
JA
2473static void cfq_free_io_context(struct io_context *ioc)
2474{
4ac845a2 2475 /*
34e6bbf2
FC
2476 * ioc->refcount is zero here, or we are called from elv_unregister(),
2477 * so no more cic's are allowed to be linked into this ioc. So it
2478 * should be ok to iterate over the known list, we will see all cic's
2479 * since no new ones are added.
4ac845a2 2480 */
07416d29 2481 __call_for_each_cic(ioc, cic_free_func);
1da177e4
LT
2482}
2483
89850f7e 2484static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1da177e4 2485{
df5fe3e8
JM
2486 struct cfq_queue *__cfqq, *next;
2487
28f95cbc 2488 if (unlikely(cfqq == cfqd->active_queue)) {
6084cdda 2489 __cfq_slice_expired(cfqd, cfqq, 0);
23e018a1 2490 cfq_schedule_dispatch(cfqd);
28f95cbc 2491 }
22e2c507 2492
df5fe3e8
JM
2493 /*
2494 * If this queue was scheduled to merge with another queue, be
2495 * sure to drop the reference taken on that queue (and others in
2496 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2497 */
2498 __cfqq = cfqq->new_cfqq;
2499 while (__cfqq) {
2500 if (__cfqq == cfqq) {
2501 WARN(1, "cfqq->new_cfqq loop detected\n");
2502 break;
2503 }
2504 next = __cfqq->new_cfqq;
2505 cfq_put_queue(__cfqq);
2506 __cfqq = next;
2507 }
2508
89850f7e
JA
2509 cfq_put_queue(cfqq);
2510}
22e2c507 2511
89850f7e
JA
2512static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
2513 struct cfq_io_context *cic)
2514{
4faa3c81
FC
2515 struct io_context *ioc = cic->ioc;
2516
fc46379d 2517 list_del_init(&cic->queue_list);
4ac845a2
JA
2518
2519 /*
2520 * Make sure key == NULL is seen for dead queues
2521 */
fc46379d 2522 smp_wmb();
4ac845a2 2523 cic->dead_key = (unsigned long) cic->key;
fc46379d
JA
2524 cic->key = NULL;
2525
4faa3c81
FC
2526 if (ioc->ioc_data == cic)
2527 rcu_assign_pointer(ioc->ioc_data, NULL);
2528
ff6657c6
JA
2529 if (cic->cfqq[BLK_RW_ASYNC]) {
2530 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2531 cic->cfqq[BLK_RW_ASYNC] = NULL;
12a05732
AV
2532 }
2533
ff6657c6
JA
2534 if (cic->cfqq[BLK_RW_SYNC]) {
2535 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2536 cic->cfqq[BLK_RW_SYNC] = NULL;
12a05732 2537 }
89850f7e
JA
2538}
2539
4ac845a2
JA
2540static void cfq_exit_single_io_context(struct io_context *ioc,
2541 struct cfq_io_context *cic)
89850f7e
JA
2542{
2543 struct cfq_data *cfqd = cic->key;
2544
89850f7e 2545 if (cfqd) {
165125e1 2546 struct request_queue *q = cfqd->queue;
4ac845a2 2547 unsigned long flags;
89850f7e 2548
4ac845a2 2549 spin_lock_irqsave(q->queue_lock, flags);
62c1fe9d
JA
2550
2551 /*
2552 * Ensure we get a fresh copy of the ->key to prevent
2553 * race between exiting task and queue
2554 */
2555 smp_read_barrier_depends();
2556 if (cic->key)
2557 __cfq_exit_single_io_context(cfqd, cic);
2558
4ac845a2 2559 spin_unlock_irqrestore(q->queue_lock, flags);
89850f7e 2560 }
1da177e4
LT
2561}
2562
498d3aa2
JA
2563/*
2564 * The process that ioc belongs to has exited, we need to clean up
2565 * and put the internal structures we have that belongs to that process.
2566 */
e2d74ac0 2567static void cfq_exit_io_context(struct io_context *ioc)
1da177e4 2568{
4ac845a2 2569 call_for_each_cic(ioc, cfq_exit_single_io_context);
1da177e4
LT
2570}
2571
22e2c507 2572static struct cfq_io_context *
8267e268 2573cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
1da177e4 2574{
b5deef90 2575 struct cfq_io_context *cic;
1da177e4 2576
94f6030c
CL
2577 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
2578 cfqd->queue->node);
1da177e4 2579 if (cic) {
22e2c507 2580 cic->last_end_request = jiffies;
553698f9 2581 INIT_LIST_HEAD(&cic->queue_list);
ffc4e759 2582 INIT_HLIST_NODE(&cic->cic_list);
22e2c507
JA
2583 cic->dtor = cfq_free_io_context;
2584 cic->exit = cfq_exit_io_context;
245b2e70 2585 elv_ioc_count_inc(cfq_ioc_count);
1da177e4
LT
2586 }
2587
2588 return cic;
2589}
2590
fd0928df 2591static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
22e2c507
JA
2592{
2593 struct task_struct *tsk = current;
2594 int ioprio_class;
2595
3b18152c 2596 if (!cfq_cfqq_prio_changed(cfqq))
22e2c507
JA
2597 return;
2598
fd0928df 2599 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
22e2c507 2600 switch (ioprio_class) {
fe094d98
JA
2601 default:
2602 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2603 case IOPRIO_CLASS_NONE:
2604 /*
6d63c275 2605 * no prio set, inherit CPU scheduling settings
fe094d98
JA
2606 */
2607 cfqq->ioprio = task_nice_ioprio(tsk);
6d63c275 2608 cfqq->ioprio_class = task_nice_ioclass(tsk);
fe094d98
JA
2609 break;
2610 case IOPRIO_CLASS_RT:
2611 cfqq->ioprio = task_ioprio(ioc);
2612 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2613 break;
2614 case IOPRIO_CLASS_BE:
2615 cfqq->ioprio = task_ioprio(ioc);
2616 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2617 break;
2618 case IOPRIO_CLASS_IDLE:
2619 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2620 cfqq->ioprio = 7;
2621 cfq_clear_cfqq_idle_window(cfqq);
2622 break;
22e2c507
JA
2623 }
2624
2625 /*
2626 * keep track of original prio settings in case we have to temporarily
2627 * elevate the priority of this queue
2628 */
2629 cfqq->org_ioprio = cfqq->ioprio;
2630 cfqq->org_ioprio_class = cfqq->ioprio_class;
3b18152c 2631 cfq_clear_cfqq_prio_changed(cfqq);
22e2c507
JA
2632}
2633
febffd61 2634static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic)
22e2c507 2635{
478a82b0
AV
2636 struct cfq_data *cfqd = cic->key;
2637 struct cfq_queue *cfqq;
c1b707d2 2638 unsigned long flags;
35e6077c 2639
caaa5f9f
JA
2640 if (unlikely(!cfqd))
2641 return;
2642
c1b707d2 2643 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
caaa5f9f 2644
ff6657c6 2645 cfqq = cic->cfqq[BLK_RW_ASYNC];
caaa5f9f
JA
2646 if (cfqq) {
2647 struct cfq_queue *new_cfqq;
ff6657c6
JA
2648 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc,
2649 GFP_ATOMIC);
caaa5f9f 2650 if (new_cfqq) {
ff6657c6 2651 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
caaa5f9f
JA
2652 cfq_put_queue(cfqq);
2653 }
22e2c507 2654 }
caaa5f9f 2655
ff6657c6 2656 cfqq = cic->cfqq[BLK_RW_SYNC];
caaa5f9f
JA
2657 if (cfqq)
2658 cfq_mark_cfqq_prio_changed(cfqq);
2659
c1b707d2 2660 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
22e2c507
JA
2661}
2662
fc46379d 2663static void cfq_ioc_set_ioprio(struct io_context *ioc)
22e2c507 2664{
4ac845a2 2665 call_for_each_cic(ioc, changed_ioprio);
fc46379d 2666 ioc->ioprio_changed = 0;
22e2c507
JA
2667}
2668
d5036d77 2669static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
a6151c3a 2670 pid_t pid, bool is_sync)
d5036d77
JA
2671{
2672 RB_CLEAR_NODE(&cfqq->rb_node);
2673 RB_CLEAR_NODE(&cfqq->p_node);
2674 INIT_LIST_HEAD(&cfqq->fifo);
2675
2676 atomic_set(&cfqq->ref, 0);
2677 cfqq->cfqd = cfqd;
2678
2679 cfq_mark_cfqq_prio_changed(cfqq);
2680
2681 if (is_sync) {
2682 if (!cfq_class_idle(cfqq))
2683 cfq_mark_cfqq_idle_window(cfqq);
2684 cfq_mark_cfqq_sync(cfqq);
2685 }
2686 cfqq->pid = pid;
2687}
2688
24610333
VG
2689#ifdef CONFIG_CFQ_GROUP_IOSCHED
2690static void changed_cgroup(struct io_context *ioc, struct cfq_io_context *cic)
2691{
2692 struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1);
2693 struct cfq_data *cfqd = cic->key;
2694 unsigned long flags;
2695 struct request_queue *q;
2696
2697 if (unlikely(!cfqd))
2698 return;
2699
2700 q = cfqd->queue;
2701
2702 spin_lock_irqsave(q->queue_lock, flags);
2703
2704 if (sync_cfqq) {
2705 /*
2706 * Drop reference to sync queue. A new sync queue will be
2707 * assigned in new group upon arrival of a fresh request.
2708 */
2709 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2710 cic_set_cfqq(cic, NULL, 1);
2711 cfq_put_queue(sync_cfqq);
2712 }
2713
2714 spin_unlock_irqrestore(q->queue_lock, flags);
2715}
2716
2717static void cfq_ioc_set_cgroup(struct io_context *ioc)
2718{
2719 call_for_each_cic(ioc, changed_cgroup);
2720 ioc->cgroup_changed = 0;
2721}
2722#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2723
22e2c507 2724static struct cfq_queue *
a6151c3a 2725cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
fd0928df 2726 struct io_context *ioc, gfp_t gfp_mask)
22e2c507 2727{
22e2c507 2728 struct cfq_queue *cfqq, *new_cfqq = NULL;
91fac317 2729 struct cfq_io_context *cic;
cdb16e8f 2730 struct cfq_group *cfqg;
22e2c507
JA
2731
2732retry:
cdb16e8f 2733 cfqg = cfq_get_cfqg(cfqd, 1);
4ac845a2 2734 cic = cfq_cic_lookup(cfqd, ioc);
91fac317
VT
2735 /* cic always exists here */
2736 cfqq = cic_to_cfqq(cic, is_sync);
22e2c507 2737
6118b70b
JA
2738 /*
2739 * Always try a new alloc if we fell back to the OOM cfqq
2740 * originally, since it should just be a temporary situation.
2741 */
2742 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2743 cfqq = NULL;
22e2c507
JA
2744 if (new_cfqq) {
2745 cfqq = new_cfqq;
2746 new_cfqq = NULL;
2747 } else if (gfp_mask & __GFP_WAIT) {
2748 spin_unlock_irq(cfqd->queue->queue_lock);
94f6030c 2749 new_cfqq = kmem_cache_alloc_node(cfq_pool,
6118b70b 2750 gfp_mask | __GFP_ZERO,
94f6030c 2751 cfqd->queue->node);
22e2c507 2752 spin_lock_irq(cfqd->queue->queue_lock);
6118b70b
JA
2753 if (new_cfqq)
2754 goto retry;
22e2c507 2755 } else {
94f6030c
CL
2756 cfqq = kmem_cache_alloc_node(cfq_pool,
2757 gfp_mask | __GFP_ZERO,
2758 cfqd->queue->node);
22e2c507
JA
2759 }
2760
6118b70b
JA
2761 if (cfqq) {
2762 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2763 cfq_init_prio_data(cfqq, ioc);
cdb16e8f 2764 cfq_link_cfqq_cfqg(cfqq, cfqg);
6118b70b
JA
2765 cfq_log_cfqq(cfqd, cfqq, "alloced");
2766 } else
2767 cfqq = &cfqd->oom_cfqq;
22e2c507
JA
2768 }
2769
2770 if (new_cfqq)
2771 kmem_cache_free(cfq_pool, new_cfqq);
2772
22e2c507
JA
2773 return cfqq;
2774}
2775
c2dea2d1
VT
2776static struct cfq_queue **
2777cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2778{
fe094d98 2779 switch (ioprio_class) {
c2dea2d1
VT
2780 case IOPRIO_CLASS_RT:
2781 return &cfqd->async_cfqq[0][ioprio];
2782 case IOPRIO_CLASS_BE:
2783 return &cfqd->async_cfqq[1][ioprio];
2784 case IOPRIO_CLASS_IDLE:
2785 return &cfqd->async_idle_cfqq;
2786 default:
2787 BUG();
2788 }
2789}
2790
15c31be4 2791static struct cfq_queue *
a6151c3a 2792cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
15c31be4
JA
2793 gfp_t gfp_mask)
2794{
fd0928df
JA
2795 const int ioprio = task_ioprio(ioc);
2796 const int ioprio_class = task_ioprio_class(ioc);
c2dea2d1 2797 struct cfq_queue **async_cfqq = NULL;
15c31be4
JA
2798 struct cfq_queue *cfqq = NULL;
2799
c2dea2d1
VT
2800 if (!is_sync) {
2801 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2802 cfqq = *async_cfqq;
2803 }
2804
6118b70b 2805 if (!cfqq)
fd0928df 2806 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
15c31be4
JA
2807
2808 /*
2809 * pin the queue now that it's allocated, scheduler exit will prune it
2810 */
c2dea2d1 2811 if (!is_sync && !(*async_cfqq)) {
15c31be4 2812 atomic_inc(&cfqq->ref);
c2dea2d1 2813 *async_cfqq = cfqq;
15c31be4
JA
2814 }
2815
2816 atomic_inc(&cfqq->ref);
2817 return cfqq;
2818}
2819
498d3aa2
JA
2820/*
2821 * We drop cfq io contexts lazily, so we may find a dead one.
2822 */
dbecf3ab 2823static void
4ac845a2
JA
2824cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc,
2825 struct cfq_io_context *cic)
dbecf3ab 2826{
4ac845a2
JA
2827 unsigned long flags;
2828
fc46379d 2829 WARN_ON(!list_empty(&cic->queue_list));
597bc485 2830
4ac845a2
JA
2831 spin_lock_irqsave(&ioc->lock, flags);
2832
4faa3c81 2833 BUG_ON(ioc->ioc_data == cic);
597bc485 2834
4ac845a2 2835 radix_tree_delete(&ioc->radix_root, (unsigned long) cfqd);
ffc4e759 2836 hlist_del_rcu(&cic->cic_list);
4ac845a2
JA
2837 spin_unlock_irqrestore(&ioc->lock, flags);
2838
2839 cfq_cic_free(cic);
dbecf3ab
OH
2840}
2841
e2d74ac0 2842static struct cfq_io_context *
4ac845a2 2843cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
e2d74ac0 2844{
e2d74ac0 2845 struct cfq_io_context *cic;
d6de8be7 2846 unsigned long flags;
4ac845a2 2847 void *k;
e2d74ac0 2848
91fac317
VT
2849 if (unlikely(!ioc))
2850 return NULL;
2851
d6de8be7
JA
2852 rcu_read_lock();
2853
597bc485
JA
2854 /*
2855 * we maintain a last-hit cache, to avoid browsing over the tree
2856 */
4ac845a2 2857 cic = rcu_dereference(ioc->ioc_data);
d6de8be7
JA
2858 if (cic && cic->key == cfqd) {
2859 rcu_read_unlock();
597bc485 2860 return cic;
d6de8be7 2861 }
597bc485 2862
4ac845a2 2863 do {
4ac845a2
JA
2864 cic = radix_tree_lookup(&ioc->radix_root, (unsigned long) cfqd);
2865 rcu_read_unlock();
2866 if (!cic)
2867 break;
be3b0753
OH
2868 /* ->key must be copied to avoid race with cfq_exit_queue() */
2869 k = cic->key;
2870 if (unlikely(!k)) {
4ac845a2 2871 cfq_drop_dead_cic(cfqd, ioc, cic);
d6de8be7 2872 rcu_read_lock();
4ac845a2 2873 continue;
dbecf3ab 2874 }
e2d74ac0 2875
d6de8be7 2876 spin_lock_irqsave(&ioc->lock, flags);
4ac845a2 2877 rcu_assign_pointer(ioc->ioc_data, cic);
d6de8be7 2878 spin_unlock_irqrestore(&ioc->lock, flags);
4ac845a2
JA
2879 break;
2880 } while (1);
e2d74ac0 2881
4ac845a2 2882 return cic;
e2d74ac0
JA
2883}
2884
4ac845a2
JA
2885/*
2886 * Add cic into ioc, using cfqd as the search key. This enables us to lookup
2887 * the process specific cfq io context when entered from the block layer.
2888 * Also adds the cic to a per-cfqd list, used when this queue is removed.
2889 */
febffd61
JA
2890static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
2891 struct cfq_io_context *cic, gfp_t gfp_mask)
e2d74ac0 2892{
0261d688 2893 unsigned long flags;
4ac845a2 2894 int ret;
e2d74ac0 2895
4ac845a2
JA
2896 ret = radix_tree_preload(gfp_mask);
2897 if (!ret) {
2898 cic->ioc = ioc;
2899 cic->key = cfqd;
e2d74ac0 2900
4ac845a2
JA
2901 spin_lock_irqsave(&ioc->lock, flags);
2902 ret = radix_tree_insert(&ioc->radix_root,
2903 (unsigned long) cfqd, cic);
ffc4e759
JA
2904 if (!ret)
2905 hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list);
4ac845a2 2906 spin_unlock_irqrestore(&ioc->lock, flags);
e2d74ac0 2907
4ac845a2
JA
2908 radix_tree_preload_end();
2909
2910 if (!ret) {
2911 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2912 list_add(&cic->queue_list, &cfqd->cic_list);
2913 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
2914 }
e2d74ac0
JA
2915 }
2916
4ac845a2
JA
2917 if (ret)
2918 printk(KERN_ERR "cfq: cic link failed!\n");
fc46379d 2919
4ac845a2 2920 return ret;
e2d74ac0
JA
2921}
2922
1da177e4
LT
2923/*
2924 * Setup general io context and cfq io context. There can be several cfq
2925 * io contexts per general io context, if this process is doing io to more
e2d74ac0 2926 * than one device managed by cfq.
1da177e4
LT
2927 */
2928static struct cfq_io_context *
e2d74ac0 2929cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
1da177e4 2930{
22e2c507 2931 struct io_context *ioc = NULL;
1da177e4 2932 struct cfq_io_context *cic;
1da177e4 2933
22e2c507 2934 might_sleep_if(gfp_mask & __GFP_WAIT);
1da177e4 2935
b5deef90 2936 ioc = get_io_context(gfp_mask, cfqd->queue->node);
1da177e4
LT
2937 if (!ioc)
2938 return NULL;
2939
4ac845a2 2940 cic = cfq_cic_lookup(cfqd, ioc);
e2d74ac0
JA
2941 if (cic)
2942 goto out;
1da177e4 2943
e2d74ac0
JA
2944 cic = cfq_alloc_io_context(cfqd, gfp_mask);
2945 if (cic == NULL)
2946 goto err;
1da177e4 2947
4ac845a2
JA
2948 if (cfq_cic_link(cfqd, ioc, cic, gfp_mask))
2949 goto err_free;
2950
1da177e4 2951out:
fc46379d
JA
2952 smp_read_barrier_depends();
2953 if (unlikely(ioc->ioprio_changed))
2954 cfq_ioc_set_ioprio(ioc);
2955
24610333
VG
2956#ifdef CONFIG_CFQ_GROUP_IOSCHED
2957 if (unlikely(ioc->cgroup_changed))
2958 cfq_ioc_set_cgroup(ioc);
2959#endif
1da177e4 2960 return cic;
4ac845a2
JA
2961err_free:
2962 cfq_cic_free(cic);
1da177e4
LT
2963err:
2964 put_io_context(ioc);
2965 return NULL;
2966}
2967
22e2c507
JA
2968static void
2969cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
1da177e4 2970{
aaf1228d
JA
2971 unsigned long elapsed = jiffies - cic->last_end_request;
2972 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
db3b5848 2973
22e2c507
JA
2974 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
2975 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
2976 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
2977}
1da177e4 2978
206dc69b 2979static void
b2c18e1e 2980cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
6d048f53 2981 struct request *rq)
206dc69b
JA
2982{
2983 sector_t sdist;
2984 u64 total;
2985
b2c18e1e 2986 if (!cfqq->last_request_pos)
4d00aa47 2987 sdist = 0;
b2c18e1e
JM
2988 else if (cfqq->last_request_pos < blk_rq_pos(rq))
2989 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
206dc69b 2990 else
b2c18e1e 2991 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
206dc69b
JA
2992
2993 /*
2994 * Don't allow the seek distance to get too large from the
2995 * odd fragment, pagein, etc
2996 */
b2c18e1e
JM
2997 if (cfqq->seek_samples <= 60) /* second&third seek */
2998 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*1024);
206dc69b 2999 else
b2c18e1e 3000 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*64);
206dc69b 3001
b2c18e1e
JM
3002 cfqq->seek_samples = (7*cfqq->seek_samples + 256) / 8;
3003 cfqq->seek_total = (7*cfqq->seek_total + (u64)256*sdist) / 8;
3004 total = cfqq->seek_total + (cfqq->seek_samples/2);
3005 do_div(total, cfqq->seek_samples);
3006 cfqq->seek_mean = (sector_t)total;
206dc69b 3007}
1da177e4 3008
22e2c507
JA
3009/*
3010 * Disable idle window if the process thinks too long or seeks so much that
3011 * it doesn't matter
3012 */
3013static void
3014cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3015 struct cfq_io_context *cic)
3016{
7b679138 3017 int old_idle, enable_idle;
1be92f2f 3018
0871714e
JA
3019 /*
3020 * Don't idle for async or idle io prio class
3021 */
3022 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
1be92f2f
JA
3023 return;
3024
c265a7f4 3025 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
1da177e4 3026
76280aff
CZ
3027 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3028 cfq_mark_cfqq_deep(cfqq);
3029
66dac98e 3030 if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
76280aff
CZ
3031 (!cfq_cfqq_deep(cfqq) && sample_valid(cfqq->seek_samples)
3032 && CFQQ_SEEKY(cfqq)))
22e2c507
JA
3033 enable_idle = 0;
3034 else if (sample_valid(cic->ttime_samples)) {
718eee05 3035 if (cic->ttime_mean > cfqd->cfq_slice_idle)
22e2c507
JA
3036 enable_idle = 0;
3037 else
3038 enable_idle = 1;
1da177e4
LT
3039 }
3040
7b679138
JA
3041 if (old_idle != enable_idle) {
3042 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3043 if (enable_idle)
3044 cfq_mark_cfqq_idle_window(cfqq);
3045 else
3046 cfq_clear_cfqq_idle_window(cfqq);
3047 }
22e2c507 3048}
1da177e4 3049
22e2c507
JA
3050/*
3051 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3052 * no or if we aren't sure, a 1 will cause a preempt.
3053 */
a6151c3a 3054static bool
22e2c507 3055cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
5e705374 3056 struct request *rq)
22e2c507 3057{
6d048f53 3058 struct cfq_queue *cfqq;
22e2c507 3059
6d048f53
JA
3060 cfqq = cfqd->active_queue;
3061 if (!cfqq)
a6151c3a 3062 return false;
22e2c507 3063
6d048f53 3064 if (cfq_class_idle(new_cfqq))
a6151c3a 3065 return false;
22e2c507
JA
3066
3067 if (cfq_class_idle(cfqq))
a6151c3a 3068 return true;
1e3335de 3069
875feb63
DS
3070 /*
3071 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3072 */
3073 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3074 return false;
3075
374f84ac
JA
3076 /*
3077 * if the new request is sync, but the currently running queue is
3078 * not, let the sync request have priority.
3079 */
5e705374 3080 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
a6151c3a 3081 return true;
1e3335de 3082
8682e1f1
VG
3083 if (new_cfqq->cfqg != cfqq->cfqg)
3084 return false;
3085
3086 if (cfq_slice_used(cfqq))
3087 return true;
3088
3089 /* Allow preemption only if we are idling on sync-noidle tree */
3090 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
3091 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3092 new_cfqq->service_tree->count == 2 &&
3093 RB_EMPTY_ROOT(&cfqq->sort_list))
3094 return true;
3095
374f84ac
JA
3096 /*
3097 * So both queues are sync. Let the new request get disk time if
3098 * it's a metadata request and the current queue is doing regular IO.
3099 */
3100 if (rq_is_meta(rq) && !cfqq->meta_pending)
e6ec4fe2 3101 return true;
22e2c507 3102
3a9a3f6c
DS
3103 /*
3104 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3105 */
3106 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
a6151c3a 3107 return true;
3a9a3f6c 3108
1e3335de 3109 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
a6151c3a 3110 return false;
1e3335de
JA
3111
3112 /*
3113 * if this request is as-good as one we would expect from the
3114 * current cfqq, let it preempt
3115 */
2f7a2d89 3116 if (cfq_rq_close(cfqd, cfqq, rq, true))
a6151c3a 3117 return true;
1e3335de 3118
a6151c3a 3119 return false;
22e2c507
JA
3120}
3121
3122/*
3123 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3124 * let it have half of its nominal slice.
3125 */
3126static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3127{
7b679138 3128 cfq_log_cfqq(cfqd, cfqq, "preempt");
6084cdda 3129 cfq_slice_expired(cfqd, 1);
22e2c507 3130
bf572256
JA
3131 /*
3132 * Put the new queue at the front of the of the current list,
3133 * so we know that it will be selected next.
3134 */
3135 BUG_ON(!cfq_cfqq_on_rr(cfqq));
edd75ffd
JA
3136
3137 cfq_service_tree_add(cfqd, cfqq, 1);
bf572256 3138
44f7c160
JA
3139 cfqq->slice_end = 0;
3140 cfq_mark_cfqq_slice_new(cfqq);
22e2c507
JA
3141}
3142
22e2c507 3143/*
5e705374 3144 * Called when a new fs request (rq) is added (to cfqq). Check if there's
22e2c507
JA
3145 * something we should do about it
3146 */
3147static void
5e705374
JA
3148cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3149 struct request *rq)
22e2c507 3150{
5e705374 3151 struct cfq_io_context *cic = RQ_CIC(rq);
12e9fddd 3152
45333d5a 3153 cfqd->rq_queued++;
374f84ac
JA
3154 if (rq_is_meta(rq))
3155 cfqq->meta_pending++;
3156
9c2c38a1 3157 cfq_update_io_thinktime(cfqd, cic);
b2c18e1e 3158 cfq_update_io_seektime(cfqd, cfqq, rq);
9c2c38a1
JA
3159 cfq_update_idle_window(cfqd, cfqq, cic);
3160
b2c18e1e 3161 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
22e2c507
JA
3162
3163 if (cfqq == cfqd->active_queue) {
3164 /*
b029195d
JA
3165 * Remember that we saw a request from this process, but
3166 * don't start queuing just yet. Otherwise we risk seeing lots
3167 * of tiny requests, because we disrupt the normal plugging
d6ceb25e
JA
3168 * and merging. If the request is already larger than a single
3169 * page, let it rip immediately. For that case we assume that
2d870722
JA
3170 * merging is already done. Ditto for a busy system that
3171 * has other work pending, don't risk delaying until the
3172 * idle timer unplug to continue working.
22e2c507 3173 */
d6ceb25e 3174 if (cfq_cfqq_wait_request(cfqq)) {
2d870722
JA
3175 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3176 cfqd->busy_queues > 1) {
d6ceb25e 3177 del_timer(&cfqd->idle_slice_timer);
554554f6 3178 cfq_clear_cfqq_wait_request(cfqq);
bf791937
VG
3179 __blk_run_queue(cfqd->queue);
3180 } else
3181 cfq_mark_cfqq_must_dispatch(cfqq);
d6ceb25e 3182 }
5e705374 3183 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
22e2c507
JA
3184 /*
3185 * not the active queue - expire current slice if it is
3186 * idle and has expired it's mean thinktime or this new queue
3a9a3f6c
DS
3187 * has some old slice time left and is of higher priority or
3188 * this new queue is RT and the current one is BE
22e2c507
JA
3189 */
3190 cfq_preempt_queue(cfqd, cfqq);
a7f55792 3191 __blk_run_queue(cfqd->queue);
22e2c507 3192 }
1da177e4
LT
3193}
3194
165125e1 3195static void cfq_insert_request(struct request_queue *q, struct request *rq)
1da177e4 3196{
b4878f24 3197 struct cfq_data *cfqd = q->elevator->elevator_data;
5e705374 3198 struct cfq_queue *cfqq = RQ_CFQQ(rq);
22e2c507 3199
7b679138 3200 cfq_log_cfqq(cfqd, cfqq, "insert_request");
fd0928df 3201 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
1da177e4 3202
30996f40 3203 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
22e2c507 3204 list_add_tail(&rq->queuelist, &cfqq->fifo);
aa6f6a3d 3205 cfq_add_rq_rb(rq);
22e2c507 3206
5e705374 3207 cfq_rq_enqueued(cfqd, cfqq, rq);
1da177e4
LT
3208}
3209
45333d5a
AC
3210/*
3211 * Update hw_tag based on peak queue depth over 50 samples under
3212 * sufficient load.
3213 */
3214static void cfq_update_hw_tag(struct cfq_data *cfqd)
3215{
1a1238a7
SL
3216 struct cfq_queue *cfqq = cfqd->active_queue;
3217
e459dd08
CZ
3218 if (rq_in_driver(cfqd) > cfqd->hw_tag_est_depth)
3219 cfqd->hw_tag_est_depth = rq_in_driver(cfqd);
3220
3221 if (cfqd->hw_tag == 1)
3222 return;
45333d5a
AC
3223
3224 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
5ad531db 3225 rq_in_driver(cfqd) <= CFQ_HW_QUEUE_MIN)
45333d5a
AC
3226 return;
3227
1a1238a7
SL
3228 /*
3229 * If active queue hasn't enough requests and can idle, cfq might not
3230 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3231 * case
3232 */
3233 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3234 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
3235 CFQ_HW_QUEUE_MIN && rq_in_driver(cfqd) < CFQ_HW_QUEUE_MIN)
3236 return;
3237
45333d5a
AC
3238 if (cfqd->hw_tag_samples++ < 50)
3239 return;
3240
e459dd08 3241 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
45333d5a
AC
3242 cfqd->hw_tag = 1;
3243 else
3244 cfqd->hw_tag = 0;
45333d5a
AC
3245}
3246
7667aa06
VG
3247static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3248{
3249 struct cfq_io_context *cic = cfqd->active_cic;
3250
3251 /* If there are other queues in the group, don't wait */
3252 if (cfqq->cfqg->nr_cfqq > 1)
3253 return false;
3254
3255 if (cfq_slice_used(cfqq))
3256 return true;
3257
3258 /* if slice left is less than think time, wait busy */
3259 if (cic && sample_valid(cic->ttime_samples)
3260 && (cfqq->slice_end - jiffies < cic->ttime_mean))
3261 return true;
3262
3263 /*
3264 * If think times is less than a jiffy than ttime_mean=0 and above
3265 * will not be true. It might happen that slice has not expired yet
3266 * but will expire soon (4-5 ns) during select_queue(). To cover the
3267 * case where think time is less than a jiffy, mark the queue wait
3268 * busy if only 1 jiffy is left in the slice.
3269 */
3270 if (cfqq->slice_end - jiffies == 1)
3271 return true;
3272
3273 return false;
3274}
3275
165125e1 3276static void cfq_completed_request(struct request_queue *q, struct request *rq)
1da177e4 3277{
5e705374 3278 struct cfq_queue *cfqq = RQ_CFQQ(rq);
b4878f24 3279 struct cfq_data *cfqd = cfqq->cfqd;
5380a101 3280 const int sync = rq_is_sync(rq);
b4878f24 3281 unsigned long now;
1da177e4 3282
b4878f24 3283 now = jiffies;
2868ef7b 3284 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d", !!rq_noidle(rq));
1da177e4 3285
45333d5a
AC
3286 cfq_update_hw_tag(cfqd);
3287
5ad531db 3288 WARN_ON(!cfqd->rq_in_driver[sync]);
6d048f53 3289 WARN_ON(!cfqq->dispatched);
5ad531db 3290 cfqd->rq_in_driver[sync]--;
6d048f53 3291 cfqq->dispatched--;
1da177e4 3292
3ed9a296
JA
3293 if (cfq_cfqq_sync(cfqq))
3294 cfqd->sync_flight--;
3295
365722bb 3296 if (sync) {
5e705374 3297 RQ_CIC(rq)->last_end_request = now;
573412b2
CZ
3298 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3299 cfqd->last_delayed_sync = now;
365722bb 3300 }
caaa5f9f
JA
3301
3302 /*
3303 * If this is the active queue, check if it needs to be expired,
3304 * or if we want to idle in case it has no pending requests.
3305 */
3306 if (cfqd->active_queue == cfqq) {
a36e71f9
JA
3307 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3308
44f7c160
JA
3309 if (cfq_cfqq_slice_new(cfqq)) {
3310 cfq_set_prio_slice(cfqd, cfqq);
3311 cfq_clear_cfqq_slice_new(cfqq);
3312 }
f75edf2d
VG
3313
3314 /*
7667aa06
VG
3315 * Should we wait for next request to come in before we expire
3316 * the queue.
f75edf2d 3317 */
7667aa06 3318 if (cfq_should_wait_busy(cfqd, cfqq)) {
f75edf2d
VG
3319 cfqq->slice_end = jiffies + cfqd->cfq_slice_idle;
3320 cfq_mark_cfqq_wait_busy(cfqq);
3321 }
3322
a36e71f9 3323 /*
8e550632
CZ
3324 * Idling is not enabled on:
3325 * - expired queues
3326 * - idle-priority queues
3327 * - async queues
3328 * - queues with still some requests queued
3329 * - when there is a close cooperator
a36e71f9 3330 */
0871714e 3331 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
6084cdda 3332 cfq_slice_expired(cfqd, 1);
8e550632
CZ
3333 else if (sync && cfqq_empty &&
3334 !cfq_close_cooperator(cfqd, cfqq)) {
3335 cfqd->noidle_tree_requires_idle |= !rq_noidle(rq);
3336 /*
3337 * Idling is enabled for SYNC_WORKLOAD.
3338 * SYNC_NOIDLE_WORKLOAD idles at the end of the tree
3339 * only if we processed at least one !rq_noidle request
3340 */
3341 if (cfqd->serving_type == SYNC_WORKLOAD
c04645e5
VG
3342 || cfqd->noidle_tree_requires_idle
3343 || cfqq->cfqg->nr_cfqq == 1)
8e550632
CZ
3344 cfq_arm_slice_timer(cfqd);
3345 }
caaa5f9f 3346 }
6d048f53 3347
5ad531db 3348 if (!rq_in_driver(cfqd))
23e018a1 3349 cfq_schedule_dispatch(cfqd);
1da177e4
LT
3350}
3351
22e2c507
JA
3352/*
3353 * we temporarily boost lower priority queues if they are holding fs exclusive
3354 * resources. they are boosted to normal prio (CLASS_BE/4)
3355 */
3356static void cfq_prio_boost(struct cfq_queue *cfqq)
1da177e4 3357{
22e2c507
JA
3358 if (has_fs_excl()) {
3359 /*
3360 * boost idle prio on transactions that would lock out other
3361 * users of the filesystem
3362 */
3363 if (cfq_class_idle(cfqq))
3364 cfqq->ioprio_class = IOPRIO_CLASS_BE;
3365 if (cfqq->ioprio > IOPRIO_NORM)
3366 cfqq->ioprio = IOPRIO_NORM;
3367 } else {
3368 /*
dddb7451 3369 * unboost the queue (if needed)
22e2c507 3370 */
dddb7451
CZ
3371 cfqq->ioprio_class = cfqq->org_ioprio_class;
3372 cfqq->ioprio = cfqq->org_ioprio;
22e2c507 3373 }
22e2c507 3374}
1da177e4 3375
89850f7e 3376static inline int __cfq_may_queue(struct cfq_queue *cfqq)
22e2c507 3377{
1b379d8d 3378 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
3b18152c 3379 cfq_mark_cfqq_must_alloc_slice(cfqq);
22e2c507 3380 return ELV_MQUEUE_MUST;
3b18152c 3381 }
1da177e4 3382
22e2c507 3383 return ELV_MQUEUE_MAY;
22e2c507
JA
3384}
3385
165125e1 3386static int cfq_may_queue(struct request_queue *q, int rw)
22e2c507
JA
3387{
3388 struct cfq_data *cfqd = q->elevator->elevator_data;
3389 struct task_struct *tsk = current;
91fac317 3390 struct cfq_io_context *cic;
22e2c507
JA
3391 struct cfq_queue *cfqq;
3392
3393 /*
3394 * don't force setup of a queue from here, as a call to may_queue
3395 * does not necessarily imply that a request actually will be queued.
3396 * so just lookup a possibly existing queue, or return 'may queue'
3397 * if that fails
3398 */
4ac845a2 3399 cic = cfq_cic_lookup(cfqd, tsk->io_context);
91fac317
VT
3400 if (!cic)
3401 return ELV_MQUEUE_MAY;
3402
b0b78f81 3403 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
22e2c507 3404 if (cfqq) {
fd0928df 3405 cfq_init_prio_data(cfqq, cic->ioc);
22e2c507
JA
3406 cfq_prio_boost(cfqq);
3407
89850f7e 3408 return __cfq_may_queue(cfqq);
22e2c507
JA
3409 }
3410
3411 return ELV_MQUEUE_MAY;
1da177e4
LT
3412}
3413
1da177e4
LT
3414/*
3415 * queue lock held here
3416 */
bb37b94c 3417static void cfq_put_request(struct request *rq)
1da177e4 3418{
5e705374 3419 struct cfq_queue *cfqq = RQ_CFQQ(rq);
1da177e4 3420
5e705374 3421 if (cfqq) {
22e2c507 3422 const int rw = rq_data_dir(rq);
1da177e4 3423
22e2c507
JA
3424 BUG_ON(!cfqq->allocated[rw]);
3425 cfqq->allocated[rw]--;
1da177e4 3426
5e705374 3427 put_io_context(RQ_CIC(rq)->ioc);
1da177e4 3428
1da177e4 3429 rq->elevator_private = NULL;
5e705374 3430 rq->elevator_private2 = NULL;
1da177e4 3431
1da177e4
LT
3432 cfq_put_queue(cfqq);
3433 }
3434}
3435
df5fe3e8
JM
3436static struct cfq_queue *
3437cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic,
3438 struct cfq_queue *cfqq)
3439{
3440 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3441 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
b3b6d040 3442 cfq_mark_cfqq_coop(cfqq->new_cfqq);
df5fe3e8
JM
3443 cfq_put_queue(cfqq);
3444 return cic_to_cfqq(cic, 1);
3445}
3446
e6c5bc73
JM
3447/*
3448 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3449 * was the last process referring to said cfqq.
3450 */
3451static struct cfq_queue *
3452split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq)
3453{
3454 if (cfqq_process_refs(cfqq) == 1) {
e6c5bc73
JM
3455 cfqq->pid = current->pid;
3456 cfq_clear_cfqq_coop(cfqq);
ae54abed 3457 cfq_clear_cfqq_split_coop(cfqq);
e6c5bc73
JM
3458 return cfqq;
3459 }
3460
3461 cic_set_cfqq(cic, NULL, 1);
3462 cfq_put_queue(cfqq);
3463 return NULL;
3464}
1da177e4 3465/*
22e2c507 3466 * Allocate cfq data structures associated with this request.
1da177e4 3467 */
22e2c507 3468static int
165125e1 3469cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
1da177e4
LT
3470{
3471 struct cfq_data *cfqd = q->elevator->elevator_data;
3472 struct cfq_io_context *cic;
3473 const int rw = rq_data_dir(rq);
a6151c3a 3474 const bool is_sync = rq_is_sync(rq);
22e2c507 3475 struct cfq_queue *cfqq;
1da177e4
LT
3476 unsigned long flags;
3477
3478 might_sleep_if(gfp_mask & __GFP_WAIT);
3479
e2d74ac0 3480 cic = cfq_get_io_context(cfqd, gfp_mask);
22e2c507 3481
1da177e4
LT
3482 spin_lock_irqsave(q->queue_lock, flags);
3483
22e2c507
JA
3484 if (!cic)
3485 goto queue_fail;
3486
e6c5bc73 3487new_queue:
91fac317 3488 cfqq = cic_to_cfqq(cic, is_sync);
32f2e807 3489 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
fd0928df 3490 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
91fac317 3491 cic_set_cfqq(cic, cfqq, is_sync);
df5fe3e8 3492 } else {
e6c5bc73
JM
3493 /*
3494 * If the queue was seeky for too long, break it apart.
3495 */
ae54abed 3496 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
e6c5bc73
JM
3497 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3498 cfqq = split_cfqq(cic, cfqq);
3499 if (!cfqq)
3500 goto new_queue;
3501 }
3502
df5fe3e8
JM
3503 /*
3504 * Check to see if this queue is scheduled to merge with
3505 * another, closely cooperating queue. The merging of
3506 * queues happens here as it must be done in process context.
3507 * The reference on new_cfqq was taken in merge_cfqqs.
3508 */
3509 if (cfqq->new_cfqq)
3510 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
91fac317 3511 }
1da177e4
LT
3512
3513 cfqq->allocated[rw]++;
22e2c507 3514 atomic_inc(&cfqq->ref);
1da177e4 3515
5e705374 3516 spin_unlock_irqrestore(q->queue_lock, flags);
3b18152c 3517
5e705374
JA
3518 rq->elevator_private = cic;
3519 rq->elevator_private2 = cfqq;
3520 return 0;
1da177e4 3521
22e2c507
JA
3522queue_fail:
3523 if (cic)
3524 put_io_context(cic->ioc);
89850f7e 3525
23e018a1 3526 cfq_schedule_dispatch(cfqd);
1da177e4 3527 spin_unlock_irqrestore(q->queue_lock, flags);
7b679138 3528 cfq_log(cfqd, "set_request fail");
1da177e4
LT
3529 return 1;
3530}
3531
65f27f38 3532static void cfq_kick_queue(struct work_struct *work)
22e2c507 3533{
65f27f38 3534 struct cfq_data *cfqd =
23e018a1 3535 container_of(work, struct cfq_data, unplug_work);
165125e1 3536 struct request_queue *q = cfqd->queue;
22e2c507 3537
40bb54d1 3538 spin_lock_irq(q->queue_lock);
a7f55792 3539 __blk_run_queue(cfqd->queue);
40bb54d1 3540 spin_unlock_irq(q->queue_lock);
22e2c507
JA
3541}
3542
3543/*
3544 * Timer running if the active_queue is currently idling inside its time slice
3545 */
3546static void cfq_idle_slice_timer(unsigned long data)
3547{
3548 struct cfq_data *cfqd = (struct cfq_data *) data;
3549 struct cfq_queue *cfqq;
3550 unsigned long flags;
3c6bd2f8 3551 int timed_out = 1;
22e2c507 3552
7b679138
JA
3553 cfq_log(cfqd, "idle timer fired");
3554
22e2c507
JA
3555 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3556
fe094d98
JA
3557 cfqq = cfqd->active_queue;
3558 if (cfqq) {
3c6bd2f8
JA
3559 timed_out = 0;
3560
b029195d
JA
3561 /*
3562 * We saw a request before the queue expired, let it through
3563 */
3564 if (cfq_cfqq_must_dispatch(cfqq))
3565 goto out_kick;
3566
22e2c507
JA
3567 /*
3568 * expired
3569 */
44f7c160 3570 if (cfq_slice_used(cfqq))
22e2c507
JA
3571 goto expire;
3572
3573 /*
3574 * only expire and reinvoke request handler, if there are
3575 * other queues with pending requests
3576 */
caaa5f9f 3577 if (!cfqd->busy_queues)
22e2c507 3578 goto out_cont;
22e2c507
JA
3579
3580 /*
3581 * not expired and it has a request pending, let it dispatch
3582 */
75e50984 3583 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
22e2c507 3584 goto out_kick;
76280aff
CZ
3585
3586 /*
3587 * Queue depth flag is reset only when the idle didn't succeed
3588 */
3589 cfq_clear_cfqq_deep(cfqq);
22e2c507
JA
3590 }
3591expire:
6084cdda 3592 cfq_slice_expired(cfqd, timed_out);
22e2c507 3593out_kick:
23e018a1 3594 cfq_schedule_dispatch(cfqd);
22e2c507
JA
3595out_cont:
3596 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3597}
3598
3b18152c
JA
3599static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3600{
3601 del_timer_sync(&cfqd->idle_slice_timer);
23e018a1 3602 cancel_work_sync(&cfqd->unplug_work);
3b18152c 3603}
22e2c507 3604
c2dea2d1
VT
3605static void cfq_put_async_queues(struct cfq_data *cfqd)
3606{
3607 int i;
3608
3609 for (i = 0; i < IOPRIO_BE_NR; i++) {
3610 if (cfqd->async_cfqq[0][i])
3611 cfq_put_queue(cfqd->async_cfqq[0][i]);
3612 if (cfqd->async_cfqq[1][i])
3613 cfq_put_queue(cfqd->async_cfqq[1][i]);
c2dea2d1 3614 }
2389d1ef
ON
3615
3616 if (cfqd->async_idle_cfqq)
3617 cfq_put_queue(cfqd->async_idle_cfqq);
c2dea2d1
VT
3618}
3619
bb729bc9
JA
3620static void cfq_cfqd_free(struct rcu_head *head)
3621{
3622 kfree(container_of(head, struct cfq_data, rcu));
3623}
3624
b374d18a 3625static void cfq_exit_queue(struct elevator_queue *e)
1da177e4 3626{
22e2c507 3627 struct cfq_data *cfqd = e->elevator_data;
165125e1 3628 struct request_queue *q = cfqd->queue;
22e2c507 3629
3b18152c 3630 cfq_shutdown_timer_wq(cfqd);
e2d74ac0 3631
d9ff4187 3632 spin_lock_irq(q->queue_lock);
e2d74ac0 3633
d9ff4187 3634 if (cfqd->active_queue)
6084cdda 3635 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
e2d74ac0
JA
3636
3637 while (!list_empty(&cfqd->cic_list)) {
d9ff4187
AV
3638 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
3639 struct cfq_io_context,
3640 queue_list);
89850f7e
JA
3641
3642 __cfq_exit_single_io_context(cfqd, cic);
d9ff4187 3643 }
e2d74ac0 3644
c2dea2d1 3645 cfq_put_async_queues(cfqd);
b1c35769
VG
3646 cfq_release_cfq_groups(cfqd);
3647 blkiocg_del_blkio_group(&cfqd->root_group.blkg);
15c31be4 3648
d9ff4187 3649 spin_unlock_irq(q->queue_lock);
a90d742e
AV
3650
3651 cfq_shutdown_timer_wq(cfqd);
3652
b1c35769 3653 /* Wait for cfqg->blkg->key accessors to exit their grace periods. */
bb729bc9 3654 call_rcu(&cfqd->rcu, cfq_cfqd_free);
1da177e4
LT
3655}
3656
165125e1 3657static void *cfq_init_queue(struct request_queue *q)
1da177e4
LT
3658{
3659 struct cfq_data *cfqd;
718eee05 3660 int i, j;
cdb16e8f 3661 struct cfq_group *cfqg;
615f0259 3662 struct cfq_rb_root *st;
1da177e4 3663
94f6030c 3664 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
1da177e4 3665 if (!cfqd)
bc1c1169 3666 return NULL;
1da177e4 3667
1fa8f6d6
VG
3668 /* Init root service tree */
3669 cfqd->grp_service_tree = CFQ_RB_ROOT;
3670
cdb16e8f
VG
3671 /* Init root group */
3672 cfqg = &cfqd->root_group;
615f0259
VG
3673 for_each_cfqg_st(cfqg, i, j, st)
3674 *st = CFQ_RB_ROOT;
1fa8f6d6 3675 RB_CLEAR_NODE(&cfqg->rb_node);
26a2ac00 3676
25bc6b07
VG
3677 /* Give preference to root group over other groups */
3678 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3679
25fb5169 3680#ifdef CONFIG_CFQ_GROUP_IOSCHED
b1c35769
VG
3681 /*
3682 * Take a reference to root group which we never drop. This is just
3683 * to make sure that cfq_put_cfqg() does not try to kfree root group
3684 */
3685 atomic_set(&cfqg->ref, 1);
22084190
VG
3686 blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg, (void *)cfqd,
3687 0);
25fb5169 3688#endif
26a2ac00
JA
3689 /*
3690 * Not strictly needed (since RB_ROOT just clears the node and we
3691 * zeroed cfqd on alloc), but better be safe in case someone decides
3692 * to add magic to the rb code
3693 */
3694 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3695 cfqd->prio_trees[i] = RB_ROOT;
3696
6118b70b
JA
3697 /*
3698 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3699 * Grab a permanent reference to it, so that the normal code flow
3700 * will not attempt to free it.
3701 */
3702 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
3703 atomic_inc(&cfqd->oom_cfqq.ref);
cdb16e8f 3704 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
6118b70b 3705
d9ff4187 3706 INIT_LIST_HEAD(&cfqd->cic_list);
1da177e4 3707
1da177e4 3708 cfqd->queue = q;
1da177e4 3709
22e2c507
JA
3710 init_timer(&cfqd->idle_slice_timer);
3711 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3712 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3713
23e018a1 3714 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
22e2c507 3715
1da177e4 3716 cfqd->cfq_quantum = cfq_quantum;
22e2c507
JA
3717 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3718 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
1da177e4
LT
3719 cfqd->cfq_back_max = cfq_back_max;
3720 cfqd->cfq_back_penalty = cfq_back_penalty;
22e2c507
JA
3721 cfqd->cfq_slice[0] = cfq_slice_async;
3722 cfqd->cfq_slice[1] = cfq_slice_sync;
3723 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3724 cfqd->cfq_slice_idle = cfq_slice_idle;
963b72fc 3725 cfqd->cfq_latency = 1;
ae30c286 3726 cfqd->cfq_group_isolation = 0;
e459dd08 3727 cfqd->hw_tag = -1;
edc71131
CZ
3728 /*
3729 * we optimistically start assuming sync ops weren't delayed in last
3730 * second, in order to have larger depth for async operations.
3731 */
573412b2 3732 cfqd->last_delayed_sync = jiffies - HZ;
bb729bc9 3733 INIT_RCU_HEAD(&cfqd->rcu);
bc1c1169 3734 return cfqd;
1da177e4
LT
3735}
3736
3737static void cfq_slab_kill(void)
3738{
d6de8be7
JA
3739 /*
3740 * Caller already ensured that pending RCU callbacks are completed,
3741 * so we should have no busy allocations at this point.
3742 */
1da177e4
LT
3743 if (cfq_pool)
3744 kmem_cache_destroy(cfq_pool);
3745 if (cfq_ioc_pool)
3746 kmem_cache_destroy(cfq_ioc_pool);
3747}
3748
3749static int __init cfq_slab_setup(void)
3750{
0a31bd5f 3751 cfq_pool = KMEM_CACHE(cfq_queue, 0);
1da177e4
LT
3752 if (!cfq_pool)
3753 goto fail;
3754
34e6bbf2 3755 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
1da177e4
LT
3756 if (!cfq_ioc_pool)
3757 goto fail;
3758
3759 return 0;
3760fail:
3761 cfq_slab_kill();
3762 return -ENOMEM;
3763}
3764
1da177e4
LT
3765/*
3766 * sysfs parts below -->
3767 */
1da177e4
LT
3768static ssize_t
3769cfq_var_show(unsigned int var, char *page)
3770{
3771 return sprintf(page, "%d\n", var);
3772}
3773
3774static ssize_t
3775cfq_var_store(unsigned int *var, const char *page, size_t count)
3776{
3777 char *p = (char *) page;
3778
3779 *var = simple_strtoul(p, &p, 10);
3780 return count;
3781}
3782
1da177e4 3783#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
b374d18a 3784static ssize_t __FUNC(struct elevator_queue *e, char *page) \
1da177e4 3785{ \
3d1ab40f 3786 struct cfq_data *cfqd = e->elevator_data; \
1da177e4
LT
3787 unsigned int __data = __VAR; \
3788 if (__CONV) \
3789 __data = jiffies_to_msecs(__data); \
3790 return cfq_var_show(__data, (page)); \
3791}
3792SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
22e2c507
JA
3793SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
3794SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
e572ec7e
AV
3795SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
3796SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
22e2c507
JA
3797SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
3798SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
3799SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
3800SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
963b72fc 3801SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
ae30c286 3802SHOW_FUNCTION(cfq_group_isolation_show, cfqd->cfq_group_isolation, 0);
1da177e4
LT
3803#undef SHOW_FUNCTION
3804
3805#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
b374d18a 3806static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
1da177e4 3807{ \
3d1ab40f 3808 struct cfq_data *cfqd = e->elevator_data; \
1da177e4
LT
3809 unsigned int __data; \
3810 int ret = cfq_var_store(&__data, (page), count); \
3811 if (__data < (MIN)) \
3812 __data = (MIN); \
3813 else if (__data > (MAX)) \
3814 __data = (MAX); \
3815 if (__CONV) \
3816 *(__PTR) = msecs_to_jiffies(__data); \
3817 else \
3818 *(__PTR) = __data; \
3819 return ret; \
3820}
3821STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
fe094d98
JA
3822STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
3823 UINT_MAX, 1);
3824STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
3825 UINT_MAX, 1);
e572ec7e 3826STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
fe094d98
JA
3827STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
3828 UINT_MAX, 0);
22e2c507
JA
3829STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
3830STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
3831STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
fe094d98
JA
3832STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
3833 UINT_MAX, 0);
963b72fc 3834STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
ae30c286 3835STORE_FUNCTION(cfq_group_isolation_store, &cfqd->cfq_group_isolation, 0, 1, 0);
1da177e4
LT
3836#undef STORE_FUNCTION
3837
e572ec7e
AV
3838#define CFQ_ATTR(name) \
3839 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
3840
3841static struct elv_fs_entry cfq_attrs[] = {
3842 CFQ_ATTR(quantum),
e572ec7e
AV
3843 CFQ_ATTR(fifo_expire_sync),
3844 CFQ_ATTR(fifo_expire_async),
3845 CFQ_ATTR(back_seek_max),
3846 CFQ_ATTR(back_seek_penalty),
3847 CFQ_ATTR(slice_sync),
3848 CFQ_ATTR(slice_async),
3849 CFQ_ATTR(slice_async_rq),
3850 CFQ_ATTR(slice_idle),
963b72fc 3851 CFQ_ATTR(low_latency),
ae30c286 3852 CFQ_ATTR(group_isolation),
e572ec7e 3853 __ATTR_NULL
1da177e4
LT
3854};
3855
1da177e4
LT
3856static struct elevator_type iosched_cfq = {
3857 .ops = {
3858 .elevator_merge_fn = cfq_merge,
3859 .elevator_merged_fn = cfq_merged_request,
3860 .elevator_merge_req_fn = cfq_merged_requests,
da775265 3861 .elevator_allow_merge_fn = cfq_allow_merge,
b4878f24 3862 .elevator_dispatch_fn = cfq_dispatch_requests,
1da177e4 3863 .elevator_add_req_fn = cfq_insert_request,
b4878f24 3864 .elevator_activate_req_fn = cfq_activate_request,
1da177e4
LT
3865 .elevator_deactivate_req_fn = cfq_deactivate_request,
3866 .elevator_queue_empty_fn = cfq_queue_empty,
3867 .elevator_completed_req_fn = cfq_completed_request,
21183b07
JA
3868 .elevator_former_req_fn = elv_rb_former_request,
3869 .elevator_latter_req_fn = elv_rb_latter_request,
1da177e4
LT
3870 .elevator_set_req_fn = cfq_set_request,
3871 .elevator_put_req_fn = cfq_put_request,
3872 .elevator_may_queue_fn = cfq_may_queue,
3873 .elevator_init_fn = cfq_init_queue,
3874 .elevator_exit_fn = cfq_exit_queue,
fc46379d 3875 .trim = cfq_free_io_context,
1da177e4 3876 },
3d1ab40f 3877 .elevator_attrs = cfq_attrs,
1da177e4
LT
3878 .elevator_name = "cfq",
3879 .elevator_owner = THIS_MODULE,
3880};
3881
3e252066
VG
3882#ifdef CONFIG_CFQ_GROUP_IOSCHED
3883static struct blkio_policy_type blkio_policy_cfq = {
3884 .ops = {
3885 .blkio_unlink_group_fn = cfq_unlink_blkio_group,
3886 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
3887 },
3888};
3889#else
3890static struct blkio_policy_type blkio_policy_cfq;
3891#endif
3892
1da177e4
LT
3893static int __init cfq_init(void)
3894{
22e2c507
JA
3895 /*
3896 * could be 0 on HZ < 1000 setups
3897 */
3898 if (!cfq_slice_async)
3899 cfq_slice_async = 1;
3900 if (!cfq_slice_idle)
3901 cfq_slice_idle = 1;
3902
1da177e4
LT
3903 if (cfq_slab_setup())
3904 return -ENOMEM;
3905
2fdd82bd 3906 elv_register(&iosched_cfq);
3e252066 3907 blkio_policy_register(&blkio_policy_cfq);
1da177e4 3908
2fdd82bd 3909 return 0;
1da177e4
LT
3910}
3911
3912static void __exit cfq_exit(void)
3913{
6e9a4738 3914 DECLARE_COMPLETION_ONSTACK(all_gone);
3e252066 3915 blkio_policy_unregister(&blkio_policy_cfq);
1da177e4 3916 elv_unregister(&iosched_cfq);
334e94de 3917 ioc_gone = &all_gone;
fba82272
OH
3918 /* ioc_gone's update must be visible before reading ioc_count */
3919 smp_wmb();
d6de8be7
JA
3920
3921 /*
3922 * this also protects us from entering cfq_slab_kill() with
3923 * pending RCU callbacks
3924 */
245b2e70 3925 if (elv_ioc_count_read(cfq_ioc_count))
9a11b4ed 3926 wait_for_completion(&all_gone);
83521d3e 3927 cfq_slab_kill();
1da177e4
LT
3928}
3929
3930module_init(cfq_init);
3931module_exit(cfq_exit);
3932
3933MODULE_AUTHOR("Jens Axboe");
3934MODULE_LICENSE("GPL");
3935MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");