]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - block/cfq-iosched.c
cfq-iosched: implement hierarchy-ready cfq_group charge scaling
[mirror_ubuntu-bionic-kernel.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>
5a0e3ad6 10#include <linux/slab.h>
1cc9be68
AV
11#include <linux/blkdev.h>
12#include <linux/elevator.h>
ad5ebd2f 13#include <linux/jiffies.h>
1da177e4 14#include <linux/rbtree.h>
22e2c507 15#include <linux/ioprio.h>
7b679138 16#include <linux/blktrace_api.h>
6e736be7 17#include "blk.h"
629ed0b1 18#include "blk-cgroup.h"
1da177e4
LT
19
20/*
21 * tunables
22 */
fe094d98 23/* max queue in one round of service */
abc3c744 24static const int cfq_quantum = 8;
64100099 25static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
fe094d98
JA
26/* maximum backwards seek, in KiB */
27static const int cfq_back_max = 16 * 1024;
28/* penalty of a backwards seek */
29static const int cfq_back_penalty = 2;
64100099 30static const int cfq_slice_sync = HZ / 10;
3b18152c 31static int cfq_slice_async = HZ / 25;
64100099 32static const int cfq_slice_async_rq = 2;
caaa5f9f 33static int cfq_slice_idle = HZ / 125;
80bdf0c7 34static int cfq_group_idle = HZ / 125;
5db5d642
CZ
35static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
36static const int cfq_hist_divisor = 4;
22e2c507 37
d9e7620e 38/*
0871714e 39 * offset from end of service tree
d9e7620e 40 */
0871714e 41#define CFQ_IDLE_DELAY (HZ / 5)
d9e7620e
JA
42
43/*
44 * below this threshold, we consider thinktime immediate
45 */
46#define CFQ_MIN_TT (2)
47
22e2c507 48#define CFQ_SLICE_SCALE (5)
45333d5a 49#define CFQ_HW_QUEUE_MIN (5)
25bc6b07 50#define CFQ_SERVICE_SHIFT 12
22e2c507 51
3dde36dd 52#define CFQQ_SEEK_THR (sector_t)(8 * 100)
e9ce335d 53#define CFQQ_CLOSE_THR (sector_t)(8 * 1024)
41647e7a 54#define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32)
3dde36dd 55#define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8)
ae54abed 56
a612fddf
TH
57#define RQ_CIC(rq) icq_to_cic((rq)->elv.icq)
58#define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elv.priv[0])
59#define RQ_CFQG(rq) (struct cfq_group *) ((rq)->elv.priv[1])
1da177e4 60
e18b890b 61static struct kmem_cache *cfq_pool;
1da177e4 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
c5869807
TH
70struct cfq_ttime {
71 unsigned long last_end_request;
72
73 unsigned long ttime_total;
74 unsigned long ttime_samples;
75 unsigned long ttime_mean;
76};
77
cc09e299
JA
78/*
79 * Most of our rbtree usage is for sorting with min extraction, so
80 * if we cache the leftmost node we don't have to walk down the tree
81 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
82 * move this into the elevator for the rq sorting as well.
83 */
84struct cfq_rb_root {
85 struct rb_root rb;
86 struct rb_node *left;
aa6f6a3d 87 unsigned count;
73e9ffdd 88 unsigned total_weight;
1fa8f6d6 89 u64 min_vdisktime;
f5f2b6ce 90 struct cfq_ttime ttime;
cc09e299 91};
f5f2b6ce
SL
92#define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, \
93 .ttime = {.last_end_request = jiffies,},}
cc09e299 94
6118b70b
JA
95/*
96 * Per process-grouping structure
97 */
98struct cfq_queue {
99 /* reference count */
30d7b944 100 int ref;
6118b70b
JA
101 /* various state flags, see below */
102 unsigned int flags;
103 /* parent cfq_data */
104 struct cfq_data *cfqd;
105 /* service_tree member */
106 struct rb_node rb_node;
107 /* service_tree key */
108 unsigned long rb_key;
109 /* prio tree member */
110 struct rb_node p_node;
111 /* prio tree root we belong to, if any */
112 struct rb_root *p_root;
113 /* sorted list of pending requests */
114 struct rb_root sort_list;
115 /* if fifo isn't expired, next request to serve */
116 struct request *next_rq;
117 /* requests queued in sort_list */
118 int queued[2];
119 /* currently allocated requests */
120 int allocated[2];
121 /* fifo list of requests in sort_list */
122 struct list_head fifo;
123
dae739eb
VG
124 /* time when queue got scheduled in to dispatch first request. */
125 unsigned long dispatch_start;
f75edf2d 126 unsigned int allocated_slice;
c4081ba5 127 unsigned int slice_dispatch;
dae739eb
VG
128 /* time when first request from queue completed and slice started. */
129 unsigned long slice_start;
6118b70b
JA
130 unsigned long slice_end;
131 long slice_resid;
6118b70b 132
65299a3b
CH
133 /* pending priority requests */
134 int prio_pending;
6118b70b
JA
135 /* number of requests that are on the dispatch list or inside driver */
136 int dispatched;
137
138 /* io prio of this group */
139 unsigned short ioprio, org_ioprio;
4aede84b 140 unsigned short ioprio_class;
6118b70b 141
c4081ba5
RK
142 pid_t pid;
143
3dde36dd 144 u32 seek_history;
b2c18e1e
JM
145 sector_t last_request_pos;
146
aa6f6a3d 147 struct cfq_rb_root *service_tree;
df5fe3e8 148 struct cfq_queue *new_cfqq;
cdb16e8f 149 struct cfq_group *cfqg;
c4e7893e
VG
150 /* Number of sectors dispatched from queue in single dispatch round */
151 unsigned long nr_sectors;
6118b70b
JA
152};
153
c0324a02 154/*
718eee05 155 * First index in the service_trees.
c0324a02
CZ
156 * IDLE is handled separately, so it has negative index
157 */
3bf10fea 158enum wl_class_t {
c0324a02 159 BE_WORKLOAD = 0,
615f0259
VG
160 RT_WORKLOAD = 1,
161 IDLE_WORKLOAD = 2,
b4627321 162 CFQ_PRIO_NR,
c0324a02
CZ
163};
164
718eee05
CZ
165/*
166 * Second index in the service_trees.
167 */
168enum wl_type_t {
169 ASYNC_WORKLOAD = 0,
170 SYNC_NOIDLE_WORKLOAD = 1,
171 SYNC_WORKLOAD = 2
172};
173
155fead9
TH
174struct cfqg_stats {
175#ifdef CONFIG_CFQ_GROUP_IOSCHED
176 /* total bytes transferred */
177 struct blkg_rwstat service_bytes;
178 /* total IOs serviced, post merge */
179 struct blkg_rwstat serviced;
180 /* number of ios merged */
181 struct blkg_rwstat merged;
182 /* total time spent on device in ns, may not be accurate w/ queueing */
183 struct blkg_rwstat service_time;
184 /* total time spent waiting in scheduler queue in ns */
185 struct blkg_rwstat wait_time;
186 /* number of IOs queued up */
187 struct blkg_rwstat queued;
188 /* total sectors transferred */
189 struct blkg_stat sectors;
190 /* total disk time and nr sectors dispatched by this group */
191 struct blkg_stat time;
192#ifdef CONFIG_DEBUG_BLK_CGROUP
193 /* time not charged to this cgroup */
194 struct blkg_stat unaccounted_time;
195 /* sum of number of ios queued across all samples */
196 struct blkg_stat avg_queue_size_sum;
197 /* count of samples taken for average */
198 struct blkg_stat avg_queue_size_samples;
199 /* how many times this group has been removed from service tree */
200 struct blkg_stat dequeue;
201 /* total time spent waiting for it to be assigned a timeslice. */
202 struct blkg_stat group_wait_time;
3c798398 203 /* time spent idling for this blkcg_gq */
155fead9
TH
204 struct blkg_stat idle_time;
205 /* total time with empty current active q with other requests queued */
206 struct blkg_stat empty_time;
207 /* fields after this shouldn't be cleared on stat reset */
208 uint64_t start_group_wait_time;
209 uint64_t start_idle_time;
210 uint64_t start_empty_time;
211 uint16_t flags;
212#endif /* CONFIG_DEBUG_BLK_CGROUP */
213#endif /* CONFIG_CFQ_GROUP_IOSCHED */
214};
215
cdb16e8f
VG
216/* This is per cgroup per device grouping structure */
217struct cfq_group {
f95a04af
TH
218 /* must be the first member */
219 struct blkg_policy_data pd;
220
1fa8f6d6
VG
221 /* group service_tree member */
222 struct rb_node rb_node;
223
224 /* group service_tree key */
225 u64 vdisktime;
e71357e1 226
7918ffb5
TH
227 /*
228 * The number of active cfqgs and sum of their weights under this
229 * cfqg. This covers this cfqg's leaf_weight and all children's
230 * weights, but does not cover weights of further descendants.
231 *
232 * If a cfqg is on the service tree, it's active. An active cfqg
233 * also activates its parent and contributes to the children_weight
234 * of the parent.
235 */
236 int nr_active;
237 unsigned int children_weight;
238
1d3650f7
TH
239 /*
240 * vfraction is the fraction of vdisktime that the tasks in this
241 * cfqg are entitled to. This is determined by compounding the
242 * ratios walking up from this cfqg to the root.
243 *
244 * It is in fixed point w/ CFQ_SERVICE_SHIFT and the sum of all
245 * vfractions on a service tree is approximately 1. The sum may
246 * deviate a bit due to rounding errors and fluctuations caused by
247 * cfqgs entering and leaving the service tree.
248 */
249 unsigned int vfraction;
250
e71357e1
TH
251 /*
252 * There are two weights - (internal) weight is the weight of this
253 * cfqg against the sibling cfqgs. leaf_weight is the wight of
254 * this cfqg against the child cfqgs. For the root cfqg, both
255 * weights are kept in sync for backward compatibility.
256 */
25bc6b07 257 unsigned int weight;
8184f93e 258 unsigned int new_weight;
3381cb8d 259 unsigned int dev_weight;
1fa8f6d6 260
e71357e1
TH
261 unsigned int leaf_weight;
262 unsigned int new_leaf_weight;
263 unsigned int dev_leaf_weight;
264
1fa8f6d6
VG
265 /* number of cfqq currently on this group */
266 int nr_cfqq;
267
cdb16e8f 268 /*
4495a7d4 269 * Per group busy queues average. Useful for workload slice calc. We
b4627321
VG
270 * create the array for each prio class but at run time it is used
271 * only for RT and BE class and slot for IDLE class remains unused.
272 * This is primarily done to avoid confusion and a gcc warning.
273 */
274 unsigned int busy_queues_avg[CFQ_PRIO_NR];
275 /*
276 * rr lists of queues with requests. We maintain service trees for
277 * RT and BE classes. These trees are subdivided in subclasses
278 * of SYNC, SYNC_NOIDLE and ASYNC based on workload type. For IDLE
279 * class there is no subclassification and all the cfq queues go on
280 * a single tree service_tree_idle.
cdb16e8f
VG
281 * Counts are embedded in the cfq_rb_root
282 */
283 struct cfq_rb_root service_trees[2][3];
284 struct cfq_rb_root service_tree_idle;
dae739eb 285
4d2ceea4
VG
286 unsigned long saved_wl_slice;
287 enum wl_type_t saved_wl_type;
288 enum wl_class_t saved_wl_class;
4eef3049 289
80bdf0c7
VG
290 /* number of requests that are on the dispatch list or inside driver */
291 int dispatched;
7700fc4f 292 struct cfq_ttime ttime;
155fead9 293 struct cfqg_stats stats;
cdb16e8f 294};
718eee05 295
c5869807
TH
296struct cfq_io_cq {
297 struct io_cq icq; /* must be the first member */
298 struct cfq_queue *cfqq[2];
299 struct cfq_ttime ttime;
598971bf
TH
300 int ioprio; /* the current ioprio */
301#ifdef CONFIG_CFQ_GROUP_IOSCHED
302 uint64_t blkcg_id; /* the current blkcg ID */
303#endif
c5869807
TH
304};
305
22e2c507
JA
306/*
307 * Per block device queue structure
308 */
1da177e4 309struct cfq_data {
165125e1 310 struct request_queue *queue;
1fa8f6d6
VG
311 /* Root service tree for cfq_groups */
312 struct cfq_rb_root grp_service_tree;
f51b802c 313 struct cfq_group *root_group;
22e2c507 314
c0324a02
CZ
315 /*
316 * The priority currently being served
22e2c507 317 */
4d2ceea4
VG
318 enum wl_class_t serving_wl_class;
319 enum wl_type_t serving_wl_type;
718eee05 320 unsigned long workload_expires;
cdb16e8f 321 struct cfq_group *serving_group;
a36e71f9
JA
322
323 /*
324 * Each priority tree is sorted by next_request position. These
325 * trees are used when determining if two or more queues are
326 * interleaving requests (see cfq_close_cooperator).
327 */
328 struct rb_root prio_trees[CFQ_PRIO_LISTS];
329
22e2c507 330 unsigned int busy_queues;
ef8a41df 331 unsigned int busy_sync_queues;
22e2c507 332
53c583d2
CZ
333 int rq_in_driver;
334 int rq_in_flight[2];
45333d5a
AC
335
336 /*
337 * queue-depth detection
338 */
339 int rq_queued;
25776e35 340 int hw_tag;
e459dd08
CZ
341 /*
342 * hw_tag can be
343 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
344 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
345 * 0 => no NCQ
346 */
347 int hw_tag_est_depth;
348 unsigned int hw_tag_samples;
1da177e4 349
22e2c507
JA
350 /*
351 * idle window management
352 */
353 struct timer_list idle_slice_timer;
23e018a1 354 struct work_struct unplug_work;
1da177e4 355
22e2c507 356 struct cfq_queue *active_queue;
c5869807 357 struct cfq_io_cq *active_cic;
22e2c507 358
c2dea2d1
VT
359 /*
360 * async queue for each priority case
361 */
362 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
363 struct cfq_queue *async_idle_cfqq;
15c31be4 364
6d048f53 365 sector_t last_position;
1da177e4 366
1da177e4
LT
367 /*
368 * tunables, see top of file
369 */
370 unsigned int cfq_quantum;
22e2c507 371 unsigned int cfq_fifo_expire[2];
1da177e4
LT
372 unsigned int cfq_back_penalty;
373 unsigned int cfq_back_max;
22e2c507
JA
374 unsigned int cfq_slice[2];
375 unsigned int cfq_slice_async_rq;
376 unsigned int cfq_slice_idle;
80bdf0c7 377 unsigned int cfq_group_idle;
963b72fc 378 unsigned int cfq_latency;
5bf14c07 379 unsigned int cfq_target_latency;
d9ff4187 380
6118b70b
JA
381 /*
382 * Fallback dummy cfqq for extreme OOM conditions
383 */
384 struct cfq_queue oom_cfqq;
365722bb 385
573412b2 386 unsigned long last_delayed_sync;
1da177e4
LT
387};
388
25fb5169
VG
389static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
390
34b98d03 391static struct cfq_rb_root *st_for(struct cfq_group *cfqg,
3bf10fea 392 enum wl_class_t class,
65b32a57 393 enum wl_type_t type)
c0324a02 394{
1fa8f6d6
VG
395 if (!cfqg)
396 return NULL;
397
3bf10fea 398 if (class == IDLE_WORKLOAD)
cdb16e8f 399 return &cfqg->service_tree_idle;
c0324a02 400
3bf10fea 401 return &cfqg->service_trees[class][type];
c0324a02
CZ
402}
403
3b18152c 404enum cfqq_state_flags {
b0b8d749
JA
405 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
406 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
b029195d 407 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
b0b8d749 408 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
b0b8d749
JA
409 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
410 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
411 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
44f7c160 412 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
91fac317 413 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
b3b6d040 414 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
ae54abed 415 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
76280aff 416 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
f75edf2d 417 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
3b18152c
JA
418};
419
420#define CFQ_CFQQ_FNS(name) \
421static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
422{ \
fe094d98 423 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
3b18152c
JA
424} \
425static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
426{ \
fe094d98 427 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
3b18152c
JA
428} \
429static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
430{ \
fe094d98 431 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
3b18152c
JA
432}
433
434CFQ_CFQQ_FNS(on_rr);
435CFQ_CFQQ_FNS(wait_request);
b029195d 436CFQ_CFQQ_FNS(must_dispatch);
3b18152c 437CFQ_CFQQ_FNS(must_alloc_slice);
3b18152c
JA
438CFQ_CFQQ_FNS(fifo_expire);
439CFQ_CFQQ_FNS(idle_window);
440CFQ_CFQQ_FNS(prio_changed);
44f7c160 441CFQ_CFQQ_FNS(slice_new);
91fac317 442CFQ_CFQQ_FNS(sync);
a36e71f9 443CFQ_CFQQ_FNS(coop);
ae54abed 444CFQ_CFQQ_FNS(split_coop);
76280aff 445CFQ_CFQQ_FNS(deep);
f75edf2d 446CFQ_CFQQ_FNS(wait_busy);
3b18152c
JA
447#undef CFQ_CFQQ_FNS
448
f95a04af
TH
449static inline struct cfq_group *pd_to_cfqg(struct blkg_policy_data *pd)
450{
451 return pd ? container_of(pd, struct cfq_group, pd) : NULL;
452}
453
f95a04af
TH
454static inline struct blkcg_gq *cfqg_to_blkg(struct cfq_group *cfqg)
455{
456 return pd_to_blkg(&cfqg->pd);
457}
458
629ed0b1 459#if defined(CONFIG_CFQ_GROUP_IOSCHED) && defined(CONFIG_DEBUG_BLK_CGROUP)
2ce4d50f 460
155fead9
TH
461/* cfqg stats flags */
462enum cfqg_stats_flags {
463 CFQG_stats_waiting = 0,
464 CFQG_stats_idling,
465 CFQG_stats_empty,
629ed0b1
TH
466};
467
155fead9
TH
468#define CFQG_FLAG_FNS(name) \
469static inline void cfqg_stats_mark_##name(struct cfqg_stats *stats) \
629ed0b1 470{ \
155fead9 471 stats->flags |= (1 << CFQG_stats_##name); \
629ed0b1 472} \
155fead9 473static inline void cfqg_stats_clear_##name(struct cfqg_stats *stats) \
629ed0b1 474{ \
155fead9 475 stats->flags &= ~(1 << CFQG_stats_##name); \
629ed0b1 476} \
155fead9 477static inline int cfqg_stats_##name(struct cfqg_stats *stats) \
629ed0b1 478{ \
155fead9 479 return (stats->flags & (1 << CFQG_stats_##name)) != 0; \
629ed0b1
TH
480} \
481
155fead9
TH
482CFQG_FLAG_FNS(waiting)
483CFQG_FLAG_FNS(idling)
484CFQG_FLAG_FNS(empty)
485#undef CFQG_FLAG_FNS
629ed0b1
TH
486
487/* This should be called with the queue_lock held. */
155fead9 488static void cfqg_stats_update_group_wait_time(struct cfqg_stats *stats)
629ed0b1
TH
489{
490 unsigned long long now;
491
155fead9 492 if (!cfqg_stats_waiting(stats))
629ed0b1
TH
493 return;
494
495 now = sched_clock();
496 if (time_after64(now, stats->start_group_wait_time))
497 blkg_stat_add(&stats->group_wait_time,
498 now - stats->start_group_wait_time);
155fead9 499 cfqg_stats_clear_waiting(stats);
629ed0b1
TH
500}
501
502/* This should be called with the queue_lock held. */
155fead9
TH
503static void cfqg_stats_set_start_group_wait_time(struct cfq_group *cfqg,
504 struct cfq_group *curr_cfqg)
629ed0b1 505{
155fead9 506 struct cfqg_stats *stats = &cfqg->stats;
629ed0b1 507
155fead9 508 if (cfqg_stats_waiting(stats))
629ed0b1 509 return;
155fead9 510 if (cfqg == curr_cfqg)
629ed0b1 511 return;
155fead9
TH
512 stats->start_group_wait_time = sched_clock();
513 cfqg_stats_mark_waiting(stats);
629ed0b1
TH
514}
515
516/* This should be called with the queue_lock held. */
155fead9 517static void cfqg_stats_end_empty_time(struct cfqg_stats *stats)
629ed0b1
TH
518{
519 unsigned long long now;
520
155fead9 521 if (!cfqg_stats_empty(stats))
629ed0b1
TH
522 return;
523
524 now = sched_clock();
525 if (time_after64(now, stats->start_empty_time))
526 blkg_stat_add(&stats->empty_time,
527 now - stats->start_empty_time);
155fead9 528 cfqg_stats_clear_empty(stats);
629ed0b1
TH
529}
530
155fead9 531static void cfqg_stats_update_dequeue(struct cfq_group *cfqg)
629ed0b1 532{
155fead9 533 blkg_stat_add(&cfqg->stats.dequeue, 1);
629ed0b1
TH
534}
535
155fead9 536static void cfqg_stats_set_start_empty_time(struct cfq_group *cfqg)
629ed0b1 537{
155fead9 538 struct cfqg_stats *stats = &cfqg->stats;
629ed0b1
TH
539
540 if (blkg_rwstat_sum(&stats->queued))
541 return;
542
543 /*
544 * group is already marked empty. This can happen if cfqq got new
545 * request in parent group and moved to this group while being added
546 * to service tree. Just ignore the event and move on.
547 */
155fead9 548 if (cfqg_stats_empty(stats))
629ed0b1
TH
549 return;
550
551 stats->start_empty_time = sched_clock();
155fead9 552 cfqg_stats_mark_empty(stats);
629ed0b1
TH
553}
554
155fead9 555static void cfqg_stats_update_idle_time(struct cfq_group *cfqg)
629ed0b1 556{
155fead9 557 struct cfqg_stats *stats = &cfqg->stats;
629ed0b1 558
155fead9 559 if (cfqg_stats_idling(stats)) {
629ed0b1
TH
560 unsigned long long now = sched_clock();
561
562 if (time_after64(now, stats->start_idle_time))
563 blkg_stat_add(&stats->idle_time,
564 now - stats->start_idle_time);
155fead9 565 cfqg_stats_clear_idling(stats);
629ed0b1
TH
566 }
567}
568
155fead9 569static void cfqg_stats_set_start_idle_time(struct cfq_group *cfqg)
629ed0b1 570{
155fead9 571 struct cfqg_stats *stats = &cfqg->stats;
629ed0b1 572
155fead9 573 BUG_ON(cfqg_stats_idling(stats));
629ed0b1
TH
574
575 stats->start_idle_time = sched_clock();
155fead9 576 cfqg_stats_mark_idling(stats);
629ed0b1
TH
577}
578
155fead9 579static void cfqg_stats_update_avg_queue_size(struct cfq_group *cfqg)
629ed0b1 580{
155fead9 581 struct cfqg_stats *stats = &cfqg->stats;
629ed0b1
TH
582
583 blkg_stat_add(&stats->avg_queue_size_sum,
584 blkg_rwstat_sum(&stats->queued));
585 blkg_stat_add(&stats->avg_queue_size_samples, 1);
155fead9 586 cfqg_stats_update_group_wait_time(stats);
629ed0b1
TH
587}
588
589#else /* CONFIG_CFQ_GROUP_IOSCHED && CONFIG_DEBUG_BLK_CGROUP */
590
f48ec1d7
TH
591static inline void cfqg_stats_set_start_group_wait_time(struct cfq_group *cfqg, struct cfq_group *curr_cfqg) { }
592static inline void cfqg_stats_end_empty_time(struct cfqg_stats *stats) { }
593static inline void cfqg_stats_update_dequeue(struct cfq_group *cfqg) { }
594static inline void cfqg_stats_set_start_empty_time(struct cfq_group *cfqg) { }
595static inline void cfqg_stats_update_idle_time(struct cfq_group *cfqg) { }
596static inline void cfqg_stats_set_start_idle_time(struct cfq_group *cfqg) { }
597static inline void cfqg_stats_update_avg_queue_size(struct cfq_group *cfqg) { }
629ed0b1
TH
598
599#endif /* CONFIG_CFQ_GROUP_IOSCHED && CONFIG_DEBUG_BLK_CGROUP */
600
601#ifdef CONFIG_CFQ_GROUP_IOSCHED
2ce4d50f 602
ffea73fc
TH
603static struct blkcg_policy blkcg_policy_cfq;
604
605static inline struct cfq_group *blkg_to_cfqg(struct blkcg_gq *blkg)
606{
607 return pd_to_cfqg(blkg_to_pd(blkg, &blkcg_policy_cfq));
608}
609
7918ffb5
TH
610/*
611 * Determine the parent cfqg for weight calculation. Currently, cfqg
612 * scheduling is flat and the root is the parent of everyone else.
613 */
614static inline struct cfq_group *cfqg_flat_parent(struct cfq_group *cfqg)
615{
616 struct blkcg_gq *blkg = cfqg_to_blkg(cfqg);
617 struct cfq_group *root;
618
619 while (blkg->parent)
620 blkg = blkg->parent;
621 root = blkg_to_cfqg(blkg);
622
623 return root != cfqg ? root : NULL;
624}
625
eb7d8c07
TH
626static inline void cfqg_get(struct cfq_group *cfqg)
627{
628 return blkg_get(cfqg_to_blkg(cfqg));
629}
630
631static inline void cfqg_put(struct cfq_group *cfqg)
632{
633 return blkg_put(cfqg_to_blkg(cfqg));
634}
635
54e7ed12
TH
636#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) do { \
637 char __pbuf[128]; \
638 \
639 blkg_path(cfqg_to_blkg((cfqq)->cfqg), __pbuf, sizeof(__pbuf)); \
b226e5c4
VG
640 blk_add_trace_msg((cfqd)->queue, "cfq%d%c%c %s " fmt, (cfqq)->pid, \
641 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
642 cfqq_type((cfqq)) == SYNC_NOIDLE_WORKLOAD ? 'N' : ' ',\
54e7ed12
TH
643 __pbuf, ##args); \
644} while (0)
645
646#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do { \
647 char __pbuf[128]; \
648 \
649 blkg_path(cfqg_to_blkg(cfqg), __pbuf, sizeof(__pbuf)); \
650 blk_add_trace_msg((cfqd)->queue, "%s " fmt, __pbuf, ##args); \
651} while (0)
2868ef7b 652
155fead9
TH
653static inline void cfqg_stats_update_io_add(struct cfq_group *cfqg,
654 struct cfq_group *curr_cfqg, int rw)
2ce4d50f 655{
155fead9
TH
656 blkg_rwstat_add(&cfqg->stats.queued, rw, 1);
657 cfqg_stats_end_empty_time(&cfqg->stats);
658 cfqg_stats_set_start_group_wait_time(cfqg, curr_cfqg);
2ce4d50f
TH
659}
660
155fead9
TH
661static inline void cfqg_stats_update_timeslice_used(struct cfq_group *cfqg,
662 unsigned long time, unsigned long unaccounted_time)
2ce4d50f 663{
155fead9 664 blkg_stat_add(&cfqg->stats.time, time);
629ed0b1 665#ifdef CONFIG_DEBUG_BLK_CGROUP
155fead9 666 blkg_stat_add(&cfqg->stats.unaccounted_time, unaccounted_time);
629ed0b1 667#endif
2ce4d50f
TH
668}
669
155fead9 670static inline void cfqg_stats_update_io_remove(struct cfq_group *cfqg, int rw)
2ce4d50f 671{
155fead9 672 blkg_rwstat_add(&cfqg->stats.queued, rw, -1);
2ce4d50f
TH
673}
674
155fead9 675static inline void cfqg_stats_update_io_merged(struct cfq_group *cfqg, int rw)
2ce4d50f 676{
155fead9 677 blkg_rwstat_add(&cfqg->stats.merged, rw, 1);
2ce4d50f
TH
678}
679
155fead9
TH
680static inline void cfqg_stats_update_dispatch(struct cfq_group *cfqg,
681 uint64_t bytes, int rw)
2ce4d50f 682{
155fead9
TH
683 blkg_stat_add(&cfqg->stats.sectors, bytes >> 9);
684 blkg_rwstat_add(&cfqg->stats.serviced, rw, 1);
685 blkg_rwstat_add(&cfqg->stats.service_bytes, rw, bytes);
2ce4d50f
TH
686}
687
155fead9
TH
688static inline void cfqg_stats_update_completion(struct cfq_group *cfqg,
689 uint64_t start_time, uint64_t io_start_time, int rw)
2ce4d50f 690{
155fead9 691 struct cfqg_stats *stats = &cfqg->stats;
629ed0b1 692 unsigned long long now = sched_clock();
629ed0b1
TH
693
694 if (time_after64(now, io_start_time))
695 blkg_rwstat_add(&stats->service_time, rw, now - io_start_time);
696 if (time_after64(io_start_time, start_time))
697 blkg_rwstat_add(&stats->wait_time, rw,
698 io_start_time - start_time);
2ce4d50f
TH
699}
700
3c798398 701static void cfq_pd_reset_stats(struct blkcg_gq *blkg)
155fead9
TH
702{
703 struct cfq_group *cfqg = blkg_to_cfqg(blkg);
704 struct cfqg_stats *stats = &cfqg->stats;
705
706 /* queued stats shouldn't be cleared */
707 blkg_rwstat_reset(&stats->service_bytes);
708 blkg_rwstat_reset(&stats->serviced);
709 blkg_rwstat_reset(&stats->merged);
710 blkg_rwstat_reset(&stats->service_time);
711 blkg_rwstat_reset(&stats->wait_time);
712 blkg_stat_reset(&stats->time);
713#ifdef CONFIG_DEBUG_BLK_CGROUP
714 blkg_stat_reset(&stats->unaccounted_time);
715 blkg_stat_reset(&stats->avg_queue_size_sum);
716 blkg_stat_reset(&stats->avg_queue_size_samples);
717 blkg_stat_reset(&stats->dequeue);
718 blkg_stat_reset(&stats->group_wait_time);
719 blkg_stat_reset(&stats->idle_time);
720 blkg_stat_reset(&stats->empty_time);
721#endif
722}
723
eb7d8c07
TH
724#else /* CONFIG_CFQ_GROUP_IOSCHED */
725
7918ffb5 726static inline struct cfq_group *cfqg_flat_parent(struct cfq_group *cfqg) { return NULL; }
eb7d8c07
TH
727static inline void cfqg_get(struct cfq_group *cfqg) { }
728static inline void cfqg_put(struct cfq_group *cfqg) { }
729
7b679138 730#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
b226e5c4
VG
731 blk_add_trace_msg((cfqd)->queue, "cfq%d%c%c " fmt, (cfqq)->pid, \
732 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
733 cfqq_type((cfqq)) == SYNC_NOIDLE_WORKLOAD ? 'N' : ' ',\
734 ##args)
4495a7d4 735#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0)
eb7d8c07 736
155fead9
TH
737static inline void cfqg_stats_update_io_add(struct cfq_group *cfqg,
738 struct cfq_group *curr_cfqg, int rw) { }
739static inline void cfqg_stats_update_timeslice_used(struct cfq_group *cfqg,
740 unsigned long time, unsigned long unaccounted_time) { }
741static inline void cfqg_stats_update_io_remove(struct cfq_group *cfqg, int rw) { }
742static inline void cfqg_stats_update_io_merged(struct cfq_group *cfqg, int rw) { }
743static inline void cfqg_stats_update_dispatch(struct cfq_group *cfqg,
744 uint64_t bytes, int rw) { }
745static inline void cfqg_stats_update_completion(struct cfq_group *cfqg,
746 uint64_t start_time, uint64_t io_start_time, int rw) { }
2ce4d50f 747
eb7d8c07
TH
748#endif /* CONFIG_CFQ_GROUP_IOSCHED */
749
7b679138
JA
750#define cfq_log(cfqd, fmt, args...) \
751 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
752
615f0259
VG
753/* Traverses through cfq group service trees */
754#define for_each_cfqg_st(cfqg, i, j, st) \
755 for (i = 0; i <= IDLE_WORKLOAD; i++) \
756 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
757 : &cfqg->service_tree_idle; \
758 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
759 (i == IDLE_WORKLOAD && j == 0); \
760 j++, st = i < IDLE_WORKLOAD ? \
761 &cfqg->service_trees[i][j]: NULL) \
762
f5f2b6ce
SL
763static inline bool cfq_io_thinktime_big(struct cfq_data *cfqd,
764 struct cfq_ttime *ttime, bool group_idle)
765{
766 unsigned long slice;
767 if (!sample_valid(ttime->ttime_samples))
768 return false;
769 if (group_idle)
770 slice = cfqd->cfq_group_idle;
771 else
772 slice = cfqd->cfq_slice_idle;
773 return ttime->ttime_mean > slice;
774}
615f0259 775
02b35081
VG
776static inline bool iops_mode(struct cfq_data *cfqd)
777{
778 /*
779 * If we are not idling on queues and it is a NCQ drive, parallel
780 * execution of requests is on and measuring time is not possible
781 * in most of the cases until and unless we drive shallower queue
782 * depths and that becomes a performance bottleneck. In such cases
783 * switch to start providing fairness in terms of number of IOs.
784 */
785 if (!cfqd->cfq_slice_idle && cfqd->hw_tag)
786 return true;
787 else
788 return false;
789}
790
3bf10fea 791static inline enum wl_class_t cfqq_class(struct cfq_queue *cfqq)
c0324a02
CZ
792{
793 if (cfq_class_idle(cfqq))
794 return IDLE_WORKLOAD;
795 if (cfq_class_rt(cfqq))
796 return RT_WORKLOAD;
797 return BE_WORKLOAD;
798}
799
718eee05
CZ
800
801static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
802{
803 if (!cfq_cfqq_sync(cfqq))
804 return ASYNC_WORKLOAD;
805 if (!cfq_cfqq_idle_window(cfqq))
806 return SYNC_NOIDLE_WORKLOAD;
807 return SYNC_WORKLOAD;
808}
809
3bf10fea 810static inline int cfq_group_busy_queues_wl(enum wl_class_t wl_class,
58ff82f3
VG
811 struct cfq_data *cfqd,
812 struct cfq_group *cfqg)
c0324a02 813{
3bf10fea 814 if (wl_class == IDLE_WORKLOAD)
cdb16e8f 815 return cfqg->service_tree_idle.count;
c0324a02 816
34b98d03
VG
817 return cfqg->service_trees[wl_class][ASYNC_WORKLOAD].count +
818 cfqg->service_trees[wl_class][SYNC_NOIDLE_WORKLOAD].count +
819 cfqg->service_trees[wl_class][SYNC_WORKLOAD].count;
c0324a02
CZ
820}
821
f26bd1f0
VG
822static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
823 struct cfq_group *cfqg)
824{
34b98d03
VG
825 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count +
826 cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
f26bd1f0
VG
827}
828
165125e1 829static void cfq_dispatch_insert(struct request_queue *, struct request *);
4f85cb96 830static struct cfq_queue *cfq_get_queue(struct cfq_data *cfqd, bool is_sync,
abede6da 831 struct cfq_io_cq *cic, struct bio *bio,
4f85cb96 832 gfp_t gfp_mask);
91fac317 833
c5869807
TH
834static inline struct cfq_io_cq *icq_to_cic(struct io_cq *icq)
835{
836 /* cic->icq is the first member, %NULL will convert to %NULL */
837 return container_of(icq, struct cfq_io_cq, icq);
838}
839
47fdd4ca
TH
840static inline struct cfq_io_cq *cfq_cic_lookup(struct cfq_data *cfqd,
841 struct io_context *ioc)
842{
843 if (ioc)
844 return icq_to_cic(ioc_lookup_icq(ioc, cfqd->queue));
845 return NULL;
846}
847
c5869807 848static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_cq *cic, bool is_sync)
91fac317 849{
a6151c3a 850 return cic->cfqq[is_sync];
91fac317
VT
851}
852
c5869807
TH
853static inline void cic_set_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq,
854 bool is_sync)
91fac317 855{
a6151c3a 856 cic->cfqq[is_sync] = cfqq;
91fac317
VT
857}
858
c5869807 859static inline struct cfq_data *cic_to_cfqd(struct cfq_io_cq *cic)
bca4b914 860{
c5869807 861 return cic->icq.q->elevator->elevator_data;
bca4b914
KK
862}
863
91fac317
VT
864/*
865 * We regard a request as SYNC, if it's either a read or has the SYNC bit
866 * set (in which case it could also be direct WRITE).
867 */
a6151c3a 868static inline bool cfq_bio_sync(struct bio *bio)
91fac317 869{
7b6d91da 870 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
91fac317 871}
1da177e4 872
99f95e52
AM
873/*
874 * scheduler run of queue, if there are requests pending and no one in the
875 * driver that will restart queueing
876 */
23e018a1 877static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
99f95e52 878{
7b679138
JA
879 if (cfqd->busy_queues) {
880 cfq_log(cfqd, "schedule dispatch");
23e018a1 881 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
7b679138 882 }
99f95e52
AM
883}
884
44f7c160
JA
885/*
886 * Scale schedule slice based on io priority. Use the sync time slice only
887 * if a queue is marked sync and has sync io queued. A sync queue with async
888 * io only, should not get full sync slice length.
889 */
a6151c3a 890static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
d9e7620e 891 unsigned short prio)
44f7c160 892{
d9e7620e 893 const int base_slice = cfqd->cfq_slice[sync];
44f7c160 894
d9e7620e
JA
895 WARN_ON(prio >= IOPRIO_BE_NR);
896
897 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
898}
44f7c160 899
d9e7620e
JA
900static inline int
901cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
902{
903 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
44f7c160
JA
904}
905
1d3650f7
TH
906/**
907 * cfqg_scale_charge - scale disk time charge according to cfqg weight
908 * @charge: disk time being charged
909 * @vfraction: vfraction of the cfqg, fixed point w/ CFQ_SERVICE_SHIFT
910 *
911 * Scale @charge according to @vfraction, which is in range (0, 1]. The
912 * scaling is inversely proportional.
913 *
914 * scaled = charge / vfraction
915 *
916 * The result is also in fixed point w/ CFQ_SERVICE_SHIFT.
917 */
918static inline u64 cfqg_scale_charge(unsigned long charge,
919 unsigned int vfraction)
25bc6b07 920{
1d3650f7 921 u64 c = charge << CFQ_SERVICE_SHIFT; /* make it fixed point */
25bc6b07 922
1d3650f7
TH
923 /* charge / vfraction */
924 c <<= CFQ_SERVICE_SHIFT;
925 do_div(c, vfraction);
926 return c;
25bc6b07
VG
927}
928
929static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
930{
931 s64 delta = (s64)(vdisktime - min_vdisktime);
932 if (delta > 0)
933 min_vdisktime = vdisktime;
934
935 return min_vdisktime;
936}
937
938static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
939{
940 s64 delta = (s64)(vdisktime - min_vdisktime);
941 if (delta < 0)
942 min_vdisktime = vdisktime;
943
944 return min_vdisktime;
945}
946
947static void update_min_vdisktime(struct cfq_rb_root *st)
948{
25bc6b07
VG
949 struct cfq_group *cfqg;
950
25bc6b07
VG
951 if (st->left) {
952 cfqg = rb_entry_cfqg(st->left);
a6032710
GJ
953 st->min_vdisktime = max_vdisktime(st->min_vdisktime,
954 cfqg->vdisktime);
25bc6b07 955 }
25bc6b07
VG
956}
957
5db5d642
CZ
958/*
959 * get averaged number of queues of RT/BE priority.
960 * average is updated, with a formula that gives more weight to higher numbers,
961 * to quickly follows sudden increases and decrease slowly
962 */
963
58ff82f3
VG
964static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
965 struct cfq_group *cfqg, bool rt)
5869619c 966{
5db5d642
CZ
967 unsigned min_q, max_q;
968 unsigned mult = cfq_hist_divisor - 1;
969 unsigned round = cfq_hist_divisor / 2;
58ff82f3 970 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
5db5d642 971
58ff82f3
VG
972 min_q = min(cfqg->busy_queues_avg[rt], busy);
973 max_q = max(cfqg->busy_queues_avg[rt], busy);
974 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
5db5d642 975 cfq_hist_divisor;
58ff82f3
VG
976 return cfqg->busy_queues_avg[rt];
977}
978
979static inline unsigned
980cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
981{
982 struct cfq_rb_root *st = &cfqd->grp_service_tree;
983
5bf14c07 984 return cfqd->cfq_target_latency * cfqg->weight / st->total_weight;
5db5d642
CZ
985}
986
c553f8e3 987static inline unsigned
ba5bd520 988cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
44f7c160 989{
5db5d642
CZ
990 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
991 if (cfqd->cfq_latency) {
58ff82f3
VG
992 /*
993 * interested queues (we consider only the ones with the same
994 * priority class in the cfq group)
995 */
996 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
997 cfq_class_rt(cfqq));
5db5d642
CZ
998 unsigned sync_slice = cfqd->cfq_slice[1];
999 unsigned expect_latency = sync_slice * iq;
58ff82f3
VG
1000 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
1001
1002 if (expect_latency > group_slice) {
5db5d642
CZ
1003 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
1004 /* scale low_slice according to IO priority
1005 * and sync vs async */
1006 unsigned low_slice =
1007 min(slice, base_low_slice * slice / sync_slice);
1008 /* the adapted slice value is scaled to fit all iqs
1009 * into the target latency */
58ff82f3 1010 slice = max(slice * group_slice / expect_latency,
5db5d642
CZ
1011 low_slice);
1012 }
1013 }
c553f8e3
SL
1014 return slice;
1015}
1016
1017static inline void
1018cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1019{
ba5bd520 1020 unsigned slice = cfq_scaled_cfqq_slice(cfqd, cfqq);
c553f8e3 1021
dae739eb 1022 cfqq->slice_start = jiffies;
5db5d642 1023 cfqq->slice_end = jiffies + slice;
f75edf2d 1024 cfqq->allocated_slice = slice;
7b679138 1025 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
44f7c160
JA
1026}
1027
1028/*
1029 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
1030 * isn't valid until the first request from the dispatch is activated
1031 * and the slice time set.
1032 */
a6151c3a 1033static inline bool cfq_slice_used(struct cfq_queue *cfqq)
44f7c160
JA
1034{
1035 if (cfq_cfqq_slice_new(cfqq))
c1e44756 1036 return false;
44f7c160 1037 if (time_before(jiffies, cfqq->slice_end))
c1e44756 1038 return false;
44f7c160 1039
c1e44756 1040 return true;
44f7c160
JA
1041}
1042
1da177e4 1043/*
5e705374 1044 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
1da177e4 1045 * We choose the request that is closest to the head right now. Distance
e8a99053 1046 * behind the head is penalized and only allowed to a certain extent.
1da177e4 1047 */
5e705374 1048static struct request *
cf7c25cf 1049cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
1da177e4 1050{
cf7c25cf 1051 sector_t s1, s2, d1 = 0, d2 = 0;
1da177e4 1052 unsigned long back_max;
e8a99053
AM
1053#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
1054#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
1055 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
1da177e4 1056
5e705374
JA
1057 if (rq1 == NULL || rq1 == rq2)
1058 return rq2;
1059 if (rq2 == NULL)
1060 return rq1;
9c2c38a1 1061
229836bd
NK
1062 if (rq_is_sync(rq1) != rq_is_sync(rq2))
1063 return rq_is_sync(rq1) ? rq1 : rq2;
1064
65299a3b
CH
1065 if ((rq1->cmd_flags ^ rq2->cmd_flags) & REQ_PRIO)
1066 return rq1->cmd_flags & REQ_PRIO ? rq1 : rq2;
b53d1ed7 1067
83096ebf
TH
1068 s1 = blk_rq_pos(rq1);
1069 s2 = blk_rq_pos(rq2);
1da177e4 1070
1da177e4
LT
1071 /*
1072 * by definition, 1KiB is 2 sectors
1073 */
1074 back_max = cfqd->cfq_back_max * 2;
1075
1076 /*
1077 * Strict one way elevator _except_ in the case where we allow
1078 * short backward seeks which are biased as twice the cost of a
1079 * similar forward seek.
1080 */
1081 if (s1 >= last)
1082 d1 = s1 - last;
1083 else if (s1 + back_max >= last)
1084 d1 = (last - s1) * cfqd->cfq_back_penalty;
1085 else
e8a99053 1086 wrap |= CFQ_RQ1_WRAP;
1da177e4
LT
1087
1088 if (s2 >= last)
1089 d2 = s2 - last;
1090 else if (s2 + back_max >= last)
1091 d2 = (last - s2) * cfqd->cfq_back_penalty;
1092 else
e8a99053 1093 wrap |= CFQ_RQ2_WRAP;
1da177e4
LT
1094
1095 /* Found required data */
e8a99053
AM
1096
1097 /*
1098 * By doing switch() on the bit mask "wrap" we avoid having to
1099 * check two variables for all permutations: --> faster!
1100 */
1101 switch (wrap) {
5e705374 1102 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
e8a99053 1103 if (d1 < d2)
5e705374 1104 return rq1;
e8a99053 1105 else if (d2 < d1)
5e705374 1106 return rq2;
e8a99053
AM
1107 else {
1108 if (s1 >= s2)
5e705374 1109 return rq1;
e8a99053 1110 else
5e705374 1111 return rq2;
e8a99053 1112 }
1da177e4 1113
e8a99053 1114 case CFQ_RQ2_WRAP:
5e705374 1115 return rq1;
e8a99053 1116 case CFQ_RQ1_WRAP:
5e705374
JA
1117 return rq2;
1118 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
e8a99053
AM
1119 default:
1120 /*
1121 * Since both rqs are wrapped,
1122 * start with the one that's further behind head
1123 * (--> only *one* back seek required),
1124 * since back seek takes more time than forward.
1125 */
1126 if (s1 <= s2)
5e705374 1127 return rq1;
1da177e4 1128 else
5e705374 1129 return rq2;
1da177e4
LT
1130 }
1131}
1132
498d3aa2
JA
1133/*
1134 * The below is leftmost cache rbtree addon
1135 */
0871714e 1136static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
cc09e299 1137{
615f0259
VG
1138 /* Service tree is empty */
1139 if (!root->count)
1140 return NULL;
1141
cc09e299
JA
1142 if (!root->left)
1143 root->left = rb_first(&root->rb);
1144
0871714e
JA
1145 if (root->left)
1146 return rb_entry(root->left, struct cfq_queue, rb_node);
1147
1148 return NULL;
cc09e299
JA
1149}
1150
1fa8f6d6
VG
1151static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
1152{
1153 if (!root->left)
1154 root->left = rb_first(&root->rb);
1155
1156 if (root->left)
1157 return rb_entry_cfqg(root->left);
1158
1159 return NULL;
1160}
1161
a36e71f9
JA
1162static void rb_erase_init(struct rb_node *n, struct rb_root *root)
1163{
1164 rb_erase(n, root);
1165 RB_CLEAR_NODE(n);
1166}
1167
cc09e299
JA
1168static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
1169{
1170 if (root->left == n)
1171 root->left = NULL;
a36e71f9 1172 rb_erase_init(n, &root->rb);
aa6f6a3d 1173 --root->count;
cc09e299
JA
1174}
1175
1da177e4
LT
1176/*
1177 * would be nice to take fifo expire time into account as well
1178 */
5e705374
JA
1179static struct request *
1180cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1181 struct request *last)
1da177e4 1182{
21183b07
JA
1183 struct rb_node *rbnext = rb_next(&last->rb_node);
1184 struct rb_node *rbprev = rb_prev(&last->rb_node);
5e705374 1185 struct request *next = NULL, *prev = NULL;
1da177e4 1186
21183b07 1187 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
1da177e4
LT
1188
1189 if (rbprev)
5e705374 1190 prev = rb_entry_rq(rbprev);
1da177e4 1191
21183b07 1192 if (rbnext)
5e705374 1193 next = rb_entry_rq(rbnext);
21183b07
JA
1194 else {
1195 rbnext = rb_first(&cfqq->sort_list);
1196 if (rbnext && rbnext != &last->rb_node)
5e705374 1197 next = rb_entry_rq(rbnext);
21183b07 1198 }
1da177e4 1199
cf7c25cf 1200 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
1da177e4
LT
1201}
1202
d9e7620e
JA
1203static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
1204 struct cfq_queue *cfqq)
1da177e4 1205{
d9e7620e
JA
1206 /*
1207 * just an approximation, should be ok.
1208 */
cdb16e8f 1209 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
464191c6 1210 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
d9e7620e
JA
1211}
1212
1fa8f6d6
VG
1213static inline s64
1214cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
1215{
1216 return cfqg->vdisktime - st->min_vdisktime;
1217}
1218
1219static void
1220__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
1221{
1222 struct rb_node **node = &st->rb.rb_node;
1223 struct rb_node *parent = NULL;
1224 struct cfq_group *__cfqg;
1225 s64 key = cfqg_key(st, cfqg);
1226 int left = 1;
1227
1228 while (*node != NULL) {
1229 parent = *node;
1230 __cfqg = rb_entry_cfqg(parent);
1231
1232 if (key < cfqg_key(st, __cfqg))
1233 node = &parent->rb_left;
1234 else {
1235 node = &parent->rb_right;
1236 left = 0;
1237 }
1238 }
1239
1240 if (left)
1241 st->left = &cfqg->rb_node;
1242
1243 rb_link_node(&cfqg->rb_node, parent, node);
1244 rb_insert_color(&cfqg->rb_node, &st->rb);
1245}
1246
1247static void
8184f93e
JT
1248cfq_update_group_weight(struct cfq_group *cfqg)
1249{
1250 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
e71357e1 1251
3381cb8d 1252 if (cfqg->new_weight) {
8184f93e 1253 cfqg->weight = cfqg->new_weight;
3381cb8d 1254 cfqg->new_weight = 0;
8184f93e 1255 }
e71357e1
TH
1256
1257 if (cfqg->new_leaf_weight) {
1258 cfqg->leaf_weight = cfqg->new_leaf_weight;
1259 cfqg->new_leaf_weight = 0;
1260 }
8184f93e
JT
1261}
1262
1263static void
1264cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
1265{
1d3650f7 1266 unsigned int vfr = 1 << CFQ_SERVICE_SHIFT; /* start with 1 */
7918ffb5 1267 struct cfq_group *pos = cfqg;
1d3650f7 1268 struct cfq_group *parent;
7918ffb5
TH
1269 bool propagate;
1270
1271 /* add to the service tree */
8184f93e
JT
1272 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
1273
1274 cfq_update_group_weight(cfqg);
1275 __cfq_group_service_tree_add(st, cfqg);
1276 st->total_weight += cfqg->weight;
7918ffb5
TH
1277
1278 /*
1d3650f7
TH
1279 * Activate @cfqg and calculate the portion of vfraction @cfqg is
1280 * entitled to. vfraction is calculated by walking the tree
1281 * towards the root calculating the fraction it has at each level.
1282 * The compounded ratio is how much vfraction @cfqg owns.
1283 *
1284 * Start with the proportion tasks in this cfqg has against active
1285 * children cfqgs - its leaf_weight against children_weight.
7918ffb5
TH
1286 */
1287 propagate = !pos->nr_active++;
1288 pos->children_weight += pos->leaf_weight;
1d3650f7 1289 vfr = vfr * pos->leaf_weight / pos->children_weight;
7918ffb5 1290
1d3650f7
TH
1291 /*
1292 * Compound ->weight walking up the tree. Both activation and
1293 * vfraction calculation are done in the same loop. Propagation
1294 * stops once an already activated node is met. vfraction
1295 * calculation should always continue to the root.
1296 */
1297 while ((parent = cfqg_flat_parent(pos))) {
1298 if (propagate) {
1299 propagate = !parent->nr_active++;
1300 parent->children_weight += pos->weight;
1301 }
1302 vfr = vfr * pos->weight / parent->children_weight;
7918ffb5
TH
1303 pos = parent;
1304 }
1d3650f7
TH
1305
1306 cfqg->vfraction = max_t(unsigned, vfr, 1);
8184f93e
JT
1307}
1308
1309static void
1310cfq_group_notify_queue_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
1fa8f6d6
VG
1311{
1312 struct cfq_rb_root *st = &cfqd->grp_service_tree;
1313 struct cfq_group *__cfqg;
1314 struct rb_node *n;
1315
1316 cfqg->nr_cfqq++;
760701bf 1317 if (!RB_EMPTY_NODE(&cfqg->rb_node))
1fa8f6d6
VG
1318 return;
1319
1320 /*
1321 * Currently put the group at the end. Later implement something
1322 * so that groups get lesser vtime based on their weights, so that
25985edc 1323 * if group does not loose all if it was not continuously backlogged.
1fa8f6d6
VG
1324 */
1325 n = rb_last(&st->rb);
1326 if (n) {
1327 __cfqg = rb_entry_cfqg(n);
1328 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
1329 } else
1330 cfqg->vdisktime = st->min_vdisktime;
8184f93e
JT
1331 cfq_group_service_tree_add(st, cfqg);
1332}
1fa8f6d6 1333
8184f93e
JT
1334static void
1335cfq_group_service_tree_del(struct cfq_rb_root *st, struct cfq_group *cfqg)
1336{
7918ffb5
TH
1337 struct cfq_group *pos = cfqg;
1338 bool propagate;
1339
1340 /*
1341 * Undo activation from cfq_group_service_tree_add(). Deactivate
1342 * @cfqg and propagate deactivation upwards.
1343 */
1344 propagate = !--pos->nr_active;
1345 pos->children_weight -= pos->leaf_weight;
1346
1347 while (propagate) {
1348 struct cfq_group *parent = cfqg_flat_parent(pos);
1349
1350 /* @pos has 0 nr_active at this point */
1351 WARN_ON_ONCE(pos->children_weight);
1d3650f7 1352 pos->vfraction = 0;
7918ffb5
TH
1353
1354 if (!parent)
1355 break;
1356
1357 propagate = !--parent->nr_active;
1358 parent->children_weight -= pos->weight;
1359 pos = parent;
1360 }
1361
1362 /* remove from the service tree */
8184f93e
JT
1363 st->total_weight -= cfqg->weight;
1364 if (!RB_EMPTY_NODE(&cfqg->rb_node))
1365 cfq_rb_erase(&cfqg->rb_node, st);
1fa8f6d6
VG
1366}
1367
1368static void
8184f93e 1369cfq_group_notify_queue_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
1fa8f6d6
VG
1370{
1371 struct cfq_rb_root *st = &cfqd->grp_service_tree;
1372
1373 BUG_ON(cfqg->nr_cfqq < 1);
1374 cfqg->nr_cfqq--;
25bc6b07 1375
1fa8f6d6
VG
1376 /* If there are other cfq queues under this group, don't delete it */
1377 if (cfqg->nr_cfqq)
1378 return;
1379
2868ef7b 1380 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
8184f93e 1381 cfq_group_service_tree_del(st, cfqg);
4d2ceea4 1382 cfqg->saved_wl_slice = 0;
155fead9 1383 cfqg_stats_update_dequeue(cfqg);
dae739eb
VG
1384}
1385
167400d3
JT
1386static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq,
1387 unsigned int *unaccounted_time)
dae739eb 1388{
f75edf2d 1389 unsigned int slice_used;
dae739eb
VG
1390
1391 /*
1392 * Queue got expired before even a single request completed or
1393 * got expired immediately after first request completion.
1394 */
1395 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
1396 /*
1397 * Also charge the seek time incurred to the group, otherwise
1398 * if there are mutiple queues in the group, each can dispatch
1399 * a single request on seeky media and cause lots of seek time
1400 * and group will never know it.
1401 */
1402 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
1403 1);
1404 } else {
1405 slice_used = jiffies - cfqq->slice_start;
167400d3
JT
1406 if (slice_used > cfqq->allocated_slice) {
1407 *unaccounted_time = slice_used - cfqq->allocated_slice;
f75edf2d 1408 slice_used = cfqq->allocated_slice;
167400d3
JT
1409 }
1410 if (time_after(cfqq->slice_start, cfqq->dispatch_start))
1411 *unaccounted_time += cfqq->slice_start -
1412 cfqq->dispatch_start;
dae739eb
VG
1413 }
1414
dae739eb
VG
1415 return slice_used;
1416}
1417
1418static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
e5ff082e 1419 struct cfq_queue *cfqq)
dae739eb
VG
1420{
1421 struct cfq_rb_root *st = &cfqd->grp_service_tree;
167400d3 1422 unsigned int used_sl, charge, unaccounted_sl = 0;
f26bd1f0
VG
1423 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
1424 - cfqg->service_tree_idle.count;
1d3650f7 1425 unsigned int vfr;
f26bd1f0
VG
1426
1427 BUG_ON(nr_sync < 0);
167400d3 1428 used_sl = charge = cfq_cfqq_slice_usage(cfqq, &unaccounted_sl);
dae739eb 1429
02b35081
VG
1430 if (iops_mode(cfqd))
1431 charge = cfqq->slice_dispatch;
1432 else if (!cfq_cfqq_sync(cfqq) && !nr_sync)
1433 charge = cfqq->allocated_slice;
dae739eb 1434
1d3650f7
TH
1435 /*
1436 * Can't update vdisktime while on service tree and cfqg->vfraction
1437 * is valid only while on it. Cache vfr, leave the service tree,
1438 * update vdisktime and go back on. The re-addition to the tree
1439 * will also update the weights as necessary.
1440 */
1441 vfr = cfqg->vfraction;
8184f93e 1442 cfq_group_service_tree_del(st, cfqg);
1d3650f7 1443 cfqg->vdisktime += cfqg_scale_charge(charge, vfr);
8184f93e 1444 cfq_group_service_tree_add(st, cfqg);
dae739eb
VG
1445
1446 /* This group is being expired. Save the context */
1447 if (time_after(cfqd->workload_expires, jiffies)) {
4d2ceea4 1448 cfqg->saved_wl_slice = cfqd->workload_expires
dae739eb 1449 - jiffies;
4d2ceea4
VG
1450 cfqg->saved_wl_type = cfqd->serving_wl_type;
1451 cfqg->saved_wl_class = cfqd->serving_wl_class;
dae739eb 1452 } else
4d2ceea4 1453 cfqg->saved_wl_slice = 0;
2868ef7b
VG
1454
1455 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
1456 st->min_vdisktime);
fd16d263
JP
1457 cfq_log_cfqq(cfqq->cfqd, cfqq,
1458 "sl_used=%u disp=%u charge=%u iops=%u sect=%lu",
1459 used_sl, cfqq->slice_dispatch, charge,
1460 iops_mode(cfqd), cfqq->nr_sectors);
155fead9
TH
1461 cfqg_stats_update_timeslice_used(cfqg, used_sl, unaccounted_sl);
1462 cfqg_stats_set_start_empty_time(cfqg);
1fa8f6d6
VG
1463}
1464
f51b802c
TH
1465/**
1466 * cfq_init_cfqg_base - initialize base part of a cfq_group
1467 * @cfqg: cfq_group to initialize
1468 *
1469 * Initialize the base part which is used whether %CONFIG_CFQ_GROUP_IOSCHED
1470 * is enabled or not.
1471 */
1472static void cfq_init_cfqg_base(struct cfq_group *cfqg)
1473{
1474 struct cfq_rb_root *st;
1475 int i, j;
1476
1477 for_each_cfqg_st(cfqg, i, j, st)
1478 *st = CFQ_RB_ROOT;
1479 RB_CLEAR_NODE(&cfqg->rb_node);
1480
1481 cfqg->ttime.last_end_request = jiffies;
1482}
1483
25fb5169 1484#ifdef CONFIG_CFQ_GROUP_IOSCHED
3c798398 1485static void cfq_pd_init(struct blkcg_gq *blkg)
f469a7b4 1486{
0381411e 1487 struct cfq_group *cfqg = blkg_to_cfqg(blkg);
25fb5169 1488
f51b802c 1489 cfq_init_cfqg_base(cfqg);
3381cb8d 1490 cfqg->weight = blkg->blkcg->cfq_weight;
e71357e1 1491 cfqg->leaf_weight = blkg->blkcg->cfq_leaf_weight;
25fb5169
VG
1492}
1493
1494/*
3e59cf9d
VG
1495 * Search for the cfq group current task belongs to. request_queue lock must
1496 * be held.
25fb5169 1497 */
cd1604fa 1498static struct cfq_group *cfq_lookup_create_cfqg(struct cfq_data *cfqd,
3c798398 1499 struct blkcg *blkcg)
25fb5169 1500{
f469a7b4 1501 struct request_queue *q = cfqd->queue;
cd1604fa 1502 struct cfq_group *cfqg = NULL;
25fb5169 1503
3c798398
TH
1504 /* avoid lookup for the common case where there's no blkcg */
1505 if (blkcg == &blkcg_root) {
cd1604fa
TH
1506 cfqg = cfqd->root_group;
1507 } else {
3c798398 1508 struct blkcg_gq *blkg;
f469a7b4 1509
3c96cb32 1510 blkg = blkg_lookup_create(blkcg, q);
cd1604fa 1511 if (!IS_ERR(blkg))
0381411e 1512 cfqg = blkg_to_cfqg(blkg);
cd1604fa 1513 }
f469a7b4 1514
25fb5169
VG
1515 return cfqg;
1516}
1517
1518static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1519{
1520 /* Currently, all async queues are mapped to root group */
1521 if (!cfq_cfqq_sync(cfqq))
f51b802c 1522 cfqg = cfqq->cfqd->root_group;
25fb5169
VG
1523
1524 cfqq->cfqg = cfqg;
b1c35769 1525 /* cfqq reference on cfqg */
eb7d8c07 1526 cfqg_get(cfqg);
b1c35769
VG
1527}
1528
f95a04af
TH
1529static u64 cfqg_prfill_weight_device(struct seq_file *sf,
1530 struct blkg_policy_data *pd, int off)
60c2bc2d 1531{
f95a04af 1532 struct cfq_group *cfqg = pd_to_cfqg(pd);
3381cb8d
TH
1533
1534 if (!cfqg->dev_weight)
60c2bc2d 1535 return 0;
f95a04af 1536 return __blkg_prfill_u64(sf, pd, cfqg->dev_weight);
60c2bc2d
TH
1537}
1538
3381cb8d
TH
1539static int cfqg_print_weight_device(struct cgroup *cgrp, struct cftype *cft,
1540 struct seq_file *sf)
60c2bc2d 1541{
3c798398
TH
1542 blkcg_print_blkgs(sf, cgroup_to_blkcg(cgrp),
1543 cfqg_prfill_weight_device, &blkcg_policy_cfq, 0,
60c2bc2d
TH
1544 false);
1545 return 0;
1546}
1547
e71357e1
TH
1548static u64 cfqg_prfill_leaf_weight_device(struct seq_file *sf,
1549 struct blkg_policy_data *pd, int off)
1550{
1551 struct cfq_group *cfqg = pd_to_cfqg(pd);
1552
1553 if (!cfqg->dev_leaf_weight)
1554 return 0;
1555 return __blkg_prfill_u64(sf, pd, cfqg->dev_leaf_weight);
1556}
1557
1558static int cfqg_print_leaf_weight_device(struct cgroup *cgrp,
1559 struct cftype *cft,
1560 struct seq_file *sf)
1561{
1562 blkcg_print_blkgs(sf, cgroup_to_blkcg(cgrp),
1563 cfqg_prfill_leaf_weight_device, &blkcg_policy_cfq, 0,
1564 false);
1565 return 0;
1566}
1567
3381cb8d
TH
1568static int cfq_print_weight(struct cgroup *cgrp, struct cftype *cft,
1569 struct seq_file *sf)
60c2bc2d 1570{
3c798398 1571 seq_printf(sf, "%u\n", cgroup_to_blkcg(cgrp)->cfq_weight);
60c2bc2d
TH
1572 return 0;
1573}
1574
e71357e1
TH
1575static int cfq_print_leaf_weight(struct cgroup *cgrp, struct cftype *cft,
1576 struct seq_file *sf)
1577{
1578 seq_printf(sf, "%u\n",
1579 cgroup_to_blkcg(cgrp)->cfq_leaf_weight);
1580 return 0;
1581}
1582
1583static int __cfqg_set_weight_device(struct cgroup *cgrp, struct cftype *cft,
1584 const char *buf, bool is_leaf_weight)
60c2bc2d 1585{
3c798398 1586 struct blkcg *blkcg = cgroup_to_blkcg(cgrp);
60c2bc2d 1587 struct blkg_conf_ctx ctx;
3381cb8d 1588 struct cfq_group *cfqg;
60c2bc2d
TH
1589 int ret;
1590
3c798398 1591 ret = blkg_conf_prep(blkcg, &blkcg_policy_cfq, buf, &ctx);
60c2bc2d
TH
1592 if (ret)
1593 return ret;
1594
1595 ret = -EINVAL;
3381cb8d 1596 cfqg = blkg_to_cfqg(ctx.blkg);
a2b1693b 1597 if (!ctx.v || (ctx.v >= CFQ_WEIGHT_MIN && ctx.v <= CFQ_WEIGHT_MAX)) {
e71357e1
TH
1598 if (!is_leaf_weight) {
1599 cfqg->dev_weight = ctx.v;
1600 cfqg->new_weight = ctx.v ?: blkcg->cfq_weight;
1601 } else {
1602 cfqg->dev_leaf_weight = ctx.v;
1603 cfqg->new_leaf_weight = ctx.v ?: blkcg->cfq_leaf_weight;
1604 }
60c2bc2d
TH
1605 ret = 0;
1606 }
1607
1608 blkg_conf_finish(&ctx);
1609 return ret;
1610}
1611
e71357e1
TH
1612static int cfqg_set_weight_device(struct cgroup *cgrp, struct cftype *cft,
1613 const char *buf)
1614{
1615 return __cfqg_set_weight_device(cgrp, cft, buf, false);
1616}
1617
1618static int cfqg_set_leaf_weight_device(struct cgroup *cgrp, struct cftype *cft,
1619 const char *buf)
1620{
1621 return __cfqg_set_weight_device(cgrp, cft, buf, true);
1622}
1623
1624static int __cfq_set_weight(struct cgroup *cgrp, struct cftype *cft, u64 val,
1625 bool is_leaf_weight)
60c2bc2d 1626{
3c798398
TH
1627 struct blkcg *blkcg = cgroup_to_blkcg(cgrp);
1628 struct blkcg_gq *blkg;
60c2bc2d
TH
1629 struct hlist_node *n;
1630
3381cb8d 1631 if (val < CFQ_WEIGHT_MIN || val > CFQ_WEIGHT_MAX)
60c2bc2d
TH
1632 return -EINVAL;
1633
1634 spin_lock_irq(&blkcg->lock);
e71357e1
TH
1635
1636 if (!is_leaf_weight)
1637 blkcg->cfq_weight = val;
1638 else
1639 blkcg->cfq_leaf_weight = val;
60c2bc2d
TH
1640
1641 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
3381cb8d 1642 struct cfq_group *cfqg = blkg_to_cfqg(blkg);
60c2bc2d 1643
e71357e1
TH
1644 if (!cfqg)
1645 continue;
1646
1647 if (!is_leaf_weight) {
1648 if (!cfqg->dev_weight)
1649 cfqg->new_weight = blkcg->cfq_weight;
1650 } else {
1651 if (!cfqg->dev_leaf_weight)
1652 cfqg->new_leaf_weight = blkcg->cfq_leaf_weight;
1653 }
60c2bc2d
TH
1654 }
1655
1656 spin_unlock_irq(&blkcg->lock);
1657 return 0;
1658}
1659
e71357e1
TH
1660static int cfq_set_weight(struct cgroup *cgrp, struct cftype *cft, u64 val)
1661{
1662 return __cfq_set_weight(cgrp, cft, val, false);
1663}
1664
1665static int cfq_set_leaf_weight(struct cgroup *cgrp, struct cftype *cft, u64 val)
1666{
1667 return __cfq_set_weight(cgrp, cft, val, true);
1668}
1669
5bc4afb1
TH
1670static int cfqg_print_stat(struct cgroup *cgrp, struct cftype *cft,
1671 struct seq_file *sf)
1672{
3c798398 1673 struct blkcg *blkcg = cgroup_to_blkcg(cgrp);
5bc4afb1 1674
3c798398 1675 blkcg_print_blkgs(sf, blkcg, blkg_prfill_stat, &blkcg_policy_cfq,
5bc4afb1
TH
1676 cft->private, false);
1677 return 0;
1678}
1679
1680static int cfqg_print_rwstat(struct cgroup *cgrp, struct cftype *cft,
1681 struct seq_file *sf)
1682{
3c798398 1683 struct blkcg *blkcg = cgroup_to_blkcg(cgrp);
5bc4afb1 1684
3c798398 1685 blkcg_print_blkgs(sf, blkcg, blkg_prfill_rwstat, &blkcg_policy_cfq,
5bc4afb1
TH
1686 cft->private, true);
1687 return 0;
1688}
1689
60c2bc2d 1690#ifdef CONFIG_DEBUG_BLK_CGROUP
f95a04af
TH
1691static u64 cfqg_prfill_avg_queue_size(struct seq_file *sf,
1692 struct blkg_policy_data *pd, int off)
60c2bc2d 1693{
f95a04af 1694 struct cfq_group *cfqg = pd_to_cfqg(pd);
155fead9 1695 u64 samples = blkg_stat_read(&cfqg->stats.avg_queue_size_samples);
60c2bc2d
TH
1696 u64 v = 0;
1697
1698 if (samples) {
155fead9 1699 v = blkg_stat_read(&cfqg->stats.avg_queue_size_sum);
60c2bc2d
TH
1700 do_div(v, samples);
1701 }
f95a04af 1702 __blkg_prfill_u64(sf, pd, v);
60c2bc2d
TH
1703 return 0;
1704}
1705
1706/* print avg_queue_size */
155fead9
TH
1707static int cfqg_print_avg_queue_size(struct cgroup *cgrp, struct cftype *cft,
1708 struct seq_file *sf)
60c2bc2d 1709{
3c798398 1710 struct blkcg *blkcg = cgroup_to_blkcg(cgrp);
60c2bc2d 1711
155fead9 1712 blkcg_print_blkgs(sf, blkcg, cfqg_prfill_avg_queue_size,
3c798398 1713 &blkcg_policy_cfq, 0, false);
60c2bc2d
TH
1714 return 0;
1715}
1716#endif /* CONFIG_DEBUG_BLK_CGROUP */
1717
1718static struct cftype cfq_blkcg_files[] = {
1d3650f7 1719 /* on root, weight is mapped to leaf_weight */
60c2bc2d
TH
1720 {
1721 .name = "weight_device",
1d3650f7
TH
1722 .flags = CFTYPE_ONLY_ON_ROOT,
1723 .read_seq_string = cfqg_print_leaf_weight_device,
1724 .write_string = cfqg_set_leaf_weight_device,
60c2bc2d
TH
1725 .max_write_len = 256,
1726 },
1727 {
1728 .name = "weight",
1d3650f7
TH
1729 .flags = CFTYPE_ONLY_ON_ROOT,
1730 .read_seq_string = cfq_print_leaf_weight,
1731 .write_u64 = cfq_set_leaf_weight,
60c2bc2d 1732 },
e71357e1 1733
1d3650f7 1734 /* no such mapping necessary for !roots */
e71357e1 1735 {
1d3650f7
TH
1736 .name = "weight_device",
1737 .flags = CFTYPE_NOT_ON_ROOT,
e71357e1
TH
1738 .read_seq_string = cfqg_print_weight_device,
1739 .write_string = cfqg_set_weight_device,
1740 .max_write_len = 256,
1741 },
1742 {
1d3650f7
TH
1743 .name = "weight",
1744 .flags = CFTYPE_NOT_ON_ROOT,
e71357e1
TH
1745 .read_seq_string = cfq_print_weight,
1746 .write_u64 = cfq_set_weight,
1747 },
1748
e71357e1
TH
1749 {
1750 .name = "leaf_weight_device",
e71357e1
TH
1751 .read_seq_string = cfqg_print_leaf_weight_device,
1752 .write_string = cfqg_set_leaf_weight_device,
1753 .max_write_len = 256,
1754 },
1755 {
1756 .name = "leaf_weight",
e71357e1
TH
1757 .read_seq_string = cfq_print_leaf_weight,
1758 .write_u64 = cfq_set_leaf_weight,
1759 },
1760
60c2bc2d
TH
1761 {
1762 .name = "time",
5bc4afb1
TH
1763 .private = offsetof(struct cfq_group, stats.time),
1764 .read_seq_string = cfqg_print_stat,
60c2bc2d
TH
1765 },
1766 {
1767 .name = "sectors",
5bc4afb1
TH
1768 .private = offsetof(struct cfq_group, stats.sectors),
1769 .read_seq_string = cfqg_print_stat,
60c2bc2d
TH
1770 },
1771 {
1772 .name = "io_service_bytes",
5bc4afb1
TH
1773 .private = offsetof(struct cfq_group, stats.service_bytes),
1774 .read_seq_string = cfqg_print_rwstat,
60c2bc2d
TH
1775 },
1776 {
1777 .name = "io_serviced",
5bc4afb1
TH
1778 .private = offsetof(struct cfq_group, stats.serviced),
1779 .read_seq_string = cfqg_print_rwstat,
60c2bc2d
TH
1780 },
1781 {
1782 .name = "io_service_time",
5bc4afb1
TH
1783 .private = offsetof(struct cfq_group, stats.service_time),
1784 .read_seq_string = cfqg_print_rwstat,
60c2bc2d
TH
1785 },
1786 {
1787 .name = "io_wait_time",
5bc4afb1
TH
1788 .private = offsetof(struct cfq_group, stats.wait_time),
1789 .read_seq_string = cfqg_print_rwstat,
60c2bc2d
TH
1790 },
1791 {
1792 .name = "io_merged",
5bc4afb1
TH
1793 .private = offsetof(struct cfq_group, stats.merged),
1794 .read_seq_string = cfqg_print_rwstat,
60c2bc2d
TH
1795 },
1796 {
1797 .name = "io_queued",
5bc4afb1
TH
1798 .private = offsetof(struct cfq_group, stats.queued),
1799 .read_seq_string = cfqg_print_rwstat,
60c2bc2d
TH
1800 },
1801#ifdef CONFIG_DEBUG_BLK_CGROUP
1802 {
1803 .name = "avg_queue_size",
155fead9 1804 .read_seq_string = cfqg_print_avg_queue_size,
60c2bc2d
TH
1805 },
1806 {
1807 .name = "group_wait_time",
5bc4afb1
TH
1808 .private = offsetof(struct cfq_group, stats.group_wait_time),
1809 .read_seq_string = cfqg_print_stat,
60c2bc2d
TH
1810 },
1811 {
1812 .name = "idle_time",
5bc4afb1
TH
1813 .private = offsetof(struct cfq_group, stats.idle_time),
1814 .read_seq_string = cfqg_print_stat,
60c2bc2d
TH
1815 },
1816 {
1817 .name = "empty_time",
5bc4afb1
TH
1818 .private = offsetof(struct cfq_group, stats.empty_time),
1819 .read_seq_string = cfqg_print_stat,
60c2bc2d
TH
1820 },
1821 {
1822 .name = "dequeue",
5bc4afb1
TH
1823 .private = offsetof(struct cfq_group, stats.dequeue),
1824 .read_seq_string = cfqg_print_stat,
60c2bc2d
TH
1825 },
1826 {
1827 .name = "unaccounted_time",
5bc4afb1
TH
1828 .private = offsetof(struct cfq_group, stats.unaccounted_time),
1829 .read_seq_string = cfqg_print_stat,
60c2bc2d
TH
1830 },
1831#endif /* CONFIG_DEBUG_BLK_CGROUP */
1832 { } /* terminate */
1833};
25fb5169 1834#else /* GROUP_IOSCHED */
cd1604fa 1835static struct cfq_group *cfq_lookup_create_cfqg(struct cfq_data *cfqd,
3c798398 1836 struct blkcg *blkcg)
25fb5169 1837{
f51b802c 1838 return cfqd->root_group;
25fb5169 1839}
7f1dc8a2 1840
25fb5169
VG
1841static inline void
1842cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1843 cfqq->cfqg = cfqg;
1844}
1845
1846#endif /* GROUP_IOSCHED */
1847
498d3aa2 1848/*
c0324a02 1849 * The cfqd->service_trees holds all pending cfq_queue's that have
498d3aa2
JA
1850 * requests waiting to be processed. It is sorted in the order that
1851 * we will service the queues.
1852 */
a36e71f9 1853static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
a6151c3a 1854 bool add_front)
d9e7620e 1855{
0871714e
JA
1856 struct rb_node **p, *parent;
1857 struct cfq_queue *__cfqq;
d9e7620e 1858 unsigned long rb_key;
34b98d03 1859 struct cfq_rb_root *st;
498d3aa2 1860 int left;
dae739eb 1861 int new_cfqq = 1;
ae30c286 1862
34b98d03 1863 st = st_for(cfqq->cfqg, cfqq_class(cfqq), cfqq_type(cfqq));
0871714e
JA
1864 if (cfq_class_idle(cfqq)) {
1865 rb_key = CFQ_IDLE_DELAY;
34b98d03 1866 parent = rb_last(&st->rb);
0871714e
JA
1867 if (parent && parent != &cfqq->rb_node) {
1868 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1869 rb_key += __cfqq->rb_key;
1870 } else
1871 rb_key += jiffies;
1872 } else if (!add_front) {
b9c8946b
JA
1873 /*
1874 * Get our rb key offset. Subtract any residual slice
1875 * value carried from last service. A negative resid
1876 * count indicates slice overrun, and this should position
1877 * the next service time further away in the tree.
1878 */
edd75ffd 1879 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
b9c8946b 1880 rb_key -= cfqq->slice_resid;
edd75ffd 1881 cfqq->slice_resid = 0;
48e025e6
CZ
1882 } else {
1883 rb_key = -HZ;
34b98d03 1884 __cfqq = cfq_rb_first(st);
48e025e6
CZ
1885 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1886 }
1da177e4 1887
d9e7620e 1888 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
dae739eb 1889 new_cfqq = 0;
99f9628a 1890 /*
d9e7620e 1891 * same position, nothing more to do
99f9628a 1892 */
34b98d03 1893 if (rb_key == cfqq->rb_key && cfqq->service_tree == st)
d9e7620e 1894 return;
1da177e4 1895
aa6f6a3d
CZ
1896 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1897 cfqq->service_tree = NULL;
1da177e4 1898 }
d9e7620e 1899
498d3aa2 1900 left = 1;
0871714e 1901 parent = NULL;
34b98d03
VG
1902 cfqq->service_tree = st;
1903 p = &st->rb.rb_node;
d9e7620e
JA
1904 while (*p) {
1905 parent = *p;
1906 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1907
0c534e0a 1908 /*
c0324a02 1909 * sort by key, that represents service time.
0c534e0a 1910 */
c0324a02 1911 if (time_before(rb_key, __cfqq->rb_key))
1f23f121 1912 p = &parent->rb_left;
c0324a02 1913 else {
1f23f121 1914 p = &parent->rb_right;
cc09e299 1915 left = 0;
c0324a02 1916 }
d9e7620e
JA
1917 }
1918
cc09e299 1919 if (left)
34b98d03 1920 st->left = &cfqq->rb_node;
cc09e299 1921
d9e7620e
JA
1922 cfqq->rb_key = rb_key;
1923 rb_link_node(&cfqq->rb_node, parent, p);
34b98d03
VG
1924 rb_insert_color(&cfqq->rb_node, &st->rb);
1925 st->count++;
20359f27 1926 if (add_front || !new_cfqq)
dae739eb 1927 return;
8184f93e 1928 cfq_group_notify_queue_add(cfqd, cfqq->cfqg);
1da177e4
LT
1929}
1930
a36e71f9 1931static struct cfq_queue *
f2d1f0ae
JA
1932cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1933 sector_t sector, struct rb_node **ret_parent,
1934 struct rb_node ***rb_link)
a36e71f9 1935{
a36e71f9
JA
1936 struct rb_node **p, *parent;
1937 struct cfq_queue *cfqq = NULL;
1938
1939 parent = NULL;
1940 p = &root->rb_node;
1941 while (*p) {
1942 struct rb_node **n;
1943
1944 parent = *p;
1945 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1946
1947 /*
1948 * Sort strictly based on sector. Smallest to the left,
1949 * largest to the right.
1950 */
2e46e8b2 1951 if (sector > blk_rq_pos(cfqq->next_rq))
a36e71f9 1952 n = &(*p)->rb_right;
2e46e8b2 1953 else if (sector < blk_rq_pos(cfqq->next_rq))
a36e71f9
JA
1954 n = &(*p)->rb_left;
1955 else
1956 break;
1957 p = n;
3ac6c9f8 1958 cfqq = NULL;
a36e71f9
JA
1959 }
1960
1961 *ret_parent = parent;
1962 if (rb_link)
1963 *rb_link = p;
3ac6c9f8 1964 return cfqq;
a36e71f9
JA
1965}
1966
1967static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1968{
a36e71f9
JA
1969 struct rb_node **p, *parent;
1970 struct cfq_queue *__cfqq;
1971
f2d1f0ae
JA
1972 if (cfqq->p_root) {
1973 rb_erase(&cfqq->p_node, cfqq->p_root);
1974 cfqq->p_root = NULL;
1975 }
a36e71f9
JA
1976
1977 if (cfq_class_idle(cfqq))
1978 return;
1979 if (!cfqq->next_rq)
1980 return;
1981
f2d1f0ae 1982 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
2e46e8b2
TH
1983 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1984 blk_rq_pos(cfqq->next_rq), &parent, &p);
3ac6c9f8
JA
1985 if (!__cfqq) {
1986 rb_link_node(&cfqq->p_node, parent, p);
f2d1f0ae
JA
1987 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1988 } else
1989 cfqq->p_root = NULL;
a36e71f9
JA
1990}
1991
498d3aa2
JA
1992/*
1993 * Update cfqq's position in the service tree.
1994 */
edd75ffd 1995static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
6d048f53 1996{
6d048f53
JA
1997 /*
1998 * Resorting requires the cfqq to be on the RR list already.
1999 */
a36e71f9 2000 if (cfq_cfqq_on_rr(cfqq)) {
edd75ffd 2001 cfq_service_tree_add(cfqd, cfqq, 0);
a36e71f9
JA
2002 cfq_prio_tree_add(cfqd, cfqq);
2003 }
6d048f53
JA
2004}
2005
1da177e4
LT
2006/*
2007 * add to busy list of queues for service, trying to be fair in ordering
22e2c507 2008 * the pending list according to last request service
1da177e4 2009 */
febffd61 2010static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1da177e4 2011{
7b679138 2012 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
3b18152c
JA
2013 BUG_ON(cfq_cfqq_on_rr(cfqq));
2014 cfq_mark_cfqq_on_rr(cfqq);
1da177e4 2015 cfqd->busy_queues++;
ef8a41df
SL
2016 if (cfq_cfqq_sync(cfqq))
2017 cfqd->busy_sync_queues++;
1da177e4 2018
edd75ffd 2019 cfq_resort_rr_list(cfqd, cfqq);
1da177e4
LT
2020}
2021
498d3aa2
JA
2022/*
2023 * Called when the cfqq no longer has requests pending, remove it from
2024 * the service tree.
2025 */
febffd61 2026static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1da177e4 2027{
7b679138 2028 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
3b18152c
JA
2029 BUG_ON(!cfq_cfqq_on_rr(cfqq));
2030 cfq_clear_cfqq_on_rr(cfqq);
1da177e4 2031
aa6f6a3d
CZ
2032 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
2033 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
2034 cfqq->service_tree = NULL;
2035 }
f2d1f0ae
JA
2036 if (cfqq->p_root) {
2037 rb_erase(&cfqq->p_node, cfqq->p_root);
2038 cfqq->p_root = NULL;
2039 }
d9e7620e 2040
8184f93e 2041 cfq_group_notify_queue_del(cfqd, cfqq->cfqg);
1da177e4
LT
2042 BUG_ON(!cfqd->busy_queues);
2043 cfqd->busy_queues--;
ef8a41df
SL
2044 if (cfq_cfqq_sync(cfqq))
2045 cfqd->busy_sync_queues--;
1da177e4
LT
2046}
2047
2048/*
2049 * rb tree support functions
2050 */
febffd61 2051static void cfq_del_rq_rb(struct request *rq)
1da177e4 2052{
5e705374 2053 struct cfq_queue *cfqq = RQ_CFQQ(rq);
5e705374 2054 const int sync = rq_is_sync(rq);
1da177e4 2055
b4878f24
JA
2056 BUG_ON(!cfqq->queued[sync]);
2057 cfqq->queued[sync]--;
1da177e4 2058
5e705374 2059 elv_rb_del(&cfqq->sort_list, rq);
1da177e4 2060
f04a6424
VG
2061 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
2062 /*
2063 * Queue will be deleted from service tree when we actually
2064 * expire it later. Right now just remove it from prio tree
2065 * as it is empty.
2066 */
2067 if (cfqq->p_root) {
2068 rb_erase(&cfqq->p_node, cfqq->p_root);
2069 cfqq->p_root = NULL;
2070 }
2071 }
1da177e4
LT
2072}
2073
5e705374 2074static void cfq_add_rq_rb(struct request *rq)
1da177e4 2075{
5e705374 2076 struct cfq_queue *cfqq = RQ_CFQQ(rq);
1da177e4 2077 struct cfq_data *cfqd = cfqq->cfqd;
796d5116 2078 struct request *prev;
1da177e4 2079
5380a101 2080 cfqq->queued[rq_is_sync(rq)]++;
1da177e4 2081
796d5116 2082 elv_rb_add(&cfqq->sort_list, rq);
5fccbf61
JA
2083
2084 if (!cfq_cfqq_on_rr(cfqq))
2085 cfq_add_cfqq_rr(cfqd, cfqq);
5044eed4
JA
2086
2087 /*
2088 * check if this request is a better next-serve candidate
2089 */
a36e71f9 2090 prev = cfqq->next_rq;
cf7c25cf 2091 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
a36e71f9
JA
2092
2093 /*
2094 * adjust priority tree position, if ->next_rq changes
2095 */
2096 if (prev != cfqq->next_rq)
2097 cfq_prio_tree_add(cfqd, cfqq);
2098
5044eed4 2099 BUG_ON(!cfqq->next_rq);
1da177e4
LT
2100}
2101
febffd61 2102static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
1da177e4 2103{
5380a101
JA
2104 elv_rb_del(&cfqq->sort_list, rq);
2105 cfqq->queued[rq_is_sync(rq)]--;
155fead9 2106 cfqg_stats_update_io_remove(RQ_CFQG(rq), rq->cmd_flags);
5e705374 2107 cfq_add_rq_rb(rq);
155fead9
TH
2108 cfqg_stats_update_io_add(RQ_CFQG(rq), cfqq->cfqd->serving_group,
2109 rq->cmd_flags);
1da177e4
LT
2110}
2111
206dc69b
JA
2112static struct request *
2113cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
1da177e4 2114{
206dc69b 2115 struct task_struct *tsk = current;
c5869807 2116 struct cfq_io_cq *cic;
206dc69b 2117 struct cfq_queue *cfqq;
1da177e4 2118
4ac845a2 2119 cic = cfq_cic_lookup(cfqd, tsk->io_context);
91fac317
VT
2120 if (!cic)
2121 return NULL;
2122
2123 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
89850f7e
JA
2124 if (cfqq) {
2125 sector_t sector = bio->bi_sector + bio_sectors(bio);
2126
21183b07 2127 return elv_rb_find(&cfqq->sort_list, sector);
89850f7e 2128 }
1da177e4 2129
1da177e4
LT
2130 return NULL;
2131}
2132
165125e1 2133static void cfq_activate_request(struct request_queue *q, struct request *rq)
1da177e4 2134{
22e2c507 2135 struct cfq_data *cfqd = q->elevator->elevator_data;
3b18152c 2136
53c583d2 2137 cfqd->rq_in_driver++;
7b679138 2138 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
53c583d2 2139 cfqd->rq_in_driver);
25776e35 2140
5b93629b 2141 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
1da177e4
LT
2142}
2143
165125e1 2144static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
1da177e4 2145{
b4878f24
JA
2146 struct cfq_data *cfqd = q->elevator->elevator_data;
2147
53c583d2
CZ
2148 WARN_ON(!cfqd->rq_in_driver);
2149 cfqd->rq_in_driver--;
7b679138 2150 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
53c583d2 2151 cfqd->rq_in_driver);
1da177e4
LT
2152}
2153
b4878f24 2154static void cfq_remove_request(struct request *rq)
1da177e4 2155{
5e705374 2156 struct cfq_queue *cfqq = RQ_CFQQ(rq);
21183b07 2157
5e705374
JA
2158 if (cfqq->next_rq == rq)
2159 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
1da177e4 2160
b4878f24 2161 list_del_init(&rq->queuelist);
5e705374 2162 cfq_del_rq_rb(rq);
374f84ac 2163
45333d5a 2164 cfqq->cfqd->rq_queued--;
155fead9 2165 cfqg_stats_update_io_remove(RQ_CFQG(rq), rq->cmd_flags);
65299a3b
CH
2166 if (rq->cmd_flags & REQ_PRIO) {
2167 WARN_ON(!cfqq->prio_pending);
2168 cfqq->prio_pending--;
b53d1ed7 2169 }
1da177e4
LT
2170}
2171
165125e1
JA
2172static int cfq_merge(struct request_queue *q, struct request **req,
2173 struct bio *bio)
1da177e4
LT
2174{
2175 struct cfq_data *cfqd = q->elevator->elevator_data;
2176 struct request *__rq;
1da177e4 2177
206dc69b 2178 __rq = cfq_find_rq_fmerge(cfqd, bio);
22e2c507 2179 if (__rq && elv_rq_merge_ok(__rq, bio)) {
9817064b
JA
2180 *req = __rq;
2181 return ELEVATOR_FRONT_MERGE;
1da177e4
LT
2182 }
2183
2184 return ELEVATOR_NO_MERGE;
1da177e4
LT
2185}
2186
165125e1 2187static void cfq_merged_request(struct request_queue *q, struct request *req,
21183b07 2188 int type)
1da177e4 2189{
21183b07 2190 if (type == ELEVATOR_FRONT_MERGE) {
5e705374 2191 struct cfq_queue *cfqq = RQ_CFQQ(req);
1da177e4 2192
5e705374 2193 cfq_reposition_rq_rb(cfqq, req);
1da177e4 2194 }
1da177e4
LT
2195}
2196
812d4026
DS
2197static void cfq_bio_merged(struct request_queue *q, struct request *req,
2198 struct bio *bio)
2199{
155fead9 2200 cfqg_stats_update_io_merged(RQ_CFQG(req), bio->bi_rw);
812d4026
DS
2201}
2202
1da177e4 2203static void
165125e1 2204cfq_merged_requests(struct request_queue *q, struct request *rq,
1da177e4
LT
2205 struct request *next)
2206{
cf7c25cf 2207 struct cfq_queue *cfqq = RQ_CFQQ(rq);
4a0b75c7
SL
2208 struct cfq_data *cfqd = q->elevator->elevator_data;
2209
22e2c507
JA
2210 /*
2211 * reposition in fifo if next is older than rq
2212 */
2213 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
3d106fba
SL
2214 time_before(rq_fifo_time(next), rq_fifo_time(rq)) &&
2215 cfqq == RQ_CFQQ(next)) {
22e2c507 2216 list_move(&rq->queuelist, &next->queuelist);
30996f40
JA
2217 rq_set_fifo_time(rq, rq_fifo_time(next));
2218 }
22e2c507 2219
cf7c25cf
CZ
2220 if (cfqq->next_rq == next)
2221 cfqq->next_rq = rq;
b4878f24 2222 cfq_remove_request(next);
155fead9 2223 cfqg_stats_update_io_merged(RQ_CFQG(rq), next->cmd_flags);
4a0b75c7
SL
2224
2225 cfqq = RQ_CFQQ(next);
2226 /*
2227 * all requests of this queue are merged to other queues, delete it
2228 * from the service tree. If it's the active_queue,
2229 * cfq_dispatch_requests() will choose to expire it or do idle
2230 */
2231 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list) &&
2232 cfqq != cfqd->active_queue)
2233 cfq_del_cfqq_rr(cfqd, cfqq);
22e2c507
JA
2234}
2235
165125e1 2236static int cfq_allow_merge(struct request_queue *q, struct request *rq,
da775265
JA
2237 struct bio *bio)
2238{
2239 struct cfq_data *cfqd = q->elevator->elevator_data;
c5869807 2240 struct cfq_io_cq *cic;
da775265 2241 struct cfq_queue *cfqq;
da775265
JA
2242
2243 /*
ec8acb69 2244 * Disallow merge of a sync bio into an async request.
da775265 2245 */
91fac317 2246 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
a6151c3a 2247 return false;
da775265
JA
2248
2249 /*
f1a4f4d3 2250 * Lookup the cfqq that this bio will be queued with and allow
07c2bd37 2251 * merge only if rq is queued there.
f1a4f4d3 2252 */
07c2bd37
TH
2253 cic = cfq_cic_lookup(cfqd, current->io_context);
2254 if (!cic)
2255 return false;
719d3402 2256
91fac317 2257 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
a6151c3a 2258 return cfqq == RQ_CFQQ(rq);
da775265
JA
2259}
2260
812df48d
DS
2261static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2262{
2263 del_timer(&cfqd->idle_slice_timer);
155fead9 2264 cfqg_stats_update_idle_time(cfqq->cfqg);
812df48d
DS
2265}
2266
febffd61
JA
2267static void __cfq_set_active_queue(struct cfq_data *cfqd,
2268 struct cfq_queue *cfqq)
22e2c507
JA
2269{
2270 if (cfqq) {
3bf10fea 2271 cfq_log_cfqq(cfqd, cfqq, "set_active wl_class:%d wl_type:%d",
4d2ceea4 2272 cfqd->serving_wl_class, cfqd->serving_wl_type);
155fead9 2273 cfqg_stats_update_avg_queue_size(cfqq->cfqg);
62a37f6b
JT
2274 cfqq->slice_start = 0;
2275 cfqq->dispatch_start = jiffies;
2276 cfqq->allocated_slice = 0;
2277 cfqq->slice_end = 0;
2278 cfqq->slice_dispatch = 0;
2279 cfqq->nr_sectors = 0;
2280
2281 cfq_clear_cfqq_wait_request(cfqq);
2282 cfq_clear_cfqq_must_dispatch(cfqq);
2283 cfq_clear_cfqq_must_alloc_slice(cfqq);
2284 cfq_clear_cfqq_fifo_expire(cfqq);
2285 cfq_mark_cfqq_slice_new(cfqq);
2286
2287 cfq_del_timer(cfqd, cfqq);
22e2c507
JA
2288 }
2289
2290 cfqd->active_queue = cfqq;
2291}
2292
7b14e3b5
JA
2293/*
2294 * current cfqq expired its slice (or was too idle), select new one
2295 */
2296static void
2297__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
e5ff082e 2298 bool timed_out)
7b14e3b5 2299{
7b679138
JA
2300 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
2301
7b14e3b5 2302 if (cfq_cfqq_wait_request(cfqq))
812df48d 2303 cfq_del_timer(cfqd, cfqq);
7b14e3b5 2304
7b14e3b5 2305 cfq_clear_cfqq_wait_request(cfqq);
f75edf2d 2306 cfq_clear_cfqq_wait_busy(cfqq);
7b14e3b5 2307
ae54abed
SL
2308 /*
2309 * If this cfqq is shared between multiple processes, check to
2310 * make sure that those processes are still issuing I/Os within
2311 * the mean seek distance. If not, it may be time to break the
2312 * queues apart again.
2313 */
2314 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
2315 cfq_mark_cfqq_split_coop(cfqq);
2316
7b14e3b5 2317 /*
6084cdda 2318 * store what was left of this slice, if the queue idled/timed out
7b14e3b5 2319 */
c553f8e3
SL
2320 if (timed_out) {
2321 if (cfq_cfqq_slice_new(cfqq))
ba5bd520 2322 cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq);
c553f8e3
SL
2323 else
2324 cfqq->slice_resid = cfqq->slice_end - jiffies;
7b679138
JA
2325 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
2326 }
7b14e3b5 2327
e5ff082e 2328 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
dae739eb 2329
f04a6424
VG
2330 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
2331 cfq_del_cfqq_rr(cfqd, cfqq);
2332
edd75ffd 2333 cfq_resort_rr_list(cfqd, cfqq);
7b14e3b5
JA
2334
2335 if (cfqq == cfqd->active_queue)
2336 cfqd->active_queue = NULL;
2337
2338 if (cfqd->active_cic) {
11a3122f 2339 put_io_context(cfqd->active_cic->icq.ioc);
7b14e3b5
JA
2340 cfqd->active_cic = NULL;
2341 }
7b14e3b5
JA
2342}
2343
e5ff082e 2344static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
7b14e3b5
JA
2345{
2346 struct cfq_queue *cfqq = cfqd->active_queue;
2347
2348 if (cfqq)
e5ff082e 2349 __cfq_slice_expired(cfqd, cfqq, timed_out);
7b14e3b5
JA
2350}
2351
498d3aa2
JA
2352/*
2353 * Get next queue for service. Unless we have a queue preemption,
2354 * we'll simply select the first cfqq in the service tree.
2355 */
6d048f53 2356static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
22e2c507 2357{
34b98d03
VG
2358 struct cfq_rb_root *st = st_for(cfqd->serving_group,
2359 cfqd->serving_wl_class, cfqd->serving_wl_type);
d9e7620e 2360
f04a6424
VG
2361 if (!cfqd->rq_queued)
2362 return NULL;
2363
1fa8f6d6 2364 /* There is nothing to dispatch */
34b98d03 2365 if (!st)
1fa8f6d6 2366 return NULL;
34b98d03 2367 if (RB_EMPTY_ROOT(&st->rb))
c0324a02 2368 return NULL;
34b98d03 2369 return cfq_rb_first(st);
6d048f53
JA
2370}
2371
f04a6424
VG
2372static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
2373{
25fb5169 2374 struct cfq_group *cfqg;
f04a6424
VG
2375 struct cfq_queue *cfqq;
2376 int i, j;
2377 struct cfq_rb_root *st;
2378
2379 if (!cfqd->rq_queued)
2380 return NULL;
2381
25fb5169
VG
2382 cfqg = cfq_get_next_cfqg(cfqd);
2383 if (!cfqg)
2384 return NULL;
2385
f04a6424
VG
2386 for_each_cfqg_st(cfqg, i, j, st)
2387 if ((cfqq = cfq_rb_first(st)) != NULL)
2388 return cfqq;
2389 return NULL;
2390}
2391
498d3aa2
JA
2392/*
2393 * Get and set a new active queue for service.
2394 */
a36e71f9
JA
2395static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
2396 struct cfq_queue *cfqq)
6d048f53 2397{
e00ef799 2398 if (!cfqq)
a36e71f9 2399 cfqq = cfq_get_next_queue(cfqd);
6d048f53 2400
22e2c507 2401 __cfq_set_active_queue(cfqd, cfqq);
3b18152c 2402 return cfqq;
22e2c507
JA
2403}
2404
d9e7620e
JA
2405static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
2406 struct request *rq)
2407{
83096ebf
TH
2408 if (blk_rq_pos(rq) >= cfqd->last_position)
2409 return blk_rq_pos(rq) - cfqd->last_position;
d9e7620e 2410 else
83096ebf 2411 return cfqd->last_position - blk_rq_pos(rq);
d9e7620e
JA
2412}
2413
b2c18e1e 2414static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
e9ce335d 2415 struct request *rq)
6d048f53 2416{
e9ce335d 2417 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
6d048f53
JA
2418}
2419
a36e71f9
JA
2420static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
2421 struct cfq_queue *cur_cfqq)
2422{
f2d1f0ae 2423 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
a36e71f9
JA
2424 struct rb_node *parent, *node;
2425 struct cfq_queue *__cfqq;
2426 sector_t sector = cfqd->last_position;
2427
2428 if (RB_EMPTY_ROOT(root))
2429 return NULL;
2430
2431 /*
2432 * First, if we find a request starting at the end of the last
2433 * request, choose it.
2434 */
f2d1f0ae 2435 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
a36e71f9
JA
2436 if (__cfqq)
2437 return __cfqq;
2438
2439 /*
2440 * If the exact sector wasn't found, the parent of the NULL leaf
2441 * will contain the closest sector.
2442 */
2443 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
e9ce335d 2444 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
a36e71f9
JA
2445 return __cfqq;
2446
2e46e8b2 2447 if (blk_rq_pos(__cfqq->next_rq) < sector)
a36e71f9
JA
2448 node = rb_next(&__cfqq->p_node);
2449 else
2450 node = rb_prev(&__cfqq->p_node);
2451 if (!node)
2452 return NULL;
2453
2454 __cfqq = rb_entry(node, struct cfq_queue, p_node);
e9ce335d 2455 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
a36e71f9
JA
2456 return __cfqq;
2457
2458 return NULL;
2459}
2460
2461/*
2462 * cfqd - obvious
2463 * cur_cfqq - passed in so that we don't decide that the current queue is
2464 * closely cooperating with itself.
2465 *
2466 * So, basically we're assuming that that cur_cfqq has dispatched at least
2467 * one request, and that cfqd->last_position reflects a position on the disk
2468 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
2469 * assumption.
2470 */
2471static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
b3b6d040 2472 struct cfq_queue *cur_cfqq)
6d048f53 2473{
a36e71f9
JA
2474 struct cfq_queue *cfqq;
2475
39c01b21
DS
2476 if (cfq_class_idle(cur_cfqq))
2477 return NULL;
e6c5bc73
JM
2478 if (!cfq_cfqq_sync(cur_cfqq))
2479 return NULL;
2480 if (CFQQ_SEEKY(cur_cfqq))
2481 return NULL;
2482
b9d8f4c7
GJ
2483 /*
2484 * Don't search priority tree if it's the only queue in the group.
2485 */
2486 if (cur_cfqq->cfqg->nr_cfqq == 1)
2487 return NULL;
2488
6d048f53 2489 /*
d9e7620e
JA
2490 * We should notice if some of the queues are cooperating, eg
2491 * working closely on the same area of the disk. In that case,
2492 * we can group them together and don't waste time idling.
6d048f53 2493 */
a36e71f9
JA
2494 cfqq = cfqq_close(cfqd, cur_cfqq);
2495 if (!cfqq)
2496 return NULL;
2497
8682e1f1
VG
2498 /* If new queue belongs to different cfq_group, don't choose it */
2499 if (cur_cfqq->cfqg != cfqq->cfqg)
2500 return NULL;
2501
df5fe3e8
JM
2502 /*
2503 * It only makes sense to merge sync queues.
2504 */
2505 if (!cfq_cfqq_sync(cfqq))
2506 return NULL;
e6c5bc73
JM
2507 if (CFQQ_SEEKY(cfqq))
2508 return NULL;
df5fe3e8 2509
c0324a02
CZ
2510 /*
2511 * Do not merge queues of different priority classes
2512 */
2513 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
2514 return NULL;
2515
a36e71f9 2516 return cfqq;
6d048f53
JA
2517}
2518
a6d44e98
CZ
2519/*
2520 * Determine whether we should enforce idle window for this queue.
2521 */
2522
2523static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2524{
3bf10fea 2525 enum wl_class_t wl_class = cfqq_class(cfqq);
34b98d03 2526 struct cfq_rb_root *st = cfqq->service_tree;
a6d44e98 2527
34b98d03
VG
2528 BUG_ON(!st);
2529 BUG_ON(!st->count);
f04a6424 2530
b6508c16
VG
2531 if (!cfqd->cfq_slice_idle)
2532 return false;
2533
a6d44e98 2534 /* We never do for idle class queues. */
3bf10fea 2535 if (wl_class == IDLE_WORKLOAD)
a6d44e98
CZ
2536 return false;
2537
2538 /* We do for queues that were marked with idle window flag. */
3c764b7a
SL
2539 if (cfq_cfqq_idle_window(cfqq) &&
2540 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
a6d44e98
CZ
2541 return true;
2542
2543 /*
2544 * Otherwise, we do only if they are the last ones
2545 * in their service tree.
2546 */
34b98d03
VG
2547 if (st->count == 1 && cfq_cfqq_sync(cfqq) &&
2548 !cfq_io_thinktime_big(cfqd, &st->ttime, false))
c1e44756 2549 return true;
34b98d03 2550 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d", st->count);
c1e44756 2551 return false;
a6d44e98
CZ
2552}
2553
6d048f53 2554static void cfq_arm_slice_timer(struct cfq_data *cfqd)
22e2c507 2555{
1792669c 2556 struct cfq_queue *cfqq = cfqd->active_queue;
c5869807 2557 struct cfq_io_cq *cic;
80bdf0c7 2558 unsigned long sl, group_idle = 0;
7b14e3b5 2559
a68bbddb 2560 /*
f7d7b7a7
JA
2561 * SSD device without seek penalty, disable idling. But only do so
2562 * for devices that support queuing, otherwise we still have a problem
2563 * with sync vs async workloads.
a68bbddb 2564 */
f7d7b7a7 2565 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
a68bbddb
JA
2566 return;
2567
dd67d051 2568 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
6d048f53 2569 WARN_ON(cfq_cfqq_slice_new(cfqq));
22e2c507
JA
2570
2571 /*
2572 * idle is disabled, either manually or by past process history
2573 */
80bdf0c7
VG
2574 if (!cfq_should_idle(cfqd, cfqq)) {
2575 /* no queue idling. Check for group idling */
2576 if (cfqd->cfq_group_idle)
2577 group_idle = cfqd->cfq_group_idle;
2578 else
2579 return;
2580 }
6d048f53 2581
7b679138 2582 /*
8e550632 2583 * still active requests from this queue, don't idle
7b679138 2584 */
8e550632 2585 if (cfqq->dispatched)
7b679138
JA
2586 return;
2587
22e2c507
JA
2588 /*
2589 * task has exited, don't wait
2590 */
206dc69b 2591 cic = cfqd->active_cic;
f6e8d01b 2592 if (!cic || !atomic_read(&cic->icq.ioc->active_ref))
6d048f53
JA
2593 return;
2594
355b659c
CZ
2595 /*
2596 * If our average think time is larger than the remaining time
2597 * slice, then don't idle. This avoids overrunning the allotted
2598 * time slice.
2599 */
383cd721
SL
2600 if (sample_valid(cic->ttime.ttime_samples) &&
2601 (cfqq->slice_end - jiffies < cic->ttime.ttime_mean)) {
fd16d263 2602 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%lu",
383cd721 2603 cic->ttime.ttime_mean);
355b659c 2604 return;
b1ffe737 2605 }
355b659c 2606
80bdf0c7
VG
2607 /* There are other queues in the group, don't do group idle */
2608 if (group_idle && cfqq->cfqg->nr_cfqq > 1)
2609 return;
2610
3b18152c 2611 cfq_mark_cfqq_wait_request(cfqq);
22e2c507 2612
80bdf0c7
VG
2613 if (group_idle)
2614 sl = cfqd->cfq_group_idle;
2615 else
2616 sl = cfqd->cfq_slice_idle;
206dc69b 2617
7b14e3b5 2618 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
155fead9 2619 cfqg_stats_set_start_idle_time(cfqq->cfqg);
80bdf0c7
VG
2620 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu group_idle: %d", sl,
2621 group_idle ? 1 : 0);
1da177e4
LT
2622}
2623
498d3aa2
JA
2624/*
2625 * Move request from internal lists to the request queue dispatch list.
2626 */
165125e1 2627static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
1da177e4 2628{
3ed9a296 2629 struct cfq_data *cfqd = q->elevator->elevator_data;
5e705374 2630 struct cfq_queue *cfqq = RQ_CFQQ(rq);
22e2c507 2631
7b679138
JA
2632 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
2633
06d21886 2634 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
5380a101 2635 cfq_remove_request(rq);
6d048f53 2636 cfqq->dispatched++;
80bdf0c7 2637 (RQ_CFQG(rq))->dispatched++;
5380a101 2638 elv_dispatch_sort(q, rq);
3ed9a296 2639
53c583d2 2640 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
c4e7893e 2641 cfqq->nr_sectors += blk_rq_sectors(rq);
155fead9 2642 cfqg_stats_update_dispatch(cfqq->cfqg, blk_rq_bytes(rq), rq->cmd_flags);
1da177e4
LT
2643}
2644
2645/*
2646 * return expired entry, or NULL to just start from scratch in rbtree
2647 */
febffd61 2648static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
1da177e4 2649{
30996f40 2650 struct request *rq = NULL;
1da177e4 2651
3b18152c 2652 if (cfq_cfqq_fifo_expire(cfqq))
1da177e4 2653 return NULL;
cb887411
JA
2654
2655 cfq_mark_cfqq_fifo_expire(cfqq);
2656
89850f7e
JA
2657 if (list_empty(&cfqq->fifo))
2658 return NULL;
1da177e4 2659
89850f7e 2660 rq = rq_entry_fifo(cfqq->fifo.next);
30996f40 2661 if (time_before(jiffies, rq_fifo_time(rq)))
7b679138 2662 rq = NULL;
1da177e4 2663
30996f40 2664 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
6d048f53 2665 return rq;
1da177e4
LT
2666}
2667
22e2c507
JA
2668static inline int
2669cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2670{
2671 const int base_rq = cfqd->cfq_slice_async_rq;
1da177e4 2672
22e2c507 2673 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1da177e4 2674
b9f8ce05 2675 return 2 * base_rq * (IOPRIO_BE_NR - cfqq->ioprio);
1da177e4
LT
2676}
2677
df5fe3e8
JM
2678/*
2679 * Must be called with the queue_lock held.
2680 */
2681static int cfqq_process_refs(struct cfq_queue *cfqq)
2682{
2683 int process_refs, io_refs;
2684
2685 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
30d7b944 2686 process_refs = cfqq->ref - io_refs;
df5fe3e8
JM
2687 BUG_ON(process_refs < 0);
2688 return process_refs;
2689}
2690
2691static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
2692{
e6c5bc73 2693 int process_refs, new_process_refs;
df5fe3e8
JM
2694 struct cfq_queue *__cfqq;
2695
c10b61f0
JM
2696 /*
2697 * If there are no process references on the new_cfqq, then it is
2698 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
2699 * chain may have dropped their last reference (not just their
2700 * last process reference).
2701 */
2702 if (!cfqq_process_refs(new_cfqq))
2703 return;
2704
df5fe3e8
JM
2705 /* Avoid a circular list and skip interim queue merges */
2706 while ((__cfqq = new_cfqq->new_cfqq)) {
2707 if (__cfqq == cfqq)
2708 return;
2709 new_cfqq = __cfqq;
2710 }
2711
2712 process_refs = cfqq_process_refs(cfqq);
c10b61f0 2713 new_process_refs = cfqq_process_refs(new_cfqq);
df5fe3e8
JM
2714 /*
2715 * If the process for the cfqq has gone away, there is no
2716 * sense in merging the queues.
2717 */
c10b61f0 2718 if (process_refs == 0 || new_process_refs == 0)
df5fe3e8
JM
2719 return;
2720
e6c5bc73
JM
2721 /*
2722 * Merge in the direction of the lesser amount of work.
2723 */
e6c5bc73
JM
2724 if (new_process_refs >= process_refs) {
2725 cfqq->new_cfqq = new_cfqq;
30d7b944 2726 new_cfqq->ref += process_refs;
e6c5bc73
JM
2727 } else {
2728 new_cfqq->new_cfqq = cfqq;
30d7b944 2729 cfqq->ref += new_process_refs;
e6c5bc73 2730 }
df5fe3e8
JM
2731}
2732
6d816ec7 2733static enum wl_type_t cfq_choose_wl_type(struct cfq_data *cfqd,
3bf10fea 2734 struct cfq_group *cfqg, enum wl_class_t wl_class)
718eee05
CZ
2735{
2736 struct cfq_queue *queue;
2737 int i;
2738 bool key_valid = false;
2739 unsigned long lowest_key = 0;
2740 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2741
65b32a57
VG
2742 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2743 /* select the one with lowest rb_key */
34b98d03 2744 queue = cfq_rb_first(st_for(cfqg, wl_class, i));
718eee05
CZ
2745 if (queue &&
2746 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2747 lowest_key = queue->rb_key;
2748 cur_best = i;
2749 key_valid = true;
2750 }
2751 }
2752
2753 return cur_best;
2754}
2755
6d816ec7
VG
2756static void
2757choose_wl_class_and_type(struct cfq_data *cfqd, struct cfq_group *cfqg)
718eee05 2758{
718eee05
CZ
2759 unsigned slice;
2760 unsigned count;
cdb16e8f 2761 struct cfq_rb_root *st;
58ff82f3 2762 unsigned group_slice;
4d2ceea4 2763 enum wl_class_t original_class = cfqd->serving_wl_class;
1fa8f6d6 2764
718eee05 2765 /* Choose next priority. RT > BE > IDLE */
58ff82f3 2766 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
4d2ceea4 2767 cfqd->serving_wl_class = RT_WORKLOAD;
58ff82f3 2768 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
4d2ceea4 2769 cfqd->serving_wl_class = BE_WORKLOAD;
718eee05 2770 else {
4d2ceea4 2771 cfqd->serving_wl_class = IDLE_WORKLOAD;
718eee05
CZ
2772 cfqd->workload_expires = jiffies + 1;
2773 return;
2774 }
2775
4d2ceea4 2776 if (original_class != cfqd->serving_wl_class)
e4ea0c16
SL
2777 goto new_workload;
2778
718eee05
CZ
2779 /*
2780 * For RT and BE, we have to choose also the type
2781 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2782 * expiration time
2783 */
34b98d03 2784 st = st_for(cfqg, cfqd->serving_wl_class, cfqd->serving_wl_type);
cdb16e8f 2785 count = st->count;
718eee05
CZ
2786
2787 /*
65b32a57 2788 * check workload expiration, and that we still have other queues ready
718eee05 2789 */
65b32a57 2790 if (count && !time_after(jiffies, cfqd->workload_expires))
718eee05
CZ
2791 return;
2792
e4ea0c16 2793new_workload:
718eee05 2794 /* otherwise select new workload type */
6d816ec7 2795 cfqd->serving_wl_type = cfq_choose_wl_type(cfqd, cfqg,
4d2ceea4 2796 cfqd->serving_wl_class);
34b98d03 2797 st = st_for(cfqg, cfqd->serving_wl_class, cfqd->serving_wl_type);
cdb16e8f 2798 count = st->count;
718eee05
CZ
2799
2800 /*
2801 * the workload slice is computed as a fraction of target latency
2802 * proportional to the number of queues in that workload, over
2803 * all the queues in the same priority class
2804 */
58ff82f3
VG
2805 group_slice = cfq_group_slice(cfqd, cfqg);
2806
2807 slice = group_slice * count /
4d2ceea4
VG
2808 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_wl_class],
2809 cfq_group_busy_queues_wl(cfqd->serving_wl_class, cfqd,
3bf10fea 2810 cfqg));
718eee05 2811
4d2ceea4 2812 if (cfqd->serving_wl_type == ASYNC_WORKLOAD) {
f26bd1f0
VG
2813 unsigned int tmp;
2814
2815 /*
2816 * Async queues are currently system wide. Just taking
2817 * proportion of queues with-in same group will lead to higher
2818 * async ratio system wide as generally root group is going
2819 * to have higher weight. A more accurate thing would be to
2820 * calculate system wide asnc/sync ratio.
2821 */
5bf14c07
TM
2822 tmp = cfqd->cfq_target_latency *
2823 cfqg_busy_async_queues(cfqd, cfqg);
f26bd1f0
VG
2824 tmp = tmp/cfqd->busy_queues;
2825 slice = min_t(unsigned, slice, tmp);
2826
718eee05
CZ
2827 /* async workload slice is scaled down according to
2828 * the sync/async slice ratio. */
2829 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
f26bd1f0 2830 } else
718eee05
CZ
2831 /* sync workload slice is at least 2 * cfq_slice_idle */
2832 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2833
2834 slice = max_t(unsigned, slice, CFQ_MIN_TT);
b1ffe737 2835 cfq_log(cfqd, "workload slice:%d", slice);
718eee05
CZ
2836 cfqd->workload_expires = jiffies + slice;
2837}
2838
1fa8f6d6
VG
2839static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2840{
2841 struct cfq_rb_root *st = &cfqd->grp_service_tree;
25bc6b07 2842 struct cfq_group *cfqg;
1fa8f6d6
VG
2843
2844 if (RB_EMPTY_ROOT(&st->rb))
2845 return NULL;
25bc6b07 2846 cfqg = cfq_rb_first_group(st);
25bc6b07
VG
2847 update_min_vdisktime(st);
2848 return cfqg;
1fa8f6d6
VG
2849}
2850
cdb16e8f
VG
2851static void cfq_choose_cfqg(struct cfq_data *cfqd)
2852{
1fa8f6d6
VG
2853 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2854
2855 cfqd->serving_group = cfqg;
dae739eb
VG
2856
2857 /* Restore the workload type data */
4d2ceea4
VG
2858 if (cfqg->saved_wl_slice) {
2859 cfqd->workload_expires = jiffies + cfqg->saved_wl_slice;
2860 cfqd->serving_wl_type = cfqg->saved_wl_type;
2861 cfqd->serving_wl_class = cfqg->saved_wl_class;
66ae2919
GJ
2862 } else
2863 cfqd->workload_expires = jiffies - 1;
2864
6d816ec7 2865 choose_wl_class_and_type(cfqd, cfqg);
cdb16e8f
VG
2866}
2867
22e2c507 2868/*
498d3aa2
JA
2869 * Select a queue for service. If we have a current active queue,
2870 * check whether to continue servicing it, or retrieve and set a new one.
22e2c507 2871 */
1b5ed5e1 2872static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
1da177e4 2873{
a36e71f9 2874 struct cfq_queue *cfqq, *new_cfqq = NULL;
1da177e4 2875
22e2c507
JA
2876 cfqq = cfqd->active_queue;
2877 if (!cfqq)
2878 goto new_queue;
1da177e4 2879
f04a6424
VG
2880 if (!cfqd->rq_queued)
2881 return NULL;
c244bb50
VG
2882
2883 /*
2884 * We were waiting for group to get backlogged. Expire the queue
2885 */
2886 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2887 goto expire;
2888
22e2c507 2889 /*
6d048f53 2890 * The active queue has run out of time, expire it and select new.
22e2c507 2891 */
7667aa06
VG
2892 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2893 /*
2894 * If slice had not expired at the completion of last request
2895 * we might not have turned on wait_busy flag. Don't expire
2896 * the queue yet. Allow the group to get backlogged.
2897 *
2898 * The very fact that we have used the slice, that means we
2899 * have been idling all along on this queue and it should be
2900 * ok to wait for this request to complete.
2901 */
82bbbf28
VG
2902 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2903 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2904 cfqq = NULL;
7667aa06 2905 goto keep_queue;
82bbbf28 2906 } else
80bdf0c7 2907 goto check_group_idle;
7667aa06 2908 }
1da177e4 2909
22e2c507 2910 /*
6d048f53
JA
2911 * The active queue has requests and isn't expired, allow it to
2912 * dispatch.
22e2c507 2913 */
dd67d051 2914 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
22e2c507 2915 goto keep_queue;
6d048f53 2916
a36e71f9
JA
2917 /*
2918 * If another queue has a request waiting within our mean seek
2919 * distance, let it run. The expire code will check for close
2920 * cooperators and put the close queue at the front of the service
df5fe3e8 2921 * tree. If possible, merge the expiring queue with the new cfqq.
a36e71f9 2922 */
b3b6d040 2923 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
df5fe3e8
JM
2924 if (new_cfqq) {
2925 if (!cfqq->new_cfqq)
2926 cfq_setup_merge(cfqq, new_cfqq);
a36e71f9 2927 goto expire;
df5fe3e8 2928 }
a36e71f9 2929
6d048f53
JA
2930 /*
2931 * No requests pending. If the active queue still has requests in
2932 * flight or is idling for a new request, allow either of these
2933 * conditions to happen (or time out) before selecting a new queue.
2934 */
80bdf0c7
VG
2935 if (timer_pending(&cfqd->idle_slice_timer)) {
2936 cfqq = NULL;
2937 goto keep_queue;
2938 }
2939
8e1ac665
SL
2940 /*
2941 * This is a deep seek queue, but the device is much faster than
2942 * the queue can deliver, don't idle
2943 **/
2944 if (CFQQ_SEEKY(cfqq) && cfq_cfqq_idle_window(cfqq) &&
2945 (cfq_cfqq_slice_new(cfqq) ||
2946 (cfqq->slice_end - jiffies > jiffies - cfqq->slice_start))) {
2947 cfq_clear_cfqq_deep(cfqq);
2948 cfq_clear_cfqq_idle_window(cfqq);
2949 }
2950
80bdf0c7
VG
2951 if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2952 cfqq = NULL;
2953 goto keep_queue;
2954 }
2955
2956 /*
2957 * If group idle is enabled and there are requests dispatched from
2958 * this group, wait for requests to complete.
2959 */
2960check_group_idle:
7700fc4f
SL
2961 if (cfqd->cfq_group_idle && cfqq->cfqg->nr_cfqq == 1 &&
2962 cfqq->cfqg->dispatched &&
2963 !cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) {
caaa5f9f
JA
2964 cfqq = NULL;
2965 goto keep_queue;
22e2c507
JA
2966 }
2967
3b18152c 2968expire:
e5ff082e 2969 cfq_slice_expired(cfqd, 0);
3b18152c 2970new_queue:
718eee05
CZ
2971 /*
2972 * Current queue expired. Check if we have to switch to a new
2973 * service tree
2974 */
2975 if (!new_cfqq)
cdb16e8f 2976 cfq_choose_cfqg(cfqd);
718eee05 2977
a36e71f9 2978 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
22e2c507 2979keep_queue:
3b18152c 2980 return cfqq;
22e2c507
JA
2981}
2982
febffd61 2983static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
d9e7620e
JA
2984{
2985 int dispatched = 0;
2986
2987 while (cfqq->next_rq) {
2988 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2989 dispatched++;
2990 }
2991
2992 BUG_ON(!list_empty(&cfqq->fifo));
f04a6424
VG
2993
2994 /* By default cfqq is not expired if it is empty. Do it explicitly */
e5ff082e 2995 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
d9e7620e
JA
2996 return dispatched;
2997}
2998
498d3aa2
JA
2999/*
3000 * Drain our current requests. Used for barriers and when switching
3001 * io schedulers on-the-fly.
3002 */
d9e7620e 3003static int cfq_forced_dispatch(struct cfq_data *cfqd)
1b5ed5e1 3004{
0871714e 3005 struct cfq_queue *cfqq;
d9e7620e 3006 int dispatched = 0;
cdb16e8f 3007
3440c49f 3008 /* Expire the timeslice of the current active queue first */
e5ff082e 3009 cfq_slice_expired(cfqd, 0);
3440c49f
DS
3010 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
3011 __cfq_set_active_queue(cfqd, cfqq);
f04a6424 3012 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
3440c49f 3013 }
1b5ed5e1 3014
1b5ed5e1
TH
3015 BUG_ON(cfqd->busy_queues);
3016
6923715a 3017 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
1b5ed5e1
TH
3018 return dispatched;
3019}
3020
abc3c744
SL
3021static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
3022 struct cfq_queue *cfqq)
3023{
3024 /* the queue hasn't finished any request, can't estimate */
3025 if (cfq_cfqq_slice_new(cfqq))
c1e44756 3026 return true;
abc3c744
SL
3027 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
3028 cfqq->slice_end))
c1e44756 3029 return true;
abc3c744 3030
c1e44756 3031 return false;
abc3c744
SL
3032}
3033
0b182d61 3034static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2f5cb738 3035{
2f5cb738 3036 unsigned int max_dispatch;
22e2c507 3037
5ad531db
JA
3038 /*
3039 * Drain async requests before we start sync IO
3040 */
53c583d2 3041 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
0b182d61 3042 return false;
5ad531db 3043
2f5cb738
JA
3044 /*
3045 * If this is an async queue and we have sync IO in flight, let it wait
3046 */
53c583d2 3047 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
0b182d61 3048 return false;
2f5cb738 3049
abc3c744 3050 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
2f5cb738
JA
3051 if (cfq_class_idle(cfqq))
3052 max_dispatch = 1;
b4878f24 3053
2f5cb738
JA
3054 /*
3055 * Does this cfqq already have too much IO in flight?
3056 */
3057 if (cfqq->dispatched >= max_dispatch) {
ef8a41df 3058 bool promote_sync = false;
2f5cb738
JA
3059 /*
3060 * idle queue must always only have a single IO in flight
3061 */
3ed9a296 3062 if (cfq_class_idle(cfqq))
0b182d61 3063 return false;
3ed9a296 3064
ef8a41df 3065 /*
c4ade94f
LS
3066 * If there is only one sync queue
3067 * we can ignore async queue here and give the sync
ef8a41df
SL
3068 * queue no dispatch limit. The reason is a sync queue can
3069 * preempt async queue, limiting the sync queue doesn't make
3070 * sense. This is useful for aiostress test.
3071 */
c4ade94f
LS
3072 if (cfq_cfqq_sync(cfqq) && cfqd->busy_sync_queues == 1)
3073 promote_sync = true;
ef8a41df 3074
2f5cb738
JA
3075 /*
3076 * We have other queues, don't allow more IO from this one
3077 */
ef8a41df
SL
3078 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq) &&
3079 !promote_sync)
0b182d61 3080 return false;
9ede209e 3081
365722bb 3082 /*
474b18cc 3083 * Sole queue user, no limit
365722bb 3084 */
ef8a41df 3085 if (cfqd->busy_queues == 1 || promote_sync)
abc3c744
SL
3086 max_dispatch = -1;
3087 else
3088 /*
3089 * Normally we start throttling cfqq when cfq_quantum/2
3090 * requests have been dispatched. But we can drive
3091 * deeper queue depths at the beginning of slice
3092 * subjected to upper limit of cfq_quantum.
3093 * */
3094 max_dispatch = cfqd->cfq_quantum;
8e296755
JA
3095 }
3096
3097 /*
3098 * Async queues must wait a bit before being allowed dispatch.
3099 * We also ramp up the dispatch depth gradually for async IO,
3100 * based on the last sync IO we serviced
3101 */
963b72fc 3102 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
573412b2 3103 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
8e296755 3104 unsigned int depth;
365722bb 3105
61f0c1dc 3106 depth = last_sync / cfqd->cfq_slice[1];
e00c54c3
JA
3107 if (!depth && !cfqq->dispatched)
3108 depth = 1;
8e296755
JA
3109 if (depth < max_dispatch)
3110 max_dispatch = depth;
2f5cb738 3111 }
3ed9a296 3112
0b182d61
JA
3113 /*
3114 * If we're below the current max, allow a dispatch
3115 */
3116 return cfqq->dispatched < max_dispatch;
3117}
3118
3119/*
3120 * Dispatch a request from cfqq, moving them to the request queue
3121 * dispatch list.
3122 */
3123static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3124{
3125 struct request *rq;
3126
3127 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
3128
3129 if (!cfq_may_dispatch(cfqd, cfqq))
3130 return false;
3131
3132 /*
3133 * follow expired path, else get first next available
3134 */
3135 rq = cfq_check_fifo(cfqq);
3136 if (!rq)
3137 rq = cfqq->next_rq;
3138
3139 /*
3140 * insert request into driver dispatch list
3141 */
3142 cfq_dispatch_insert(cfqd->queue, rq);
3143
3144 if (!cfqd->active_cic) {
c5869807 3145 struct cfq_io_cq *cic = RQ_CIC(rq);
0b182d61 3146
c5869807 3147 atomic_long_inc(&cic->icq.ioc->refcount);
0b182d61
JA
3148 cfqd->active_cic = cic;
3149 }
3150
3151 return true;
3152}
3153
3154/*
3155 * Find the cfqq that we need to service and move a request from that to the
3156 * dispatch list
3157 */
3158static int cfq_dispatch_requests(struct request_queue *q, int force)
3159{
3160 struct cfq_data *cfqd = q->elevator->elevator_data;
3161 struct cfq_queue *cfqq;
3162
3163 if (!cfqd->busy_queues)
3164 return 0;
3165
3166 if (unlikely(force))
3167 return cfq_forced_dispatch(cfqd);
3168
3169 cfqq = cfq_select_queue(cfqd);
3170 if (!cfqq)
8e296755
JA
3171 return 0;
3172
2f5cb738 3173 /*
0b182d61 3174 * Dispatch a request from this cfqq, if it is allowed
2f5cb738 3175 */
0b182d61
JA
3176 if (!cfq_dispatch_request(cfqd, cfqq))
3177 return 0;
3178
2f5cb738 3179 cfqq->slice_dispatch++;
b029195d 3180 cfq_clear_cfqq_must_dispatch(cfqq);
22e2c507 3181
2f5cb738
JA
3182 /*
3183 * expire an async queue immediately if it has used up its slice. idle
3184 * queue always expire after 1 dispatch round.
3185 */
3186 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
3187 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
3188 cfq_class_idle(cfqq))) {
3189 cfqq->slice_end = jiffies + 1;
e5ff082e 3190 cfq_slice_expired(cfqd, 0);
1da177e4
LT
3191 }
3192
b217a903 3193 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
2f5cb738 3194 return 1;
1da177e4
LT
3195}
3196
1da177e4 3197/*
5e705374
JA
3198 * task holds one reference to the queue, dropped when task exits. each rq
3199 * in-flight on this queue also holds a reference, dropped when rq is freed.
1da177e4 3200 *
b1c35769 3201 * Each cfq queue took a reference on the parent group. Drop it now.
1da177e4
LT
3202 * queue lock must be held here.
3203 */
3204static void cfq_put_queue(struct cfq_queue *cfqq)
3205{
22e2c507 3206 struct cfq_data *cfqd = cfqq->cfqd;
0bbfeb83 3207 struct cfq_group *cfqg;
22e2c507 3208
30d7b944 3209 BUG_ON(cfqq->ref <= 0);
1da177e4 3210
30d7b944
SL
3211 cfqq->ref--;
3212 if (cfqq->ref)
1da177e4
LT
3213 return;
3214
7b679138 3215 cfq_log_cfqq(cfqd, cfqq, "put_queue");
1da177e4 3216 BUG_ON(rb_first(&cfqq->sort_list));
22e2c507 3217 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
b1c35769 3218 cfqg = cfqq->cfqg;
1da177e4 3219
28f95cbc 3220 if (unlikely(cfqd->active_queue == cfqq)) {
e5ff082e 3221 __cfq_slice_expired(cfqd, cfqq, 0);
23e018a1 3222 cfq_schedule_dispatch(cfqd);
28f95cbc 3223 }
22e2c507 3224
f04a6424 3225 BUG_ON(cfq_cfqq_on_rr(cfqq));
1da177e4 3226 kmem_cache_free(cfq_pool, cfqq);
eb7d8c07 3227 cfqg_put(cfqg);
1da177e4
LT
3228}
3229
d02a2c07 3230static void cfq_put_cooperator(struct cfq_queue *cfqq)
1da177e4 3231{
df5fe3e8
JM
3232 struct cfq_queue *__cfqq, *next;
3233
df5fe3e8
JM
3234 /*
3235 * If this queue was scheduled to merge with another queue, be
3236 * sure to drop the reference taken on that queue (and others in
3237 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
3238 */
3239 __cfqq = cfqq->new_cfqq;
3240 while (__cfqq) {
3241 if (__cfqq == cfqq) {
3242 WARN(1, "cfqq->new_cfqq loop detected\n");
3243 break;
3244 }
3245 next = __cfqq->new_cfqq;
3246 cfq_put_queue(__cfqq);
3247 __cfqq = next;
3248 }
d02a2c07
SL
3249}
3250
3251static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3252{
3253 if (unlikely(cfqq == cfqd->active_queue)) {
3254 __cfq_slice_expired(cfqd, cfqq, 0);
3255 cfq_schedule_dispatch(cfqd);
3256 }
3257
3258 cfq_put_cooperator(cfqq);
df5fe3e8 3259
89850f7e
JA
3260 cfq_put_queue(cfqq);
3261}
22e2c507 3262
9b84cacd
TH
3263static void cfq_init_icq(struct io_cq *icq)
3264{
3265 struct cfq_io_cq *cic = icq_to_cic(icq);
3266
3267 cic->ttime.last_end_request = jiffies;
3268}
3269
c5869807 3270static void cfq_exit_icq(struct io_cq *icq)
89850f7e 3271{
c5869807 3272 struct cfq_io_cq *cic = icq_to_cic(icq);
283287a5 3273 struct cfq_data *cfqd = cic_to_cfqd(cic);
4faa3c81 3274
ff6657c6
JA
3275 if (cic->cfqq[BLK_RW_ASYNC]) {
3276 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
3277 cic->cfqq[BLK_RW_ASYNC] = NULL;
12a05732
AV
3278 }
3279
ff6657c6
JA
3280 if (cic->cfqq[BLK_RW_SYNC]) {
3281 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
3282 cic->cfqq[BLK_RW_SYNC] = NULL;
12a05732 3283 }
89850f7e
JA
3284}
3285
abede6da 3286static void cfq_init_prio_data(struct cfq_queue *cfqq, struct cfq_io_cq *cic)
22e2c507
JA
3287{
3288 struct task_struct *tsk = current;
3289 int ioprio_class;
3290
3b18152c 3291 if (!cfq_cfqq_prio_changed(cfqq))
22e2c507
JA
3292 return;
3293
598971bf 3294 ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio);
22e2c507 3295 switch (ioprio_class) {
fe094d98
JA
3296 default:
3297 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
3298 case IOPRIO_CLASS_NONE:
3299 /*
6d63c275 3300 * no prio set, inherit CPU scheduling settings
fe094d98
JA
3301 */
3302 cfqq->ioprio = task_nice_ioprio(tsk);
6d63c275 3303 cfqq->ioprio_class = task_nice_ioclass(tsk);
fe094d98
JA
3304 break;
3305 case IOPRIO_CLASS_RT:
598971bf 3306 cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
fe094d98
JA
3307 cfqq->ioprio_class = IOPRIO_CLASS_RT;
3308 break;
3309 case IOPRIO_CLASS_BE:
598971bf 3310 cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
fe094d98
JA
3311 cfqq->ioprio_class = IOPRIO_CLASS_BE;
3312 break;
3313 case IOPRIO_CLASS_IDLE:
3314 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
3315 cfqq->ioprio = 7;
3316 cfq_clear_cfqq_idle_window(cfqq);
3317 break;
22e2c507
JA
3318 }
3319
3320 /*
3321 * keep track of original prio settings in case we have to temporarily
3322 * elevate the priority of this queue
3323 */
3324 cfqq->org_ioprio = cfqq->ioprio;
3b18152c 3325 cfq_clear_cfqq_prio_changed(cfqq);
22e2c507
JA
3326}
3327
598971bf 3328static void check_ioprio_changed(struct cfq_io_cq *cic, struct bio *bio)
22e2c507 3329{
598971bf 3330 int ioprio = cic->icq.ioc->ioprio;
bca4b914 3331 struct cfq_data *cfqd = cic_to_cfqd(cic);
478a82b0 3332 struct cfq_queue *cfqq;
35e6077c 3333
598971bf
TH
3334 /*
3335 * Check whether ioprio has changed. The condition may trigger
3336 * spuriously on a newly created cic but there's no harm.
3337 */
3338 if (unlikely(!cfqd) || likely(cic->ioprio == ioprio))
caaa5f9f
JA
3339 return;
3340
ff6657c6 3341 cfqq = cic->cfqq[BLK_RW_ASYNC];
caaa5f9f
JA
3342 if (cfqq) {
3343 struct cfq_queue *new_cfqq;
abede6da
TH
3344 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic, bio,
3345 GFP_ATOMIC);
caaa5f9f 3346 if (new_cfqq) {
ff6657c6 3347 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
caaa5f9f
JA
3348 cfq_put_queue(cfqq);
3349 }
22e2c507 3350 }
caaa5f9f 3351
ff6657c6 3352 cfqq = cic->cfqq[BLK_RW_SYNC];
caaa5f9f
JA
3353 if (cfqq)
3354 cfq_mark_cfqq_prio_changed(cfqq);
598971bf
TH
3355
3356 cic->ioprio = ioprio;
22e2c507
JA
3357}
3358
d5036d77 3359static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
a6151c3a 3360 pid_t pid, bool is_sync)
d5036d77
JA
3361{
3362 RB_CLEAR_NODE(&cfqq->rb_node);
3363 RB_CLEAR_NODE(&cfqq->p_node);
3364 INIT_LIST_HEAD(&cfqq->fifo);
3365
30d7b944 3366 cfqq->ref = 0;
d5036d77
JA
3367 cfqq->cfqd = cfqd;
3368
3369 cfq_mark_cfqq_prio_changed(cfqq);
3370
3371 if (is_sync) {
3372 if (!cfq_class_idle(cfqq))
3373 cfq_mark_cfqq_idle_window(cfqq);
3374 cfq_mark_cfqq_sync(cfqq);
3375 }
3376 cfqq->pid = pid;
3377}
3378
24610333 3379#ifdef CONFIG_CFQ_GROUP_IOSCHED
598971bf 3380static void check_blkcg_changed(struct cfq_io_cq *cic, struct bio *bio)
24610333 3381{
bca4b914 3382 struct cfq_data *cfqd = cic_to_cfqd(cic);
598971bf
TH
3383 struct cfq_queue *sync_cfqq;
3384 uint64_t id;
24610333 3385
598971bf 3386 rcu_read_lock();
3c798398 3387 id = bio_blkcg(bio)->id;
598971bf 3388 rcu_read_unlock();
24610333 3389
598971bf
TH
3390 /*
3391 * Check whether blkcg has changed. The condition may trigger
3392 * spuriously on a newly created cic but there's no harm.
3393 */
3394 if (unlikely(!cfqd) || likely(cic->blkcg_id == id))
3395 return;
24610333 3396
598971bf 3397 sync_cfqq = cic_to_cfqq(cic, 1);
24610333
VG
3398 if (sync_cfqq) {
3399 /*
3400 * Drop reference to sync queue. A new sync queue will be
3401 * assigned in new group upon arrival of a fresh request.
3402 */
3403 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
3404 cic_set_cfqq(cic, NULL, 1);
3405 cfq_put_queue(sync_cfqq);
3406 }
598971bf
TH
3407
3408 cic->blkcg_id = id;
24610333 3409}
598971bf
TH
3410#else
3411static inline void check_blkcg_changed(struct cfq_io_cq *cic, struct bio *bio) { }
24610333
VG
3412#endif /* CONFIG_CFQ_GROUP_IOSCHED */
3413
22e2c507 3414static struct cfq_queue *
abede6da
TH
3415cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync, struct cfq_io_cq *cic,
3416 struct bio *bio, gfp_t gfp_mask)
22e2c507 3417{
3c798398 3418 struct blkcg *blkcg;
22e2c507 3419 struct cfq_queue *cfqq, *new_cfqq = NULL;
cdb16e8f 3420 struct cfq_group *cfqg;
22e2c507
JA
3421
3422retry:
2a7f1244
TH
3423 rcu_read_lock();
3424
3c798398 3425 blkcg = bio_blkcg(bio);
cd1604fa 3426 cfqg = cfq_lookup_create_cfqg(cfqd, blkcg);
91fac317 3427 cfqq = cic_to_cfqq(cic, is_sync);
22e2c507 3428
6118b70b
JA
3429 /*
3430 * Always try a new alloc if we fell back to the OOM cfqq
3431 * originally, since it should just be a temporary situation.
3432 */
3433 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
3434 cfqq = NULL;
22e2c507
JA
3435 if (new_cfqq) {
3436 cfqq = new_cfqq;
3437 new_cfqq = NULL;
3438 } else if (gfp_mask & __GFP_WAIT) {
2a7f1244 3439 rcu_read_unlock();
22e2c507 3440 spin_unlock_irq(cfqd->queue->queue_lock);
94f6030c 3441 new_cfqq = kmem_cache_alloc_node(cfq_pool,
6118b70b 3442 gfp_mask | __GFP_ZERO,
94f6030c 3443 cfqd->queue->node);
22e2c507 3444 spin_lock_irq(cfqd->queue->queue_lock);
6118b70b
JA
3445 if (new_cfqq)
3446 goto retry;
22e2c507 3447 } else {
94f6030c
CL
3448 cfqq = kmem_cache_alloc_node(cfq_pool,
3449 gfp_mask | __GFP_ZERO,
3450 cfqd->queue->node);
22e2c507
JA
3451 }
3452
6118b70b
JA
3453 if (cfqq) {
3454 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
abede6da 3455 cfq_init_prio_data(cfqq, cic);
cdb16e8f 3456 cfq_link_cfqq_cfqg(cfqq, cfqg);
6118b70b
JA
3457 cfq_log_cfqq(cfqd, cfqq, "alloced");
3458 } else
3459 cfqq = &cfqd->oom_cfqq;
22e2c507
JA
3460 }
3461
3462 if (new_cfqq)
3463 kmem_cache_free(cfq_pool, new_cfqq);
3464
2a7f1244 3465 rcu_read_unlock();
22e2c507
JA
3466 return cfqq;
3467}
3468
c2dea2d1
VT
3469static struct cfq_queue **
3470cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
3471{
fe094d98 3472 switch (ioprio_class) {
c2dea2d1
VT
3473 case IOPRIO_CLASS_RT:
3474 return &cfqd->async_cfqq[0][ioprio];
598971bf
TH
3475 case IOPRIO_CLASS_NONE:
3476 ioprio = IOPRIO_NORM;
3477 /* fall through */
c2dea2d1
VT
3478 case IOPRIO_CLASS_BE:
3479 return &cfqd->async_cfqq[1][ioprio];
3480 case IOPRIO_CLASS_IDLE:
3481 return &cfqd->async_idle_cfqq;
3482 default:
3483 BUG();
3484 }
3485}
3486
15c31be4 3487static struct cfq_queue *
abede6da 3488cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct cfq_io_cq *cic,
4f85cb96 3489 struct bio *bio, gfp_t gfp_mask)
15c31be4 3490{
598971bf
TH
3491 const int ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio);
3492 const int ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
c2dea2d1 3493 struct cfq_queue **async_cfqq = NULL;
15c31be4
JA
3494 struct cfq_queue *cfqq = NULL;
3495
c2dea2d1
VT
3496 if (!is_sync) {
3497 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
3498 cfqq = *async_cfqq;
3499 }
3500
6118b70b 3501 if (!cfqq)
abede6da 3502 cfqq = cfq_find_alloc_queue(cfqd, is_sync, cic, bio, gfp_mask);
15c31be4
JA
3503
3504 /*
3505 * pin the queue now that it's allocated, scheduler exit will prune it
3506 */
c2dea2d1 3507 if (!is_sync && !(*async_cfqq)) {
30d7b944 3508 cfqq->ref++;
c2dea2d1 3509 *async_cfqq = cfqq;
15c31be4
JA
3510 }
3511
30d7b944 3512 cfqq->ref++;
15c31be4
JA
3513 return cfqq;
3514}
3515
22e2c507 3516static void
383cd721 3517__cfq_update_io_thinktime(struct cfq_ttime *ttime, unsigned long slice_idle)
1da177e4 3518{
383cd721
SL
3519 unsigned long elapsed = jiffies - ttime->last_end_request;
3520 elapsed = min(elapsed, 2UL * slice_idle);
db3b5848 3521
383cd721
SL
3522 ttime->ttime_samples = (7*ttime->ttime_samples + 256) / 8;
3523 ttime->ttime_total = (7*ttime->ttime_total + 256*elapsed) / 8;
3524 ttime->ttime_mean = (ttime->ttime_total + 128) / ttime->ttime_samples;
3525}
3526
3527static void
3528cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
c5869807 3529 struct cfq_io_cq *cic)
383cd721 3530{
f5f2b6ce 3531 if (cfq_cfqq_sync(cfqq)) {
383cd721 3532 __cfq_update_io_thinktime(&cic->ttime, cfqd->cfq_slice_idle);
f5f2b6ce
SL
3533 __cfq_update_io_thinktime(&cfqq->service_tree->ttime,
3534 cfqd->cfq_slice_idle);
3535 }
7700fc4f
SL
3536#ifdef CONFIG_CFQ_GROUP_IOSCHED
3537 __cfq_update_io_thinktime(&cfqq->cfqg->ttime, cfqd->cfq_group_idle);
3538#endif
22e2c507 3539}
1da177e4 3540
206dc69b 3541static void
b2c18e1e 3542cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
6d048f53 3543 struct request *rq)
206dc69b 3544{
3dde36dd 3545 sector_t sdist = 0;
41647e7a 3546 sector_t n_sec = blk_rq_sectors(rq);
3dde36dd
CZ
3547 if (cfqq->last_request_pos) {
3548 if (cfqq->last_request_pos < blk_rq_pos(rq))
3549 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
3550 else
3551 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
3552 }
206dc69b 3553
3dde36dd 3554 cfqq->seek_history <<= 1;
41647e7a
CZ
3555 if (blk_queue_nonrot(cfqd->queue))
3556 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
3557 else
3558 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
206dc69b 3559}
1da177e4 3560
22e2c507
JA
3561/*
3562 * Disable idle window if the process thinks too long or seeks so much that
3563 * it doesn't matter
3564 */
3565static void
3566cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
c5869807 3567 struct cfq_io_cq *cic)
22e2c507 3568{
7b679138 3569 int old_idle, enable_idle;
1be92f2f 3570
0871714e
JA
3571 /*
3572 * Don't idle for async or idle io prio class
3573 */
3574 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
1be92f2f
JA
3575 return;
3576
c265a7f4 3577 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
1da177e4 3578
76280aff
CZ
3579 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3580 cfq_mark_cfqq_deep(cfqq);
3581
749ef9f8
CZ
3582 if (cfqq->next_rq && (cfqq->next_rq->cmd_flags & REQ_NOIDLE))
3583 enable_idle = 0;
f6e8d01b 3584 else if (!atomic_read(&cic->icq.ioc->active_ref) ||
c5869807
TH
3585 !cfqd->cfq_slice_idle ||
3586 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
22e2c507 3587 enable_idle = 0;
383cd721
SL
3588 else if (sample_valid(cic->ttime.ttime_samples)) {
3589 if (cic->ttime.ttime_mean > cfqd->cfq_slice_idle)
22e2c507
JA
3590 enable_idle = 0;
3591 else
3592 enable_idle = 1;
1da177e4
LT
3593 }
3594
7b679138
JA
3595 if (old_idle != enable_idle) {
3596 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3597 if (enable_idle)
3598 cfq_mark_cfqq_idle_window(cfqq);
3599 else
3600 cfq_clear_cfqq_idle_window(cfqq);
3601 }
22e2c507 3602}
1da177e4 3603
22e2c507
JA
3604/*
3605 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3606 * no or if we aren't sure, a 1 will cause a preempt.
3607 */
a6151c3a 3608static bool
22e2c507 3609cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
5e705374 3610 struct request *rq)
22e2c507 3611{
6d048f53 3612 struct cfq_queue *cfqq;
22e2c507 3613
6d048f53
JA
3614 cfqq = cfqd->active_queue;
3615 if (!cfqq)
a6151c3a 3616 return false;
22e2c507 3617
6d048f53 3618 if (cfq_class_idle(new_cfqq))
a6151c3a 3619 return false;
22e2c507
JA
3620
3621 if (cfq_class_idle(cfqq))
a6151c3a 3622 return true;
1e3335de 3623
875feb63
DS
3624 /*
3625 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3626 */
3627 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3628 return false;
3629
374f84ac
JA
3630 /*
3631 * if the new request is sync, but the currently running queue is
3632 * not, let the sync request have priority.
3633 */
5e705374 3634 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
a6151c3a 3635 return true;
1e3335de 3636
8682e1f1
VG
3637 if (new_cfqq->cfqg != cfqq->cfqg)
3638 return false;
3639
3640 if (cfq_slice_used(cfqq))
3641 return true;
3642
3643 /* Allow preemption only if we are idling on sync-noidle tree */
4d2ceea4 3644 if (cfqd->serving_wl_type == SYNC_NOIDLE_WORKLOAD &&
8682e1f1
VG
3645 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3646 new_cfqq->service_tree->count == 2 &&
3647 RB_EMPTY_ROOT(&cfqq->sort_list))
3648 return true;
3649
b53d1ed7
JA
3650 /*
3651 * So both queues are sync. Let the new request get disk time if
3652 * it's a metadata request and the current queue is doing regular IO.
3653 */
65299a3b 3654 if ((rq->cmd_flags & REQ_PRIO) && !cfqq->prio_pending)
b53d1ed7
JA
3655 return true;
3656
3a9a3f6c
DS
3657 /*
3658 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3659 */
3660 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
a6151c3a 3661 return true;
3a9a3f6c 3662
d2d59e18
SL
3663 /* An idle queue should not be idle now for some reason */
3664 if (RB_EMPTY_ROOT(&cfqq->sort_list) && !cfq_should_idle(cfqd, cfqq))
3665 return true;
3666
1e3335de 3667 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
a6151c3a 3668 return false;
1e3335de
JA
3669
3670 /*
3671 * if this request is as-good as one we would expect from the
3672 * current cfqq, let it preempt
3673 */
e9ce335d 3674 if (cfq_rq_close(cfqd, cfqq, rq))
a6151c3a 3675 return true;
1e3335de 3676
a6151c3a 3677 return false;
22e2c507
JA
3678}
3679
3680/*
3681 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3682 * let it have half of its nominal slice.
3683 */
3684static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3685{
df0793ab
SL
3686 enum wl_type_t old_type = cfqq_type(cfqd->active_queue);
3687
7b679138 3688 cfq_log_cfqq(cfqd, cfqq, "preempt");
df0793ab 3689 cfq_slice_expired(cfqd, 1);
22e2c507 3690
f8ae6e3e
SL
3691 /*
3692 * workload type is changed, don't save slice, otherwise preempt
3693 * doesn't happen
3694 */
df0793ab 3695 if (old_type != cfqq_type(cfqq))
4d2ceea4 3696 cfqq->cfqg->saved_wl_slice = 0;
f8ae6e3e 3697
bf572256
JA
3698 /*
3699 * Put the new queue at the front of the of the current list,
3700 * so we know that it will be selected next.
3701 */
3702 BUG_ON(!cfq_cfqq_on_rr(cfqq));
edd75ffd
JA
3703
3704 cfq_service_tree_add(cfqd, cfqq, 1);
eda5e0c9 3705
62a37f6b
JT
3706 cfqq->slice_end = 0;
3707 cfq_mark_cfqq_slice_new(cfqq);
22e2c507
JA
3708}
3709
22e2c507 3710/*
5e705374 3711 * Called when a new fs request (rq) is added (to cfqq). Check if there's
22e2c507
JA
3712 * something we should do about it
3713 */
3714static void
5e705374
JA
3715cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3716 struct request *rq)
22e2c507 3717{
c5869807 3718 struct cfq_io_cq *cic = RQ_CIC(rq);
12e9fddd 3719
45333d5a 3720 cfqd->rq_queued++;
65299a3b
CH
3721 if (rq->cmd_flags & REQ_PRIO)
3722 cfqq->prio_pending++;
374f84ac 3723
383cd721 3724 cfq_update_io_thinktime(cfqd, cfqq, cic);
b2c18e1e 3725 cfq_update_io_seektime(cfqd, cfqq, rq);
9c2c38a1
JA
3726 cfq_update_idle_window(cfqd, cfqq, cic);
3727
b2c18e1e 3728 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
22e2c507
JA
3729
3730 if (cfqq == cfqd->active_queue) {
3731 /*
b029195d
JA
3732 * Remember that we saw a request from this process, but
3733 * don't start queuing just yet. Otherwise we risk seeing lots
3734 * of tiny requests, because we disrupt the normal plugging
d6ceb25e
JA
3735 * and merging. If the request is already larger than a single
3736 * page, let it rip immediately. For that case we assume that
2d870722
JA
3737 * merging is already done. Ditto for a busy system that
3738 * has other work pending, don't risk delaying until the
3739 * idle timer unplug to continue working.
22e2c507 3740 */
d6ceb25e 3741 if (cfq_cfqq_wait_request(cfqq)) {
2d870722
JA
3742 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3743 cfqd->busy_queues > 1) {
812df48d 3744 cfq_del_timer(cfqd, cfqq);
554554f6 3745 cfq_clear_cfqq_wait_request(cfqq);
24ecfbe2 3746 __blk_run_queue(cfqd->queue);
a11cdaa7 3747 } else {
155fead9 3748 cfqg_stats_update_idle_time(cfqq->cfqg);
bf791937 3749 cfq_mark_cfqq_must_dispatch(cfqq);
a11cdaa7 3750 }
d6ceb25e 3751 }
5e705374 3752 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
22e2c507
JA
3753 /*
3754 * not the active queue - expire current slice if it is
3755 * idle and has expired it's mean thinktime or this new queue
3a9a3f6c
DS
3756 * has some old slice time left and is of higher priority or
3757 * this new queue is RT and the current one is BE
22e2c507
JA
3758 */
3759 cfq_preempt_queue(cfqd, cfqq);
24ecfbe2 3760 __blk_run_queue(cfqd->queue);
22e2c507 3761 }
1da177e4
LT
3762}
3763
165125e1 3764static void cfq_insert_request(struct request_queue *q, struct request *rq)
1da177e4 3765{
b4878f24 3766 struct cfq_data *cfqd = q->elevator->elevator_data;
5e705374 3767 struct cfq_queue *cfqq = RQ_CFQQ(rq);
22e2c507 3768
7b679138 3769 cfq_log_cfqq(cfqd, cfqq, "insert_request");
abede6da 3770 cfq_init_prio_data(cfqq, RQ_CIC(rq));
1da177e4 3771
30996f40 3772 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
22e2c507 3773 list_add_tail(&rq->queuelist, &cfqq->fifo);
aa6f6a3d 3774 cfq_add_rq_rb(rq);
155fead9
TH
3775 cfqg_stats_update_io_add(RQ_CFQG(rq), cfqd->serving_group,
3776 rq->cmd_flags);
5e705374 3777 cfq_rq_enqueued(cfqd, cfqq, rq);
1da177e4
LT
3778}
3779
45333d5a
AC
3780/*
3781 * Update hw_tag based on peak queue depth over 50 samples under
3782 * sufficient load.
3783 */
3784static void cfq_update_hw_tag(struct cfq_data *cfqd)
3785{
1a1238a7
SL
3786 struct cfq_queue *cfqq = cfqd->active_queue;
3787
53c583d2
CZ
3788 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
3789 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
e459dd08
CZ
3790
3791 if (cfqd->hw_tag == 1)
3792 return;
45333d5a
AC
3793
3794 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
53c583d2 3795 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
45333d5a
AC
3796 return;
3797
1a1238a7
SL
3798 /*
3799 * If active queue hasn't enough requests and can idle, cfq might not
3800 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3801 * case
3802 */
3803 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3804 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
53c583d2 3805 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
1a1238a7
SL
3806 return;
3807
45333d5a
AC
3808 if (cfqd->hw_tag_samples++ < 50)
3809 return;
3810
e459dd08 3811 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
45333d5a
AC
3812 cfqd->hw_tag = 1;
3813 else
3814 cfqd->hw_tag = 0;
45333d5a
AC
3815}
3816
7667aa06
VG
3817static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3818{
c5869807 3819 struct cfq_io_cq *cic = cfqd->active_cic;
7667aa06 3820
02a8f01b
JT
3821 /* If the queue already has requests, don't wait */
3822 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
3823 return false;
3824
7667aa06
VG
3825 /* If there are other queues in the group, don't wait */
3826 if (cfqq->cfqg->nr_cfqq > 1)
3827 return false;
3828
7700fc4f
SL
3829 /* the only queue in the group, but think time is big */
3830 if (cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true))
3831 return false;
3832
7667aa06
VG
3833 if (cfq_slice_used(cfqq))
3834 return true;
3835
3836 /* if slice left is less than think time, wait busy */
383cd721
SL
3837 if (cic && sample_valid(cic->ttime.ttime_samples)
3838 && (cfqq->slice_end - jiffies < cic->ttime.ttime_mean))
7667aa06
VG
3839 return true;
3840
3841 /*
3842 * If think times is less than a jiffy than ttime_mean=0 and above
3843 * will not be true. It might happen that slice has not expired yet
3844 * but will expire soon (4-5 ns) during select_queue(). To cover the
3845 * case where think time is less than a jiffy, mark the queue wait
3846 * busy if only 1 jiffy is left in the slice.
3847 */
3848 if (cfqq->slice_end - jiffies == 1)
3849 return true;
3850
3851 return false;
3852}
3853
165125e1 3854static void cfq_completed_request(struct request_queue *q, struct request *rq)
1da177e4 3855{
5e705374 3856 struct cfq_queue *cfqq = RQ_CFQQ(rq);
b4878f24 3857 struct cfq_data *cfqd = cfqq->cfqd;
5380a101 3858 const int sync = rq_is_sync(rq);
b4878f24 3859 unsigned long now;
1da177e4 3860
b4878f24 3861 now = jiffies;
33659ebb
CH
3862 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
3863 !!(rq->cmd_flags & REQ_NOIDLE));
1da177e4 3864
45333d5a
AC
3865 cfq_update_hw_tag(cfqd);
3866
53c583d2 3867 WARN_ON(!cfqd->rq_in_driver);
6d048f53 3868 WARN_ON(!cfqq->dispatched);
53c583d2 3869 cfqd->rq_in_driver--;
6d048f53 3870 cfqq->dispatched--;
80bdf0c7 3871 (RQ_CFQG(rq))->dispatched--;
155fead9
TH
3872 cfqg_stats_update_completion(cfqq->cfqg, rq_start_time_ns(rq),
3873 rq_io_start_time_ns(rq), rq->cmd_flags);
1da177e4 3874
53c583d2 3875 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
3ed9a296 3876
365722bb 3877 if (sync) {
34b98d03 3878 struct cfq_rb_root *st;
f5f2b6ce 3879
383cd721 3880 RQ_CIC(rq)->ttime.last_end_request = now;
f5f2b6ce
SL
3881
3882 if (cfq_cfqq_on_rr(cfqq))
34b98d03 3883 st = cfqq->service_tree;
f5f2b6ce 3884 else
34b98d03
VG
3885 st = st_for(cfqq->cfqg, cfqq_class(cfqq),
3886 cfqq_type(cfqq));
3887
3888 st->ttime.last_end_request = now;
573412b2
CZ
3889 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3890 cfqd->last_delayed_sync = now;
365722bb 3891 }
caaa5f9f 3892
7700fc4f
SL
3893#ifdef CONFIG_CFQ_GROUP_IOSCHED
3894 cfqq->cfqg->ttime.last_end_request = now;
3895#endif
3896
caaa5f9f
JA
3897 /*
3898 * If this is the active queue, check if it needs to be expired,
3899 * or if we want to idle in case it has no pending requests.
3900 */
3901 if (cfqd->active_queue == cfqq) {
a36e71f9
JA
3902 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3903
44f7c160
JA
3904 if (cfq_cfqq_slice_new(cfqq)) {
3905 cfq_set_prio_slice(cfqd, cfqq);
3906 cfq_clear_cfqq_slice_new(cfqq);
3907 }
f75edf2d
VG
3908
3909 /*
7667aa06
VG
3910 * Should we wait for next request to come in before we expire
3911 * the queue.
f75edf2d 3912 */
7667aa06 3913 if (cfq_should_wait_busy(cfqd, cfqq)) {
80bdf0c7
VG
3914 unsigned long extend_sl = cfqd->cfq_slice_idle;
3915 if (!cfqd->cfq_slice_idle)
3916 extend_sl = cfqd->cfq_group_idle;
3917 cfqq->slice_end = jiffies + extend_sl;
f75edf2d 3918 cfq_mark_cfqq_wait_busy(cfqq);
b1ffe737 3919 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
f75edf2d
VG
3920 }
3921
a36e71f9 3922 /*
8e550632
CZ
3923 * Idling is not enabled on:
3924 * - expired queues
3925 * - idle-priority queues
3926 * - async queues
3927 * - queues with still some requests queued
3928 * - when there is a close cooperator
a36e71f9 3929 */
0871714e 3930 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
e5ff082e 3931 cfq_slice_expired(cfqd, 1);
8e550632
CZ
3932 else if (sync && cfqq_empty &&
3933 !cfq_close_cooperator(cfqd, cfqq)) {
749ef9f8 3934 cfq_arm_slice_timer(cfqd);
8e550632 3935 }
caaa5f9f 3936 }
6d048f53 3937
53c583d2 3938 if (!cfqd->rq_in_driver)
23e018a1 3939 cfq_schedule_dispatch(cfqd);
1da177e4
LT
3940}
3941
89850f7e 3942static inline int __cfq_may_queue(struct cfq_queue *cfqq)
22e2c507 3943{
1b379d8d 3944 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
3b18152c 3945 cfq_mark_cfqq_must_alloc_slice(cfqq);
22e2c507 3946 return ELV_MQUEUE_MUST;
3b18152c 3947 }
1da177e4 3948
22e2c507 3949 return ELV_MQUEUE_MAY;
22e2c507
JA
3950}
3951
165125e1 3952static int cfq_may_queue(struct request_queue *q, int rw)
22e2c507
JA
3953{
3954 struct cfq_data *cfqd = q->elevator->elevator_data;
3955 struct task_struct *tsk = current;
c5869807 3956 struct cfq_io_cq *cic;
22e2c507
JA
3957 struct cfq_queue *cfqq;
3958
3959 /*
3960 * don't force setup of a queue from here, as a call to may_queue
3961 * does not necessarily imply that a request actually will be queued.
3962 * so just lookup a possibly existing queue, or return 'may queue'
3963 * if that fails
3964 */
4ac845a2 3965 cic = cfq_cic_lookup(cfqd, tsk->io_context);
91fac317
VT
3966 if (!cic)
3967 return ELV_MQUEUE_MAY;
3968
b0b78f81 3969 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
22e2c507 3970 if (cfqq) {
abede6da 3971 cfq_init_prio_data(cfqq, cic);
22e2c507 3972
89850f7e 3973 return __cfq_may_queue(cfqq);
22e2c507
JA
3974 }
3975
3976 return ELV_MQUEUE_MAY;
1da177e4
LT
3977}
3978
1da177e4
LT
3979/*
3980 * queue lock held here
3981 */
bb37b94c 3982static void cfq_put_request(struct request *rq)
1da177e4 3983{
5e705374 3984 struct cfq_queue *cfqq = RQ_CFQQ(rq);
1da177e4 3985
5e705374 3986 if (cfqq) {
22e2c507 3987 const int rw = rq_data_dir(rq);
1da177e4 3988
22e2c507
JA
3989 BUG_ON(!cfqq->allocated[rw]);
3990 cfqq->allocated[rw]--;
1da177e4 3991
7f1dc8a2 3992 /* Put down rq reference on cfqg */
eb7d8c07 3993 cfqg_put(RQ_CFQG(rq));
a612fddf
TH
3994 rq->elv.priv[0] = NULL;
3995 rq->elv.priv[1] = NULL;
7f1dc8a2 3996
1da177e4
LT
3997 cfq_put_queue(cfqq);
3998 }
3999}
4000
df5fe3e8 4001static struct cfq_queue *
c5869807 4002cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_cq *cic,
df5fe3e8
JM
4003 struct cfq_queue *cfqq)
4004{
4005 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
4006 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
b3b6d040 4007 cfq_mark_cfqq_coop(cfqq->new_cfqq);
df5fe3e8
JM
4008 cfq_put_queue(cfqq);
4009 return cic_to_cfqq(cic, 1);
4010}
4011
e6c5bc73
JM
4012/*
4013 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
4014 * was the last process referring to said cfqq.
4015 */
4016static struct cfq_queue *
c5869807 4017split_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq)
e6c5bc73
JM
4018{
4019 if (cfqq_process_refs(cfqq) == 1) {
e6c5bc73
JM
4020 cfqq->pid = current->pid;
4021 cfq_clear_cfqq_coop(cfqq);
ae54abed 4022 cfq_clear_cfqq_split_coop(cfqq);
e6c5bc73
JM
4023 return cfqq;
4024 }
4025
4026 cic_set_cfqq(cic, NULL, 1);
d02a2c07
SL
4027
4028 cfq_put_cooperator(cfqq);
4029
e6c5bc73
JM
4030 cfq_put_queue(cfqq);
4031 return NULL;
4032}
1da177e4 4033/*
22e2c507 4034 * Allocate cfq data structures associated with this request.
1da177e4 4035 */
22e2c507 4036static int
852c788f
TH
4037cfq_set_request(struct request_queue *q, struct request *rq, struct bio *bio,
4038 gfp_t gfp_mask)
1da177e4
LT
4039{
4040 struct cfq_data *cfqd = q->elevator->elevator_data;
f1f8cc94 4041 struct cfq_io_cq *cic = icq_to_cic(rq->elv.icq);
1da177e4 4042 const int rw = rq_data_dir(rq);
a6151c3a 4043 const bool is_sync = rq_is_sync(rq);
22e2c507 4044 struct cfq_queue *cfqq;
1da177e4
LT
4045
4046 might_sleep_if(gfp_mask & __GFP_WAIT);
4047
216284c3 4048 spin_lock_irq(q->queue_lock);
f1f8cc94 4049
598971bf
TH
4050 check_ioprio_changed(cic, bio);
4051 check_blkcg_changed(cic, bio);
e6c5bc73 4052new_queue:
91fac317 4053 cfqq = cic_to_cfqq(cic, is_sync);
32f2e807 4054 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
abede6da 4055 cfqq = cfq_get_queue(cfqd, is_sync, cic, bio, gfp_mask);
91fac317 4056 cic_set_cfqq(cic, cfqq, is_sync);
df5fe3e8 4057 } else {
e6c5bc73
JM
4058 /*
4059 * If the queue was seeky for too long, break it apart.
4060 */
ae54abed 4061 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
e6c5bc73
JM
4062 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
4063 cfqq = split_cfqq(cic, cfqq);
4064 if (!cfqq)
4065 goto new_queue;
4066 }
4067
df5fe3e8
JM
4068 /*
4069 * Check to see if this queue is scheduled to merge with
4070 * another, closely cooperating queue. The merging of
4071 * queues happens here as it must be done in process context.
4072 * The reference on new_cfqq was taken in merge_cfqqs.
4073 */
4074 if (cfqq->new_cfqq)
4075 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
91fac317 4076 }
1da177e4
LT
4077
4078 cfqq->allocated[rw]++;
1da177e4 4079
6fae9c25 4080 cfqq->ref++;
eb7d8c07 4081 cfqg_get(cfqq->cfqg);
a612fddf 4082 rq->elv.priv[0] = cfqq;
1adaf3dd 4083 rq->elv.priv[1] = cfqq->cfqg;
216284c3 4084 spin_unlock_irq(q->queue_lock);
5e705374 4085 return 0;
1da177e4
LT
4086}
4087
65f27f38 4088static void cfq_kick_queue(struct work_struct *work)
22e2c507 4089{
65f27f38 4090 struct cfq_data *cfqd =
23e018a1 4091 container_of(work, struct cfq_data, unplug_work);
165125e1 4092 struct request_queue *q = cfqd->queue;
22e2c507 4093
40bb54d1 4094 spin_lock_irq(q->queue_lock);
24ecfbe2 4095 __blk_run_queue(cfqd->queue);
40bb54d1 4096 spin_unlock_irq(q->queue_lock);
22e2c507
JA
4097}
4098
4099/*
4100 * Timer running if the active_queue is currently idling inside its time slice
4101 */
4102static void cfq_idle_slice_timer(unsigned long data)
4103{
4104 struct cfq_data *cfqd = (struct cfq_data *) data;
4105 struct cfq_queue *cfqq;
4106 unsigned long flags;
3c6bd2f8 4107 int timed_out = 1;
22e2c507 4108
7b679138
JA
4109 cfq_log(cfqd, "idle timer fired");
4110
22e2c507
JA
4111 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
4112
fe094d98
JA
4113 cfqq = cfqd->active_queue;
4114 if (cfqq) {
3c6bd2f8
JA
4115 timed_out = 0;
4116
b029195d
JA
4117 /*
4118 * We saw a request before the queue expired, let it through
4119 */
4120 if (cfq_cfqq_must_dispatch(cfqq))
4121 goto out_kick;
4122
22e2c507
JA
4123 /*
4124 * expired
4125 */
44f7c160 4126 if (cfq_slice_used(cfqq))
22e2c507
JA
4127 goto expire;
4128
4129 /*
4130 * only expire and reinvoke request handler, if there are
4131 * other queues with pending requests
4132 */
caaa5f9f 4133 if (!cfqd->busy_queues)
22e2c507 4134 goto out_cont;
22e2c507
JA
4135
4136 /*
4137 * not expired and it has a request pending, let it dispatch
4138 */
75e50984 4139 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
22e2c507 4140 goto out_kick;
76280aff
CZ
4141
4142 /*
4143 * Queue depth flag is reset only when the idle didn't succeed
4144 */
4145 cfq_clear_cfqq_deep(cfqq);
22e2c507
JA
4146 }
4147expire:
e5ff082e 4148 cfq_slice_expired(cfqd, timed_out);
22e2c507 4149out_kick:
23e018a1 4150 cfq_schedule_dispatch(cfqd);
22e2c507
JA
4151out_cont:
4152 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
4153}
4154
3b18152c
JA
4155static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
4156{
4157 del_timer_sync(&cfqd->idle_slice_timer);
23e018a1 4158 cancel_work_sync(&cfqd->unplug_work);
3b18152c 4159}
22e2c507 4160
c2dea2d1
VT
4161static void cfq_put_async_queues(struct cfq_data *cfqd)
4162{
4163 int i;
4164
4165 for (i = 0; i < IOPRIO_BE_NR; i++) {
4166 if (cfqd->async_cfqq[0][i])
4167 cfq_put_queue(cfqd->async_cfqq[0][i]);
4168 if (cfqd->async_cfqq[1][i])
4169 cfq_put_queue(cfqd->async_cfqq[1][i]);
c2dea2d1 4170 }
2389d1ef
ON
4171
4172 if (cfqd->async_idle_cfqq)
4173 cfq_put_queue(cfqd->async_idle_cfqq);
c2dea2d1
VT
4174}
4175
b374d18a 4176static void cfq_exit_queue(struct elevator_queue *e)
1da177e4 4177{
22e2c507 4178 struct cfq_data *cfqd = e->elevator_data;
165125e1 4179 struct request_queue *q = cfqd->queue;
22e2c507 4180
3b18152c 4181 cfq_shutdown_timer_wq(cfqd);
e2d74ac0 4182
d9ff4187 4183 spin_lock_irq(q->queue_lock);
e2d74ac0 4184
d9ff4187 4185 if (cfqd->active_queue)
e5ff082e 4186 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
e2d74ac0 4187
c2dea2d1 4188 cfq_put_async_queues(cfqd);
03aa264a
TH
4189
4190 spin_unlock_irq(q->queue_lock);
4191
a90d742e
AV
4192 cfq_shutdown_timer_wq(cfqd);
4193
ffea73fc
TH
4194#ifdef CONFIG_CFQ_GROUP_IOSCHED
4195 blkcg_deactivate_policy(q, &blkcg_policy_cfq);
4196#else
f51b802c 4197 kfree(cfqd->root_group);
2abae55f 4198#endif
56edf7d7 4199 kfree(cfqd);
1da177e4
LT
4200}
4201
b2fab5ac 4202static int cfq_init_queue(struct request_queue *q)
1da177e4
LT
4203{
4204 struct cfq_data *cfqd;
3c798398 4205 struct blkcg_gq *blkg __maybe_unused;
a2b1693b 4206 int i, ret;
1da177e4 4207
94f6030c 4208 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
a73f730d 4209 if (!cfqd)
b2fab5ac 4210 return -ENOMEM;
80b15c73 4211
f51b802c
TH
4212 cfqd->queue = q;
4213 q->elevator->elevator_data = cfqd;
4214
1fa8f6d6
VG
4215 /* Init root service tree */
4216 cfqd->grp_service_tree = CFQ_RB_ROOT;
4217
f51b802c 4218 /* Init root group and prefer root group over other groups by default */
25fb5169 4219#ifdef CONFIG_CFQ_GROUP_IOSCHED
3c798398 4220 ret = blkcg_activate_policy(q, &blkcg_policy_cfq);
a2b1693b
TH
4221 if (ret)
4222 goto out_free;
f51b802c 4223
a2b1693b 4224 cfqd->root_group = blkg_to_cfqg(q->root_blkg);
f51b802c 4225#else
a2b1693b 4226 ret = -ENOMEM;
f51b802c
TH
4227 cfqd->root_group = kzalloc_node(sizeof(*cfqd->root_group),
4228 GFP_KERNEL, cfqd->queue->node);
a2b1693b
TH
4229 if (!cfqd->root_group)
4230 goto out_free;
5624a4e4 4231
a2b1693b
TH
4232 cfq_init_cfqg_base(cfqd->root_group);
4233#endif
3381cb8d 4234 cfqd->root_group->weight = 2 * CFQ_WEIGHT_DEFAULT;
e71357e1 4235 cfqd->root_group->leaf_weight = 2 * CFQ_WEIGHT_DEFAULT;
5624a4e4 4236
26a2ac00
JA
4237 /*
4238 * Not strictly needed (since RB_ROOT just clears the node and we
4239 * zeroed cfqd on alloc), but better be safe in case someone decides
4240 * to add magic to the rb code
4241 */
4242 for (i = 0; i < CFQ_PRIO_LISTS; i++)
4243 cfqd->prio_trees[i] = RB_ROOT;
4244
6118b70b
JA
4245 /*
4246 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
4247 * Grab a permanent reference to it, so that the normal code flow
f51b802c
TH
4248 * will not attempt to free it. oom_cfqq is linked to root_group
4249 * but shouldn't hold a reference as it'll never be unlinked. Lose
4250 * the reference from linking right away.
6118b70b
JA
4251 */
4252 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
30d7b944 4253 cfqd->oom_cfqq.ref++;
1adaf3dd
TH
4254
4255 spin_lock_irq(q->queue_lock);
f51b802c 4256 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, cfqd->root_group);
eb7d8c07 4257 cfqg_put(cfqd->root_group);
1adaf3dd 4258 spin_unlock_irq(q->queue_lock);
1da177e4 4259
22e2c507
JA
4260 init_timer(&cfqd->idle_slice_timer);
4261 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
4262 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
4263
23e018a1 4264 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
22e2c507 4265
1da177e4 4266 cfqd->cfq_quantum = cfq_quantum;
22e2c507
JA
4267 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
4268 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
1da177e4
LT
4269 cfqd->cfq_back_max = cfq_back_max;
4270 cfqd->cfq_back_penalty = cfq_back_penalty;
22e2c507
JA
4271 cfqd->cfq_slice[0] = cfq_slice_async;
4272 cfqd->cfq_slice[1] = cfq_slice_sync;
5bf14c07 4273 cfqd->cfq_target_latency = cfq_target_latency;
22e2c507
JA
4274 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
4275 cfqd->cfq_slice_idle = cfq_slice_idle;
80bdf0c7 4276 cfqd->cfq_group_idle = cfq_group_idle;
963b72fc 4277 cfqd->cfq_latency = 1;
e459dd08 4278 cfqd->hw_tag = -1;
edc71131
CZ
4279 /*
4280 * we optimistically start assuming sync ops weren't delayed in last
4281 * second, in order to have larger depth for async operations.
4282 */
573412b2 4283 cfqd->last_delayed_sync = jiffies - HZ;
b2fab5ac 4284 return 0;
a2b1693b
TH
4285
4286out_free:
4287 kfree(cfqd);
4288 return ret;
1da177e4
LT
4289}
4290
1da177e4
LT
4291/*
4292 * sysfs parts below -->
4293 */
1da177e4
LT
4294static ssize_t
4295cfq_var_show(unsigned int var, char *page)
4296{
4297 return sprintf(page, "%d\n", var);
4298}
4299
4300static ssize_t
4301cfq_var_store(unsigned int *var, const char *page, size_t count)
4302{
4303 char *p = (char *) page;
4304
4305 *var = simple_strtoul(p, &p, 10);
4306 return count;
4307}
4308
1da177e4 4309#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
b374d18a 4310static ssize_t __FUNC(struct elevator_queue *e, char *page) \
1da177e4 4311{ \
3d1ab40f 4312 struct cfq_data *cfqd = e->elevator_data; \
1da177e4
LT
4313 unsigned int __data = __VAR; \
4314 if (__CONV) \
4315 __data = jiffies_to_msecs(__data); \
4316 return cfq_var_show(__data, (page)); \
4317}
4318SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
22e2c507
JA
4319SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
4320SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
e572ec7e
AV
4321SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
4322SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
22e2c507 4323SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
80bdf0c7 4324SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1);
22e2c507
JA
4325SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
4326SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
4327SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
963b72fc 4328SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
5bf14c07 4329SHOW_FUNCTION(cfq_target_latency_show, cfqd->cfq_target_latency, 1);
1da177e4
LT
4330#undef SHOW_FUNCTION
4331
4332#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
b374d18a 4333static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
1da177e4 4334{ \
3d1ab40f 4335 struct cfq_data *cfqd = e->elevator_data; \
1da177e4
LT
4336 unsigned int __data; \
4337 int ret = cfq_var_store(&__data, (page), count); \
4338 if (__data < (MIN)) \
4339 __data = (MIN); \
4340 else if (__data > (MAX)) \
4341 __data = (MAX); \
4342 if (__CONV) \
4343 *(__PTR) = msecs_to_jiffies(__data); \
4344 else \
4345 *(__PTR) = __data; \
4346 return ret; \
4347}
4348STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
fe094d98
JA
4349STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
4350 UINT_MAX, 1);
4351STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
4352 UINT_MAX, 1);
e572ec7e 4353STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
fe094d98
JA
4354STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
4355 UINT_MAX, 0);
22e2c507 4356STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
80bdf0c7 4357STORE_FUNCTION(cfq_group_idle_store, &cfqd->cfq_group_idle, 0, UINT_MAX, 1);
22e2c507
JA
4358STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
4359STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
fe094d98
JA
4360STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
4361 UINT_MAX, 0);
963b72fc 4362STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
5bf14c07 4363STORE_FUNCTION(cfq_target_latency_store, &cfqd->cfq_target_latency, 1, UINT_MAX, 1);
1da177e4
LT
4364#undef STORE_FUNCTION
4365
e572ec7e
AV
4366#define CFQ_ATTR(name) \
4367 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
4368
4369static struct elv_fs_entry cfq_attrs[] = {
4370 CFQ_ATTR(quantum),
e572ec7e
AV
4371 CFQ_ATTR(fifo_expire_sync),
4372 CFQ_ATTR(fifo_expire_async),
4373 CFQ_ATTR(back_seek_max),
4374 CFQ_ATTR(back_seek_penalty),
4375 CFQ_ATTR(slice_sync),
4376 CFQ_ATTR(slice_async),
4377 CFQ_ATTR(slice_async_rq),
4378 CFQ_ATTR(slice_idle),
80bdf0c7 4379 CFQ_ATTR(group_idle),
963b72fc 4380 CFQ_ATTR(low_latency),
5bf14c07 4381 CFQ_ATTR(target_latency),
e572ec7e 4382 __ATTR_NULL
1da177e4
LT
4383};
4384
1da177e4
LT
4385static struct elevator_type iosched_cfq = {
4386 .ops = {
4387 .elevator_merge_fn = cfq_merge,
4388 .elevator_merged_fn = cfq_merged_request,
4389 .elevator_merge_req_fn = cfq_merged_requests,
da775265 4390 .elevator_allow_merge_fn = cfq_allow_merge,
812d4026 4391 .elevator_bio_merged_fn = cfq_bio_merged,
b4878f24 4392 .elevator_dispatch_fn = cfq_dispatch_requests,
1da177e4 4393 .elevator_add_req_fn = cfq_insert_request,
b4878f24 4394 .elevator_activate_req_fn = cfq_activate_request,
1da177e4 4395 .elevator_deactivate_req_fn = cfq_deactivate_request,
1da177e4 4396 .elevator_completed_req_fn = cfq_completed_request,
21183b07
JA
4397 .elevator_former_req_fn = elv_rb_former_request,
4398 .elevator_latter_req_fn = elv_rb_latter_request,
9b84cacd 4399 .elevator_init_icq_fn = cfq_init_icq,
7e5a8794 4400 .elevator_exit_icq_fn = cfq_exit_icq,
1da177e4
LT
4401 .elevator_set_req_fn = cfq_set_request,
4402 .elevator_put_req_fn = cfq_put_request,
4403 .elevator_may_queue_fn = cfq_may_queue,
4404 .elevator_init_fn = cfq_init_queue,
4405 .elevator_exit_fn = cfq_exit_queue,
4406 },
3d3c2379
TH
4407 .icq_size = sizeof(struct cfq_io_cq),
4408 .icq_align = __alignof__(struct cfq_io_cq),
3d1ab40f 4409 .elevator_attrs = cfq_attrs,
3d3c2379 4410 .elevator_name = "cfq",
1da177e4
LT
4411 .elevator_owner = THIS_MODULE,
4412};
4413
3e252066 4414#ifdef CONFIG_CFQ_GROUP_IOSCHED
3c798398 4415static struct blkcg_policy blkcg_policy_cfq = {
f9fcc2d3
TH
4416 .pd_size = sizeof(struct cfq_group),
4417 .cftypes = cfq_blkcg_files,
4418
4419 .pd_init_fn = cfq_pd_init,
4420 .pd_reset_stats_fn = cfq_pd_reset_stats,
3e252066 4421};
3e252066
VG
4422#endif
4423
1da177e4
LT
4424static int __init cfq_init(void)
4425{
3d3c2379
TH
4426 int ret;
4427
22e2c507
JA
4428 /*
4429 * could be 0 on HZ < 1000 setups
4430 */
4431 if (!cfq_slice_async)
4432 cfq_slice_async = 1;
4433 if (!cfq_slice_idle)
4434 cfq_slice_idle = 1;
4435
80bdf0c7
VG
4436#ifdef CONFIG_CFQ_GROUP_IOSCHED
4437 if (!cfq_group_idle)
4438 cfq_group_idle = 1;
8bd435b3 4439
3c798398 4440 ret = blkcg_policy_register(&blkcg_policy_cfq);
8bd435b3
TH
4441 if (ret)
4442 return ret;
ffea73fc
TH
4443#else
4444 cfq_group_idle = 0;
4445#endif
8bd435b3 4446
fd794956 4447 ret = -ENOMEM;
3d3c2379
TH
4448 cfq_pool = KMEM_CACHE(cfq_queue, 0);
4449 if (!cfq_pool)
8bd435b3 4450 goto err_pol_unreg;
1da177e4 4451
3d3c2379 4452 ret = elv_register(&iosched_cfq);
8bd435b3
TH
4453 if (ret)
4454 goto err_free_pool;
3d3c2379 4455
2fdd82bd 4456 return 0;
8bd435b3
TH
4457
4458err_free_pool:
4459 kmem_cache_destroy(cfq_pool);
4460err_pol_unreg:
ffea73fc 4461#ifdef CONFIG_CFQ_GROUP_IOSCHED
3c798398 4462 blkcg_policy_unregister(&blkcg_policy_cfq);
ffea73fc 4463#endif
8bd435b3 4464 return ret;
1da177e4
LT
4465}
4466
4467static void __exit cfq_exit(void)
4468{
ffea73fc 4469#ifdef CONFIG_CFQ_GROUP_IOSCHED
3c798398 4470 blkcg_policy_unregister(&blkcg_policy_cfq);
ffea73fc 4471#endif
1da177e4 4472 elv_unregister(&iosched_cfq);
3d3c2379 4473 kmem_cache_destroy(cfq_pool);
1da177e4
LT
4474}
4475
4476module_init(cfq_init);
4477module_exit(cfq_exit);
4478
4479MODULE_AUTHOR("Jens Axboe");
4480MODULE_LICENSE("GPL");
4481MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");