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