blob: a948d4df3fc364dc5dc89b9601fcf813b4571f3b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * CFQ, or complete fairness queueing, disk scheduler.
3 *
4 * Based on ideas from a previously unfinished io
5 * scheduler (round robin per-process disk scheduling) and Andrea Arcangeli.
6 *
Jens Axboe0fe23472006-09-04 15:41:16 +02007 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Al Viro1cc9be62006-03-18 12:29:52 -050011#include <linux/blkdev.h>
12#include <linux/elevator.h>
Randy Dunlapad5ebd22009-11-11 13:47:45 +010013#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/rbtree.h>
Jens Axboe22e2c502005-06-27 10:55:12 +020015#include <linux/ioprio.h>
Jens Axboe7b679132008-05-30 12:23:07 +020016#include <linux/blktrace_api.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040017#include <linux/blk-cgroup.h>
Tejun Heo6e736be2011-12-14 00:33:38 +010018#include "blk.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/*
21 * tunables
22 */
Jens Axboefe094d92008-01-31 13:08:54 +010023/* max queue in one round of service */
Shaohua Liabc3c742010-03-01 09:20:54 +010024static const int cfq_quantum = 8;
Arjan van de Ven64100092006-01-06 09:46:02 +010025static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
Jens Axboefe094d92008-01-31 13:08:54 +010026/* 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;
Arjan van de Ven64100092006-01-06 09:46:02 +010030static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020031static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010032static const int cfq_slice_async_rq = 2;
Jens Axboecaaa5f92006-06-16 11:23:00 +020033static int cfq_slice_idle = HZ / 125;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +020034static int cfq_group_idle = HZ / 125;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +010035static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
36static const int cfq_hist_divisor = 4;
Jens Axboe22e2c502005-06-27 10:55:12 +020037
Jens Axboed9e76202007-04-20 14:27:50 +020038/*
Jens Axboe08717142008-01-28 11:38:15 +010039 * offset from end of service tree
Jens Axboed9e76202007-04-20 14:27:50 +020040 */
Jens Axboe08717142008-01-28 11:38:15 +010041#define CFQ_IDLE_DELAY (HZ / 5)
Jens Axboed9e76202007-04-20 14:27:50 +020042
43/*
44 * below this threshold, we consider thinktime immediate
45 */
46#define CFQ_MIN_TT (2)
47
Jens Axboe22e2c502005-06-27 10:55:12 +020048#define CFQ_SLICE_SCALE (5)
Aaron Carroll45333d52008-08-26 15:52:36 +020049#define CFQ_HW_QUEUE_MIN (5)
Vivek Goyal25bc6b02009-12-03 12:59:43 -050050#define CFQ_SERVICE_SHIFT 12
Jens Axboe22e2c502005-06-27 10:55:12 +020051
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010052#define CFQQ_SEEK_THR (sector_t)(8 * 100)
Shaohua Lie9ce3352010-03-19 08:03:04 +010053#define CFQQ_CLOSE_THR (sector_t)(8 * 1024)
Corrado Zoccolo41647e72010-02-27 19:45:40 +010054#define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32)
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010055#define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8)
Shaohua Liae54abe2010-02-05 13:11:45 +010056
Tejun Heoa612fdd2011-12-14 00:33:41 +010057#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])
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Christoph Lametere18b8902006-12-06 20:33:20 -080061static struct kmem_cache *cfq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Jens Axboe22e2c502005-06-27 10:55:12 +020063#define CFQ_PRIO_LISTS IOPRIO_BE_NR
64#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
Jens Axboe22e2c502005-06-27 10:55:12 +020065#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
66
Jens Axboe206dc692006-03-28 13:03:44 +020067#define sample_valid(samples) ((samples) > 80)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050068#define rb_entry_cfqg(node) rb_entry((node), struct cfq_group, rb_node)
Jens Axboe206dc692006-03-28 13:03:44 +020069
Arianna Avanzinie48453c2015-06-05 23:38:42 +020070/* blkio-related constants */
71#define CFQ_WEIGHT_MIN 10
72#define CFQ_WEIGHT_MAX 1000
73#define CFQ_WEIGHT_DEFAULT 500
74
Tejun Heoc5869802011-12-14 00:33:41 +010075struct 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
Jens Axboe22e2c502005-06-27 10:55:12 +020083/*
Jens Axboecc09e292007-04-26 12:53:50 +020084 * 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;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010092 unsigned count;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050093 u64 min_vdisktime;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020094 struct cfq_ttime ttime;
Jens Axboecc09e292007-04-26 12:53:50 +020095};
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020096#define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, \
97 .ttime = {.last_end_request = jiffies,},}
Jens Axboecc09e292007-04-26 12:53:50 +020098
99/*
Jens Axboe6118b702009-06-30 09:34:12 +0200100 * Per process-grouping structure
101 */
102struct cfq_queue {
103 /* reference count */
Shaohua Li30d7b942011-01-07 08:46:59 +0100104 int ref;
Jens Axboe6118b702009-06-30 09:34:12 +0200105 /* 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
Vivek Goyaldae739e2009-12-03 12:59:45 -0500128 /* time when queue got scheduled in to dispatch first request. */
129 unsigned long dispatch_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500130 unsigned int allocated_slice;
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100131 unsigned int slice_dispatch;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500132 /* time when first request from queue completed and slice started. */
133 unsigned long slice_start;
Jens Axboe6118b702009-06-30 09:34:12 +0200134 unsigned long slice_end;
135 long slice_resid;
Jens Axboe6118b702009-06-30 09:34:12 +0200136
Christoph Hellwig65299a32011-08-23 14:50:29 +0200137 /* pending priority requests */
138 int prio_pending;
Jens Axboe6118b702009-06-30 09:34:12 +0200139 /* 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;
Justin TerAvest4aede842011-07-12 08:31:45 +0200144 unsigned short ioprio_class;
Jens Axboe6118b702009-06-30 09:34:12 +0200145
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100146 pid_t pid;
147
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +0100148 u32 seek_history;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400149 sector_t last_request_pos;
150
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100151 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400152 struct cfq_queue *new_cfqq;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500153 struct cfq_group *cfqg;
Vivek Goyalc4e78932010-08-23 12:25:03 +0200154 /* Number of sectors dispatched from queue in single dispatch round */
155 unsigned long nr_sectors;
Jens Axboe6118b702009-06-30 09:34:12 +0200156};
157
158/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100159 * First index in the service_trees.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100160 * IDLE is handled separately, so it has negative index
161 */
Vivek Goyal3bf10fe2012-10-03 16:56:56 -0400162enum wl_class_t {
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100163 BE_WORKLOAD = 0,
Vivek Goyal615f0252009-12-03 12:59:39 -0500164 RT_WORKLOAD = 1,
165 IDLE_WORKLOAD = 2,
Vivek Goyalb4627322010-10-22 09:48:43 +0200166 CFQ_PRIO_NR,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100167};
168
169/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100170 * 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
Tejun Heo155fead2012-04-01 14:38:44 -0700178struct cfqg_stats {
179#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heo155fead2012-04-01 14:38:44 -0700180 /* number of ios merged */
181 struct blkg_rwstat merged;
182 /* total time spent on device in ns, may not be accurate w/ queueing */
183 struct blkg_rwstat service_time;
184 /* total time spent waiting in scheduler queue in ns */
185 struct blkg_rwstat wait_time;
186 /* number of IOs queued up */
187 struct blkg_rwstat queued;
188 /* total sectors transferred */
189 struct blkg_stat sectors;
190 /* total disk time and nr sectors dispatched by this group */
191 struct blkg_stat time;
192#ifdef CONFIG_DEBUG_BLK_CGROUP
193 /* time not charged to this cgroup */
194 struct blkg_stat unaccounted_time;
195 /* sum of number of ios queued across all samples */
196 struct blkg_stat avg_queue_size_sum;
197 /* count of samples taken for average */
198 struct blkg_stat avg_queue_size_samples;
199 /* how many times this group has been removed from service tree */
200 struct blkg_stat dequeue;
201 /* total time spent waiting for it to be assigned a timeslice. */
202 struct blkg_stat group_wait_time;
Tejun Heo3c798392012-04-16 13:57:25 -0700203 /* time spent idling for this blkcg_gq */
Tejun Heo155fead2012-04-01 14:38:44 -0700204 struct blkg_stat idle_time;
205 /* total time with empty current active q with other requests queued */
206 struct blkg_stat empty_time;
207 /* fields after this shouldn't be cleared on stat reset */
208 uint64_t start_group_wait_time;
209 uint64_t start_idle_time;
210 uint64_t start_empty_time;
211 uint16_t flags;
212#endif /* CONFIG_DEBUG_BLK_CGROUP */
213#endif /* CONFIG_CFQ_GROUP_IOSCHED */
214};
215
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200216/* Per-cgroup data */
217struct cfq_group_data {
218 /* must be the first member */
Tejun Heo81437642015-08-18 14:55:15 -0700219 struct blkcg_policy_data cpd;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200220
221 unsigned int weight;
222 unsigned int leaf_weight;
223};
224
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500225/* This is per cgroup per device grouping structure */
226struct cfq_group {
Tejun Heof95a04a2012-04-16 13:57:26 -0700227 /* must be the first member */
228 struct blkg_policy_data pd;
229
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500230 /* group service_tree member */
231 struct rb_node rb_node;
232
233 /* group service_tree key */
234 u64 vdisktime;
Tejun Heoe71357e2013-01-09 08:05:10 -0800235
236 /*
Tejun Heo7918ffb2013-01-09 08:05:11 -0800237 * The number of active cfqgs and sum of their weights under this
238 * cfqg. This covers this cfqg's leaf_weight and all children's
239 * weights, but does not cover weights of further descendants.
240 *
241 * If a cfqg is on the service tree, it's active. An active cfqg
242 * also activates its parent and contributes to the children_weight
243 * of the parent.
244 */
245 int nr_active;
246 unsigned int children_weight;
247
248 /*
Tejun Heo1d3650f2013-01-09 08:05:11 -0800249 * vfraction is the fraction of vdisktime that the tasks in this
250 * cfqg are entitled to. This is determined by compounding the
251 * ratios walking up from this cfqg to the root.
252 *
253 * It is in fixed point w/ CFQ_SERVICE_SHIFT and the sum of all
254 * vfractions on a service tree is approximately 1. The sum may
255 * deviate a bit due to rounding errors and fluctuations caused by
256 * cfqgs entering and leaving the service tree.
257 */
258 unsigned int vfraction;
259
260 /*
Tejun Heoe71357e2013-01-09 08:05:10 -0800261 * There are two weights - (internal) weight is the weight of this
262 * cfqg against the sibling cfqgs. leaf_weight is the wight of
263 * this cfqg against the child cfqgs. For the root cfqg, both
264 * weights are kept in sync for backward compatibility.
265 */
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500266 unsigned int weight;
Justin TerAvest8184f932011-03-17 16:12:36 +0100267 unsigned int new_weight;
Tejun Heo3381cb82012-04-01 14:38:44 -0700268 unsigned int dev_weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500269
Tejun Heoe71357e2013-01-09 08:05:10 -0800270 unsigned int leaf_weight;
271 unsigned int new_leaf_weight;
272 unsigned int dev_leaf_weight;
273
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500274 /* number of cfqq currently on this group */
275 int nr_cfqq;
276
Jens Axboe22e2c502005-06-27 10:55:12 +0200277 /*
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200278 * Per group busy queues average. Useful for workload slice calc. We
Vivek Goyalb4627322010-10-22 09:48:43 +0200279 * create the array for each prio class but at run time it is used
280 * only for RT and BE class and slot for IDLE class remains unused.
281 * This is primarily done to avoid confusion and a gcc warning.
282 */
283 unsigned int busy_queues_avg[CFQ_PRIO_NR];
284 /*
285 * rr lists of queues with requests. We maintain service trees for
286 * RT and BE classes. These trees are subdivided in subclasses
287 * of SYNC, SYNC_NOIDLE and ASYNC based on workload type. For IDLE
288 * class there is no subclassification and all the cfq queues go on
289 * a single tree service_tree_idle.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100290 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200291 */
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100292 struct cfq_rb_root service_trees[2][3];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100293 struct cfq_rb_root service_tree_idle;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500294
Vivek Goyal4d2ceea2012-10-03 16:56:57 -0400295 unsigned long saved_wl_slice;
296 enum wl_type_t saved_wl_type;
297 enum wl_class_t saved_wl_class;
Tejun Heo4eef3042012-03-05 13:15:18 -0800298
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200299 /* number of requests that are on the dispatch list or inside driver */
300 int dispatched;
Shaohua Li7700fc42011-07-12 14:24:56 +0200301 struct cfq_ttime ttime;
Tejun Heo0b399202013-01-09 08:05:13 -0800302 struct cfqg_stats stats; /* stats for this cfqg */
Tejun Heo60a83702015-08-18 14:55:05 -0700303
304 /* async queue for each priority case */
305 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
306 struct cfq_queue *async_idle_cfqq;
307
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500308};
309
Tejun Heoc5869802011-12-14 00:33:41 +0100310struct cfq_io_cq {
311 struct io_cq icq; /* must be the first member */
312 struct cfq_queue *cfqq[2];
313 struct cfq_ttime ttime;
Tejun Heo598971b2012-03-19 15:10:58 -0700314 int ioprio; /* the current ioprio */
315#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heof4da8072014-09-08 08:15:20 +0900316 uint64_t blkcg_serial_nr; /* the current blkcg serial */
Tejun Heo598971b2012-03-19 15:10:58 -0700317#endif
Tejun Heoc5869802011-12-14 00:33:41 +0100318};
319
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500320/*
321 * Per block device queue structure
322 */
323struct cfq_data {
324 struct request_queue *queue;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500325 /* Root service tree for cfq_groups */
326 struct cfq_rb_root grp_service_tree;
Tejun Heof51b8022012-03-05 13:15:05 -0800327 struct cfq_group *root_group;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500328
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100329 /*
330 * The priority currently being served
331 */
Vivek Goyal4d2ceea2012-10-03 16:56:57 -0400332 enum wl_class_t serving_wl_class;
333 enum wl_type_t serving_wl_type;
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100334 unsigned long workload_expires;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500335 struct cfq_group *serving_group;
Jens Axboea36e71f2009-04-15 12:15:11 +0200336
337 /*
338 * Each priority tree is sorted by next_request position. These
339 * trees are used when determining if two or more queues are
340 * interleaving requests (see cfq_close_cooperator).
341 */
342 struct rb_root prio_trees[CFQ_PRIO_LISTS];
343
Jens Axboe22e2c502005-06-27 10:55:12 +0200344 unsigned int busy_queues;
Shaohua Lief8a41d2011-03-07 09:26:29 +0100345 unsigned int busy_sync_queues;
Jens Axboe22e2c502005-06-27 10:55:12 +0200346
Corrado Zoccolo53c583d2010-02-28 19:45:05 +0100347 int rq_in_driver;
348 int rq_in_flight[2];
Aaron Carroll45333d52008-08-26 15:52:36 +0200349
350 /*
351 * queue-depth detection
352 */
353 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200354 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100355 /*
356 * hw_tag can be
357 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
358 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
359 * 0 => no NCQ
360 */
361 int hw_tag_est_depth;
362 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200363
364 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200365 * idle window management
366 */
367 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200368 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200369
370 struct cfq_queue *active_queue;
Tejun Heoc5869802011-12-14 00:33:41 +0100371 struct cfq_io_cq *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200372
Jens Axboe6d048f52007-04-25 12:44:27 +0200373 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /*
376 * tunables, see top of file
377 */
378 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200379 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 unsigned int cfq_back_penalty;
381 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200382 unsigned int cfq_slice[2];
383 unsigned int cfq_slice_async_rq;
384 unsigned int cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200385 unsigned int cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200386 unsigned int cfq_latency;
Tao Ma5bf14c02012-04-01 14:33:39 -0700387 unsigned int cfq_target_latency;
Al Virod9ff4182006-03-18 13:51:22 -0500388
Jens Axboe6118b702009-06-30 09:34:12 +0200389 /*
390 * Fallback dummy cfqq for extreme OOM conditions
391 */
392 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200393
Corrado Zoccolo573412b2009-12-06 11:48:52 +0100394 unsigned long last_delayed_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
Vivek Goyal25fb5162009-12-03 12:59:46 -0500397static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
Tejun Heo60a83702015-08-18 14:55:05 -0700398static void cfq_put_queue(struct cfq_queue *cfqq);
Vivek Goyal25fb5162009-12-03 12:59:46 -0500399
Vivek Goyal34b98d02012-10-03 16:56:58 -0400400static struct cfq_rb_root *st_for(struct cfq_group *cfqg,
Vivek Goyal3bf10fe2012-10-03 16:56:56 -0400401 enum wl_class_t class,
Vivek Goyal65b32a52009-12-16 17:52:59 -0500402 enum wl_type_t type)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100403{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500404 if (!cfqg)
405 return NULL;
406
Vivek Goyal3bf10fe2012-10-03 16:56:56 -0400407 if (class == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500408 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100409
Vivek Goyal3bf10fe2012-10-03 16:56:56 -0400410 return &cfqg->service_trees[class][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100411}
412
Jens Axboe3b181522005-06-27 10:56:24 +0200413enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100414 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
415 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200416 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100417 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100418 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
419 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
420 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100421 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200422 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400423 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Shaohua Liae54abe2010-02-05 13:11:45 +0100424 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100425 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Vivek Goyalf75edf22009-12-03 12:59:53 -0500426 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
Jens Axboe3b181522005-06-27 10:56:24 +0200427};
428
429#define CFQ_CFQQ_FNS(name) \
430static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
431{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100432 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200433} \
434static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
435{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100436 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200437} \
438static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
439{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100440 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200441}
442
443CFQ_CFQQ_FNS(on_rr);
444CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200445CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200446CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200447CFQ_CFQQ_FNS(fifo_expire);
448CFQ_CFQQ_FNS(idle_window);
449CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100450CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200451CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200452CFQ_CFQQ_FNS(coop);
Shaohua Liae54abe2010-02-05 13:11:45 +0100453CFQ_CFQQ_FNS(split_coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100454CFQ_CFQQ_FNS(deep);
Vivek Goyalf75edf22009-12-03 12:59:53 -0500455CFQ_CFQQ_FNS(wait_busy);
Jens Axboe3b181522005-06-27 10:56:24 +0200456#undef CFQ_CFQQ_FNS
457
Tejun Heo629ed0b2012-04-01 14:38:44 -0700458#if defined(CONFIG_CFQ_GROUP_IOSCHED) && defined(CONFIG_DEBUG_BLK_CGROUP)
Tejun Heo2ce4d502012-04-01 14:38:43 -0700459
Tejun Heo155fead2012-04-01 14:38:44 -0700460/* cfqg stats flags */
461enum cfqg_stats_flags {
462 CFQG_stats_waiting = 0,
463 CFQG_stats_idling,
464 CFQG_stats_empty,
Tejun Heo629ed0b2012-04-01 14:38:44 -0700465};
466
Tejun Heo155fead2012-04-01 14:38:44 -0700467#define CFQG_FLAG_FNS(name) \
468static inline void cfqg_stats_mark_##name(struct cfqg_stats *stats) \
Tejun Heo629ed0b2012-04-01 14:38:44 -0700469{ \
Tejun Heo155fead2012-04-01 14:38:44 -0700470 stats->flags |= (1 << CFQG_stats_##name); \
Tejun Heo629ed0b2012-04-01 14:38:44 -0700471} \
Tejun Heo155fead2012-04-01 14:38:44 -0700472static inline void cfqg_stats_clear_##name(struct cfqg_stats *stats) \
Tejun Heo629ed0b2012-04-01 14:38:44 -0700473{ \
Tejun Heo155fead2012-04-01 14:38:44 -0700474 stats->flags &= ~(1 << CFQG_stats_##name); \
Tejun Heo629ed0b2012-04-01 14:38:44 -0700475} \
Tejun Heo155fead2012-04-01 14:38:44 -0700476static inline int cfqg_stats_##name(struct cfqg_stats *stats) \
Tejun Heo629ed0b2012-04-01 14:38:44 -0700477{ \
Tejun Heo155fead2012-04-01 14:38:44 -0700478 return (stats->flags & (1 << CFQG_stats_##name)) != 0; \
Tejun Heo629ed0b2012-04-01 14:38:44 -0700479} \
480
Tejun Heo155fead2012-04-01 14:38:44 -0700481CFQG_FLAG_FNS(waiting)
482CFQG_FLAG_FNS(idling)
483CFQG_FLAG_FNS(empty)
484#undef CFQG_FLAG_FNS
Tejun Heo629ed0b2012-04-01 14:38:44 -0700485
486/* This should be called with the queue_lock held. */
Tejun Heo155fead2012-04-01 14:38:44 -0700487static void cfqg_stats_update_group_wait_time(struct cfqg_stats *stats)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700488{
489 unsigned long long now;
490
Tejun Heo155fead2012-04-01 14:38:44 -0700491 if (!cfqg_stats_waiting(stats))
Tejun Heo629ed0b2012-04-01 14:38:44 -0700492 return;
493
494 now = sched_clock();
495 if (time_after64(now, stats->start_group_wait_time))
496 blkg_stat_add(&stats->group_wait_time,
497 now - stats->start_group_wait_time);
Tejun Heo155fead2012-04-01 14:38:44 -0700498 cfqg_stats_clear_waiting(stats);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700499}
500
501/* This should be called with the queue_lock held. */
Tejun Heo155fead2012-04-01 14:38:44 -0700502static void cfqg_stats_set_start_group_wait_time(struct cfq_group *cfqg,
503 struct cfq_group *curr_cfqg)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700504{
Tejun Heo155fead2012-04-01 14:38:44 -0700505 struct cfqg_stats *stats = &cfqg->stats;
Tejun Heo629ed0b2012-04-01 14:38:44 -0700506
Tejun Heo155fead2012-04-01 14:38:44 -0700507 if (cfqg_stats_waiting(stats))
Tejun Heo629ed0b2012-04-01 14:38:44 -0700508 return;
Tejun Heo155fead2012-04-01 14:38:44 -0700509 if (cfqg == curr_cfqg)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700510 return;
Tejun Heo155fead2012-04-01 14:38:44 -0700511 stats->start_group_wait_time = sched_clock();
512 cfqg_stats_mark_waiting(stats);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700513}
514
515/* This should be called with the queue_lock held. */
Tejun Heo155fead2012-04-01 14:38:44 -0700516static void cfqg_stats_end_empty_time(struct cfqg_stats *stats)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700517{
518 unsigned long long now;
519
Tejun Heo155fead2012-04-01 14:38:44 -0700520 if (!cfqg_stats_empty(stats))
Tejun Heo629ed0b2012-04-01 14:38:44 -0700521 return;
522
523 now = sched_clock();
524 if (time_after64(now, stats->start_empty_time))
525 blkg_stat_add(&stats->empty_time,
526 now - stats->start_empty_time);
Tejun Heo155fead2012-04-01 14:38:44 -0700527 cfqg_stats_clear_empty(stats);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700528}
529
Tejun Heo155fead2012-04-01 14:38:44 -0700530static void cfqg_stats_update_dequeue(struct cfq_group *cfqg)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700531{
Tejun Heo155fead2012-04-01 14:38:44 -0700532 blkg_stat_add(&cfqg->stats.dequeue, 1);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700533}
534
Tejun Heo155fead2012-04-01 14:38:44 -0700535static void cfqg_stats_set_start_empty_time(struct cfq_group *cfqg)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700536{
Tejun Heo155fead2012-04-01 14:38:44 -0700537 struct cfqg_stats *stats = &cfqg->stats;
Tejun Heo629ed0b2012-04-01 14:38:44 -0700538
Tejun Heo4d5e80a2013-01-09 08:05:12 -0800539 if (blkg_rwstat_total(&stats->queued))
Tejun Heo629ed0b2012-04-01 14:38:44 -0700540 return;
541
542 /*
543 * group is already marked empty. This can happen if cfqq got new
544 * request in parent group and moved to this group while being added
545 * to service tree. Just ignore the event and move on.
546 */
Tejun Heo155fead2012-04-01 14:38:44 -0700547 if (cfqg_stats_empty(stats))
Tejun Heo629ed0b2012-04-01 14:38:44 -0700548 return;
549
550 stats->start_empty_time = sched_clock();
Tejun Heo155fead2012-04-01 14:38:44 -0700551 cfqg_stats_mark_empty(stats);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700552}
553
Tejun Heo155fead2012-04-01 14:38:44 -0700554static void cfqg_stats_update_idle_time(struct cfq_group *cfqg)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700555{
Tejun Heo155fead2012-04-01 14:38:44 -0700556 struct cfqg_stats *stats = &cfqg->stats;
Tejun Heo629ed0b2012-04-01 14:38:44 -0700557
Tejun Heo155fead2012-04-01 14:38:44 -0700558 if (cfqg_stats_idling(stats)) {
Tejun Heo629ed0b2012-04-01 14:38:44 -0700559 unsigned long long now = sched_clock();
560
561 if (time_after64(now, stats->start_idle_time))
562 blkg_stat_add(&stats->idle_time,
563 now - stats->start_idle_time);
Tejun Heo155fead2012-04-01 14:38:44 -0700564 cfqg_stats_clear_idling(stats);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700565 }
566}
567
Tejun Heo155fead2012-04-01 14:38:44 -0700568static void cfqg_stats_set_start_idle_time(struct cfq_group *cfqg)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700569{
Tejun Heo155fead2012-04-01 14:38:44 -0700570 struct cfqg_stats *stats = &cfqg->stats;
Tejun Heo629ed0b2012-04-01 14:38:44 -0700571
Tejun Heo155fead2012-04-01 14:38:44 -0700572 BUG_ON(cfqg_stats_idling(stats));
Tejun Heo629ed0b2012-04-01 14:38:44 -0700573
574 stats->start_idle_time = sched_clock();
Tejun Heo155fead2012-04-01 14:38:44 -0700575 cfqg_stats_mark_idling(stats);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700576}
577
Tejun Heo155fead2012-04-01 14:38:44 -0700578static void cfqg_stats_update_avg_queue_size(struct cfq_group *cfqg)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700579{
Tejun Heo155fead2012-04-01 14:38:44 -0700580 struct cfqg_stats *stats = &cfqg->stats;
Tejun Heo629ed0b2012-04-01 14:38:44 -0700581
582 blkg_stat_add(&stats->avg_queue_size_sum,
Tejun Heo4d5e80a2013-01-09 08:05:12 -0800583 blkg_rwstat_total(&stats->queued));
Tejun Heo629ed0b2012-04-01 14:38:44 -0700584 blkg_stat_add(&stats->avg_queue_size_samples, 1);
Tejun Heo155fead2012-04-01 14:38:44 -0700585 cfqg_stats_update_group_wait_time(stats);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700586}
587
588#else /* CONFIG_CFQ_GROUP_IOSCHED && CONFIG_DEBUG_BLK_CGROUP */
589
Tejun Heof48ec1d2012-04-13 13:11:25 -0700590static inline void cfqg_stats_set_start_group_wait_time(struct cfq_group *cfqg, struct cfq_group *curr_cfqg) { }
591static inline void cfqg_stats_end_empty_time(struct cfqg_stats *stats) { }
592static inline void cfqg_stats_update_dequeue(struct cfq_group *cfqg) { }
593static inline void cfqg_stats_set_start_empty_time(struct cfq_group *cfqg) { }
594static inline void cfqg_stats_update_idle_time(struct cfq_group *cfqg) { }
595static inline void cfqg_stats_set_start_idle_time(struct cfq_group *cfqg) { }
596static inline void cfqg_stats_update_avg_queue_size(struct cfq_group *cfqg) { }
Tejun Heo629ed0b2012-04-01 14:38:44 -0700597
598#endif /* CONFIG_CFQ_GROUP_IOSCHED && CONFIG_DEBUG_BLK_CGROUP */
599
600#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heo2ce4d502012-04-01 14:38:43 -0700601
Jens Axboe4ceab712015-06-19 10:13:01 -0600602static inline struct cfq_group *pd_to_cfqg(struct blkg_policy_data *pd)
603{
604 return pd ? container_of(pd, struct cfq_group, pd) : NULL;
605}
606
607static struct cfq_group_data
608*cpd_to_cfqgd(struct blkcg_policy_data *cpd)
609{
Tejun Heo81437642015-08-18 14:55:15 -0700610 return cpd ? container_of(cpd, struct cfq_group_data, cpd) : NULL;
Jens Axboe4ceab712015-06-19 10:13:01 -0600611}
612
613static inline struct blkcg_gq *cfqg_to_blkg(struct cfq_group *cfqg)
614{
615 return pd_to_blkg(&cfqg->pd);
616}
617
Tejun Heoffea73f2012-06-04 10:02:29 +0200618static struct blkcg_policy blkcg_policy_cfq;
619
620static inline struct cfq_group *blkg_to_cfqg(struct blkcg_gq *blkg)
621{
622 return pd_to_cfqg(blkg_to_pd(blkg, &blkcg_policy_cfq));
623}
624
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200625static struct cfq_group_data *blkcg_to_cfqgd(struct blkcg *blkcg)
626{
627 return cpd_to_cfqgd(blkcg_to_cpd(blkcg, &blkcg_policy_cfq));
628}
629
Tejun Heod02f7aa2013-01-09 08:05:11 -0800630static inline struct cfq_group *cfqg_parent(struct cfq_group *cfqg)
Tejun Heo7918ffb2013-01-09 08:05:11 -0800631{
Tejun Heod02f7aa2013-01-09 08:05:11 -0800632 struct blkcg_gq *pblkg = cfqg_to_blkg(cfqg)->parent;
Tejun Heo7918ffb2013-01-09 08:05:11 -0800633
Tejun Heod02f7aa2013-01-09 08:05:11 -0800634 return pblkg ? blkg_to_cfqg(pblkg) : NULL;
Tejun Heo7918ffb2013-01-09 08:05:11 -0800635}
636
Tejun Heoeb7d8c072012-03-23 14:02:53 +0100637static inline void cfqg_get(struct cfq_group *cfqg)
638{
639 return blkg_get(cfqg_to_blkg(cfqg));
640}
641
642static inline void cfqg_put(struct cfq_group *cfqg)
643{
644 return blkg_put(cfqg_to_blkg(cfqg));
645}
646
Tejun Heo54e7ed12012-04-16 13:57:23 -0700647#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) do { \
648 char __pbuf[128]; \
649 \
650 blkg_path(cfqg_to_blkg((cfqq)->cfqg), __pbuf, sizeof(__pbuf)); \
Vivek Goyalb226e5c2012-10-03 16:57:01 -0400651 blk_add_trace_msg((cfqd)->queue, "cfq%d%c%c %s " fmt, (cfqq)->pid, \
652 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
653 cfqq_type((cfqq)) == SYNC_NOIDLE_WORKLOAD ? 'N' : ' ',\
Tejun Heo54e7ed12012-04-16 13:57:23 -0700654 __pbuf, ##args); \
655} while (0)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500656
Tejun Heo54e7ed12012-04-16 13:57:23 -0700657#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do { \
658 char __pbuf[128]; \
659 \
660 blkg_path(cfqg_to_blkg(cfqg), __pbuf, sizeof(__pbuf)); \
661 blk_add_trace_msg((cfqd)->queue, "%s " fmt, __pbuf, ##args); \
662} while (0)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500663
Tejun Heo155fead2012-04-01 14:38:44 -0700664static inline void cfqg_stats_update_io_add(struct cfq_group *cfqg,
665 struct cfq_group *curr_cfqg, int rw)
Tejun Heo2ce4d502012-04-01 14:38:43 -0700666{
Tejun Heo155fead2012-04-01 14:38:44 -0700667 blkg_rwstat_add(&cfqg->stats.queued, rw, 1);
668 cfqg_stats_end_empty_time(&cfqg->stats);
669 cfqg_stats_set_start_group_wait_time(cfqg, curr_cfqg);
Tejun Heo2ce4d502012-04-01 14:38:43 -0700670}
671
Tejun Heo155fead2012-04-01 14:38:44 -0700672static inline void cfqg_stats_update_timeslice_used(struct cfq_group *cfqg,
673 unsigned long time, unsigned long unaccounted_time)
Tejun Heo2ce4d502012-04-01 14:38:43 -0700674{
Tejun Heo155fead2012-04-01 14:38:44 -0700675 blkg_stat_add(&cfqg->stats.time, time);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700676#ifdef CONFIG_DEBUG_BLK_CGROUP
Tejun Heo155fead2012-04-01 14:38:44 -0700677 blkg_stat_add(&cfqg->stats.unaccounted_time, unaccounted_time);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700678#endif
Tejun Heo2ce4d502012-04-01 14:38:43 -0700679}
680
Tejun Heo155fead2012-04-01 14:38:44 -0700681static inline void cfqg_stats_update_io_remove(struct cfq_group *cfqg, int rw)
Tejun Heo2ce4d502012-04-01 14:38:43 -0700682{
Tejun Heo155fead2012-04-01 14:38:44 -0700683 blkg_rwstat_add(&cfqg->stats.queued, rw, -1);
Tejun Heo2ce4d502012-04-01 14:38:43 -0700684}
685
Tejun Heo155fead2012-04-01 14:38:44 -0700686static inline void cfqg_stats_update_io_merged(struct cfq_group *cfqg, int rw)
Tejun Heo2ce4d502012-04-01 14:38:43 -0700687{
Tejun Heo155fead2012-04-01 14:38:44 -0700688 blkg_rwstat_add(&cfqg->stats.merged, rw, 1);
Tejun Heo2ce4d502012-04-01 14:38:43 -0700689}
690
Tejun Heo155fead2012-04-01 14:38:44 -0700691static inline void cfqg_stats_update_dispatch(struct cfq_group *cfqg,
692 uint64_t bytes, int rw)
Tejun Heo2ce4d502012-04-01 14:38:43 -0700693{
Tejun Heo155fead2012-04-01 14:38:44 -0700694 blkg_stat_add(&cfqg->stats.sectors, bytes >> 9);
Tejun Heo2ce4d502012-04-01 14:38:43 -0700695}
696
Tejun Heo155fead2012-04-01 14:38:44 -0700697static inline void cfqg_stats_update_completion(struct cfq_group *cfqg,
698 uint64_t start_time, uint64_t io_start_time, int rw)
Tejun Heo2ce4d502012-04-01 14:38:43 -0700699{
Tejun Heo155fead2012-04-01 14:38:44 -0700700 struct cfqg_stats *stats = &cfqg->stats;
Tejun Heo629ed0b2012-04-01 14:38:44 -0700701 unsigned long long now = sched_clock();
Tejun Heo629ed0b2012-04-01 14:38:44 -0700702
703 if (time_after64(now, io_start_time))
704 blkg_rwstat_add(&stats->service_time, rw, now - io_start_time);
705 if (time_after64(io_start_time, start_time))
706 blkg_rwstat_add(&stats->wait_time, rw,
707 io_start_time - start_time);
Tejun Heo2ce4d502012-04-01 14:38:43 -0700708}
709
Tejun Heo689665a2013-01-09 08:05:13 -0800710/* @stats = 0 */
711static void cfqg_stats_reset(struct cfqg_stats *stats)
Tejun Heo155fead2012-04-01 14:38:44 -0700712{
Tejun Heo155fead2012-04-01 14:38:44 -0700713 /* queued stats shouldn't be cleared */
Tejun Heo155fead2012-04-01 14:38:44 -0700714 blkg_rwstat_reset(&stats->merged);
715 blkg_rwstat_reset(&stats->service_time);
716 blkg_rwstat_reset(&stats->wait_time);
717 blkg_stat_reset(&stats->time);
718#ifdef CONFIG_DEBUG_BLK_CGROUP
719 blkg_stat_reset(&stats->unaccounted_time);
720 blkg_stat_reset(&stats->avg_queue_size_sum);
721 blkg_stat_reset(&stats->avg_queue_size_samples);
722 blkg_stat_reset(&stats->dequeue);
723 blkg_stat_reset(&stats->group_wait_time);
724 blkg_stat_reset(&stats->idle_time);
725 blkg_stat_reset(&stats->empty_time);
726#endif
727}
728
Tejun Heo0b399202013-01-09 08:05:13 -0800729/* @to += @from */
Tejun Heoe6269c42015-08-18 14:55:21 -0700730static void cfqg_stats_add_aux(struct cfqg_stats *to, struct cfqg_stats *from)
Tejun Heo0b399202013-01-09 08:05:13 -0800731{
732 /* queued stats shouldn't be cleared */
Tejun Heoe6269c42015-08-18 14:55:21 -0700733 blkg_rwstat_add_aux(&to->merged, &from->merged);
734 blkg_rwstat_add_aux(&to->service_time, &from->service_time);
735 blkg_rwstat_add_aux(&to->wait_time, &from->wait_time);
736 blkg_stat_add_aux(&from->time, &from->time);
Tejun Heo0b399202013-01-09 08:05:13 -0800737#ifdef CONFIG_DEBUG_BLK_CGROUP
Tejun Heoe6269c42015-08-18 14:55:21 -0700738 blkg_stat_add_aux(&to->unaccounted_time, &from->unaccounted_time);
739 blkg_stat_add_aux(&to->avg_queue_size_sum, &from->avg_queue_size_sum);
740 blkg_stat_add_aux(&to->avg_queue_size_samples, &from->avg_queue_size_samples);
741 blkg_stat_add_aux(&to->dequeue, &from->dequeue);
742 blkg_stat_add_aux(&to->group_wait_time, &from->group_wait_time);
743 blkg_stat_add_aux(&to->idle_time, &from->idle_time);
744 blkg_stat_add_aux(&to->empty_time, &from->empty_time);
Tejun Heo0b399202013-01-09 08:05:13 -0800745#endif
746}
747
748/*
Tejun Heoe6269c42015-08-18 14:55:21 -0700749 * Transfer @cfqg's stats to its parent's aux counts so that the ancestors'
Tejun Heo0b399202013-01-09 08:05:13 -0800750 * recursive stats can still account for the amount used by this cfqg after
751 * it's gone.
752 */
753static void cfqg_stats_xfer_dead(struct cfq_group *cfqg)
754{
755 struct cfq_group *parent = cfqg_parent(cfqg);
756
757 lockdep_assert_held(cfqg_to_blkg(cfqg)->q->queue_lock);
758
759 if (unlikely(!parent))
760 return;
761
Tejun Heoe6269c42015-08-18 14:55:21 -0700762 cfqg_stats_add_aux(&parent->stats, &cfqg->stats);
Tejun Heo0b399202013-01-09 08:05:13 -0800763 cfqg_stats_reset(&cfqg->stats);
Tejun Heo0b399202013-01-09 08:05:13 -0800764}
765
Tejun Heoeb7d8c072012-03-23 14:02:53 +0100766#else /* CONFIG_CFQ_GROUP_IOSCHED */
767
Tejun Heod02f7aa2013-01-09 08:05:11 -0800768static inline struct cfq_group *cfqg_parent(struct cfq_group *cfqg) { return NULL; }
Tejun Heoeb7d8c072012-03-23 14:02:53 +0100769static inline void cfqg_get(struct cfq_group *cfqg) { }
770static inline void cfqg_put(struct cfq_group *cfqg) { }
771
Jens Axboe7b679132008-05-30 12:23:07 +0200772#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
Vivek Goyalb226e5c2012-10-03 16:57:01 -0400773 blk_add_trace_msg((cfqd)->queue, "cfq%d%c%c " fmt, (cfqq)->pid, \
774 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
775 cfqq_type((cfqq)) == SYNC_NOIDLE_WORKLOAD ? 'N' : ' ',\
776 ##args)
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200777#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0)
Tejun Heoeb7d8c072012-03-23 14:02:53 +0100778
Tejun Heo155fead2012-04-01 14:38:44 -0700779static inline void cfqg_stats_update_io_add(struct cfq_group *cfqg,
780 struct cfq_group *curr_cfqg, int rw) { }
781static inline void cfqg_stats_update_timeslice_used(struct cfq_group *cfqg,
782 unsigned long time, unsigned long unaccounted_time) { }
783static inline void cfqg_stats_update_io_remove(struct cfq_group *cfqg, int rw) { }
784static inline void cfqg_stats_update_io_merged(struct cfq_group *cfqg, int rw) { }
785static inline void cfqg_stats_update_dispatch(struct cfq_group *cfqg,
786 uint64_t bytes, int rw) { }
787static inline void cfqg_stats_update_completion(struct cfq_group *cfqg,
788 uint64_t start_time, uint64_t io_start_time, int rw) { }
Tejun Heo2ce4d502012-04-01 14:38:43 -0700789
Tejun Heoeb7d8c072012-03-23 14:02:53 +0100790#endif /* CONFIG_CFQ_GROUP_IOSCHED */
791
Jens Axboe7b679132008-05-30 12:23:07 +0200792#define cfq_log(cfqd, fmt, args...) \
793 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
794
Vivek Goyal615f0252009-12-03 12:59:39 -0500795/* Traverses through cfq group service trees */
796#define for_each_cfqg_st(cfqg, i, j, st) \
797 for (i = 0; i <= IDLE_WORKLOAD; i++) \
798 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
799 : &cfqg->service_tree_idle; \
800 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
801 (i == IDLE_WORKLOAD && j == 0); \
802 j++, st = i < IDLE_WORKLOAD ? \
803 &cfqg->service_trees[i][j]: NULL) \
804
Shaohua Lif5f2b6c2011-07-12 14:24:55 +0200805static inline bool cfq_io_thinktime_big(struct cfq_data *cfqd,
806 struct cfq_ttime *ttime, bool group_idle)
807{
808 unsigned long slice;
809 if (!sample_valid(ttime->ttime_samples))
810 return false;
811 if (group_idle)
812 slice = cfqd->cfq_group_idle;
813 else
814 slice = cfqd->cfq_slice_idle;
815 return ttime->ttime_mean > slice;
816}
Vivek Goyal615f0252009-12-03 12:59:39 -0500817
Vivek Goyal02b35082010-08-23 12:23:53 +0200818static inline bool iops_mode(struct cfq_data *cfqd)
819{
820 /*
821 * If we are not idling on queues and it is a NCQ drive, parallel
822 * execution of requests is on and measuring time is not possible
823 * in most of the cases until and unless we drive shallower queue
824 * depths and that becomes a performance bottleneck. In such cases
825 * switch to start providing fairness in terms of number of IOs.
826 */
827 if (!cfqd->cfq_slice_idle && cfqd->hw_tag)
828 return true;
829 else
830 return false;
831}
832
Vivek Goyal3bf10fe2012-10-03 16:56:56 -0400833static inline enum wl_class_t cfqq_class(struct cfq_queue *cfqq)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100834{
835 if (cfq_class_idle(cfqq))
836 return IDLE_WORKLOAD;
837 if (cfq_class_rt(cfqq))
838 return RT_WORKLOAD;
839 return BE_WORKLOAD;
840}
841
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100842
843static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
844{
845 if (!cfq_cfqq_sync(cfqq))
846 return ASYNC_WORKLOAD;
847 if (!cfq_cfqq_idle_window(cfqq))
848 return SYNC_NOIDLE_WORKLOAD;
849 return SYNC_WORKLOAD;
850}
851
Vivek Goyal3bf10fe2012-10-03 16:56:56 -0400852static inline int cfq_group_busy_queues_wl(enum wl_class_t wl_class,
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500853 struct cfq_data *cfqd,
854 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100855{
Vivek Goyal3bf10fe2012-10-03 16:56:56 -0400856 if (wl_class == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500857 return cfqg->service_tree_idle.count;
858
Vivek Goyal34b98d02012-10-03 16:56:58 -0400859 return cfqg->service_trees[wl_class][ASYNC_WORKLOAD].count +
860 cfqg->service_trees[wl_class][SYNC_NOIDLE_WORKLOAD].count +
861 cfqg->service_trees[wl_class][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100862}
863
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500864static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
865 struct cfq_group *cfqg)
866{
Vivek Goyal34b98d02012-10-03 16:56:58 -0400867 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count +
868 cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500869}
870
Jens Axboe165125e2007-07-24 09:28:11 +0200871static void cfq_dispatch_insert(struct request_queue *, struct request *);
Tejun Heo4f85cb92012-03-05 13:15:28 -0800872static struct cfq_queue *cfq_get_queue(struct cfq_data *cfqd, bool is_sync,
Tejun Heo2da8de02015-08-18 14:55:02 -0700873 struct cfq_io_cq *cic, struct bio *bio);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200874
Tejun Heoc5869802011-12-14 00:33:41 +0100875static inline struct cfq_io_cq *icq_to_cic(struct io_cq *icq)
876{
877 /* cic->icq is the first member, %NULL will convert to %NULL */
878 return container_of(icq, struct cfq_io_cq, icq);
879}
880
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100881static inline struct cfq_io_cq *cfq_cic_lookup(struct cfq_data *cfqd,
882 struct io_context *ioc)
883{
884 if (ioc)
885 return icq_to_cic(ioc_lookup_icq(ioc, cfqd->queue));
886 return NULL;
887}
888
Tejun Heoc5869802011-12-14 00:33:41 +0100889static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_cq *cic, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200890{
Jens Axboea6151c32009-10-07 20:02:57 +0200891 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200892}
893
Tejun Heoc5869802011-12-14 00:33:41 +0100894static inline void cic_set_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq,
895 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200896{
Jens Axboea6151c32009-10-07 20:02:57 +0200897 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200898}
899
Tejun Heoc5869802011-12-14 00:33:41 +0100900static inline struct cfq_data *cic_to_cfqd(struct cfq_io_cq *cic)
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400901{
Tejun Heoc5869802011-12-14 00:33:41 +0100902 return cic->icq.q->elevator->elevator_data;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400903}
904
Vasily Tarasov91fac312007-04-25 12:29:51 +0200905/*
906 * We regard a request as SYNC, if it's either a read or has the SYNC bit
907 * set (in which case it could also be direct WRITE).
908 */
Jens Axboea6151c32009-10-07 20:02:57 +0200909static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200910{
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200911 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200912}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700915 * scheduler run of queue, if there are requests pending and no one in the
916 * driver that will restart queueing
917 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200918static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700919{
Jens Axboe7b679132008-05-30 12:23:07 +0200920 if (cfqd->busy_queues) {
921 cfq_log(cfqd, "schedule dispatch");
Jens Axboe59c3d452014-04-08 09:15:35 -0600922 kblockd_schedule_work(&cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200923 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700924}
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100927 * Scale schedule slice based on io priority. Use the sync time slice only
928 * if a queue is marked sync and has sync io queued. A sync queue with async
929 * io only, should not get full sync slice length.
930 */
Jens Axboea6151c32009-10-07 20:02:57 +0200931static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200932 unsigned short prio)
933{
934 const int base_slice = cfqd->cfq_slice[sync];
935
936 WARN_ON(prio >= IOPRIO_BE_NR);
937
938 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
939}
940
Jens Axboe44f7c162007-01-19 11:51:58 +1100941static inline int
942cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
943{
Jens Axboed9e76202007-04-20 14:27:50 +0200944 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100945}
946
Tejun Heo1d3650f2013-01-09 08:05:11 -0800947/**
948 * cfqg_scale_charge - scale disk time charge according to cfqg weight
949 * @charge: disk time being charged
950 * @vfraction: vfraction of the cfqg, fixed point w/ CFQ_SERVICE_SHIFT
951 *
952 * Scale @charge according to @vfraction, which is in range (0, 1]. The
953 * scaling is inversely proportional.
954 *
955 * scaled = charge / vfraction
956 *
957 * The result is also in fixed point w/ CFQ_SERVICE_SHIFT.
958 */
959static inline u64 cfqg_scale_charge(unsigned long charge,
960 unsigned int vfraction)
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500961{
Tejun Heo1d3650f2013-01-09 08:05:11 -0800962 u64 c = charge << CFQ_SERVICE_SHIFT; /* make it fixed point */
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500963
Tejun Heo1d3650f2013-01-09 08:05:11 -0800964 /* charge / vfraction */
965 c <<= CFQ_SERVICE_SHIFT;
966 do_div(c, vfraction);
967 return c;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500968}
969
970static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
971{
972 s64 delta = (s64)(vdisktime - min_vdisktime);
973 if (delta > 0)
974 min_vdisktime = vdisktime;
975
976 return min_vdisktime;
977}
978
979static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
980{
981 s64 delta = (s64)(vdisktime - min_vdisktime);
982 if (delta < 0)
983 min_vdisktime = vdisktime;
984
985 return min_vdisktime;
986}
987
988static void update_min_vdisktime(struct cfq_rb_root *st)
989{
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500990 struct cfq_group *cfqg;
991
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500992 if (st->left) {
993 cfqg = rb_entry_cfqg(st->left);
Gui Jianfenga6032712011-03-07 09:28:09 +0100994 st->min_vdisktime = max_vdisktime(st->min_vdisktime,
995 cfqg->vdisktime);
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500996 }
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500997}
998
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100999/*
1000 * get averaged number of queues of RT/BE priority.
1001 * average is updated, with a formula that gives more weight to higher numbers,
1002 * to quickly follows sudden increases and decrease slowly
1003 */
1004
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001005static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
1006 struct cfq_group *cfqg, bool rt)
Jens Axboe5869619c2009-10-28 09:27:07 +01001007{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +01001008 unsigned min_q, max_q;
1009 unsigned mult = cfq_hist_divisor - 1;
1010 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001011 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +01001012
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001013 min_q = min(cfqg->busy_queues_avg[rt], busy);
1014 max_q = max(cfqg->busy_queues_avg[rt], busy);
1015 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +01001016 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001017 return cfqg->busy_queues_avg[rt];
1018}
1019
1020static inline unsigned
1021cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
1022{
Tejun Heo41cad6a2013-01-09 08:05:11 -08001023 return cfqd->cfq_target_latency * cfqg->vfraction >> CFQ_SERVICE_SHIFT;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +01001024}
1025
Shaohua Lic553f8e2011-01-14 08:41:03 +01001026static inline unsigned
Vivek Goyalba5bd522011-01-19 08:25:02 -07001027cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +11001028{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +01001029 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
1030 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001031 /*
1032 * interested queues (we consider only the ones with the same
1033 * priority class in the cfq group)
1034 */
1035 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
1036 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +01001037 unsigned sync_slice = cfqd->cfq_slice[1];
1038 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001039 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
1040
1041 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +01001042 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
1043 /* scale low_slice according to IO priority
1044 * and sync vs async */
1045 unsigned low_slice =
1046 min(slice, base_low_slice * slice / sync_slice);
1047 /* the adapted slice value is scaled to fit all iqs
1048 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001049 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +01001050 low_slice);
1051 }
1052 }
Shaohua Lic553f8e2011-01-14 08:41:03 +01001053 return slice;
1054}
1055
1056static inline void
1057cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1058{
Vivek Goyalba5bd522011-01-19 08:25:02 -07001059 unsigned slice = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +01001060
Vivek Goyaldae739e2009-12-03 12:59:45 -05001061 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +01001062 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -05001063 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +02001064 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +11001065}
1066
1067/*
1068 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
1069 * isn't valid until the first request from the dispatch is activated
1070 * and the slice time set.
1071 */
Jens Axboea6151c32009-10-07 20:02:57 +02001072static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +11001073{
1074 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +01001075 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +11001076 if (time_before(jiffies, cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +01001077 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +11001078
Shaohua Lic1e44752010-11-08 15:01:02 +01001079 return true;
Jens Axboe44f7c162007-01-19 11:51:58 +11001080}
1081
1082/*
Jens Axboe5e705372006-07-13 12:39:25 +02001083 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +02001085 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 */
Jens Axboe5e705372006-07-13 12:39:25 +02001087static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001088cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001090 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +02001092#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
1093#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
1094 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Jens Axboe5e705372006-07-13 12:39:25 +02001096 if (rq1 == NULL || rq1 == rq2)
1097 return rq2;
1098 if (rq2 == NULL)
1099 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +02001100
Namhyung Kim229836b2011-05-24 10:23:21 +02001101 if (rq_is_sync(rq1) != rq_is_sync(rq2))
1102 return rq_is_sync(rq1) ? rq1 : rq2;
1103
Christoph Hellwig65299a32011-08-23 14:50:29 +02001104 if ((rq1->cmd_flags ^ rq2->cmd_flags) & REQ_PRIO)
1105 return rq1->cmd_flags & REQ_PRIO ? rq1 : rq2;
Jens Axboeb53d1ed2011-08-19 08:34:48 +02001106
Tejun Heo83096eb2009-05-07 22:24:39 +09001107 s1 = blk_rq_pos(rq1);
1108 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
1111 * by definition, 1KiB is 2 sectors
1112 */
1113 back_max = cfqd->cfq_back_max * 2;
1114
1115 /*
1116 * Strict one way elevator _except_ in the case where we allow
1117 * short backward seeks which are biased as twice the cost of a
1118 * similar forward seek.
1119 */
1120 if (s1 >= last)
1121 d1 = s1 - last;
1122 else if (s1 + back_max >= last)
1123 d1 = (last - s1) * cfqd->cfq_back_penalty;
1124 else
Andreas Mohre8a99052006-03-28 08:59:49 +02001125 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 if (s2 >= last)
1128 d2 = s2 - last;
1129 else if (s2 + back_max >= last)
1130 d2 = (last - s2) * cfqd->cfq_back_penalty;
1131 else
Andreas Mohre8a99052006-03-28 08:59:49 +02001132 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Andreas Mohre8a99052006-03-28 08:59:49 +02001136 /*
1137 * By doing switch() on the bit mask "wrap" we avoid having to
1138 * check two variables for all permutations: --> faster!
1139 */
1140 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +02001141 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +02001142 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +02001143 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +02001144 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +02001145 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +02001146 else {
1147 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +02001148 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +02001149 else
Jens Axboe5e705372006-07-13 12:39:25 +02001150 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +02001151 }
1152
1153 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +02001154 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +02001155 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +02001156 return rq2;
1157 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +02001158 default:
1159 /*
1160 * Since both rqs are wrapped,
1161 * start with the one that's further behind head
1162 * (--> only *one* back seek required),
1163 * since back seek takes more time than forward.
1164 */
1165 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +02001166 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 else
Jens Axboe5e705372006-07-13 12:39:25 +02001168 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170}
1171
Jens Axboe498d3aa22007-04-26 12:54:48 +02001172/*
1173 * The below is leftmost cache rbtree addon
1174 */
Jens Axboe08717142008-01-28 11:38:15 +01001175static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +02001176{
Vivek Goyal615f0252009-12-03 12:59:39 -05001177 /* Service tree is empty */
1178 if (!root->count)
1179 return NULL;
1180
Jens Axboecc09e292007-04-26 12:53:50 +02001181 if (!root->left)
1182 root->left = rb_first(&root->rb);
1183
Jens Axboe08717142008-01-28 11:38:15 +01001184 if (root->left)
1185 return rb_entry(root->left, struct cfq_queue, rb_node);
1186
1187 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +02001188}
1189
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001190static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
1191{
1192 if (!root->left)
1193 root->left = rb_first(&root->rb);
1194
1195 if (root->left)
1196 return rb_entry_cfqg(root->left);
1197
1198 return NULL;
1199}
1200
Jens Axboea36e71f2009-04-15 12:15:11 +02001201static void rb_erase_init(struct rb_node *n, struct rb_root *root)
1202{
1203 rb_erase(n, root);
1204 RB_CLEAR_NODE(n);
1205}
1206
Jens Axboecc09e292007-04-26 12:53:50 +02001207static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
1208{
1209 if (root->left == n)
1210 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001211 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001212 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +02001213}
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215/*
1216 * would be nice to take fifo expire time into account as well
1217 */
Jens Axboe5e705372006-07-13 12:39:25 +02001218static struct request *
1219cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1220 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Jens Axboe21183b02006-07-13 12:33:14 +02001222 struct rb_node *rbnext = rb_next(&last->rb_node);
1223 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +02001224 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Jens Axboe21183b02006-07-13 12:33:14 +02001226 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +02001229 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +02001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +02001232 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +02001233 else {
1234 rbnext = rb_first(&cfqq->sort_list);
1235 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +02001236 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +02001237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001239 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
Jens Axboed9e76202007-04-20 14:27:50 +02001242static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
1243 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Jens Axboed9e76202007-04-20 14:27:50 +02001245 /*
1246 * just an approximation, should be ok.
1247 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001248 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +01001249 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +02001250}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001252static inline s64
1253cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
1254{
1255 return cfqg->vdisktime - st->min_vdisktime;
1256}
1257
1258static void
1259__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
1260{
1261 struct rb_node **node = &st->rb.rb_node;
1262 struct rb_node *parent = NULL;
1263 struct cfq_group *__cfqg;
1264 s64 key = cfqg_key(st, cfqg);
1265 int left = 1;
1266
1267 while (*node != NULL) {
1268 parent = *node;
1269 __cfqg = rb_entry_cfqg(parent);
1270
1271 if (key < cfqg_key(st, __cfqg))
1272 node = &parent->rb_left;
1273 else {
1274 node = &parent->rb_right;
1275 left = 0;
1276 }
1277 }
1278
1279 if (left)
1280 st->left = &cfqg->rb_node;
1281
1282 rb_link_node(&cfqg->rb_node, parent, node);
1283 rb_insert_color(&cfqg->rb_node, &st->rb);
1284}
1285
Toshiaki Makita7b5af5c2014-08-28 17:14:58 +09001286/*
1287 * This has to be called only on activation of cfqg
1288 */
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001289static void
Justin TerAvest8184f932011-03-17 16:12:36 +01001290cfq_update_group_weight(struct cfq_group *cfqg)
1291{
Tejun Heo3381cb82012-04-01 14:38:44 -07001292 if (cfqg->new_weight) {
Justin TerAvest8184f932011-03-17 16:12:36 +01001293 cfqg->weight = cfqg->new_weight;
Tejun Heo3381cb82012-04-01 14:38:44 -07001294 cfqg->new_weight = 0;
Justin TerAvest8184f932011-03-17 16:12:36 +01001295 }
Toshiaki Makitae15693e2014-08-26 20:56:36 +09001296}
1297
1298static void
1299cfq_update_group_leaf_weight(struct cfq_group *cfqg)
1300{
1301 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
Tejun Heoe71357e2013-01-09 08:05:10 -08001302
1303 if (cfqg->new_leaf_weight) {
1304 cfqg->leaf_weight = cfqg->new_leaf_weight;
1305 cfqg->new_leaf_weight = 0;
1306 }
Justin TerAvest8184f932011-03-17 16:12:36 +01001307}
1308
1309static void
1310cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
1311{
Tejun Heo1d3650f2013-01-09 08:05:11 -08001312 unsigned int vfr = 1 << CFQ_SERVICE_SHIFT; /* start with 1 */
Tejun Heo7918ffb2013-01-09 08:05:11 -08001313 struct cfq_group *pos = cfqg;
Tejun Heo1d3650f2013-01-09 08:05:11 -08001314 struct cfq_group *parent;
Tejun Heo7918ffb2013-01-09 08:05:11 -08001315 bool propagate;
1316
1317 /* add to the service tree */
Justin TerAvest8184f932011-03-17 16:12:36 +01001318 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
1319
Toshiaki Makita7b5af5c2014-08-28 17:14:58 +09001320 /*
1321 * Update leaf_weight. We cannot update weight at this point
1322 * because cfqg might already have been activated and is
1323 * contributing its current weight to the parent's child_weight.
1324 */
Toshiaki Makitae15693e2014-08-26 20:56:36 +09001325 cfq_update_group_leaf_weight(cfqg);
Justin TerAvest8184f932011-03-17 16:12:36 +01001326 __cfq_group_service_tree_add(st, cfqg);
Tejun Heo7918ffb2013-01-09 08:05:11 -08001327
1328 /*
Tejun Heo1d3650f2013-01-09 08:05:11 -08001329 * Activate @cfqg and calculate the portion of vfraction @cfqg is
1330 * entitled to. vfraction is calculated by walking the tree
1331 * towards the root calculating the fraction it has at each level.
1332 * The compounded ratio is how much vfraction @cfqg owns.
1333 *
1334 * Start with the proportion tasks in this cfqg has against active
1335 * children cfqgs - its leaf_weight against children_weight.
Tejun Heo7918ffb2013-01-09 08:05:11 -08001336 */
1337 propagate = !pos->nr_active++;
1338 pos->children_weight += pos->leaf_weight;
Tejun Heo1d3650f2013-01-09 08:05:11 -08001339 vfr = vfr * pos->leaf_weight / pos->children_weight;
Tejun Heo7918ffb2013-01-09 08:05:11 -08001340
Tejun Heo1d3650f2013-01-09 08:05:11 -08001341 /*
1342 * Compound ->weight walking up the tree. Both activation and
1343 * vfraction calculation are done in the same loop. Propagation
1344 * stops once an already activated node is met. vfraction
1345 * calculation should always continue to the root.
1346 */
Tejun Heod02f7aa2013-01-09 08:05:11 -08001347 while ((parent = cfqg_parent(pos))) {
Tejun Heo1d3650f2013-01-09 08:05:11 -08001348 if (propagate) {
Toshiaki Makitae15693e2014-08-26 20:56:36 +09001349 cfq_update_group_weight(pos);
Tejun Heo1d3650f2013-01-09 08:05:11 -08001350 propagate = !parent->nr_active++;
1351 parent->children_weight += pos->weight;
1352 }
1353 vfr = vfr * pos->weight / parent->children_weight;
Tejun Heo7918ffb2013-01-09 08:05:11 -08001354 pos = parent;
1355 }
Tejun Heo1d3650f2013-01-09 08:05:11 -08001356
1357 cfqg->vfraction = max_t(unsigned, vfr, 1);
Justin TerAvest8184f932011-03-17 16:12:36 +01001358}
1359
1360static void
1361cfq_group_notify_queue_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001362{
1363 struct cfq_rb_root *st = &cfqd->grp_service_tree;
1364 struct cfq_group *__cfqg;
1365 struct rb_node *n;
1366
1367 cfqg->nr_cfqq++;
Gui Jianfeng760701b2010-11-30 20:52:47 +01001368 if (!RB_EMPTY_NODE(&cfqg->rb_node))
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001369 return;
1370
1371 /*
1372 * Currently put the group at the end. Later implement something
1373 * so that groups get lesser vtime based on their weights, so that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001374 * if group does not loose all if it was not continuously backlogged.
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001375 */
1376 n = rb_last(&st->rb);
1377 if (n) {
1378 __cfqg = rb_entry_cfqg(n);
1379 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
1380 } else
1381 cfqg->vdisktime = st->min_vdisktime;
Justin TerAvest8184f932011-03-17 16:12:36 +01001382 cfq_group_service_tree_add(st, cfqg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001383}
1384
1385static void
Justin TerAvest8184f932011-03-17 16:12:36 +01001386cfq_group_service_tree_del(struct cfq_rb_root *st, struct cfq_group *cfqg)
1387{
Tejun Heo7918ffb2013-01-09 08:05:11 -08001388 struct cfq_group *pos = cfqg;
1389 bool propagate;
1390
1391 /*
1392 * Undo activation from cfq_group_service_tree_add(). Deactivate
1393 * @cfqg and propagate deactivation upwards.
1394 */
1395 propagate = !--pos->nr_active;
1396 pos->children_weight -= pos->leaf_weight;
1397
1398 while (propagate) {
Tejun Heod02f7aa2013-01-09 08:05:11 -08001399 struct cfq_group *parent = cfqg_parent(pos);
Tejun Heo7918ffb2013-01-09 08:05:11 -08001400
1401 /* @pos has 0 nr_active at this point */
1402 WARN_ON_ONCE(pos->children_weight);
Tejun Heo1d3650f2013-01-09 08:05:11 -08001403 pos->vfraction = 0;
Tejun Heo7918ffb2013-01-09 08:05:11 -08001404
1405 if (!parent)
1406 break;
1407
1408 propagate = !--parent->nr_active;
1409 parent->children_weight -= pos->weight;
1410 pos = parent;
1411 }
1412
1413 /* remove from the service tree */
Justin TerAvest8184f932011-03-17 16:12:36 +01001414 if (!RB_EMPTY_NODE(&cfqg->rb_node))
1415 cfq_rb_erase(&cfqg->rb_node, st);
1416}
1417
1418static void
1419cfq_group_notify_queue_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001420{
1421 struct cfq_rb_root *st = &cfqd->grp_service_tree;
1422
1423 BUG_ON(cfqg->nr_cfqq < 1);
1424 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05001425
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001426 /* If there are other cfq queues under this group, don't delete it */
1427 if (cfqg->nr_cfqq)
1428 return;
1429
Vivek Goyal2868ef72009-12-03 12:59:48 -05001430 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Justin TerAvest8184f932011-03-17 16:12:36 +01001431 cfq_group_service_tree_del(st, cfqg);
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04001432 cfqg->saved_wl_slice = 0;
Tejun Heo155fead2012-04-01 14:38:44 -07001433 cfqg_stats_update_dequeue(cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001434}
1435
Justin TerAvest167400d2011-03-12 16:54:00 +01001436static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq,
1437 unsigned int *unaccounted_time)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001438{
Vivek Goyalf75edf22009-12-03 12:59:53 -05001439 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001440
1441 /*
1442 * Queue got expired before even a single request completed or
1443 * got expired immediately after first request completion.
1444 */
1445 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
1446 /*
1447 * Also charge the seek time incurred to the group, otherwise
1448 * if there are mutiple queues in the group, each can dispatch
1449 * a single request on seeky media and cause lots of seek time
1450 * and group will never know it.
1451 */
1452 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
1453 1);
1454 } else {
1455 slice_used = jiffies - cfqq->slice_start;
Justin TerAvest167400d2011-03-12 16:54:00 +01001456 if (slice_used > cfqq->allocated_slice) {
1457 *unaccounted_time = slice_used - cfqq->allocated_slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -05001458 slice_used = cfqq->allocated_slice;
Justin TerAvest167400d2011-03-12 16:54:00 +01001459 }
1460 if (time_after(cfqq->slice_start, cfqq->dispatch_start))
1461 *unaccounted_time += cfqq->slice_start -
1462 cfqq->dispatch_start;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001463 }
1464
Vivek Goyaldae739e2009-12-03 12:59:45 -05001465 return slice_used;
1466}
1467
1468static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
Vivek Goyale5ff0822010-04-26 19:25:11 +02001469 struct cfq_queue *cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001470{
1471 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Justin TerAvest167400d2011-03-12 16:54:00 +01001472 unsigned int used_sl, charge, unaccounted_sl = 0;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05001473 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
1474 - cfqg->service_tree_idle.count;
Tejun Heo1d3650f2013-01-09 08:05:11 -08001475 unsigned int vfr;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001476
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05001477 BUG_ON(nr_sync < 0);
Justin TerAvest167400d2011-03-12 16:54:00 +01001478 used_sl = charge = cfq_cfqq_slice_usage(cfqq, &unaccounted_sl);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05001479
Vivek Goyal02b35082010-08-23 12:23:53 +02001480 if (iops_mode(cfqd))
1481 charge = cfqq->slice_dispatch;
1482 else if (!cfq_cfqq_sync(cfqq) && !nr_sync)
1483 charge = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001484
Tejun Heo1d3650f2013-01-09 08:05:11 -08001485 /*
1486 * Can't update vdisktime while on service tree and cfqg->vfraction
1487 * is valid only while on it. Cache vfr, leave the service tree,
1488 * update vdisktime and go back on. The re-addition to the tree
1489 * will also update the weights as necessary.
1490 */
1491 vfr = cfqg->vfraction;
Justin TerAvest8184f932011-03-17 16:12:36 +01001492 cfq_group_service_tree_del(st, cfqg);
Tejun Heo1d3650f2013-01-09 08:05:11 -08001493 cfqg->vdisktime += cfqg_scale_charge(charge, vfr);
Justin TerAvest8184f932011-03-17 16:12:36 +01001494 cfq_group_service_tree_add(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001495
1496 /* This group is being expired. Save the context */
1497 if (time_after(cfqd->workload_expires, jiffies)) {
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04001498 cfqg->saved_wl_slice = cfqd->workload_expires
Vivek Goyaldae739e2009-12-03 12:59:45 -05001499 - jiffies;
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04001500 cfqg->saved_wl_type = cfqd->serving_wl_type;
1501 cfqg->saved_wl_class = cfqd->serving_wl_class;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001502 } else
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04001503 cfqg->saved_wl_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -05001504
1505 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
1506 st->min_vdisktime);
Joe Perchesfd16d262011-06-13 10:42:49 +02001507 cfq_log_cfqq(cfqq->cfqd, cfqq,
1508 "sl_used=%u disp=%u charge=%u iops=%u sect=%lu",
1509 used_sl, cfqq->slice_dispatch, charge,
1510 iops_mode(cfqd), cfqq->nr_sectors);
Tejun Heo155fead2012-04-01 14:38:44 -07001511 cfqg_stats_update_timeslice_used(cfqg, used_sl, unaccounted_sl);
1512 cfqg_stats_set_start_empty_time(cfqg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001513}
1514
Tejun Heof51b8022012-03-05 13:15:05 -08001515/**
1516 * cfq_init_cfqg_base - initialize base part of a cfq_group
1517 * @cfqg: cfq_group to initialize
1518 *
1519 * Initialize the base part which is used whether %CONFIG_CFQ_GROUP_IOSCHED
1520 * is enabled or not.
1521 */
1522static void cfq_init_cfqg_base(struct cfq_group *cfqg)
1523{
1524 struct cfq_rb_root *st;
1525 int i, j;
1526
1527 for_each_cfqg_st(cfqg, i, j, st)
1528 *st = CFQ_RB_ROOT;
1529 RB_CLEAR_NODE(&cfqg->rb_node);
1530
1531 cfqg->ttime.last_end_request = jiffies;
1532}
1533
Vivek Goyal25fb5162009-12-03 12:59:46 -05001534#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heo24bdb8e2015-08-18 14:55:22 -07001535static void cfqg_stats_exit(struct cfqg_stats *stats)
Peter Zijlstra90d38392013-11-12 19:42:14 -08001536{
Tejun Heo24bdb8e2015-08-18 14:55:22 -07001537 blkg_rwstat_exit(&stats->merged);
1538 blkg_rwstat_exit(&stats->service_time);
1539 blkg_rwstat_exit(&stats->wait_time);
1540 blkg_rwstat_exit(&stats->queued);
Peter Zijlstra90d38392013-11-12 19:42:14 -08001541
Tejun Heo24bdb8e2015-08-18 14:55:22 -07001542 blkg_stat_exit(&stats->sectors);
1543 blkg_stat_exit(&stats->time);
1544#ifdef CONFIG_DEBUG_BLK_CGROUP
1545 blkg_stat_exit(&stats->unaccounted_time);
1546 blkg_stat_exit(&stats->avg_queue_size_sum);
1547 blkg_stat_exit(&stats->avg_queue_size_samples);
1548 blkg_stat_exit(&stats->dequeue);
1549 blkg_stat_exit(&stats->group_wait_time);
1550 blkg_stat_exit(&stats->idle_time);
1551 blkg_stat_exit(&stats->empty_time);
1552#endif
1553}
1554
1555static int cfqg_stats_init(struct cfqg_stats *stats, gfp_t gfp)
1556{
Tejun Heo77ea7332015-08-18 14:55:24 -07001557 if (blkg_rwstat_init(&stats->merged, gfp) ||
Tejun Heo24bdb8e2015-08-18 14:55:22 -07001558 blkg_rwstat_init(&stats->service_time, gfp) ||
1559 blkg_rwstat_init(&stats->wait_time, gfp) ||
1560 blkg_rwstat_init(&stats->queued, gfp) ||
1561
1562 blkg_stat_init(&stats->sectors, gfp) ||
1563 blkg_stat_init(&stats->time, gfp))
1564 goto err;
Peter Zijlstra90d38392013-11-12 19:42:14 -08001565
1566#ifdef CONFIG_DEBUG_BLK_CGROUP
Tejun Heo24bdb8e2015-08-18 14:55:22 -07001567 if (blkg_stat_init(&stats->unaccounted_time, gfp) ||
1568 blkg_stat_init(&stats->avg_queue_size_sum, gfp) ||
1569 blkg_stat_init(&stats->avg_queue_size_samples, gfp) ||
1570 blkg_stat_init(&stats->dequeue, gfp) ||
1571 blkg_stat_init(&stats->group_wait_time, gfp) ||
1572 blkg_stat_init(&stats->idle_time, gfp) ||
1573 blkg_stat_init(&stats->empty_time, gfp))
1574 goto err;
Peter Zijlstra90d38392013-11-12 19:42:14 -08001575#endif
Tejun Heo24bdb8e2015-08-18 14:55:22 -07001576 return 0;
1577err:
1578 cfqg_stats_exit(stats);
1579 return -ENOMEM;
Peter Zijlstra90d38392013-11-12 19:42:14 -08001580}
1581
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001582static struct blkcg_policy_data *cfq_cpd_alloc(gfp_t gfp)
1583{
1584 struct cfq_group_data *cgd;
1585
1586 cgd = kzalloc(sizeof(*cgd), GFP_KERNEL);
1587 if (!cgd)
1588 return NULL;
1589 return &cgd->cpd;
1590}
1591
Tejun Heo81437642015-08-18 14:55:15 -07001592static void cfq_cpd_init(struct blkcg_policy_data *cpd)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001593{
Tejun Heo81437642015-08-18 14:55:15 -07001594 struct cfq_group_data *cgd = cpd_to_cfqgd(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001595
Tejun Heo81437642015-08-18 14:55:15 -07001596 if (cpd_to_blkcg(cpd) == &blkcg_root) {
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001597 cgd->weight = 2 * CFQ_WEIGHT_DEFAULT;
1598 cgd->leaf_weight = 2 * CFQ_WEIGHT_DEFAULT;
1599 } else {
1600 cgd->weight = CFQ_WEIGHT_DEFAULT;
1601 cgd->leaf_weight = CFQ_WEIGHT_DEFAULT;
1602 }
1603}
1604
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001605static void cfq_cpd_free(struct blkcg_policy_data *cpd)
1606{
1607 kfree(cpd_to_cfqgd(cpd));
1608}
1609
Tejun Heo001bea72015-08-18 14:55:11 -07001610static struct blkg_policy_data *cfq_pd_alloc(gfp_t gfp, int node)
1611{
Tejun Heob2ce2642015-08-18 14:55:13 -07001612 struct cfq_group *cfqg;
1613
1614 cfqg = kzalloc_node(sizeof(*cfqg), gfp, node);
1615 if (!cfqg)
1616 return NULL;
1617
1618 cfq_init_cfqg_base(cfqg);
Tejun Heo24bdb8e2015-08-18 14:55:22 -07001619 if (cfqg_stats_init(&cfqg->stats, gfp)) {
1620 kfree(cfqg);
1621 return NULL;
1622 }
Tejun Heob2ce2642015-08-18 14:55:13 -07001623
1624 return &cfqg->pd;
Tejun Heo001bea72015-08-18 14:55:11 -07001625}
1626
Tejun Heoa9520cd2015-08-18 14:55:14 -07001627static void cfq_pd_init(struct blkg_policy_data *pd)
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001628{
Tejun Heoa9520cd2015-08-18 14:55:14 -07001629 struct cfq_group *cfqg = pd_to_cfqg(pd);
1630 struct cfq_group_data *cgd = blkcg_to_cfqgd(pd->blkg->blkcg);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001631
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001632 cfqg->weight = cgd->weight;
1633 cfqg->leaf_weight = cgd->leaf_weight;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001634}
1635
Tejun Heoa9520cd2015-08-18 14:55:14 -07001636static void cfq_pd_offline(struct blkg_policy_data *pd)
Tejun Heo0b399202013-01-09 08:05:13 -08001637{
Tejun Heoa9520cd2015-08-18 14:55:14 -07001638 struct cfq_group *cfqg = pd_to_cfqg(pd);
Tejun Heo60a83702015-08-18 14:55:05 -07001639 int i;
1640
1641 for (i = 0; i < IOPRIO_BE_NR; i++) {
1642 if (cfqg->async_cfqq[0][i])
1643 cfq_put_queue(cfqg->async_cfqq[0][i]);
1644 if (cfqg->async_cfqq[1][i])
1645 cfq_put_queue(cfqg->async_cfqq[1][i]);
1646 }
1647
1648 if (cfqg->async_idle_cfqq)
1649 cfq_put_queue(cfqg->async_idle_cfqq);
1650
Tejun Heo0b399202013-01-09 08:05:13 -08001651 /*
1652 * @blkg is going offline and will be ignored by
1653 * blkg_[rw]stat_recursive_sum(). Transfer stats to the parent so
1654 * that they don't get lost. If IOs complete after this point, the
1655 * stats for them will be lost. Oh well...
1656 */
Tejun Heo60a83702015-08-18 14:55:05 -07001657 cfqg_stats_xfer_dead(cfqg);
Tejun Heo0b399202013-01-09 08:05:13 -08001658}
1659
Tejun Heo001bea72015-08-18 14:55:11 -07001660static void cfq_pd_free(struct blkg_policy_data *pd)
1661{
Tejun Heo24bdb8e2015-08-18 14:55:22 -07001662 struct cfq_group *cfqg = pd_to_cfqg(pd);
1663
1664 cfqg_stats_exit(&cfqg->stats);
1665 return kfree(cfqg);
Tejun Heo001bea72015-08-18 14:55:11 -07001666}
1667
Tejun Heoa9520cd2015-08-18 14:55:14 -07001668static void cfq_pd_reset_stats(struct blkg_policy_data *pd)
Tejun Heo689665a2013-01-09 08:05:13 -08001669{
Tejun Heoa9520cd2015-08-18 14:55:14 -07001670 struct cfq_group *cfqg = pd_to_cfqg(pd);
Tejun Heo689665a2013-01-09 08:05:13 -08001671
1672 cfqg_stats_reset(&cfqg->stats);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001673}
1674
Tejun Heoae118892015-08-18 14:55:20 -07001675static struct cfq_group *cfq_lookup_cfqg(struct cfq_data *cfqd,
1676 struct blkcg *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001677{
Tejun Heoae118892015-08-18 14:55:20 -07001678 struct blkcg_gq *blkg;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001679
Tejun Heoae118892015-08-18 14:55:20 -07001680 blkg = blkg_lookup(blkcg, cfqd->queue);
1681 if (likely(blkg))
1682 return blkg_to_cfqg(blkg);
1683 return NULL;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001684}
1685
1686static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1687{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001688 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001689 /* cfqq reference on cfqg */
Tejun Heoeb7d8c072012-03-23 14:02:53 +01001690 cfqg_get(cfqg);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001691}
1692
Tejun Heof95a04a2012-04-16 13:57:26 -07001693static u64 cfqg_prfill_weight_device(struct seq_file *sf,
1694 struct blkg_policy_data *pd, int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001695{
Tejun Heof95a04a2012-04-16 13:57:26 -07001696 struct cfq_group *cfqg = pd_to_cfqg(pd);
Tejun Heo3381cb82012-04-01 14:38:44 -07001697
1698 if (!cfqg->dev_weight)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001699 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001700 return __blkg_prfill_u64(sf, pd, cfqg->dev_weight);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001701}
1702
Tejun Heo2da8ca82013-12-05 12:28:04 -05001703static int cfqg_print_weight_device(struct seq_file *sf, void *v)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001704{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001705 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
1706 cfqg_prfill_weight_device, &blkcg_policy_cfq,
1707 0, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001708 return 0;
1709}
1710
Tejun Heoe71357e2013-01-09 08:05:10 -08001711static u64 cfqg_prfill_leaf_weight_device(struct seq_file *sf,
1712 struct blkg_policy_data *pd, int off)
1713{
1714 struct cfq_group *cfqg = pd_to_cfqg(pd);
1715
1716 if (!cfqg->dev_leaf_weight)
1717 return 0;
1718 return __blkg_prfill_u64(sf, pd, cfqg->dev_leaf_weight);
1719}
1720
Tejun Heo2da8ca82013-12-05 12:28:04 -05001721static int cfqg_print_leaf_weight_device(struct seq_file *sf, void *v)
Tejun Heoe71357e2013-01-09 08:05:10 -08001722{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001723 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
1724 cfqg_prfill_leaf_weight_device, &blkcg_policy_cfq,
1725 0, false);
Tejun Heoe71357e2013-01-09 08:05:10 -08001726 return 0;
1727}
1728
Tejun Heo2da8ca82013-12-05 12:28:04 -05001729static int cfq_print_weight(struct seq_file *sf, void *v)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001730{
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001731 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
Jens Axboe9470e4a2015-06-19 10:19:36 -06001732 struct cfq_group_data *cgd = blkcg_to_cfqgd(blkcg);
1733 unsigned int val = 0;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001734
Jens Axboe9470e4a2015-06-19 10:19:36 -06001735 if (cgd)
1736 val = cgd->weight;
1737
1738 seq_printf(sf, "%u\n", val);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001739 return 0;
1740}
1741
Tejun Heo2da8ca82013-12-05 12:28:04 -05001742static int cfq_print_leaf_weight(struct seq_file *sf, void *v)
Tejun Heoe71357e2013-01-09 08:05:10 -08001743{
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001744 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
Jens Axboe9470e4a2015-06-19 10:19:36 -06001745 struct cfq_group_data *cgd = blkcg_to_cfqgd(blkcg);
1746 unsigned int val = 0;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001747
Jens Axboe9470e4a2015-06-19 10:19:36 -06001748 if (cgd)
1749 val = cgd->leaf_weight;
1750
1751 seq_printf(sf, "%u\n", val);
Tejun Heoe71357e2013-01-09 08:05:10 -08001752 return 0;
1753}
1754
Tejun Heo451af502014-05-13 12:16:21 -04001755static ssize_t __cfqg_set_weight_device(struct kernfs_open_file *of,
1756 char *buf, size_t nbytes, loff_t off,
1757 bool is_leaf_weight)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001758{
Tejun Heo451af502014-05-13 12:16:21 -04001759 struct blkcg *blkcg = css_to_blkcg(of_css(of));
Tejun Heo60c2bc22012-04-01 14:38:43 -07001760 struct blkg_conf_ctx ctx;
Tejun Heo3381cb82012-04-01 14:38:44 -07001761 struct cfq_group *cfqg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001762 struct cfq_group_data *cfqgd;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001763 int ret;
1764
Tejun Heo3c798392012-04-16 13:57:25 -07001765 ret = blkg_conf_prep(blkcg, &blkcg_policy_cfq, buf, &ctx);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001766 if (ret)
1767 return ret;
1768
1769 ret = -EINVAL;
Tejun Heo3381cb82012-04-01 14:38:44 -07001770 cfqg = blkg_to_cfqg(ctx.blkg);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001771 cfqgd = blkcg_to_cfqgd(blkcg);
Jens Axboeae994ea2015-06-20 10:26:50 -06001772 if (!cfqg || !cfqgd)
1773 goto err;
1774
Tejun Heoa2b16932012-04-13 13:11:33 -07001775 if (!ctx.v || (ctx.v >= CFQ_WEIGHT_MIN && ctx.v <= CFQ_WEIGHT_MAX)) {
Tejun Heoe71357e2013-01-09 08:05:10 -08001776 if (!is_leaf_weight) {
1777 cfqg->dev_weight = ctx.v;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001778 cfqg->new_weight = ctx.v ?: cfqgd->weight;
Tejun Heoe71357e2013-01-09 08:05:10 -08001779 } else {
1780 cfqg->dev_leaf_weight = ctx.v;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001781 cfqg->new_leaf_weight = ctx.v ?: cfqgd->leaf_weight;
Tejun Heoe71357e2013-01-09 08:05:10 -08001782 }
Tejun Heo60c2bc22012-04-01 14:38:43 -07001783 ret = 0;
1784 }
1785
Jens Axboeae994ea2015-06-20 10:26:50 -06001786err:
Tejun Heo60c2bc22012-04-01 14:38:43 -07001787 blkg_conf_finish(&ctx);
Tejun Heo451af502014-05-13 12:16:21 -04001788 return ret ?: nbytes;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001789}
1790
Tejun Heo451af502014-05-13 12:16:21 -04001791static ssize_t cfqg_set_weight_device(struct kernfs_open_file *of,
1792 char *buf, size_t nbytes, loff_t off)
Tejun Heoe71357e2013-01-09 08:05:10 -08001793{
Tejun Heo451af502014-05-13 12:16:21 -04001794 return __cfqg_set_weight_device(of, buf, nbytes, off, false);
Tejun Heoe71357e2013-01-09 08:05:10 -08001795}
1796
Tejun Heo451af502014-05-13 12:16:21 -04001797static ssize_t cfqg_set_leaf_weight_device(struct kernfs_open_file *of,
1798 char *buf, size_t nbytes, loff_t off)
Tejun Heoe71357e2013-01-09 08:05:10 -08001799{
Tejun Heo451af502014-05-13 12:16:21 -04001800 return __cfqg_set_weight_device(of, buf, nbytes, off, true);
Tejun Heoe71357e2013-01-09 08:05:10 -08001801}
1802
Tejun Heo182446d2013-08-08 20:11:24 -04001803static int __cfq_set_weight(struct cgroup_subsys_state *css, struct cftype *cft,
1804 u64 val, bool is_leaf_weight)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001805{
Tejun Heo182446d2013-08-08 20:11:24 -04001806 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heo3c798392012-04-16 13:57:25 -07001807 struct blkcg_gq *blkg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001808 struct cfq_group_data *cfqgd;
Jens Axboeae994ea2015-06-20 10:26:50 -06001809 int ret = 0;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001810
Tejun Heo3381cb82012-04-01 14:38:44 -07001811 if (val < CFQ_WEIGHT_MIN || val > CFQ_WEIGHT_MAX)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001812 return -EINVAL;
1813
1814 spin_lock_irq(&blkcg->lock);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001815 cfqgd = blkcg_to_cfqgd(blkcg);
Jens Axboeae994ea2015-06-20 10:26:50 -06001816 if (!cfqgd) {
1817 ret = -EINVAL;
1818 goto out;
1819 }
Tejun Heoe71357e2013-01-09 08:05:10 -08001820
1821 if (!is_leaf_weight)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001822 cfqgd->weight = val;
Tejun Heoe71357e2013-01-09 08:05:10 -08001823 else
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001824 cfqgd->leaf_weight = val;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001825
Sasha Levinb67bfe02013-02-27 17:06:00 -08001826 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo3381cb82012-04-01 14:38:44 -07001827 struct cfq_group *cfqg = blkg_to_cfqg(blkg);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001828
Tejun Heoe71357e2013-01-09 08:05:10 -08001829 if (!cfqg)
1830 continue;
1831
1832 if (!is_leaf_weight) {
1833 if (!cfqg->dev_weight)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001834 cfqg->new_weight = cfqgd->weight;
Tejun Heoe71357e2013-01-09 08:05:10 -08001835 } else {
1836 if (!cfqg->dev_leaf_weight)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001837 cfqg->new_leaf_weight = cfqgd->leaf_weight;
Tejun Heoe71357e2013-01-09 08:05:10 -08001838 }
Tejun Heo60c2bc22012-04-01 14:38:43 -07001839 }
1840
Jens Axboeae994ea2015-06-20 10:26:50 -06001841out:
Tejun Heo60c2bc22012-04-01 14:38:43 -07001842 spin_unlock_irq(&blkcg->lock);
Jens Axboeae994ea2015-06-20 10:26:50 -06001843 return ret;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001844}
1845
Tejun Heo182446d2013-08-08 20:11:24 -04001846static int cfq_set_weight(struct cgroup_subsys_state *css, struct cftype *cft,
1847 u64 val)
Tejun Heoe71357e2013-01-09 08:05:10 -08001848{
Tejun Heo182446d2013-08-08 20:11:24 -04001849 return __cfq_set_weight(css, cft, val, false);
Tejun Heoe71357e2013-01-09 08:05:10 -08001850}
1851
Tejun Heo182446d2013-08-08 20:11:24 -04001852static int cfq_set_leaf_weight(struct cgroup_subsys_state *css,
1853 struct cftype *cft, u64 val)
Tejun Heoe71357e2013-01-09 08:05:10 -08001854{
Tejun Heo182446d2013-08-08 20:11:24 -04001855 return __cfq_set_weight(css, cft, val, true);
Tejun Heoe71357e2013-01-09 08:05:10 -08001856}
1857
Tejun Heo2da8ca82013-12-05 12:28:04 -05001858static int cfqg_print_stat(struct seq_file *sf, void *v)
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001859{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001860 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), blkg_prfill_stat,
1861 &blkcg_policy_cfq, seq_cft(sf)->private, false);
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001862 return 0;
1863}
1864
Tejun Heo2da8ca82013-12-05 12:28:04 -05001865static int cfqg_print_rwstat(struct seq_file *sf, void *v)
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001866{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001867 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), blkg_prfill_rwstat,
1868 &blkcg_policy_cfq, seq_cft(sf)->private, true);
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001869 return 0;
1870}
1871
Tejun Heo43114012013-01-09 08:05:13 -08001872static u64 cfqg_prfill_stat_recursive(struct seq_file *sf,
1873 struct blkg_policy_data *pd, int off)
1874{
Tejun Heof12c74c2015-08-18 14:55:23 -07001875 u64 sum = blkg_stat_recursive_sum(pd_to_blkg(pd),
1876 &blkcg_policy_cfq, off);
Tejun Heo43114012013-01-09 08:05:13 -08001877 return __blkg_prfill_u64(sf, pd, sum);
1878}
1879
1880static u64 cfqg_prfill_rwstat_recursive(struct seq_file *sf,
1881 struct blkg_policy_data *pd, int off)
1882{
Tejun Heof12c74c2015-08-18 14:55:23 -07001883 struct blkg_rwstat sum = blkg_rwstat_recursive_sum(pd_to_blkg(pd),
1884 &blkcg_policy_cfq, off);
Tejun Heo43114012013-01-09 08:05:13 -08001885 return __blkg_prfill_rwstat(sf, pd, &sum);
1886}
1887
Tejun Heo2da8ca82013-12-05 12:28:04 -05001888static int cfqg_print_stat_recursive(struct seq_file *sf, void *v)
Tejun Heo43114012013-01-09 08:05:13 -08001889{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001890 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
1891 cfqg_prfill_stat_recursive, &blkcg_policy_cfq,
1892 seq_cft(sf)->private, false);
Tejun Heo43114012013-01-09 08:05:13 -08001893 return 0;
1894}
1895
Tejun Heo2da8ca82013-12-05 12:28:04 -05001896static int cfqg_print_rwstat_recursive(struct seq_file *sf, void *v)
Tejun Heo43114012013-01-09 08:05:13 -08001897{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001898 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
1899 cfqg_prfill_rwstat_recursive, &blkcg_policy_cfq,
1900 seq_cft(sf)->private, true);
Tejun Heo43114012013-01-09 08:05:13 -08001901 return 0;
1902}
1903
Tejun Heo60c2bc22012-04-01 14:38:43 -07001904#ifdef CONFIG_DEBUG_BLK_CGROUP
Tejun Heof95a04a2012-04-16 13:57:26 -07001905static u64 cfqg_prfill_avg_queue_size(struct seq_file *sf,
1906 struct blkg_policy_data *pd, int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001907{
Tejun Heof95a04a2012-04-16 13:57:26 -07001908 struct cfq_group *cfqg = pd_to_cfqg(pd);
Tejun Heo155fead2012-04-01 14:38:44 -07001909 u64 samples = blkg_stat_read(&cfqg->stats.avg_queue_size_samples);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001910 u64 v = 0;
1911
1912 if (samples) {
Tejun Heo155fead2012-04-01 14:38:44 -07001913 v = blkg_stat_read(&cfqg->stats.avg_queue_size_sum);
Anatol Pomozovf3cff25f2013-09-22 12:43:47 -06001914 v = div64_u64(v, samples);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001915 }
Tejun Heof95a04a2012-04-16 13:57:26 -07001916 __blkg_prfill_u64(sf, pd, v);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001917 return 0;
1918}
1919
1920/* print avg_queue_size */
Tejun Heo2da8ca82013-12-05 12:28:04 -05001921static int cfqg_print_avg_queue_size(struct seq_file *sf, void *v)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001922{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001923 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
1924 cfqg_prfill_avg_queue_size, &blkcg_policy_cfq,
1925 0, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001926 return 0;
1927}
1928#endif /* CONFIG_DEBUG_BLK_CGROUP */
1929
1930static struct cftype cfq_blkcg_files[] = {
Tejun Heo1d3650f2013-01-09 08:05:11 -08001931 /* on root, weight is mapped to leaf_weight */
Tejun Heo60c2bc22012-04-01 14:38:43 -07001932 {
1933 .name = "weight_device",
Tejun Heo1d3650f2013-01-09 08:05:11 -08001934 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05001935 .seq_show = cfqg_print_leaf_weight_device,
Tejun Heo451af502014-05-13 12:16:21 -04001936 .write = cfqg_set_leaf_weight_device,
Tejun Heo1d3650f2013-01-09 08:05:11 -08001937 },
1938 {
1939 .name = "weight",
1940 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05001941 .seq_show = cfq_print_leaf_weight,
Tejun Heo1d3650f2013-01-09 08:05:11 -08001942 .write_u64 = cfq_set_leaf_weight,
1943 },
1944
1945 /* no such mapping necessary for !roots */
1946 {
1947 .name = "weight_device",
1948 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05001949 .seq_show = cfqg_print_weight_device,
Tejun Heo451af502014-05-13 12:16:21 -04001950 .write = cfqg_set_weight_device,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001951 },
1952 {
1953 .name = "weight",
Tejun Heoe71357e2013-01-09 08:05:10 -08001954 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05001955 .seq_show = cfq_print_weight,
Tejun Heo3381cb82012-04-01 14:38:44 -07001956 .write_u64 = cfq_set_weight,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001957 },
Tejun Heo1d3650f2013-01-09 08:05:11 -08001958
1959 {
1960 .name = "leaf_weight_device",
Tejun Heo2da8ca82013-12-05 12:28:04 -05001961 .seq_show = cfqg_print_leaf_weight_device,
Tejun Heo451af502014-05-13 12:16:21 -04001962 .write = cfqg_set_leaf_weight_device,
Tejun Heoe71357e2013-01-09 08:05:10 -08001963 },
1964 {
1965 .name = "leaf_weight",
Tejun Heo2da8ca82013-12-05 12:28:04 -05001966 .seq_show = cfq_print_leaf_weight,
Tejun Heoe71357e2013-01-09 08:05:10 -08001967 .write_u64 = cfq_set_leaf_weight,
1968 },
1969
Tejun Heo43114012013-01-09 08:05:13 -08001970 /* statistics, covers only the tasks in the cfqg */
Tejun Heo60c2bc22012-04-01 14:38:43 -07001971 {
1972 .name = "time",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001973 .private = offsetof(struct cfq_group, stats.time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001974 .seq_show = cfqg_print_stat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001975 },
1976 {
1977 .name = "sectors",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001978 .private = offsetof(struct cfq_group, stats.sectors),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001979 .seq_show = cfqg_print_stat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001980 },
1981 {
1982 .name = "io_service_bytes",
Tejun Heo77ea7332015-08-18 14:55:24 -07001983 .private = (unsigned long)&blkcg_policy_cfq,
1984 .seq_show = blkg_print_stat_bytes,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001985 },
1986 {
1987 .name = "io_serviced",
Tejun Heo77ea7332015-08-18 14:55:24 -07001988 .private = (unsigned long)&blkcg_policy_cfq,
1989 .seq_show = blkg_print_stat_ios,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001990 },
1991 {
1992 .name = "io_service_time",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001993 .private = offsetof(struct cfq_group, stats.service_time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001994 .seq_show = cfqg_print_rwstat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001995 },
1996 {
1997 .name = "io_wait_time",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001998 .private = offsetof(struct cfq_group, stats.wait_time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001999 .seq_show = cfqg_print_rwstat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07002000 },
2001 {
2002 .name = "io_merged",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07002003 .private = offsetof(struct cfq_group, stats.merged),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002004 .seq_show = cfqg_print_rwstat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07002005 },
2006 {
2007 .name = "io_queued",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07002008 .private = offsetof(struct cfq_group, stats.queued),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002009 .seq_show = cfqg_print_rwstat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07002010 },
Tejun Heo43114012013-01-09 08:05:13 -08002011
2012 /* the same statictics which cover the cfqg and its descendants */
2013 {
2014 .name = "time_recursive",
2015 .private = offsetof(struct cfq_group, stats.time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002016 .seq_show = cfqg_print_stat_recursive,
Tejun Heo43114012013-01-09 08:05:13 -08002017 },
2018 {
2019 .name = "sectors_recursive",
2020 .private = offsetof(struct cfq_group, stats.sectors),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002021 .seq_show = cfqg_print_stat_recursive,
Tejun Heo43114012013-01-09 08:05:13 -08002022 },
2023 {
2024 .name = "io_service_bytes_recursive",
Tejun Heo77ea7332015-08-18 14:55:24 -07002025 .private = (unsigned long)&blkcg_policy_cfq,
2026 .seq_show = blkg_print_stat_bytes_recursive,
Tejun Heo43114012013-01-09 08:05:13 -08002027 },
2028 {
2029 .name = "io_serviced_recursive",
Tejun Heo77ea7332015-08-18 14:55:24 -07002030 .private = (unsigned long)&blkcg_policy_cfq,
2031 .seq_show = blkg_print_stat_ios_recursive,
Tejun Heo43114012013-01-09 08:05:13 -08002032 },
2033 {
2034 .name = "io_service_time_recursive",
2035 .private = offsetof(struct cfq_group, stats.service_time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002036 .seq_show = cfqg_print_rwstat_recursive,
Tejun Heo43114012013-01-09 08:05:13 -08002037 },
2038 {
2039 .name = "io_wait_time_recursive",
2040 .private = offsetof(struct cfq_group, stats.wait_time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002041 .seq_show = cfqg_print_rwstat_recursive,
Tejun Heo43114012013-01-09 08:05:13 -08002042 },
2043 {
2044 .name = "io_merged_recursive",
2045 .private = offsetof(struct cfq_group, stats.merged),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002046 .seq_show = cfqg_print_rwstat_recursive,
Tejun Heo43114012013-01-09 08:05:13 -08002047 },
2048 {
2049 .name = "io_queued_recursive",
2050 .private = offsetof(struct cfq_group, stats.queued),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002051 .seq_show = cfqg_print_rwstat_recursive,
Tejun Heo43114012013-01-09 08:05:13 -08002052 },
Tejun Heo60c2bc22012-04-01 14:38:43 -07002053#ifdef CONFIG_DEBUG_BLK_CGROUP
2054 {
2055 .name = "avg_queue_size",
Tejun Heo2da8ca82013-12-05 12:28:04 -05002056 .seq_show = cfqg_print_avg_queue_size,
Tejun Heo60c2bc22012-04-01 14:38:43 -07002057 },
2058 {
2059 .name = "group_wait_time",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07002060 .private = offsetof(struct cfq_group, stats.group_wait_time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002061 .seq_show = cfqg_print_stat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07002062 },
2063 {
2064 .name = "idle_time",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07002065 .private = offsetof(struct cfq_group, stats.idle_time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002066 .seq_show = cfqg_print_stat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07002067 },
2068 {
2069 .name = "empty_time",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07002070 .private = offsetof(struct cfq_group, stats.empty_time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002071 .seq_show = cfqg_print_stat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07002072 },
2073 {
2074 .name = "dequeue",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07002075 .private = offsetof(struct cfq_group, stats.dequeue),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002076 .seq_show = cfqg_print_stat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07002077 },
2078 {
2079 .name = "unaccounted_time",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07002080 .private = offsetof(struct cfq_group, stats.unaccounted_time),
Tejun Heo2da8ca82013-12-05 12:28:04 -05002081 .seq_show = cfqg_print_stat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07002082 },
2083#endif /* CONFIG_DEBUG_BLK_CGROUP */
2084 { } /* terminate */
2085};
Vivek Goyal25fb5162009-12-03 12:59:46 -05002086#else /* GROUP_IOSCHED */
Tejun Heoae118892015-08-18 14:55:20 -07002087static struct cfq_group *cfq_lookup_cfqg(struct cfq_data *cfqd,
2088 struct blkcg *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05002089{
Tejun Heof51b8022012-03-05 13:15:05 -08002090 return cfqd->root_group;
Vivek Goyal25fb5162009-12-03 12:59:46 -05002091}
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02002092
Vivek Goyal25fb5162009-12-03 12:59:46 -05002093static inline void
2094cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
2095 cfqq->cfqg = cfqg;
2096}
2097
2098#endif /* GROUP_IOSCHED */
2099
Jens Axboe498d3aa22007-04-26 12:54:48 +02002100/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01002101 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +02002102 * requests waiting to be processed. It is sorted in the order that
2103 * we will service the queues.
2104 */
Jens Axboea36e71f2009-04-15 12:15:11 +02002105static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002106 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02002107{
Jens Axboe08717142008-01-28 11:38:15 +01002108 struct rb_node **p, *parent;
2109 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002110 unsigned long rb_key;
Vivek Goyal34b98d02012-10-03 16:56:58 -04002111 struct cfq_rb_root *st;
Jens Axboe498d3aa22007-04-26 12:54:48 +02002112 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002113 int new_cfqq = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05002114
Vivek Goyal34b98d02012-10-03 16:56:58 -04002115 st = st_for(cfqq->cfqg, cfqq_class(cfqq), cfqq_type(cfqq));
Jens Axboe08717142008-01-28 11:38:15 +01002116 if (cfq_class_idle(cfqq)) {
2117 rb_key = CFQ_IDLE_DELAY;
Vivek Goyal34b98d02012-10-03 16:56:58 -04002118 parent = rb_last(&st->rb);
Jens Axboe08717142008-01-28 11:38:15 +01002119 if (parent && parent != &cfqq->rb_node) {
2120 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
2121 rb_key += __cfqq->rb_key;
2122 } else
2123 rb_key += jiffies;
2124 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02002125 /*
2126 * Get our rb key offset. Subtract any residual slice
2127 * value carried from last service. A negative resid
2128 * count indicates slice overrun, and this should position
2129 * the next service time further away in the tree.
2130 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02002131 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02002132 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02002133 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02002134 } else {
2135 rb_key = -HZ;
Vivek Goyal34b98d02012-10-03 16:56:58 -04002136 __cfqq = cfq_rb_first(st);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02002137 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
2138 }
Jens Axboed9e76202007-04-20 14:27:50 +02002139
2140 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05002141 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01002142 /*
Jens Axboed9e76202007-04-20 14:27:50 +02002143 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01002144 */
Vivek Goyal34b98d02012-10-03 16:56:58 -04002145 if (rb_key == cfqq->rb_key && cfqq->service_tree == st)
Jens Axboed9e76202007-04-20 14:27:50 +02002146 return;
Jens Axboe53b037442006-07-28 09:48:51 +02002147
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01002148 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
2149 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002150 }
Jens Axboed9e76202007-04-20 14:27:50 +02002151
Jens Axboe498d3aa22007-04-26 12:54:48 +02002152 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01002153 parent = NULL;
Vivek Goyal34b98d02012-10-03 16:56:58 -04002154 cfqq->service_tree = st;
2155 p = &st->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02002156 while (*p) {
2157 parent = *p;
2158 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
2159
Jens Axboe0c534e02007-04-18 20:01:57 +02002160 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01002161 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02002162 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01002163 if (time_before(rb_key, __cfqq->rb_key))
Vivek Goyal1f23f122012-10-03 16:57:00 -04002164 p = &parent->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01002165 else {
Vivek Goyal1f23f122012-10-03 16:57:00 -04002166 p = &parent->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02002167 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01002168 }
Jens Axboed9e76202007-04-20 14:27:50 +02002169 }
2170
Jens Axboecc09e292007-04-26 12:53:50 +02002171 if (left)
Vivek Goyal34b98d02012-10-03 16:56:58 -04002172 st->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02002173
Jens Axboed9e76202007-04-20 14:27:50 +02002174 cfqq->rb_key = rb_key;
2175 rb_link_node(&cfqq->rb_node, parent, p);
Vivek Goyal34b98d02012-10-03 16:56:58 -04002176 rb_insert_color(&cfqq->rb_node, &st->rb);
2177 st->count++;
Namhyung Kim20359f22011-05-24 10:23:22 +02002178 if (add_front || !new_cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -05002179 return;
Justin TerAvest8184f932011-03-17 16:12:36 +01002180 cfq_group_notify_queue_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182
Jens Axboea36e71f2009-04-15 12:15:11 +02002183static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02002184cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
2185 sector_t sector, struct rb_node **ret_parent,
2186 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02002187{
Jens Axboea36e71f2009-04-15 12:15:11 +02002188 struct rb_node **p, *parent;
2189 struct cfq_queue *cfqq = NULL;
2190
2191 parent = NULL;
2192 p = &root->rb_node;
2193 while (*p) {
2194 struct rb_node **n;
2195
2196 parent = *p;
2197 cfqq = rb_entry(parent, struct cfq_queue, p_node);
2198
2199 /*
2200 * Sort strictly based on sector. Smallest to the left,
2201 * largest to the right.
2202 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002203 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02002204 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002205 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02002206 n = &(*p)->rb_left;
2207 else
2208 break;
2209 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02002210 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02002211 }
2212
2213 *ret_parent = parent;
2214 if (rb_link)
2215 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02002216 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02002217}
2218
2219static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2220{
Jens Axboea36e71f2009-04-15 12:15:11 +02002221 struct rb_node **p, *parent;
2222 struct cfq_queue *__cfqq;
2223
Jens Axboef2d1f0a2009-04-23 12:19:38 +02002224 if (cfqq->p_root) {
2225 rb_erase(&cfqq->p_node, cfqq->p_root);
2226 cfqq->p_root = NULL;
2227 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002228
2229 if (cfq_class_idle(cfqq))
2230 return;
2231 if (!cfqq->next_rq)
2232 return;
2233
Jens Axboef2d1f0a2009-04-23 12:19:38 +02002234 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002235 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
2236 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02002237 if (!__cfqq) {
2238 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02002239 rb_insert_color(&cfqq->p_node, cfqq->p_root);
2240 } else
2241 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02002242}
2243
Jens Axboe498d3aa22007-04-26 12:54:48 +02002244/*
2245 * Update cfqq's position in the service tree.
2246 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02002247static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02002248{
Jens Axboe6d048f52007-04-25 12:44:27 +02002249 /*
2250 * Resorting requires the cfqq to be on the RR list already.
2251 */
Jens Axboea36e71f2009-04-15 12:15:11 +02002252 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02002253 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02002254 cfq_prio_tree_add(cfqd, cfqq);
2255 }
Jens Axboe6d048f52007-04-25 12:44:27 +02002256}
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258/*
2259 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02002260 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 */
Jens Axboefebffd62008-01-28 13:19:43 +01002262static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263{
Jens Axboe7b679132008-05-30 12:23:07 +02002264 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02002265 BUG_ON(cfq_cfqq_on_rr(cfqq));
2266 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 cfqd->busy_queues++;
Shaohua Lief8a41d2011-03-07 09:26:29 +01002268 if (cfq_cfqq_sync(cfqq))
2269 cfqd->busy_sync_queues++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Jens Axboeedd75ff2007-04-19 12:03:34 +02002271 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272}
2273
Jens Axboe498d3aa22007-04-26 12:54:48 +02002274/*
2275 * Called when the cfqq no longer has requests pending, remove it from
2276 * the service tree.
2277 */
Jens Axboefebffd62008-01-28 13:19:43 +01002278static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
Jens Axboe7b679132008-05-30 12:23:07 +02002280 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02002281 BUG_ON(!cfq_cfqq_on_rr(cfqq));
2282 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01002284 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
2285 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
2286 cfqq->service_tree = NULL;
2287 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02002288 if (cfqq->p_root) {
2289 rb_erase(&cfqq->p_node, cfqq->p_root);
2290 cfqq->p_root = NULL;
2291 }
Jens Axboed9e76202007-04-20 14:27:50 +02002292
Justin TerAvest8184f932011-03-17 16:12:36 +01002293 cfq_group_notify_queue_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 BUG_ON(!cfqd->busy_queues);
2295 cfqd->busy_queues--;
Shaohua Lief8a41d2011-03-07 09:26:29 +01002296 if (cfq_cfqq_sync(cfqq))
2297 cfqd->busy_sync_queues--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298}
2299
2300/*
2301 * rb tree support functions
2302 */
Jens Axboefebffd62008-01-28 13:19:43 +01002303static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Jens Axboe5e705372006-07-13 12:39:25 +02002305 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02002306 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Jens Axboeb4878f22005-10-20 16:42:29 +02002308 BUG_ON(!cfqq->queued[sync]);
2309 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Jens Axboe5e705372006-07-13 12:39:25 +02002311 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Vivek Goyalf04a6422009-12-03 12:59:40 -05002313 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
2314 /*
2315 * Queue will be deleted from service tree when we actually
2316 * expire it later. Right now just remove it from prio tree
2317 * as it is empty.
2318 */
2319 if (cfqq->p_root) {
2320 rb_erase(&cfqq->p_node, cfqq->p_root);
2321 cfqq->p_root = NULL;
2322 }
2323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325
Jens Axboe5e705372006-07-13 12:39:25 +02002326static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
Jens Axboe5e705372006-07-13 12:39:25 +02002328 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 struct cfq_data *cfqd = cfqq->cfqd;
Jeff Moyer796d5112011-06-02 21:19:05 +02002330 struct request *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Jens Axboe5380a102006-07-13 12:37:56 +02002332 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Jeff Moyer796d5112011-06-02 21:19:05 +02002334 elv_rb_add(&cfqq->sort_list, rq);
Jens Axboe5fccbf62006-10-31 14:21:55 +01002335
2336 if (!cfq_cfqq_on_rr(cfqq))
2337 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02002338
2339 /*
2340 * check if this request is a better next-serve candidate
2341 */
Jens Axboea36e71f2009-04-15 12:15:11 +02002342 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01002343 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02002344
2345 /*
2346 * adjust priority tree position, if ->next_rq changes
2347 */
2348 if (prev != cfqq->next_rq)
2349 cfq_prio_tree_add(cfqd, cfqq);
2350
Jens Axboe5044eed2007-04-25 11:53:48 +02002351 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352}
2353
Jens Axboefebffd62008-01-28 13:19:43 +01002354static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355{
Jens Axboe5380a102006-07-13 12:37:56 +02002356 elv_rb_del(&cfqq->sort_list, rq);
2357 cfqq->queued[rq_is_sync(rq)]--;
Tejun Heo155fead2012-04-01 14:38:44 -07002358 cfqg_stats_update_io_remove(RQ_CFQG(rq), rq->cmd_flags);
Jens Axboe5e705372006-07-13 12:39:25 +02002359 cfq_add_rq_rb(rq);
Tejun Heo155fead2012-04-01 14:38:44 -07002360 cfqg_stats_update_io_add(RQ_CFQG(rq), cfqq->cfqd->serving_group,
2361 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362}
2363
Jens Axboe206dc692006-03-28 13:03:44 +02002364static struct request *
2365cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366{
Jens Axboe206dc692006-03-28 13:03:44 +02002367 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01002368 struct cfq_io_cq *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02002369 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Jens Axboe4ac845a2008-01-24 08:44:49 +01002371 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002372 if (!cic)
2373 return NULL;
2374
2375 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002376 if (cfqq)
2377 return elv_rb_find(&cfqq->sort_list, bio_end_sector(bio));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 return NULL;
2380}
2381
Jens Axboe165125e2007-07-24 09:28:11 +02002382static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02002383{
2384 struct cfq_data *cfqd = q->elevator->elevator_data;
2385
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002386 cfqd->rq_in_driver++;
Jens Axboe7b679132008-05-30 12:23:07 +02002387 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002388 cfqd->rq_in_driver);
Jens Axboe25776e32006-06-01 10:12:26 +02002389
Tejun Heo5b936292009-05-07 22:24:38 +09002390 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02002391}
2392
Jens Axboe165125e2007-07-24 09:28:11 +02002393static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
Jens Axboe22e2c502005-06-27 10:55:12 +02002395 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002397 WARN_ON(!cfqd->rq_in_driver);
2398 cfqd->rq_in_driver--;
Jens Axboe7b679132008-05-30 12:23:07 +02002399 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002400 cfqd->rq_in_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401}
2402
Jens Axboeb4878f22005-10-20 16:42:29 +02002403static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
Jens Axboe5e705372006-07-13 12:39:25 +02002405 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02002406
Jens Axboe5e705372006-07-13 12:39:25 +02002407 if (cfqq->next_rq == rq)
2408 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Jens Axboeb4878f22005-10-20 16:42:29 +02002410 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02002411 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02002412
Aaron Carroll45333d52008-08-26 15:52:36 +02002413 cfqq->cfqd->rq_queued--;
Tejun Heo155fead2012-04-01 14:38:44 -07002414 cfqg_stats_update_io_remove(RQ_CFQG(rq), rq->cmd_flags);
Christoph Hellwig65299a32011-08-23 14:50:29 +02002415 if (rq->cmd_flags & REQ_PRIO) {
2416 WARN_ON(!cfqq->prio_pending);
2417 cfqq->prio_pending--;
Jens Axboeb53d1ed2011-08-19 08:34:48 +02002418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419}
2420
Jens Axboe165125e2007-07-24 09:28:11 +02002421static int cfq_merge(struct request_queue *q, struct request **req,
2422 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
2424 struct cfq_data *cfqd = q->elevator->elevator_data;
2425 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Jens Axboe206dc692006-03-28 13:03:44 +02002427 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002428 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02002429 *req = __rq;
2430 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 }
2432
2433 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434}
2435
Jens Axboe165125e2007-07-24 09:28:11 +02002436static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02002437 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
Jens Axboe21183b02006-07-13 12:33:14 +02002439 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02002440 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Jens Axboe5e705372006-07-13 12:39:25 +02002442 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
Divyesh Shah812d4022010-04-08 21:14:23 -07002446static void cfq_bio_merged(struct request_queue *q, struct request *req,
2447 struct bio *bio)
2448{
Tejun Heo155fead2012-04-01 14:38:44 -07002449 cfqg_stats_update_io_merged(RQ_CFQG(req), bio->bi_rw);
Divyesh Shah812d4022010-04-08 21:14:23 -07002450}
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452static void
Jens Axboe165125e2007-07-24 09:28:11 +02002453cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 struct request *next)
2455{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01002456 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Shaohua Li4a0b75c2011-12-16 14:00:22 +01002457 struct cfq_data *cfqd = q->elevator->elevator_data;
2458
Jens Axboe22e2c502005-06-27 10:55:12 +02002459 /*
2460 * reposition in fifo if next is older than rq
2461 */
2462 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jan Kara8b4922d2014-02-24 16:39:52 +01002463 time_before(next->fifo_time, rq->fifo_time) &&
Shaohua Li3d106fba2012-11-06 12:39:51 +01002464 cfqq == RQ_CFQQ(next)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002465 list_move(&rq->queuelist, &next->queuelist);
Jan Kara8b4922d2014-02-24 16:39:52 +01002466 rq->fifo_time = next->fifo_time;
Jens Axboe30996f42009-10-05 11:03:39 +02002467 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002468
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01002469 if (cfqq->next_rq == next)
2470 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02002471 cfq_remove_request(next);
Tejun Heo155fead2012-04-01 14:38:44 -07002472 cfqg_stats_update_io_merged(RQ_CFQG(rq), next->cmd_flags);
Shaohua Li4a0b75c2011-12-16 14:00:22 +01002473
2474 cfqq = RQ_CFQQ(next);
2475 /*
2476 * all requests of this queue are merged to other queues, delete it
2477 * from the service tree. If it's the active_queue,
2478 * cfq_dispatch_requests() will choose to expire it or do idle
2479 */
2480 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list) &&
2481 cfqq != cfqd->active_queue)
2482 cfq_del_cfqq_rr(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002483}
2484
Jens Axboe165125e2007-07-24 09:28:11 +02002485static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01002486 struct bio *bio)
2487{
2488 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heoc5869802011-12-14 00:33:41 +01002489 struct cfq_io_cq *cic;
Jens Axboeda775262006-12-20 11:04:12 +01002490 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01002491
2492 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01002493 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01002494 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02002495 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02002496 return false;
Jens Axboeda775262006-12-20 11:04:12 +01002497
2498 /*
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002499 * Lookup the cfqq that this bio will be queued with and allow
Tejun Heo07c2bd32012-02-08 09:19:42 +01002500 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +01002501 */
Tejun Heo07c2bd32012-02-08 09:19:42 +01002502 cic = cfq_cic_lookup(cfqd, current->io_context);
2503 if (!cic)
2504 return false;
Jens Axboe719d3402006-12-22 09:38:53 +01002505
Vasily Tarasov91fac312007-04-25 12:29:51 +02002506 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02002507 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01002508}
2509
Divyesh Shah812df482010-04-08 21:15:35 -07002510static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2511{
2512 del_timer(&cfqd->idle_slice_timer);
Tejun Heo155fead2012-04-01 14:38:44 -07002513 cfqg_stats_update_idle_time(cfqq->cfqg);
Divyesh Shah812df482010-04-08 21:15:35 -07002514}
2515
Jens Axboefebffd62008-01-28 13:19:43 +01002516static void __cfq_set_active_queue(struct cfq_data *cfqd,
2517 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002518{
2519 if (cfqq) {
Vivek Goyal3bf10fe2012-10-03 16:56:56 -04002520 cfq_log_cfqq(cfqd, cfqq, "set_active wl_class:%d wl_type:%d",
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04002521 cfqd->serving_wl_class, cfqd->serving_wl_type);
Tejun Heo155fead2012-04-01 14:38:44 -07002522 cfqg_stats_update_avg_queue_size(cfqq->cfqg);
Justin TerAvest62a37f62011-03-23 08:25:44 +01002523 cfqq->slice_start = 0;
2524 cfqq->dispatch_start = jiffies;
2525 cfqq->allocated_slice = 0;
2526 cfqq->slice_end = 0;
2527 cfqq->slice_dispatch = 0;
2528 cfqq->nr_sectors = 0;
2529
2530 cfq_clear_cfqq_wait_request(cfqq);
2531 cfq_clear_cfqq_must_dispatch(cfqq);
2532 cfq_clear_cfqq_must_alloc_slice(cfqq);
2533 cfq_clear_cfqq_fifo_expire(cfqq);
2534 cfq_mark_cfqq_slice_new(cfqq);
2535
2536 cfq_del_timer(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002537 }
2538
2539 cfqd->active_queue = cfqq;
2540}
2541
2542/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002543 * current cfqq expired its slice (or was too idle), select new one
2544 */
2545static void
2546__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Vivek Goyale5ff0822010-04-26 19:25:11 +02002547 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002548{
Jens Axboe7b679132008-05-30 12:23:07 +02002549 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
2550
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002551 if (cfq_cfqq_wait_request(cfqq))
Divyesh Shah812df482010-04-08 21:15:35 -07002552 cfq_del_timer(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002553
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002554 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05002555 cfq_clear_cfqq_wait_busy(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002556
2557 /*
Shaohua Liae54abe2010-02-05 13:11:45 +01002558 * If this cfqq is shared between multiple processes, check to
2559 * make sure that those processes are still issuing I/Os within
2560 * the mean seek distance. If not, it may be time to break the
2561 * queues apart again.
2562 */
2563 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
2564 cfq_mark_cfqq_split_coop(cfqq);
2565
2566 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02002567 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002568 */
Shaohua Lic553f8e2011-01-14 08:41:03 +01002569 if (timed_out) {
2570 if (cfq_cfqq_slice_new(cfqq))
Vivek Goyalba5bd522011-01-19 08:25:02 -07002571 cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +01002572 else
2573 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02002574 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
2575 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002576
Vivek Goyale5ff0822010-04-26 19:25:11 +02002577 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
Vivek Goyaldae739e2009-12-03 12:59:45 -05002578
Vivek Goyalf04a6422009-12-03 12:59:40 -05002579 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
2580 cfq_del_cfqq_rr(cfqd, cfqq);
2581
Jens Axboeedd75ff2007-04-19 12:03:34 +02002582 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002583
2584 if (cfqq == cfqd->active_queue)
2585 cfqd->active_queue = NULL;
2586
2587 if (cfqd->active_cic) {
Tejun Heo11a31222012-02-07 07:51:30 +01002588 put_io_context(cfqd->active_cic->icq.ioc);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002589 cfqd->active_cic = NULL;
2590 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002591}
2592
Vivek Goyale5ff0822010-04-26 19:25:11 +02002593static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002594{
2595 struct cfq_queue *cfqq = cfqd->active_queue;
2596
2597 if (cfqq)
Vivek Goyale5ff0822010-04-26 19:25:11 +02002598 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002599}
2600
Jens Axboe498d3aa22007-04-26 12:54:48 +02002601/*
2602 * Get next queue for service. Unless we have a queue preemption,
2603 * we'll simply select the first cfqq in the service tree.
2604 */
Jens Axboe6d048f52007-04-25 12:44:27 +02002605static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002606{
Vivek Goyal34b98d02012-10-03 16:56:58 -04002607 struct cfq_rb_root *st = st_for(cfqd->serving_group,
2608 cfqd->serving_wl_class, cfqd->serving_wl_type);
Jens Axboeedd75ff2007-04-19 12:03:34 +02002609
Vivek Goyalf04a6422009-12-03 12:59:40 -05002610 if (!cfqd->rq_queued)
2611 return NULL;
2612
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002613 /* There is nothing to dispatch */
Vivek Goyal34b98d02012-10-03 16:56:58 -04002614 if (!st)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002615 return NULL;
Vivek Goyal34b98d02012-10-03 16:56:58 -04002616 if (RB_EMPTY_ROOT(&st->rb))
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01002617 return NULL;
Vivek Goyal34b98d02012-10-03 16:56:58 -04002618 return cfq_rb_first(st);
Jens Axboe6d048f52007-04-25 12:44:27 +02002619}
2620
Vivek Goyalf04a6422009-12-03 12:59:40 -05002621static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
2622{
Vivek Goyal25fb5162009-12-03 12:59:46 -05002623 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05002624 struct cfq_queue *cfqq;
2625 int i, j;
2626 struct cfq_rb_root *st;
2627
2628 if (!cfqd->rq_queued)
2629 return NULL;
2630
Vivek Goyal25fb5162009-12-03 12:59:46 -05002631 cfqg = cfq_get_next_cfqg(cfqd);
2632 if (!cfqg)
2633 return NULL;
2634
Vivek Goyalf04a6422009-12-03 12:59:40 -05002635 for_each_cfqg_st(cfqg, i, j, st)
2636 if ((cfqq = cfq_rb_first(st)) != NULL)
2637 return cfqq;
2638 return NULL;
2639}
2640
Jens Axboe498d3aa22007-04-26 12:54:48 +02002641/*
2642 * Get and set a new active queue for service.
2643 */
Jens Axboea36e71f2009-04-15 12:15:11 +02002644static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
2645 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02002646{
Jens Axboee00ef792009-11-04 08:54:55 +01002647 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02002648 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02002649
Jens Axboe22e2c502005-06-27 10:55:12 +02002650 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02002651 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002652}
2653
Jens Axboed9e76202007-04-20 14:27:50 +02002654static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
2655 struct request *rq)
2656{
Tejun Heo83096eb2009-05-07 22:24:39 +09002657 if (blk_rq_pos(rq) >= cfqd->last_position)
2658 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02002659 else
Tejun Heo83096eb2009-05-07 22:24:39 +09002660 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02002661}
2662
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002663static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Shaohua Lie9ce3352010-03-19 08:03:04 +01002664 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02002665{
Shaohua Lie9ce3352010-03-19 08:03:04 +01002666 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02002667}
2668
Jens Axboea36e71f2009-04-15 12:15:11 +02002669static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
2670 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02002671{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02002672 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02002673 struct rb_node *parent, *node;
2674 struct cfq_queue *__cfqq;
2675 sector_t sector = cfqd->last_position;
2676
2677 if (RB_EMPTY_ROOT(root))
2678 return NULL;
2679
2680 /*
2681 * First, if we find a request starting at the end of the last
2682 * request, choose it.
2683 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02002684 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02002685 if (__cfqq)
2686 return __cfqq;
2687
2688 /*
2689 * If the exact sector wasn't found, the parent of the NULL leaf
2690 * will contain the closest sector.
2691 */
2692 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01002693 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02002694 return __cfqq;
2695
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002696 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02002697 node = rb_next(&__cfqq->p_node);
2698 else
2699 node = rb_prev(&__cfqq->p_node);
2700 if (!node)
2701 return NULL;
2702
2703 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01002704 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02002705 return __cfqq;
2706
2707 return NULL;
2708}
2709
2710/*
2711 * cfqd - obvious
2712 * cur_cfqq - passed in so that we don't decide that the current queue is
2713 * closely cooperating with itself.
2714 *
2715 * So, basically we're assuming that that cur_cfqq has dispatched at least
2716 * one request, and that cfqd->last_position reflects a position on the disk
2717 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
2718 * assumption.
2719 */
2720static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002721 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02002722{
2723 struct cfq_queue *cfqq;
2724
Divyesh Shah39c01b22010-03-25 15:45:57 +01002725 if (cfq_class_idle(cur_cfqq))
2726 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002727 if (!cfq_cfqq_sync(cur_cfqq))
2728 return NULL;
2729 if (CFQQ_SEEKY(cur_cfqq))
2730 return NULL;
2731
Jens Axboea36e71f2009-04-15 12:15:11 +02002732 /*
Gui Jianfengb9d8f4c2009-12-08 08:54:17 +01002733 * Don't search priority tree if it's the only queue in the group.
2734 */
2735 if (cur_cfqq->cfqg->nr_cfqq == 1)
2736 return NULL;
2737
2738 /*
Jens Axboed9e76202007-04-20 14:27:50 +02002739 * We should notice if some of the queues are cooperating, eg
2740 * working closely on the same area of the disk. In that case,
2741 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02002742 */
Jens Axboea36e71f2009-04-15 12:15:11 +02002743 cfqq = cfqq_close(cfqd, cur_cfqq);
2744 if (!cfqq)
2745 return NULL;
2746
Vivek Goyal8682e1f2009-12-03 12:59:50 -05002747 /* If new queue belongs to different cfq_group, don't choose it */
2748 if (cur_cfqq->cfqg != cfqq->cfqg)
2749 return NULL;
2750
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002751 /*
2752 * It only makes sense to merge sync queues.
2753 */
2754 if (!cfq_cfqq_sync(cfqq))
2755 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002756 if (CFQQ_SEEKY(cfqq))
2757 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002758
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01002759 /*
2760 * Do not merge queues of different priority classes
2761 */
2762 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
2763 return NULL;
2764
Jens Axboea36e71f2009-04-15 12:15:11 +02002765 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02002766}
2767
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002768/*
2769 * Determine whether we should enforce idle window for this queue.
2770 */
2771
2772static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2773{
Vivek Goyal3bf10fe2012-10-03 16:56:56 -04002774 enum wl_class_t wl_class = cfqq_class(cfqq);
Vivek Goyal34b98d02012-10-03 16:56:58 -04002775 struct cfq_rb_root *st = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002776
Vivek Goyal34b98d02012-10-03 16:56:58 -04002777 BUG_ON(!st);
2778 BUG_ON(!st->count);
Vivek Goyalf04a6422009-12-03 12:59:40 -05002779
Vivek Goyalb6508c12010-08-23 12:23:33 +02002780 if (!cfqd->cfq_slice_idle)
2781 return false;
2782
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002783 /* We never do for idle class queues. */
Vivek Goyal3bf10fe2012-10-03 16:56:56 -04002784 if (wl_class == IDLE_WORKLOAD)
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002785 return false;
2786
2787 /* We do for queues that were marked with idle window flag. */
Shaohua Li3c764b72009-12-04 13:12:06 +01002788 if (cfq_cfqq_idle_window(cfqq) &&
2789 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002790 return true;
2791
2792 /*
2793 * Otherwise, we do only if they are the last ones
2794 * in their service tree.
2795 */
Vivek Goyal34b98d02012-10-03 16:56:58 -04002796 if (st->count == 1 && cfq_cfqq_sync(cfqq) &&
2797 !cfq_io_thinktime_big(cfqd, &st->ttime, false))
Shaohua Lic1e44752010-11-08 15:01:02 +01002798 return true;
Vivek Goyal34b98d02012-10-03 16:56:58 -04002799 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d", st->count);
Shaohua Lic1e44752010-11-08 15:01:02 +01002800 return false;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002801}
2802
Jens Axboe6d048f52007-04-25 12:44:27 +02002803static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002804{
Jens Axboe17926692007-01-19 11:59:30 +11002805 struct cfq_queue *cfqq = cfqd->active_queue;
Tejun Heoc5869802011-12-14 00:33:41 +01002806 struct cfq_io_cq *cic;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002807 unsigned long sl, group_idle = 0;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002808
Jens Axboea68bbddba2008-09-24 13:03:33 +02002809 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002810 * SSD device without seek penalty, disable idling. But only do so
2811 * for devices that support queuing, otherwise we still have a problem
2812 * with sync vs async workloads.
Jens Axboea68bbddba2008-09-24 13:03:33 +02002813 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002814 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbddba2008-09-24 13:03:33 +02002815 return;
2816
Jens Axboedd67d052006-06-21 09:36:18 +02002817 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02002818 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02002819
2820 /*
2821 * idle is disabled, either manually or by past process history
2822 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002823 if (!cfq_should_idle(cfqd, cfqq)) {
2824 /* no queue idling. Check for group idling */
2825 if (cfqd->cfq_group_idle)
2826 group_idle = cfqd->cfq_group_idle;
2827 else
2828 return;
2829 }
Jens Axboe6d048f52007-04-25 12:44:27 +02002830
Jens Axboe22e2c502005-06-27 10:55:12 +02002831 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002832 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02002833 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002834 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02002835 return;
2836
2837 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02002838 * task has exited, don't wait
2839 */
Jens Axboe206dc692006-03-28 13:03:44 +02002840 cic = cfqd->active_cic;
Tejun Heof6e8d012012-03-05 13:15:26 -08002841 if (!cic || !atomic_read(&cic->icq.ioc->active_ref))
Jens Axboe6d048f52007-04-25 12:44:27 +02002842 return;
2843
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002844 /*
2845 * If our average think time is larger than the remaining time
2846 * slice, then don't idle. This avoids overrunning the allotted
2847 * time slice.
2848 */
Shaohua Li383cd722011-07-12 14:24:35 +02002849 if (sample_valid(cic->ttime.ttime_samples) &&
2850 (cfqq->slice_end - jiffies < cic->ttime.ttime_mean)) {
Joe Perchesfd16d262011-06-13 10:42:49 +02002851 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%lu",
Shaohua Li383cd722011-07-12 14:24:35 +02002852 cic->ttime.ttime_mean);
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002853 return;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002854 }
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002855
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002856 /* There are other queues in the group, don't do group idle */
2857 if (group_idle && cfqq->cfqg->nr_cfqq > 1)
2858 return;
2859
Jens Axboe3b181522005-06-27 10:56:24 +02002860 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002861
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002862 if (group_idle)
2863 sl = cfqd->cfq_group_idle;
2864 else
2865 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02002866
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002867 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Tejun Heo155fead2012-04-01 14:38:44 -07002868 cfqg_stats_set_start_idle_time(cfqq->cfqg);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002869 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu group_idle: %d", sl,
2870 group_idle ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871}
2872
Jens Axboe498d3aa22007-04-26 12:54:48 +02002873/*
2874 * Move request from internal lists to the request queue dispatch list.
2875 */
Jens Axboe165125e2007-07-24 09:28:11 +02002876static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
Jens Axboe3ed9a292007-04-23 08:33:33 +02002878 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02002879 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002880
Jens Axboe7b679132008-05-30 12:23:07 +02002881 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
2882
Jeff Moyer06d21882009-09-11 17:08:59 +02002883 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02002884 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002885 cfqq->dispatched++;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002886 (RQ_CFQG(rq))->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02002887 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02002888
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002889 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
Vivek Goyalc4e78932010-08-23 12:25:03 +02002890 cfqq->nr_sectors += blk_rq_sectors(rq);
Tejun Heo155fead2012-04-01 14:38:44 -07002891 cfqg_stats_update_dispatch(cfqq->cfqg, blk_rq_bytes(rq), rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892}
2893
2894/*
2895 * return expired entry, or NULL to just start from scratch in rbtree
2896 */
Jens Axboefebffd62008-01-28 13:19:43 +01002897static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898{
Jens Axboe30996f42009-10-05 11:03:39 +02002899 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Jens Axboe3b181522005-06-27 10:56:24 +02002901 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11002903
2904 cfq_mark_cfqq_fifo_expire(cfqq);
2905
Jens Axboe89850f72006-07-22 16:48:31 +02002906 if (list_empty(&cfqq->fifo))
2907 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Jens Axboe89850f72006-07-22 16:48:31 +02002909 rq = rq_entry_fifo(cfqq->fifo.next);
Jan Kara8b4922d2014-02-24 16:39:52 +01002910 if (time_before(jiffies, rq->fifo_time))
Jens Axboe7b679132008-05-30 12:23:07 +02002911 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Jens Axboe30996f42009-10-05 11:03:39 +02002913 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002914 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915}
2916
Jens Axboe22e2c502005-06-27 10:55:12 +02002917static inline int
2918cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2919{
2920 const int base_rq = cfqd->cfq_slice_async_rq;
2921
2922 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
2923
Namhyung Kimb9f8ce02011-05-24 10:23:21 +02002924 return 2 * base_rq * (IOPRIO_BE_NR - cfqq->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002925}
2926
2927/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002928 * Must be called with the queue_lock held.
2929 */
2930static int cfqq_process_refs(struct cfq_queue *cfqq)
2931{
2932 int process_refs, io_refs;
2933
2934 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
Shaohua Li30d7b942011-01-07 08:46:59 +01002935 process_refs = cfqq->ref - io_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002936 BUG_ON(process_refs < 0);
2937 return process_refs;
2938}
2939
2940static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
2941{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002942 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002943 struct cfq_queue *__cfqq;
2944
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002945 /*
2946 * If there are no process references on the new_cfqq, then it is
2947 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
2948 * chain may have dropped their last reference (not just their
2949 * last process reference).
2950 */
2951 if (!cfqq_process_refs(new_cfqq))
2952 return;
2953
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002954 /* Avoid a circular list and skip interim queue merges */
2955 while ((__cfqq = new_cfqq->new_cfqq)) {
2956 if (__cfqq == cfqq)
2957 return;
2958 new_cfqq = __cfqq;
2959 }
2960
2961 process_refs = cfqq_process_refs(cfqq);
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002962 new_process_refs = cfqq_process_refs(new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002963 /*
2964 * If the process for the cfqq has gone away, there is no
2965 * sense in merging the queues.
2966 */
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002967 if (process_refs == 0 || new_process_refs == 0)
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002968 return;
2969
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002970 /*
2971 * Merge in the direction of the lesser amount of work.
2972 */
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002973 if (new_process_refs >= process_refs) {
2974 cfqq->new_cfqq = new_cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002975 new_cfqq->ref += process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002976 } else {
2977 new_cfqq->new_cfqq = cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002978 cfqq->ref += new_process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002979 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002980}
2981
Vivek Goyal6d816ec2012-10-03 16:56:59 -04002982static enum wl_type_t cfq_choose_wl_type(struct cfq_data *cfqd,
Vivek Goyal3bf10fe2012-10-03 16:56:56 -04002983 struct cfq_group *cfqg, enum wl_class_t wl_class)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002984{
2985 struct cfq_queue *queue;
2986 int i;
2987 bool key_valid = false;
2988 unsigned long lowest_key = 0;
2989 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2990
Vivek Goyal65b32a52009-12-16 17:52:59 -05002991 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2992 /* select the one with lowest rb_key */
Vivek Goyal34b98d02012-10-03 16:56:58 -04002993 queue = cfq_rb_first(st_for(cfqg, wl_class, i));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002994 if (queue &&
2995 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2996 lowest_key = queue->rb_key;
2997 cur_best = i;
2998 key_valid = true;
2999 }
3000 }
3001
3002 return cur_best;
3003}
3004
Vivek Goyal6d816ec2012-10-03 16:56:59 -04003005static void
3006choose_wl_class_and_type(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003007{
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003008 unsigned slice;
3009 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003010 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05003011 unsigned group_slice;
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003012 enum wl_class_t original_class = cfqd->serving_wl_class;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003013
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003014 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05003015 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003016 cfqd->serving_wl_class = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05003017 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003018 cfqd->serving_wl_class = BE_WORKLOAD;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003019 else {
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003020 cfqd->serving_wl_class = IDLE_WORKLOAD;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003021 cfqd->workload_expires = jiffies + 1;
3022 return;
3023 }
3024
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003025 if (original_class != cfqd->serving_wl_class)
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01003026 goto new_workload;
3027
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003028 /*
3029 * For RT and BE, we have to choose also the type
3030 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
3031 * expiration time
3032 */
Vivek Goyal34b98d02012-10-03 16:56:58 -04003033 st = st_for(cfqg, cfqd->serving_wl_class, cfqd->serving_wl_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003034 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003035
3036 /*
Vivek Goyal65b32a52009-12-16 17:52:59 -05003037 * check workload expiration, and that we still have other queues ready
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003038 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05003039 if (count && !time_after(jiffies, cfqd->workload_expires))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003040 return;
3041
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01003042new_workload:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003043 /* otherwise select new workload type */
Vivek Goyal6d816ec2012-10-03 16:56:59 -04003044 cfqd->serving_wl_type = cfq_choose_wl_type(cfqd, cfqg,
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003045 cfqd->serving_wl_class);
Vivek Goyal34b98d02012-10-03 16:56:58 -04003046 st = st_for(cfqg, cfqd->serving_wl_class, cfqd->serving_wl_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003047 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003048
3049 /*
3050 * the workload slice is computed as a fraction of target latency
3051 * proportional to the number of queues in that workload, over
3052 * all the queues in the same priority class
3053 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05003054 group_slice = cfq_group_slice(cfqd, cfqg);
3055
3056 slice = group_slice * count /
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003057 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_wl_class],
3058 cfq_group_busy_queues_wl(cfqd->serving_wl_class, cfqd,
Vivek Goyal3bf10fe2012-10-03 16:56:56 -04003059 cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003060
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003061 if (cfqd->serving_wl_type == ASYNC_WORKLOAD) {
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05003062 unsigned int tmp;
3063
3064 /*
3065 * Async queues are currently system wide. Just taking
3066 * proportion of queues with-in same group will lead to higher
3067 * async ratio system wide as generally root group is going
3068 * to have higher weight. A more accurate thing would be to
3069 * calculate system wide asnc/sync ratio.
3070 */
Tao Ma5bf14c02012-04-01 14:33:39 -07003071 tmp = cfqd->cfq_target_latency *
3072 cfqg_busy_async_queues(cfqd, cfqg);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05003073 tmp = tmp/cfqd->busy_queues;
3074 slice = min_t(unsigned, slice, tmp);
3075
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003076 /* async workload slice is scaled down according to
3077 * the sync/async slice ratio. */
3078 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05003079 } else
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003080 /* sync workload slice is at least 2 * cfq_slice_idle */
3081 slice = max(slice, 2 * cfqd->cfq_slice_idle);
3082
3083 slice = max_t(unsigned, slice, CFQ_MIN_TT);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01003084 cfq_log(cfqd, "workload slice:%d", slice);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003085 cfqd->workload_expires = jiffies + slice;
3086}
3087
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003088static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
3089{
3090 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003091 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003092
3093 if (RB_EMPTY_ROOT(&st->rb))
3094 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003095 cfqg = cfq_rb_first_group(st);
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003096 update_min_vdisktime(st);
3097 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003098}
3099
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003100static void cfq_choose_cfqg(struct cfq_data *cfqd)
3101{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003102 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
3103
3104 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05003105
3106 /* Restore the workload type data */
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003107 if (cfqg->saved_wl_slice) {
3108 cfqd->workload_expires = jiffies + cfqg->saved_wl_slice;
3109 cfqd->serving_wl_type = cfqg->saved_wl_type;
3110 cfqd->serving_wl_class = cfqg->saved_wl_class;
Gui Jianfeng66ae2912009-12-15 10:08:45 +01003111 } else
3112 cfqd->workload_expires = jiffies - 1;
3113
Vivek Goyal6d816ec2012-10-03 16:56:59 -04003114 choose_wl_class_and_type(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003115}
3116
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003117/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02003118 * Select a queue for service. If we have a current active queue,
3119 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02003120 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01003121static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02003122{
Jens Axboea36e71f2009-04-15 12:15:11 +02003123 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02003124
3125 cfqq = cfqd->active_queue;
3126 if (!cfqq)
3127 goto new_queue;
3128
Vivek Goyalf04a6422009-12-03 12:59:40 -05003129 if (!cfqd->rq_queued)
3130 return NULL;
Vivek Goyalc244bb52009-12-08 17:52:57 -05003131
3132 /*
3133 * We were waiting for group to get backlogged. Expire the queue
3134 */
3135 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
3136 goto expire;
3137
Jens Axboe22e2c502005-06-27 10:55:12 +02003138 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02003139 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02003140 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05003141 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
3142 /*
3143 * If slice had not expired at the completion of last request
3144 * we might not have turned on wait_busy flag. Don't expire
3145 * the queue yet. Allow the group to get backlogged.
3146 *
3147 * The very fact that we have used the slice, that means we
3148 * have been idling all along on this queue and it should be
3149 * ok to wait for this request to complete.
3150 */
Vivek Goyal82bbbf22009-12-10 19:25:41 +01003151 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
3152 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
3153 cfqq = NULL;
Vivek Goyal7667aa02009-12-08 17:52:58 -05003154 goto keep_queue;
Vivek Goyal82bbbf22009-12-10 19:25:41 +01003155 } else
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003156 goto check_group_idle;
Vivek Goyal7667aa02009-12-08 17:52:58 -05003157 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003158
3159 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02003160 * The active queue has requests and isn't expired, allow it to
3161 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02003162 */
Jens Axboedd67d052006-06-21 09:36:18 +02003163 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003164 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02003165
3166 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02003167 * If another queue has a request waiting within our mean seek
3168 * distance, let it run. The expire code will check for close
3169 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003170 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02003171 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003172 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003173 if (new_cfqq) {
3174 if (!cfqq->new_cfqq)
3175 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02003176 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003177 }
Jens Axboea36e71f2009-04-15 12:15:11 +02003178
3179 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02003180 * No requests pending. If the active queue still has requests in
3181 * flight or is idling for a new request, allow either of these
3182 * conditions to happen (or time out) before selecting a new queue.
3183 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003184 if (timer_pending(&cfqd->idle_slice_timer)) {
3185 cfqq = NULL;
3186 goto keep_queue;
3187 }
3188
Shaohua Li8e1ac662010-11-08 15:01:04 +01003189 /*
3190 * This is a deep seek queue, but the device is much faster than
3191 * the queue can deliver, don't idle
3192 **/
3193 if (CFQQ_SEEKY(cfqq) && cfq_cfqq_idle_window(cfqq) &&
3194 (cfq_cfqq_slice_new(cfqq) ||
3195 (cfqq->slice_end - jiffies > jiffies - cfqq->slice_start))) {
3196 cfq_clear_cfqq_deep(cfqq);
3197 cfq_clear_cfqq_idle_window(cfqq);
3198 }
3199
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003200 if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
3201 cfqq = NULL;
3202 goto keep_queue;
3203 }
3204
3205 /*
3206 * If group idle is enabled and there are requests dispatched from
3207 * this group, wait for requests to complete.
3208 */
3209check_group_idle:
Shaohua Li7700fc42011-07-12 14:24:56 +02003210 if (cfqd->cfq_group_idle && cfqq->cfqg->nr_cfqq == 1 &&
3211 cfqq->cfqg->dispatched &&
3212 !cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02003213 cfqq = NULL;
3214 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003215 }
3216
Jens Axboe3b181522005-06-27 10:56:24 +02003217expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02003218 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02003219new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003220 /*
3221 * Current queue expired. Check if we have to switch to a new
3222 * service tree
3223 */
3224 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003225 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003226
Jens Axboea36e71f2009-04-15 12:15:11 +02003227 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003228keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02003229 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003230}
3231
Jens Axboefebffd62008-01-28 13:19:43 +01003232static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02003233{
3234 int dispatched = 0;
3235
3236 while (cfqq->next_rq) {
3237 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
3238 dispatched++;
3239 }
3240
3241 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05003242
3243 /* By default cfqq is not expired if it is empty. Do it explicitly */
Vivek Goyale5ff0822010-04-26 19:25:11 +02003244 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02003245 return dispatched;
3246}
3247
Jens Axboe498d3aa22007-04-26 12:54:48 +02003248/*
3249 * Drain our current requests. Used for barriers and when switching
3250 * io schedulers on-the-fly.
3251 */
Jens Axboed9e76202007-04-20 14:27:50 +02003252static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01003253{
Jens Axboe08717142008-01-28 11:38:15 +01003254 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02003255 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003256
Divyesh Shah3440c492010-04-09 09:29:57 +02003257 /* Expire the timeslice of the current active queue first */
Vivek Goyale5ff0822010-04-26 19:25:11 +02003258 cfq_slice_expired(cfqd, 0);
Divyesh Shah3440c492010-04-09 09:29:57 +02003259 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
3260 __cfq_set_active_queue(cfqd, cfqq);
Vivek Goyalf04a6422009-12-03 12:59:40 -05003261 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Divyesh Shah3440c492010-04-09 09:29:57 +02003262 }
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01003263
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01003264 BUG_ON(cfqd->busy_queues);
3265
Jeff Moyer6923715a2009-06-12 15:29:30 +02003266 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01003267 return dispatched;
3268}
3269
Shaohua Liabc3c742010-03-01 09:20:54 +01003270static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
3271 struct cfq_queue *cfqq)
3272{
3273 /* the queue hasn't finished any request, can't estimate */
3274 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +01003275 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01003276 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
3277 cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +01003278 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01003279
Shaohua Lic1e44752010-11-08 15:01:02 +01003280 return false;
Shaohua Liabc3c742010-03-01 09:20:54 +01003281}
3282
Jens Axboe0b182d62009-10-06 20:49:37 +02003283static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02003284{
Jens Axboe2f5cb732009-04-07 08:51:19 +02003285 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286
Jens Axboe2f5cb732009-04-07 08:51:19 +02003287 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02003288 * Drain async requests before we start sync IO
3289 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003290 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02003291 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02003292
3293 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02003294 * If this is an async queue and we have sync IO in flight, let it wait
3295 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003296 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02003297 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02003298
Shaohua Liabc3c742010-03-01 09:20:54 +01003299 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
Jens Axboe2f5cb732009-04-07 08:51:19 +02003300 if (cfq_class_idle(cfqq))
3301 max_dispatch = 1;
3302
3303 /*
3304 * Does this cfqq already have too much IO in flight?
3305 */
3306 if (cfqq->dispatched >= max_dispatch) {
Shaohua Lief8a41d2011-03-07 09:26:29 +01003307 bool promote_sync = false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02003308 /*
3309 * idle queue must always only have a single IO in flight
3310 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02003311 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02003312 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02003313
Jens Axboe2f5cb732009-04-07 08:51:19 +02003314 /*
Li, Shaohuac4ade942011-03-23 08:30:34 +01003315 * If there is only one sync queue
3316 * we can ignore async queue here and give the sync
Shaohua Lief8a41d2011-03-07 09:26:29 +01003317 * queue no dispatch limit. The reason is a sync queue can
3318 * preempt async queue, limiting the sync queue doesn't make
3319 * sense. This is useful for aiostress test.
3320 */
Li, Shaohuac4ade942011-03-23 08:30:34 +01003321 if (cfq_cfqq_sync(cfqq) && cfqd->busy_sync_queues == 1)
3322 promote_sync = true;
Shaohua Lief8a41d2011-03-07 09:26:29 +01003323
3324 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02003325 * We have other queues, don't allow more IO from this one
3326 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01003327 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq) &&
3328 !promote_sync)
Jens Axboe0b182d62009-10-06 20:49:37 +02003329 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11003330
Jens Axboe2f5cb732009-04-07 08:51:19 +02003331 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01003332 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02003333 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01003334 if (cfqd->busy_queues == 1 || promote_sync)
Shaohua Liabc3c742010-03-01 09:20:54 +01003335 max_dispatch = -1;
3336 else
3337 /*
3338 * Normally we start throttling cfqq when cfq_quantum/2
3339 * requests have been dispatched. But we can drive
3340 * deeper queue depths at the beginning of slice
3341 * subjected to upper limit of cfq_quantum.
3342 * */
3343 max_dispatch = cfqd->cfq_quantum;
Jens Axboe8e296752009-10-03 16:26:03 +02003344 }
3345
3346 /*
3347 * Async queues must wait a bit before being allowed dispatch.
3348 * We also ramp up the dispatch depth gradually for async IO,
3349 * based on the last sync IO we serviced
3350 */
Jens Axboe963b72f2009-10-03 19:42:18 +02003351 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003352 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
Jens Axboe8e296752009-10-03 16:26:03 +02003353 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02003354
Jens Axboe61f0c1d2009-10-03 19:46:03 +02003355 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02003356 if (!depth && !cfqq->dispatched)
3357 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02003358 if (depth < max_dispatch)
3359 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 }
3361
Jens Axboe0b182d62009-10-06 20:49:37 +02003362 /*
3363 * If we're below the current max, allow a dispatch
3364 */
3365 return cfqq->dispatched < max_dispatch;
3366}
3367
3368/*
3369 * Dispatch a request from cfqq, moving them to the request queue
3370 * dispatch list.
3371 */
3372static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3373{
3374 struct request *rq;
3375
3376 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
3377
3378 if (!cfq_may_dispatch(cfqd, cfqq))
3379 return false;
3380
3381 /*
3382 * follow expired path, else get first next available
3383 */
3384 rq = cfq_check_fifo(cfqq);
3385 if (!rq)
3386 rq = cfqq->next_rq;
3387
3388 /*
3389 * insert request into driver dispatch list
3390 */
3391 cfq_dispatch_insert(cfqd->queue, rq);
3392
3393 if (!cfqd->active_cic) {
Tejun Heoc5869802011-12-14 00:33:41 +01003394 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe0b182d62009-10-06 20:49:37 +02003395
Tejun Heoc5869802011-12-14 00:33:41 +01003396 atomic_long_inc(&cic->icq.ioc->refcount);
Jens Axboe0b182d62009-10-06 20:49:37 +02003397 cfqd->active_cic = cic;
3398 }
3399
3400 return true;
3401}
3402
3403/*
3404 * Find the cfqq that we need to service and move a request from that to the
3405 * dispatch list
3406 */
3407static int cfq_dispatch_requests(struct request_queue *q, int force)
3408{
3409 struct cfq_data *cfqd = q->elevator->elevator_data;
3410 struct cfq_queue *cfqq;
3411
3412 if (!cfqd->busy_queues)
3413 return 0;
3414
3415 if (unlikely(force))
3416 return cfq_forced_dispatch(cfqd);
3417
3418 cfqq = cfq_select_queue(cfqd);
3419 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02003420 return 0;
3421
Jens Axboe2f5cb732009-04-07 08:51:19 +02003422 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02003423 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02003424 */
Jens Axboe0b182d62009-10-06 20:49:37 +02003425 if (!cfq_dispatch_request(cfqd, cfqq))
3426 return 0;
3427
Jens Axboe2f5cb732009-04-07 08:51:19 +02003428 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02003429 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02003430
3431 /*
3432 * expire an async queue immediately if it has used up its slice. idle
3433 * queue always expire after 1 dispatch round.
3434 */
3435 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
3436 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
3437 cfq_class_idle(cfqq))) {
3438 cfqq->slice_end = jiffies + 1;
Vivek Goyale5ff0822010-04-26 19:25:11 +02003439 cfq_slice_expired(cfqd, 0);
Jens Axboe2f5cb732009-04-07 08:51:19 +02003440 }
3441
Shan Weib217a902009-09-01 10:06:42 +02003442 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02003443 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444}
3445
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446/*
Jens Axboe5e705372006-07-13 12:39:25 +02003447 * task holds one reference to the queue, dropped when task exits. each rq
3448 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05003450 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 * queue lock must be held here.
3452 */
3453static void cfq_put_queue(struct cfq_queue *cfqq)
3454{
Jens Axboe22e2c502005-06-27 10:55:12 +02003455 struct cfq_data *cfqd = cfqq->cfqd;
Justin TerAvest0bbfeb82011-03-01 15:05:08 -05003456 struct cfq_group *cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02003457
Shaohua Li30d7b942011-01-07 08:46:59 +01003458 BUG_ON(cfqq->ref <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
Shaohua Li30d7b942011-01-07 08:46:59 +01003460 cfqq->ref--;
3461 if (cfqq->ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 return;
3463
Jens Axboe7b679132008-05-30 12:23:07 +02003464 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02003466 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05003467 cfqg = cfqq->cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
Jens Axboe28f95cbc2007-01-19 12:09:53 +11003469 if (unlikely(cfqd->active_queue == cfqq)) {
Vivek Goyale5ff0822010-04-26 19:25:11 +02003470 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02003471 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11003472 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003473
Vivek Goyalf04a6422009-12-03 12:59:40 -05003474 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 kmem_cache_free(cfq_pool, cfqq);
Tejun Heoeb7d8c072012-03-23 14:02:53 +01003476 cfqg_put(cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477}
3478
Shaohua Lid02a2c02010-05-25 10:16:53 +02003479static void cfq_put_cooperator(struct cfq_queue *cfqq)
Jens Axboe89850f72006-07-22 16:48:31 +02003480{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003481 struct cfq_queue *__cfqq, *next;
3482
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003483 /*
3484 * If this queue was scheduled to merge with another queue, be
3485 * sure to drop the reference taken on that queue (and others in
3486 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
3487 */
3488 __cfqq = cfqq->new_cfqq;
3489 while (__cfqq) {
3490 if (__cfqq == cfqq) {
3491 WARN(1, "cfqq->new_cfqq loop detected\n");
3492 break;
3493 }
3494 next = __cfqq->new_cfqq;
3495 cfq_put_queue(__cfqq);
3496 __cfqq = next;
3497 }
Shaohua Lid02a2c02010-05-25 10:16:53 +02003498}
3499
3500static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3501{
3502 if (unlikely(cfqq == cfqd->active_queue)) {
3503 __cfq_slice_expired(cfqd, cfqq, 0);
3504 cfq_schedule_dispatch(cfqd);
3505 }
3506
3507 cfq_put_cooperator(cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003508
Jens Axboe89850f72006-07-22 16:48:31 +02003509 cfq_put_queue(cfqq);
3510}
3511
Tejun Heo9b84cac2011-12-14 00:33:42 +01003512static void cfq_init_icq(struct io_cq *icq)
3513{
3514 struct cfq_io_cq *cic = icq_to_cic(icq);
3515
3516 cic->ttime.last_end_request = jiffies;
3517}
3518
Tejun Heoc5869802011-12-14 00:33:41 +01003519static void cfq_exit_icq(struct io_cq *icq)
Jens Axboe89850f72006-07-22 16:48:31 +02003520{
Tejun Heoc5869802011-12-14 00:33:41 +01003521 struct cfq_io_cq *cic = icq_to_cic(icq);
Tejun Heo283287a2011-12-14 00:33:38 +01003522 struct cfq_data *cfqd = cic_to_cfqd(cic);
Fabio Checconi4faa3c82008-04-10 08:28:01 +02003523
Tejun Heo563180a2015-08-18 14:55:00 -07003524 if (cic_to_cfqq(cic, false)) {
3525 cfq_exit_cfqq(cfqd, cic_to_cfqq(cic, false));
3526 cic_set_cfqq(cic, NULL, false);
Jens Axboe89850f72006-07-22 16:48:31 +02003527 }
3528
Tejun Heo563180a2015-08-18 14:55:00 -07003529 if (cic_to_cfqq(cic, true)) {
3530 cfq_exit_cfqq(cfqd, cic_to_cfqq(cic, true));
3531 cic_set_cfqq(cic, NULL, true);
Jens Axboe89850f72006-07-22 16:48:31 +02003532 }
Jens Axboe89850f72006-07-22 16:48:31 +02003533}
3534
Tejun Heoabede6d2012-03-19 15:10:57 -07003535static void cfq_init_prio_data(struct cfq_queue *cfqq, struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02003536{
3537 struct task_struct *tsk = current;
3538 int ioprio_class;
3539
Jens Axboe3b181522005-06-27 10:56:24 +02003540 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003541 return;
3542
Tejun Heo598971b2012-03-19 15:10:58 -07003543 ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02003544 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01003545 default:
3546 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
3547 case IOPRIO_CLASS_NONE:
3548 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02003549 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01003550 */
3551 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02003552 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01003553 break;
3554 case IOPRIO_CLASS_RT:
Tejun Heo598971b2012-03-19 15:10:58 -07003555 cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
Jens Axboefe094d92008-01-31 13:08:54 +01003556 cfqq->ioprio_class = IOPRIO_CLASS_RT;
3557 break;
3558 case IOPRIO_CLASS_BE:
Tejun Heo598971b2012-03-19 15:10:58 -07003559 cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
Jens Axboefe094d92008-01-31 13:08:54 +01003560 cfqq->ioprio_class = IOPRIO_CLASS_BE;
3561 break;
3562 case IOPRIO_CLASS_IDLE:
3563 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
3564 cfqq->ioprio = 7;
3565 cfq_clear_cfqq_idle_window(cfqq);
3566 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02003567 }
3568
3569 /*
3570 * keep track of original prio settings in case we have to temporarily
3571 * elevate the priority of this queue
3572 */
3573 cfqq->org_ioprio = cfqq->ioprio;
Jens Axboe3b181522005-06-27 10:56:24 +02003574 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003575}
3576
Tejun Heo598971b2012-03-19 15:10:58 -07003577static void check_ioprio_changed(struct cfq_io_cq *cic, struct bio *bio)
Jens Axboe22e2c502005-06-27 10:55:12 +02003578{
Tejun Heo598971b2012-03-19 15:10:58 -07003579 int ioprio = cic->icq.ioc->ioprio;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04003580 struct cfq_data *cfqd = cic_to_cfqd(cic);
Al Viro478a82b2006-03-18 13:25:24 -05003581 struct cfq_queue *cfqq;
Jens Axboe35e60772006-06-14 09:10:45 +02003582
Tejun Heo598971b2012-03-19 15:10:58 -07003583 /*
3584 * Check whether ioprio has changed. The condition may trigger
3585 * spuriously on a newly created cic but there's no harm.
3586 */
3587 if (unlikely(!cfqd) || likely(cic->ioprio == ioprio))
Jens Axboecaaa5f92006-06-16 11:23:00 +02003588 return;
3589
Tejun Heo563180a2015-08-18 14:55:00 -07003590 cfqq = cic_to_cfqq(cic, false);
Jens Axboecaaa5f92006-06-16 11:23:00 +02003591 if (cfqq) {
Tejun Heo563180a2015-08-18 14:55:00 -07003592 cfq_put_queue(cfqq);
Tejun Heo2da8de02015-08-18 14:55:02 -07003593 cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic, bio);
Tejun Heo563180a2015-08-18 14:55:00 -07003594 cic_set_cfqq(cic, cfqq, false);
Jens Axboe22e2c502005-06-27 10:55:12 +02003595 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003596
Tejun Heo563180a2015-08-18 14:55:00 -07003597 cfqq = cic_to_cfqq(cic, true);
Jens Axboecaaa5f92006-06-16 11:23:00 +02003598 if (cfqq)
3599 cfq_mark_cfqq_prio_changed(cfqq);
Tejun Heo598971b2012-03-19 15:10:58 -07003600
3601 cic->ioprio = ioprio;
Jens Axboe22e2c502005-06-27 10:55:12 +02003602}
3603
Jens Axboed5036d72009-06-26 10:44:34 +02003604static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02003605 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02003606{
3607 RB_CLEAR_NODE(&cfqq->rb_node);
3608 RB_CLEAR_NODE(&cfqq->p_node);
3609 INIT_LIST_HEAD(&cfqq->fifo);
3610
Shaohua Li30d7b942011-01-07 08:46:59 +01003611 cfqq->ref = 0;
Jens Axboed5036d72009-06-26 10:44:34 +02003612 cfqq->cfqd = cfqd;
3613
3614 cfq_mark_cfqq_prio_changed(cfqq);
3615
3616 if (is_sync) {
3617 if (!cfq_class_idle(cfqq))
3618 cfq_mark_cfqq_idle_window(cfqq);
3619 cfq_mark_cfqq_sync(cfqq);
3620 }
3621 cfqq->pid = pid;
3622}
3623
Vivek Goyal246103332009-12-03 12:59:51 -05003624#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heo598971b2012-03-19 15:10:58 -07003625static void check_blkcg_changed(struct cfq_io_cq *cic, struct bio *bio)
Vivek Goyal246103332009-12-03 12:59:51 -05003626{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04003627 struct cfq_data *cfqd = cic_to_cfqd(cic);
Tejun Heo60a83702015-08-18 14:55:05 -07003628 struct cfq_queue *cfqq;
Tejun Heof4da8072014-09-08 08:15:20 +09003629 uint64_t serial_nr;
Vivek Goyal246103332009-12-03 12:59:51 -05003630
Tejun Heo598971b2012-03-19 15:10:58 -07003631 rcu_read_lock();
Tejun Heof4da8072014-09-08 08:15:20 +09003632 serial_nr = bio_blkcg(bio)->css.serial_nr;
Tejun Heo598971b2012-03-19 15:10:58 -07003633 rcu_read_unlock();
3634
3635 /*
3636 * Check whether blkcg has changed. The condition may trigger
3637 * spuriously on a newly created cic but there's no harm.
3638 */
Tejun Heof4da8072014-09-08 08:15:20 +09003639 if (unlikely(!cfqd) || likely(cic->blkcg_serial_nr == serial_nr))
Vivek Goyal246103332009-12-03 12:59:51 -05003640 return;
3641
Tejun Heo60a83702015-08-18 14:55:05 -07003642 /*
3643 * Drop reference to queues. New queues will be assigned in new
3644 * group upon arrival of fresh requests.
3645 */
3646 cfqq = cic_to_cfqq(cic, false);
3647 if (cfqq) {
3648 cfq_log_cfqq(cfqd, cfqq, "changed cgroup");
3649 cic_set_cfqq(cic, NULL, false);
3650 cfq_put_queue(cfqq);
3651 }
3652
3653 cfqq = cic_to_cfqq(cic, true);
3654 if (cfqq) {
3655 cfq_log_cfqq(cfqd, cfqq, "changed cgroup");
3656 cic_set_cfqq(cic, NULL, true);
3657 cfq_put_queue(cfqq);
Vivek Goyal246103332009-12-03 12:59:51 -05003658 }
Tejun Heo598971b2012-03-19 15:10:58 -07003659
Tejun Heof4da8072014-09-08 08:15:20 +09003660 cic->blkcg_serial_nr = serial_nr;
Vivek Goyal246103332009-12-03 12:59:51 -05003661}
Tejun Heo598971b2012-03-19 15:10:58 -07003662#else
3663static inline void check_blkcg_changed(struct cfq_io_cq *cic, struct bio *bio) { }
Vivek Goyal246103332009-12-03 12:59:51 -05003664#endif /* CONFIG_CFQ_GROUP_IOSCHED */
3665
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003666static struct cfq_queue **
Tejun Heo60a83702015-08-18 14:55:05 -07003667cfq_async_queue_prio(struct cfq_group *cfqg, int ioprio_class, int ioprio)
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003668{
Jens Axboefe094d92008-01-31 13:08:54 +01003669 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003670 case IOPRIO_CLASS_RT:
Tejun Heo60a83702015-08-18 14:55:05 -07003671 return &cfqg->async_cfqq[0][ioprio];
Tejun Heo598971b2012-03-19 15:10:58 -07003672 case IOPRIO_CLASS_NONE:
3673 ioprio = IOPRIO_NORM;
3674 /* fall through */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003675 case IOPRIO_CLASS_BE:
Tejun Heo60a83702015-08-18 14:55:05 -07003676 return &cfqg->async_cfqq[1][ioprio];
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003677 case IOPRIO_CLASS_IDLE:
Tejun Heo60a83702015-08-18 14:55:05 -07003678 return &cfqg->async_idle_cfqq;
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003679 default:
3680 BUG();
3681 }
3682}
3683
Jens Axboe15c31be2007-07-10 13:43:25 +02003684static struct cfq_queue *
Tejun Heoabede6d2012-03-19 15:10:57 -07003685cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct cfq_io_cq *cic,
Tejun Heo2da8de02015-08-18 14:55:02 -07003686 struct bio *bio)
Jens Axboe15c31be2007-07-10 13:43:25 +02003687{
Jeff Moyerc6ce1942015-01-12 15:21:01 -05003688 int ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio);
3689 int ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
Tejun Heod4aad7f2015-08-18 14:55:04 -07003690 struct cfq_queue **async_cfqq = NULL;
Tejun Heo4ebc1c62015-08-18 14:54:57 -07003691 struct cfq_queue *cfqq;
Tejun Heo322731e2015-08-18 14:55:03 -07003692 struct cfq_group *cfqg;
3693
3694 rcu_read_lock();
Tejun Heoae118892015-08-18 14:55:20 -07003695 cfqg = cfq_lookup_cfqg(cfqd, bio_blkcg(bio));
Tejun Heo322731e2015-08-18 14:55:03 -07003696 if (!cfqg) {
3697 cfqq = &cfqd->oom_cfqq;
3698 goto out;
3699 }
Jens Axboe15c31be2007-07-10 13:43:25 +02003700
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003701 if (!is_sync) {
Jeff Moyerc6ce1942015-01-12 15:21:01 -05003702 if (!ioprio_valid(cic->ioprio)) {
3703 struct task_struct *tsk = current;
3704 ioprio = task_nice_ioprio(tsk);
3705 ioprio_class = task_nice_ioclass(tsk);
3706 }
Tejun Heo60a83702015-08-18 14:55:05 -07003707 async_cfqq = cfq_async_queue_prio(cfqg, ioprio_class, ioprio);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003708 cfqq = *async_cfqq;
Tejun Heo4ebc1c62015-08-18 14:54:57 -07003709 if (cfqq)
3710 goto out;
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003711 }
3712
Tejun Heod4aad7f2015-08-18 14:55:04 -07003713 cfqq = kmem_cache_alloc_node(cfq_pool, GFP_NOWAIT | __GFP_ZERO,
3714 cfqd->queue->node);
3715 if (!cfqq) {
3716 cfqq = &cfqd->oom_cfqq;
3717 goto out;
3718 }
Jens Axboe15c31be2007-07-10 13:43:25 +02003719
Tejun Heod4aad7f2015-08-18 14:55:04 -07003720 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
3721 cfq_init_prio_data(cfqq, cic);
3722 cfq_link_cfqq_cfqg(cfqq, cfqg);
3723 cfq_log_cfqq(cfqd, cfqq, "alloced");
3724
3725 if (async_cfqq) {
3726 /* a new async queue is created, pin and remember */
Shaohua Li30d7b942011-01-07 08:46:59 +01003727 cfqq->ref++;
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003728 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02003729 }
Tejun Heo4ebc1c62015-08-18 14:54:57 -07003730out:
Shaohua Li30d7b942011-01-07 08:46:59 +01003731 cfqq->ref++;
Tejun Heo322731e2015-08-18 14:55:03 -07003732 rcu_read_unlock();
Jens Axboe15c31be2007-07-10 13:43:25 +02003733 return cfqq;
3734}
3735
Jens Axboe22e2c502005-06-27 10:55:12 +02003736static void
Shaohua Li383cd722011-07-12 14:24:35 +02003737__cfq_update_io_thinktime(struct cfq_ttime *ttime, unsigned long slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003738{
Shaohua Li383cd722011-07-12 14:24:35 +02003739 unsigned long elapsed = jiffies - ttime->last_end_request;
3740 elapsed = min(elapsed, 2UL * slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02003741
Shaohua Li383cd722011-07-12 14:24:35 +02003742 ttime->ttime_samples = (7*ttime->ttime_samples + 256) / 8;
3743 ttime->ttime_total = (7*ttime->ttime_total + 256*elapsed) / 8;
3744 ttime->ttime_mean = (ttime->ttime_total + 128) / ttime->ttime_samples;
3745}
3746
3747static void
3748cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01003749 struct cfq_io_cq *cic)
Shaohua Li383cd722011-07-12 14:24:35 +02003750{
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003751 if (cfq_cfqq_sync(cfqq)) {
Shaohua Li383cd722011-07-12 14:24:35 +02003752 __cfq_update_io_thinktime(&cic->ttime, cfqd->cfq_slice_idle);
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003753 __cfq_update_io_thinktime(&cfqq->service_tree->ttime,
3754 cfqd->cfq_slice_idle);
3755 }
Shaohua Li7700fc42011-07-12 14:24:56 +02003756#ifdef CONFIG_CFQ_GROUP_IOSCHED
3757 __cfq_update_io_thinktime(&cfqq->cfqg->ttime, cfqd->cfq_group_idle);
3758#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02003759}
3760
Jens Axboe206dc692006-03-28 13:03:44 +02003761static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003762cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02003763 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02003764{
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003765 sector_t sdist = 0;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003766 sector_t n_sec = blk_rq_sectors(rq);
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003767 if (cfqq->last_request_pos) {
3768 if (cfqq->last_request_pos < blk_rq_pos(rq))
3769 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
3770 else
3771 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
3772 }
Jens Axboe206dc692006-03-28 13:03:44 +02003773
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003774 cfqq->seek_history <<= 1;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003775 if (blk_queue_nonrot(cfqd->queue))
3776 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
3777 else
3778 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
Jens Axboe206dc692006-03-28 13:03:44 +02003779}
Jens Axboe22e2c502005-06-27 10:55:12 +02003780
3781/*
3782 * Disable idle window if the process thinks too long or seeks so much that
3783 * it doesn't matter
3784 */
3785static void
3786cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01003787 struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02003788{
Jens Axboe7b679132008-05-30 12:23:07 +02003789 int old_idle, enable_idle;
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003790
Jens Axboe08717142008-01-28 11:38:15 +01003791 /*
3792 * Don't idle for async or idle io prio class
3793 */
3794 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003795 return;
3796
Jens Axboec265a7f2008-06-26 13:49:33 +02003797 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003798
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003799 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3800 cfq_mark_cfqq_deep(cfqq);
3801
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003802 if (cfqq->next_rq && (cfqq->next_rq->cmd_flags & REQ_NOIDLE))
3803 enable_idle = 0;
Tejun Heof6e8d012012-03-05 13:15:26 -08003804 else if (!atomic_read(&cic->icq.ioc->active_ref) ||
Tejun Heoc5869802011-12-14 00:33:41 +01003805 !cfqd->cfq_slice_idle ||
3806 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02003807 enable_idle = 0;
Shaohua Li383cd722011-07-12 14:24:35 +02003808 else if (sample_valid(cic->ttime.ttime_samples)) {
3809 if (cic->ttime.ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003810 enable_idle = 0;
3811 else
3812 enable_idle = 1;
3813 }
3814
Jens Axboe7b679132008-05-30 12:23:07 +02003815 if (old_idle != enable_idle) {
3816 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3817 if (enable_idle)
3818 cfq_mark_cfqq_idle_window(cfqq);
3819 else
3820 cfq_clear_cfqq_idle_window(cfqq);
3821 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003822}
3823
Jens Axboe22e2c502005-06-27 10:55:12 +02003824/*
3825 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3826 * no or if we aren't sure, a 1 will cause a preempt.
3827 */
Jens Axboea6151c32009-10-07 20:02:57 +02003828static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02003829cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02003830 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003831{
Jens Axboe6d048f52007-04-25 12:44:27 +02003832 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003833
Jens Axboe6d048f52007-04-25 12:44:27 +02003834 cfqq = cfqd->active_queue;
3835 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02003836 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003837
Jens Axboe6d048f52007-04-25 12:44:27 +02003838 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003839 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003840
3841 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003842 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003843
Jens Axboe22e2c502005-06-27 10:55:12 +02003844 /*
Divyesh Shah875feb62010-01-06 18:58:20 -08003845 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3846 */
3847 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3848 return false;
3849
3850 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02003851 * if the new request is sync, but the currently running queue is
3852 * not, let the sync request have priority.
3853 */
Jens Axboe5e705372006-07-13 12:39:25 +02003854 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003855 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003856
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003857 if (new_cfqq->cfqg != cfqq->cfqg)
3858 return false;
3859
3860 if (cfq_slice_used(cfqq))
3861 return true;
3862
3863 /* Allow preemption only if we are idling on sync-noidle tree */
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003864 if (cfqd->serving_wl_type == SYNC_NOIDLE_WORKLOAD &&
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003865 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3866 new_cfqq->service_tree->count == 2 &&
3867 RB_EMPTY_ROOT(&cfqq->sort_list))
3868 return true;
3869
Jens Axboe374f84a2006-07-23 01:42:19 +02003870 /*
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003871 * So both queues are sync. Let the new request get disk time if
3872 * it's a metadata request and the current queue is doing regular IO.
3873 */
Christoph Hellwig65299a32011-08-23 14:50:29 +02003874 if ((rq->cmd_flags & REQ_PRIO) && !cfqq->prio_pending)
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003875 return true;
3876
3877 /*
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003878 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3879 */
3880 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003881 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003882
Shaohua Lid2d59e12010-11-08 15:01:03 +01003883 /* An idle queue should not be idle now for some reason */
3884 if (RB_EMPTY_ROOT(&cfqq->sort_list) && !cfq_should_idle(cfqd, cfqq))
3885 return true;
3886
Jens Axboe1e3335d2007-02-14 19:59:49 +01003887 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003888 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003889
3890 /*
3891 * if this request is as-good as one we would expect from the
3892 * current cfqq, let it preempt
3893 */
Shaohua Lie9ce3352010-03-19 08:03:04 +01003894 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02003895 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003896
Jens Axboea6151c32009-10-07 20:02:57 +02003897 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003898}
3899
3900/*
3901 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3902 * let it have half of its nominal slice.
3903 */
3904static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3905{
Shaohua Lidf0793a2012-01-19 09:20:09 +01003906 enum wl_type_t old_type = cfqq_type(cfqd->active_queue);
3907
Jens Axboe7b679132008-05-30 12:23:07 +02003908 cfq_log_cfqq(cfqd, cfqq, "preempt");
Shaohua Lidf0793a2012-01-19 09:20:09 +01003909 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003910
Jens Axboebf572252006-07-19 20:29:12 +02003911 /*
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003912 * workload type is changed, don't save slice, otherwise preempt
3913 * doesn't happen
3914 */
Shaohua Lidf0793a2012-01-19 09:20:09 +01003915 if (old_type != cfqq_type(cfqq))
Vivek Goyal4d2ceea2012-10-03 16:56:57 -04003916 cfqq->cfqg->saved_wl_slice = 0;
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003917
3918 /*
Jens Axboebf572252006-07-19 20:29:12 +02003919 * Put the new queue at the front of the of the current list,
3920 * so we know that it will be selected next.
3921 */
3922 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02003923
3924 cfq_service_tree_add(cfqd, cfqq, 1);
Justin TerAvesteda5e0c92011-03-22 21:26:49 +01003925
Justin TerAvest62a37f62011-03-23 08:25:44 +01003926 cfqq->slice_end = 0;
3927 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003928}
3929
3930/*
Jens Axboe5e705372006-07-13 12:39:25 +02003931 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02003932 * something we should do about it
3933 */
3934static void
Jens Axboe5e705372006-07-13 12:39:25 +02003935cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3936 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003937{
Tejun Heoc5869802011-12-14 00:33:41 +01003938 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003939
Aaron Carroll45333d52008-08-26 15:52:36 +02003940 cfqd->rq_queued++;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003941 if (rq->cmd_flags & REQ_PRIO)
3942 cfqq->prio_pending++;
Jens Axboe374f84a2006-07-23 01:42:19 +02003943
Shaohua Li383cd722011-07-12 14:24:35 +02003944 cfq_update_io_thinktime(cfqd, cfqq, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003945 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003946 cfq_update_idle_window(cfqd, cfqq, cic);
3947
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003948 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003949
3950 if (cfqq == cfqd->active_queue) {
3951 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003952 * Remember that we saw a request from this process, but
3953 * don't start queuing just yet. Otherwise we risk seeing lots
3954 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003955 * and merging. If the request is already larger than a single
3956 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003957 * merging is already done. Ditto for a busy system that
3958 * has other work pending, don't risk delaying until the
3959 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003960 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003961 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003962 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3963 cfqd->busy_queues > 1) {
Divyesh Shah812df482010-04-08 21:15:35 -07003964 cfq_del_timer(cfqd, cfqq);
Gui Jianfeng554554f2009-12-10 09:38:39 +01003965 cfq_clear_cfqq_wait_request(cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003966 __blk_run_queue(cfqd->queue);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003967 } else {
Tejun Heo155fead2012-04-01 14:38:44 -07003968 cfqg_stats_update_idle_time(cfqq->cfqg);
Vivek Goyalbf7919372009-12-03 12:59:37 -05003969 cfq_mark_cfqq_must_dispatch(cfqq);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003970 }
Jens Axboed6ceb252009-04-14 14:18:16 +02003971 }
Jens Axboe5e705372006-07-13 12:39:25 +02003972 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003973 /*
3974 * not the active queue - expire current slice if it is
3975 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003976 * has some old slice time left and is of higher priority or
3977 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003978 */
3979 cfq_preempt_queue(cfqd, cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003980 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003981 }
3982}
3983
Jens Axboe165125e2007-07-24 09:28:11 +02003984static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003985{
Jens Axboeb4878f22005-10-20 16:42:29 +02003986 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003987 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003988
Jens Axboe7b679132008-05-30 12:23:07 +02003989 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Tejun Heoabede6d2012-03-19 15:10:57 -07003990 cfq_init_prio_data(cfqq, RQ_CIC(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
Jan Kara8b4922d2014-02-24 16:39:52 +01003992 rq->fifo_time = jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)];
Jens Axboe22e2c502005-06-27 10:55:12 +02003993 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003994 cfq_add_rq_rb(rq);
Tejun Heo155fead2012-04-01 14:38:44 -07003995 cfqg_stats_update_io_add(RQ_CFQG(rq), cfqd->serving_group,
3996 rq->cmd_flags);
Jens Axboe5e705372006-07-13 12:39:25 +02003997 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998}
3999
Aaron Carroll45333d52008-08-26 15:52:36 +02004000/*
4001 * Update hw_tag based on peak queue depth over 50 samples under
4002 * sufficient load.
4003 */
4004static void cfq_update_hw_tag(struct cfq_data *cfqd)
4005{
Shaohua Li1a1238a2009-10-27 08:46:23 +01004006 struct cfq_queue *cfqq = cfqd->active_queue;
4007
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01004008 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
4009 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01004010
4011 if (cfqd->hw_tag == 1)
4012 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02004013
4014 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01004015 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02004016 return;
4017
Shaohua Li1a1238a2009-10-27 08:46:23 +01004018 /*
4019 * If active queue hasn't enough requests and can idle, cfq might not
4020 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
4021 * case
4022 */
4023 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
4024 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01004025 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
Shaohua Li1a1238a2009-10-27 08:46:23 +01004026 return;
4027
Aaron Carroll45333d52008-08-26 15:52:36 +02004028 if (cfqd->hw_tag_samples++ < 50)
4029 return;
4030
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01004031 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02004032 cfqd->hw_tag = 1;
4033 else
4034 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02004035}
4036
Vivek Goyal7667aa02009-12-08 17:52:58 -05004037static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
4038{
Tejun Heoc5869802011-12-14 00:33:41 +01004039 struct cfq_io_cq *cic = cfqd->active_cic;
Vivek Goyal7667aa02009-12-08 17:52:58 -05004040
Justin TerAvest02a8f012011-02-09 14:20:03 +01004041 /* If the queue already has requests, don't wait */
4042 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
4043 return false;
4044
Vivek Goyal7667aa02009-12-08 17:52:58 -05004045 /* If there are other queues in the group, don't wait */
4046 if (cfqq->cfqg->nr_cfqq > 1)
4047 return false;
4048
Shaohua Li7700fc42011-07-12 14:24:56 +02004049 /* the only queue in the group, but think time is big */
4050 if (cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true))
4051 return false;
4052
Vivek Goyal7667aa02009-12-08 17:52:58 -05004053 if (cfq_slice_used(cfqq))
4054 return true;
4055
4056 /* if slice left is less than think time, wait busy */
Shaohua Li383cd722011-07-12 14:24:35 +02004057 if (cic && sample_valid(cic->ttime.ttime_samples)
4058 && (cfqq->slice_end - jiffies < cic->ttime.ttime_mean))
Vivek Goyal7667aa02009-12-08 17:52:58 -05004059 return true;
4060
4061 /*
4062 * If think times is less than a jiffy than ttime_mean=0 and above
4063 * will not be true. It might happen that slice has not expired yet
4064 * but will expire soon (4-5 ns) during select_queue(). To cover the
4065 * case where think time is less than a jiffy, mark the queue wait
4066 * busy if only 1 jiffy is left in the slice.
4067 */
4068 if (cfqq->slice_end - jiffies == 1)
4069 return true;
4070
4071 return false;
4072}
4073
Jens Axboe165125e2007-07-24 09:28:11 +02004074static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075{
Jens Axboe5e705372006-07-13 12:39:25 +02004076 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02004077 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02004078 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02004079 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
Jens Axboeb4878f22005-10-20 16:42:29 +02004081 now = jiffies;
Christoph Hellwig33659eb2010-08-07 18:17:56 +02004082 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
4083 !!(rq->cmd_flags & REQ_NOIDLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084
Aaron Carroll45333d52008-08-26 15:52:36 +02004085 cfq_update_hw_tag(cfqd);
4086
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01004087 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02004088 WARN_ON(!cfqq->dispatched);
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01004089 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02004090 cfqq->dispatched--;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004091 (RQ_CFQG(rq))->dispatched--;
Tejun Heo155fead2012-04-01 14:38:44 -07004092 cfqg_stats_update_completion(cfqq->cfqg, rq_start_time_ns(rq),
4093 rq_io_start_time_ns(rq), rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01004095 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
Jens Axboe3ed9a292007-04-23 08:33:33 +02004096
Vivek Goyal365722b2009-10-03 15:21:27 +02004097 if (sync) {
Vivek Goyal34b98d02012-10-03 16:56:58 -04004098 struct cfq_rb_root *st;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02004099
Shaohua Li383cd722011-07-12 14:24:35 +02004100 RQ_CIC(rq)->ttime.last_end_request = now;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02004101
4102 if (cfq_cfqq_on_rr(cfqq))
Vivek Goyal34b98d02012-10-03 16:56:58 -04004103 st = cfqq->service_tree;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02004104 else
Vivek Goyal34b98d02012-10-03 16:56:58 -04004105 st = st_for(cfqq->cfqg, cfqq_class(cfqq),
4106 cfqq_type(cfqq));
4107
4108 st->ttime.last_end_request = now;
Corrado Zoccolo573412b2009-12-06 11:48:52 +01004109 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
4110 cfqd->last_delayed_sync = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02004111 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02004112
Shaohua Li7700fc42011-07-12 14:24:56 +02004113#ifdef CONFIG_CFQ_GROUP_IOSCHED
4114 cfqq->cfqg->ttime.last_end_request = now;
4115#endif
4116
Jens Axboecaaa5f92006-06-16 11:23:00 +02004117 /*
4118 * If this is the active queue, check if it needs to be expired,
4119 * or if we want to idle in case it has no pending requests.
4120 */
4121 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02004122 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
4123
Jens Axboe44f7c162007-01-19 11:51:58 +11004124 if (cfq_cfqq_slice_new(cfqq)) {
4125 cfq_set_prio_slice(cfqd, cfqq);
4126 cfq_clear_cfqq_slice_new(cfqq);
4127 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05004128
4129 /*
Vivek Goyal7667aa02009-12-08 17:52:58 -05004130 * Should we wait for next request to come in before we expire
4131 * the queue.
Vivek Goyalf75edf22009-12-03 12:59:53 -05004132 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05004133 if (cfq_should_wait_busy(cfqd, cfqq)) {
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004134 unsigned long extend_sl = cfqd->cfq_slice_idle;
4135 if (!cfqd->cfq_slice_idle)
4136 extend_sl = cfqd->cfq_group_idle;
4137 cfqq->slice_end = jiffies + extend_sl;
Vivek Goyalf75edf22009-12-03 12:59:53 -05004138 cfq_mark_cfqq_wait_busy(cfqq);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01004139 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
Vivek Goyalf75edf22009-12-03 12:59:53 -05004140 }
4141
Jens Axboea36e71f2009-04-15 12:15:11 +02004142 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01004143 * Idling is not enabled on:
4144 * - expired queues
4145 * - idle-priority queues
4146 * - async queues
4147 * - queues with still some requests queued
4148 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02004149 */
Jens Axboe08717142008-01-28 11:38:15 +01004150 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Vivek Goyale5ff0822010-04-26 19:25:11 +02004151 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01004152 else if (sync && cfqq_empty &&
4153 !cfq_close_cooperator(cfqd, cfqq)) {
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02004154 cfq_arm_slice_timer(cfqd);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01004155 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02004156 }
Jens Axboe6d048f52007-04-25 12:44:27 +02004157
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01004158 if (!cfqd->rq_in_driver)
Jens Axboe23e018a2009-10-05 08:52:35 +02004159 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160}
4161
Jens Axboe89850f72006-07-22 16:48:31 +02004162static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02004163{
Jens Axboe1b379d82009-08-11 08:26:11 +02004164 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02004165 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02004166 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02004167 }
Jens Axboe22e2c502005-06-27 10:55:12 +02004168
4169 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02004170}
4171
Jens Axboe165125e2007-07-24 09:28:11 +02004172static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02004173{
4174 struct cfq_data *cfqd = q->elevator->elevator_data;
4175 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01004176 struct cfq_io_cq *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02004177 struct cfq_queue *cfqq;
4178
4179 /*
4180 * don't force setup of a queue from here, as a call to may_queue
4181 * does not necessarily imply that a request actually will be queued.
4182 * so just lookup a possibly existing queue, or return 'may queue'
4183 * if that fails
4184 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01004185 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02004186 if (!cic)
4187 return ELV_MQUEUE_MAY;
4188
Jens Axboeb0b78f82009-04-08 10:56:08 +02004189 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02004190 if (cfqq) {
Tejun Heoabede6d2012-03-19 15:10:57 -07004191 cfq_init_prio_data(cfqq, cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02004192
Jens Axboe89850f72006-07-22 16:48:31 +02004193 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02004194 }
4195
4196 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197}
4198
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199/*
4200 * queue lock held here
4201 */
Jens Axboebb37b942006-12-01 10:42:33 +01004202static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203{
Jens Axboe5e705372006-07-13 12:39:25 +02004204 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205
Jens Axboe5e705372006-07-13 12:39:25 +02004206 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02004207 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
Jens Axboe22e2c502005-06-27 10:55:12 +02004209 BUG_ON(!cfqq->allocated[rw]);
4210 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02004212 /* Put down rq reference on cfqg */
Tejun Heoeb7d8c072012-03-23 14:02:53 +01004213 cfqg_put(RQ_CFQG(rq));
Tejun Heoa612fdd2011-12-14 00:33:41 +01004214 rq->elv.priv[0] = NULL;
4215 rq->elv.priv[1] = NULL;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02004216
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 cfq_put_queue(cfqq);
4218 }
4219}
4220
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04004221static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01004222cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_cq *cic,
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04004223 struct cfq_queue *cfqq)
4224{
4225 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
4226 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04004227 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04004228 cfq_put_queue(cfqq);
4229 return cic_to_cfqq(cic, 1);
4230}
4231
Jeff Moyere6c5bc72009-10-23 17:14:52 -04004232/*
4233 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
4234 * was the last process referring to said cfqq.
4235 */
4236static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01004237split_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq)
Jeff Moyere6c5bc72009-10-23 17:14:52 -04004238{
4239 if (cfqq_process_refs(cfqq) == 1) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04004240 cfqq->pid = current->pid;
4241 cfq_clear_cfqq_coop(cfqq);
Shaohua Liae54abe2010-02-05 13:11:45 +01004242 cfq_clear_cfqq_split_coop(cfqq);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04004243 return cfqq;
4244 }
4245
4246 cic_set_cfqq(cic, NULL, 1);
Shaohua Lid02a2c02010-05-25 10:16:53 +02004247
4248 cfq_put_cooperator(cfqq);
4249
Jeff Moyere6c5bc72009-10-23 17:14:52 -04004250 cfq_put_queue(cfqq);
4251 return NULL;
4252}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253/*
Jens Axboe22e2c502005-06-27 10:55:12 +02004254 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 */
Jens Axboe22e2c502005-06-27 10:55:12 +02004256static int
Tejun Heo852c7882012-03-05 13:15:27 -08004257cfq_set_request(struct request_queue *q, struct request *rq, struct bio *bio,
4258 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259{
4260 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heof1f8cc92011-12-14 00:33:42 +01004261 struct cfq_io_cq *cic = icq_to_cic(rq->elv.icq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02004263 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02004264 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
Tejun Heo216284c2011-12-14 00:33:38 +01004266 spin_lock_irq(q->queue_lock);
Tejun Heof1f8cc92011-12-14 00:33:42 +01004267
Tejun Heo598971b2012-03-19 15:10:58 -07004268 check_ioprio_changed(cic, bio);
4269 check_blkcg_changed(cic, bio);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04004270new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02004271 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02004272 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Tejun Heobce61332015-08-18 14:54:59 -07004273 if (cfqq)
4274 cfq_put_queue(cfqq);
Tejun Heo2da8de02015-08-18 14:55:02 -07004275 cfqq = cfq_get_queue(cfqd, is_sync, cic, bio);
Vasily Tarasov91fac312007-04-25 12:29:51 +02004276 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04004277 } else {
4278 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04004279 * If the queue was seeky for too long, break it apart.
4280 */
Shaohua Liae54abe2010-02-05 13:11:45 +01004281 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04004282 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
4283 cfqq = split_cfqq(cic, cfqq);
4284 if (!cfqq)
4285 goto new_queue;
4286 }
4287
4288 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04004289 * Check to see if this queue is scheduled to merge with
4290 * another, closely cooperating queue. The merging of
4291 * queues happens here as it must be done in process context.
4292 * The reference on new_cfqq was taken in merge_cfqqs.
4293 */
4294 if (cfqq->new_cfqq)
4295 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02004296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
4298 cfqq->allocated[rw]++;
Jens Axboe5e705372006-07-13 12:39:25 +02004299
Jens Axboe6fae9c22011-03-01 15:04:39 -05004300 cfqq->ref++;
Tejun Heoeb7d8c072012-03-23 14:02:53 +01004301 cfqg_get(cfqq->cfqg);
Tejun Heoa612fdd2011-12-14 00:33:41 +01004302 rq->elv.priv[0] = cfqq;
Tejun Heo1adaf3d2012-03-05 13:15:15 -08004303 rq->elv.priv[1] = cfqq->cfqg;
Tejun Heo216284c2011-12-14 00:33:38 +01004304 spin_unlock_irq(q->queue_lock);
Jens Axboe5e705372006-07-13 12:39:25 +02004305 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306}
4307
David Howells65f27f32006-11-22 14:55:48 +00004308static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02004309{
David Howells65f27f32006-11-22 14:55:48 +00004310 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02004311 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02004312 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02004313
Jens Axboe40bb54d2009-04-15 12:11:10 +02004314 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02004315 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02004316 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02004317}
4318
4319/*
4320 * Timer running if the active_queue is currently idling inside its time slice
4321 */
4322static void cfq_idle_slice_timer(unsigned long data)
4323{
4324 struct cfq_data *cfqd = (struct cfq_data *) data;
4325 struct cfq_queue *cfqq;
4326 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11004327 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02004328
Jens Axboe7b679132008-05-30 12:23:07 +02004329 cfq_log(cfqd, "idle timer fired");
4330
Jens Axboe22e2c502005-06-27 10:55:12 +02004331 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
4332
Jens Axboefe094d92008-01-31 13:08:54 +01004333 cfqq = cfqd->active_queue;
4334 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11004335 timed_out = 0;
4336
Jens Axboe22e2c502005-06-27 10:55:12 +02004337 /*
Jens Axboeb0291952009-04-07 11:38:31 +02004338 * We saw a request before the queue expired, let it through
4339 */
4340 if (cfq_cfqq_must_dispatch(cfqq))
4341 goto out_kick;
4342
4343 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02004344 * expired
4345 */
Jens Axboe44f7c162007-01-19 11:51:58 +11004346 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02004347 goto expire;
4348
4349 /*
4350 * only expire and reinvoke request handler, if there are
4351 * other queues with pending requests
4352 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02004353 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02004354 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02004355
4356 /*
4357 * not expired and it has a request pending, let it dispatch
4358 */
Jens Axboe75e50982009-04-07 08:56:14 +02004359 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02004360 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01004361
4362 /*
4363 * Queue depth flag is reset only when the idle didn't succeed
4364 */
4365 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02004366 }
4367expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02004368 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02004369out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02004370 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02004371out_cont:
4372 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
4373}
4374
Jens Axboe3b181522005-06-27 10:56:24 +02004375static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
4376{
4377 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02004378 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02004379}
Jens Axboe22e2c502005-06-27 10:55:12 +02004380
Jens Axboeb374d182008-10-31 10:05:07 +01004381static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382{
Jens Axboe22e2c502005-06-27 10:55:12 +02004383 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02004384 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02004385
Jens Axboe3b181522005-06-27 10:56:24 +02004386 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02004387
Al Virod9ff4182006-03-18 13:51:22 -05004388 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02004389
Al Virod9ff4182006-03-18 13:51:22 -05004390 if (cfqd->active_queue)
Vivek Goyale5ff0822010-04-26 19:25:11 +02004391 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02004392
Tejun Heo03aa2642012-03-05 13:15:19 -08004393 spin_unlock_irq(q->queue_lock);
4394
Al Viroa90d7422006-03-18 12:05:37 -05004395 cfq_shutdown_timer_wq(cfqd);
4396
Tejun Heoffea73f2012-06-04 10:02:29 +02004397#ifdef CONFIG_CFQ_GROUP_IOSCHED
4398 blkcg_deactivate_policy(q, &blkcg_policy_cfq);
4399#else
Tejun Heof51b8022012-03-05 13:15:05 -08004400 kfree(cfqd->root_group);
Vivek Goyal2abae552011-05-23 10:02:19 +02004401#endif
Vivek Goyal56edf7d2011-05-19 15:38:22 -04004402 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403}
4404
Jianpeng Mad50235b2013-07-03 13:25:24 +02004405static int cfq_init_queue(struct request_queue *q, struct elevator_type *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406{
4407 struct cfq_data *cfqd;
Tejun Heo3c798392012-04-16 13:57:25 -07004408 struct blkcg_gq *blkg __maybe_unused;
Tejun Heoa2b16932012-04-13 13:11:33 -07004409 int i, ret;
Jianpeng Mad50235b2013-07-03 13:25:24 +02004410 struct elevator_queue *eq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
Jianpeng Mad50235b2013-07-03 13:25:24 +02004412 eq = elevator_alloc(q, e);
4413 if (!eq)
Tejun Heob2fab5a2012-03-05 13:14:57 -08004414 return -ENOMEM;
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04004415
Joe Perchesc1b511e2013-08-29 15:21:42 -07004416 cfqd = kzalloc_node(sizeof(*cfqd), GFP_KERNEL, q->node);
Jianpeng Mad50235b2013-07-03 13:25:24 +02004417 if (!cfqd) {
4418 kobject_put(&eq->kobj);
4419 return -ENOMEM;
4420 }
4421 eq->elevator_data = cfqd;
4422
Tejun Heof51b8022012-03-05 13:15:05 -08004423 cfqd->queue = q;
Jianpeng Mad50235b2013-07-03 13:25:24 +02004424 spin_lock_irq(q->queue_lock);
4425 q->elevator = eq;
4426 spin_unlock_irq(q->queue_lock);
Tejun Heof51b8022012-03-05 13:15:05 -08004427
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05004428 /* Init root service tree */
4429 cfqd->grp_service_tree = CFQ_RB_ROOT;
4430
Tejun Heof51b8022012-03-05 13:15:05 -08004431 /* Init root group and prefer root group over other groups by default */
Vivek Goyal25fb5162009-12-03 12:59:46 -05004432#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heo3c798392012-04-16 13:57:25 -07004433 ret = blkcg_activate_policy(q, &blkcg_policy_cfq);
Tejun Heoa2b16932012-04-13 13:11:33 -07004434 if (ret)
4435 goto out_free;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04004436
Tejun Heoa2b16932012-04-13 13:11:33 -07004437 cfqd->root_group = blkg_to_cfqg(q->root_blkg);
Tejun Heof51b8022012-03-05 13:15:05 -08004438#else
Tejun Heoa2b16932012-04-13 13:11:33 -07004439 ret = -ENOMEM;
Tejun Heof51b8022012-03-05 13:15:05 -08004440 cfqd->root_group = kzalloc_node(sizeof(*cfqd->root_group),
4441 GFP_KERNEL, cfqd->queue->node);
Tejun Heoa2b16932012-04-13 13:11:33 -07004442 if (!cfqd->root_group)
4443 goto out_free;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04004444
Tejun Heoa2b16932012-04-13 13:11:33 -07004445 cfq_init_cfqg_base(cfqd->root_group);
4446#endif
Tejun Heo3381cb82012-04-01 14:38:44 -07004447 cfqd->root_group->weight = 2 * CFQ_WEIGHT_DEFAULT;
Tejun Heoe71357e2013-01-09 08:05:10 -08004448 cfqd->root_group->leaf_weight = 2 * CFQ_WEIGHT_DEFAULT;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04004449
Jens Axboe26a2ac02009-04-23 12:13:27 +02004450 /*
4451 * Not strictly needed (since RB_ROOT just clears the node and we
4452 * zeroed cfqd on alloc), but better be safe in case someone decides
4453 * to add magic to the rb code
4454 */
4455 for (i = 0; i < CFQ_PRIO_LISTS; i++)
4456 cfqd->prio_trees[i] = RB_ROOT;
4457
Jens Axboe6118b702009-06-30 09:34:12 +02004458 /*
Tejun Heod4aad7f2015-08-18 14:55:04 -07004459 * Our fallback cfqq if cfq_get_queue() runs into OOM issues.
Jens Axboe6118b702009-06-30 09:34:12 +02004460 * Grab a permanent reference to it, so that the normal code flow
Tejun Heof51b8022012-03-05 13:15:05 -08004461 * will not attempt to free it. oom_cfqq is linked to root_group
4462 * but shouldn't hold a reference as it'll never be unlinked. Lose
4463 * the reference from linking right away.
Jens Axboe6118b702009-06-30 09:34:12 +02004464 */
4465 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
Shaohua Li30d7b942011-01-07 08:46:59 +01004466 cfqd->oom_cfqq.ref++;
Tejun Heo1adaf3d2012-03-05 13:15:15 -08004467
4468 spin_lock_irq(q->queue_lock);
Tejun Heof51b8022012-03-05 13:15:05 -08004469 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, cfqd->root_group);
Tejun Heoeb7d8c072012-03-23 14:02:53 +01004470 cfqg_put(cfqd->root_group);
Tejun Heo1adaf3d2012-03-05 13:15:15 -08004471 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472
Jens Axboe22e2c502005-06-27 10:55:12 +02004473 init_timer(&cfqd->idle_slice_timer);
4474 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
4475 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
4476
Jens Axboe23e018a2009-10-05 08:52:35 +02004477 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02004478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02004480 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
4481 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 cfqd->cfq_back_max = cfq_back_max;
4483 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02004484 cfqd->cfq_slice[0] = cfq_slice_async;
4485 cfqd->cfq_slice[1] = cfq_slice_sync;
Tao Ma5bf14c02012-04-01 14:33:39 -07004486 cfqd->cfq_target_latency = cfq_target_latency;
Jens Axboe22e2c502005-06-27 10:55:12 +02004487 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
Jens Axboe0bb97942015-06-10 08:01:20 -06004488 cfqd->cfq_slice_idle = cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004489 cfqd->cfq_group_idle = cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02004490 cfqd->cfq_latency = 1;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01004491 cfqd->hw_tag = -1;
Corrado Zoccoloedc71132009-12-09 20:56:04 +01004492 /*
4493 * we optimistically start assuming sync ops weren't delayed in last
4494 * second, in order to have larger depth for async operations.
4495 */
Corrado Zoccolo573412b2009-12-06 11:48:52 +01004496 cfqd->last_delayed_sync = jiffies - HZ;
Tejun Heob2fab5a2012-03-05 13:14:57 -08004497 return 0;
Tejun Heoa2b16932012-04-13 13:11:33 -07004498
4499out_free:
4500 kfree(cfqd);
Jianpeng Mad50235b2013-07-03 13:25:24 +02004501 kobject_put(&eq->kobj);
Tejun Heoa2b16932012-04-13 13:11:33 -07004502 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503}
4504
Jens Axboe0bb97942015-06-10 08:01:20 -06004505static void cfq_registered_queue(struct request_queue *q)
4506{
4507 struct elevator_queue *e = q->elevator;
4508 struct cfq_data *cfqd = e->elevator_data;
4509
4510 /*
4511 * Default to IOPS mode with no idling for SSDs
4512 */
4513 if (blk_queue_nonrot(q))
4514 cfqd->cfq_slice_idle = 0;
4515}
4516
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517/*
4518 * sysfs parts below -->
4519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520static ssize_t
4521cfq_var_show(unsigned int var, char *page)
4522{
Masanari Iida176167a2014-04-28 12:38:34 +09004523 return sprintf(page, "%u\n", var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524}
4525
4526static ssize_t
4527cfq_var_store(unsigned int *var, const char *page, size_t count)
4528{
4529 char *p = (char *) page;
4530
4531 *var = simple_strtoul(p, &p, 10);
4532 return count;
4533}
4534
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01004536static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537{ \
Al Viro3d1ab402006-03-18 18:35:43 -05004538 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 unsigned int __data = __VAR; \
4540 if (__CONV) \
4541 __data = jiffies_to_msecs(__data); \
4542 return cfq_var_show(__data, (page)); \
4543}
4544SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004545SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
4546SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05004547SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
4548SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004549SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004550SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02004551SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
4552SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
4553SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02004554SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Tao Ma5bf14c02012-04-01 14:33:39 -07004555SHOW_FUNCTION(cfq_target_latency_show, cfqd->cfq_target_latency, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556#undef SHOW_FUNCTION
4557
4558#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01004559static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560{ \
Al Viro3d1ab402006-03-18 18:35:43 -05004561 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 unsigned int __data; \
4563 int ret = cfq_var_store(&__data, (page), count); \
4564 if (__data < (MIN)) \
4565 __data = (MIN); \
4566 else if (__data > (MAX)) \
4567 __data = (MAX); \
4568 if (__CONV) \
4569 *(__PTR) = msecs_to_jiffies(__data); \
4570 else \
4571 *(__PTR) = __data; \
4572 return ret; \
4573}
4574STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004575STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
4576 UINT_MAX, 1);
4577STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
4578 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05004579STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004580STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
4581 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004582STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004583STORE_FUNCTION(cfq_group_idle_store, &cfqd->cfq_group_idle, 0, UINT_MAX, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02004584STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
4585STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01004586STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
4587 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02004588STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Tao Ma5bf14c02012-04-01 14:33:39 -07004589STORE_FUNCTION(cfq_target_latency_store, &cfqd->cfq_target_latency, 1, UINT_MAX, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590#undef STORE_FUNCTION
4591
Al Viroe572ec72006-03-18 22:27:18 -05004592#define CFQ_ATTR(name) \
4593 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02004594
Al Viroe572ec72006-03-18 22:27:18 -05004595static struct elv_fs_entry cfq_attrs[] = {
4596 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05004597 CFQ_ATTR(fifo_expire_sync),
4598 CFQ_ATTR(fifo_expire_async),
4599 CFQ_ATTR(back_seek_max),
4600 CFQ_ATTR(back_seek_penalty),
4601 CFQ_ATTR(slice_sync),
4602 CFQ_ATTR(slice_async),
4603 CFQ_ATTR(slice_async_rq),
4604 CFQ_ATTR(slice_idle),
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004605 CFQ_ATTR(group_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02004606 CFQ_ATTR(low_latency),
Tao Ma5bf14c02012-04-01 14:33:39 -07004607 CFQ_ATTR(target_latency),
Al Viroe572ec72006-03-18 22:27:18 -05004608 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609};
4610
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611static struct elevator_type iosched_cfq = {
4612 .ops = {
4613 .elevator_merge_fn = cfq_merge,
4614 .elevator_merged_fn = cfq_merged_request,
4615 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01004616 .elevator_allow_merge_fn = cfq_allow_merge,
Divyesh Shah812d4022010-04-08 21:14:23 -07004617 .elevator_bio_merged_fn = cfq_bio_merged,
Jens Axboeb4878f22005-10-20 16:42:29 +02004618 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02004620 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 .elevator_deactivate_req_fn = cfq_deactivate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02004623 .elevator_former_req_fn = elv_rb_former_request,
4624 .elevator_latter_req_fn = elv_rb_latter_request,
Tejun Heo9b84cac2011-12-14 00:33:42 +01004625 .elevator_init_icq_fn = cfq_init_icq,
Tejun Heo7e5a8792011-12-14 00:33:42 +01004626 .elevator_exit_icq_fn = cfq_exit_icq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 .elevator_set_req_fn = cfq_set_request,
4628 .elevator_put_req_fn = cfq_put_request,
4629 .elevator_may_queue_fn = cfq_may_queue,
4630 .elevator_init_fn = cfq_init_queue,
4631 .elevator_exit_fn = cfq_exit_queue,
Jens Axboe0bb97942015-06-10 08:01:20 -06004632 .elevator_registered_fn = cfq_registered_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 },
Tejun Heo3d3c2372011-12-14 00:33:42 +01004634 .icq_size = sizeof(struct cfq_io_cq),
4635 .icq_align = __alignof__(struct cfq_io_cq),
Al Viro3d1ab402006-03-18 18:35:43 -05004636 .elevator_attrs = cfq_attrs,
Tejun Heo3d3c2372011-12-14 00:33:42 +01004637 .elevator_name = "cfq",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 .elevator_owner = THIS_MODULE,
4639};
4640
Vivek Goyal3e252062009-12-04 10:36:42 -05004641#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heo3c798392012-04-16 13:57:25 -07004642static struct blkcg_policy blkcg_policy_cfq = {
Tejun Heof9fcc2d2012-04-16 13:57:27 -07004643 .cftypes = cfq_blkcg_files,
4644
Tejun Heoe4a9bde2015-08-18 14:55:16 -07004645 .cpd_alloc_fn = cfq_cpd_alloc,
Arianna Avanzinie48453c2015-06-05 23:38:42 +02004646 .cpd_init_fn = cfq_cpd_init,
Tejun Heoe4a9bde2015-08-18 14:55:16 -07004647 .cpd_free_fn = cfq_cpd_free,
4648
Tejun Heo001bea72015-08-18 14:55:11 -07004649 .pd_alloc_fn = cfq_pd_alloc,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07004650 .pd_init_fn = cfq_pd_init,
Tejun Heo0b399202013-01-09 08:05:13 -08004651 .pd_offline_fn = cfq_pd_offline,
Tejun Heo001bea72015-08-18 14:55:11 -07004652 .pd_free_fn = cfq_pd_free,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07004653 .pd_reset_stats_fn = cfq_pd_reset_stats,
Vivek Goyal3e252062009-12-04 10:36:42 -05004654};
Vivek Goyal3e252062009-12-04 10:36:42 -05004655#endif
4656
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657static int __init cfq_init(void)
4658{
Tejun Heo3d3c2372011-12-14 00:33:42 +01004659 int ret;
4660
Jens Axboe22e2c502005-06-27 10:55:12 +02004661 /*
4662 * could be 0 on HZ < 1000 setups
4663 */
4664 if (!cfq_slice_async)
4665 cfq_slice_async = 1;
4666 if (!cfq_slice_idle)
4667 cfq_slice_idle = 1;
4668
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004669#ifdef CONFIG_CFQ_GROUP_IOSCHED
4670 if (!cfq_group_idle)
4671 cfq_group_idle = 1;
Tejun Heo8bd435b2012-04-13 13:11:28 -07004672
Tejun Heo3c798392012-04-16 13:57:25 -07004673 ret = blkcg_policy_register(&blkcg_policy_cfq);
Tejun Heo8bd435b2012-04-13 13:11:28 -07004674 if (ret)
4675 return ret;
Tejun Heoffea73f2012-06-04 10:02:29 +02004676#else
4677 cfq_group_idle = 0;
4678#endif
Tejun Heo8bd435b2012-04-13 13:11:28 -07004679
Tejun Heofd794952012-06-04 10:01:38 +02004680 ret = -ENOMEM;
Tejun Heo3d3c2372011-12-14 00:33:42 +01004681 cfq_pool = KMEM_CACHE(cfq_queue, 0);
4682 if (!cfq_pool)
Tejun Heo8bd435b2012-04-13 13:11:28 -07004683 goto err_pol_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684
Tejun Heo3d3c2372011-12-14 00:33:42 +01004685 ret = elv_register(&iosched_cfq);
Tejun Heo8bd435b2012-04-13 13:11:28 -07004686 if (ret)
4687 goto err_free_pool;
Tejun Heo3d3c2372011-12-14 00:33:42 +01004688
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004689 return 0;
Tejun Heo8bd435b2012-04-13 13:11:28 -07004690
4691err_free_pool:
4692 kmem_cache_destroy(cfq_pool);
4693err_pol_unreg:
Tejun Heoffea73f2012-06-04 10:02:29 +02004694#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heo3c798392012-04-16 13:57:25 -07004695 blkcg_policy_unregister(&blkcg_policy_cfq);
Tejun Heoffea73f2012-06-04 10:02:29 +02004696#endif
Tejun Heo8bd435b2012-04-13 13:11:28 -07004697 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698}
4699
4700static void __exit cfq_exit(void)
4701{
Tejun Heoffea73f2012-06-04 10:02:29 +02004702#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heo3c798392012-04-16 13:57:25 -07004703 blkcg_policy_unregister(&blkcg_policy_cfq);
Tejun Heoffea73f2012-06-04 10:02:29 +02004704#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 elv_unregister(&iosched_cfq);
Tejun Heo3d3c2372011-12-14 00:33:42 +01004706 kmem_cache_destroy(cfq_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707}
4708
4709module_init(cfq_init);
4710module_exit(cfq_exit);
4711
4712MODULE_AUTHOR("Jens Axboe");
4713MODULE_LICENSE("GPL");
4714MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");