blob: 0f7a81fc7c7355a86d53f2244469f4748312be83 [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 Heo6e736be2011-12-14 00:33:38 +010017#include "blk.h"
Vivek Goyale98ef892010-06-18 10:39:47 -040018#include "cfq.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
Tejun Heoc5869802011-12-14 00:33:41 +010070struct cfq_ttime {
71 unsigned long last_end_request;
72
73 unsigned long ttime_total;
74 unsigned long ttime_samples;
75 unsigned long ttime_mean;
76};
77
Jens Axboe22e2c502005-06-27 10:55:12 +020078/*
Jens Axboecc09e292007-04-26 12:53:50 +020079 * Most of our rbtree usage is for sorting with min extraction, so
80 * if we cache the leftmost node we don't have to walk down the tree
81 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
82 * move this into the elevator for the rq sorting as well.
83 */
84struct cfq_rb_root {
85 struct rb_root rb;
86 struct rb_node *left;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010087 unsigned count;
Richard Kennedy73e9ffd2010-03-01 10:50:20 +010088 unsigned total_weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050089 u64 min_vdisktime;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020090 struct cfq_ttime ttime;
Jens Axboecc09e292007-04-26 12:53:50 +020091};
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020092#define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, \
93 .ttime = {.last_end_request = jiffies,},}
Jens Axboecc09e292007-04-26 12:53:50 +020094
95/*
Jens Axboe6118b702009-06-30 09:34:12 +020096 * Per process-grouping structure
97 */
98struct cfq_queue {
99 /* reference count */
Shaohua Li30d7b942011-01-07 08:46:59 +0100100 int ref;
Jens Axboe6118b702009-06-30 09:34:12 +0200101 /* various state flags, see below */
102 unsigned int flags;
103 /* parent cfq_data */
104 struct cfq_data *cfqd;
105 /* service_tree member */
106 struct rb_node rb_node;
107 /* service_tree key */
108 unsigned long rb_key;
109 /* prio tree member */
110 struct rb_node p_node;
111 /* prio tree root we belong to, if any */
112 struct rb_root *p_root;
113 /* sorted list of pending requests */
114 struct rb_root sort_list;
115 /* if fifo isn't expired, next request to serve */
116 struct request *next_rq;
117 /* requests queued in sort_list */
118 int queued[2];
119 /* currently allocated requests */
120 int allocated[2];
121 /* fifo list of requests in sort_list */
122 struct list_head fifo;
123
Vivek Goyaldae739e2009-12-03 12:59:45 -0500124 /* time when queue got scheduled in to dispatch first request. */
125 unsigned long dispatch_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500126 unsigned int allocated_slice;
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100127 unsigned int slice_dispatch;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500128 /* time when first request from queue completed and slice started. */
129 unsigned long slice_start;
Jens Axboe6118b702009-06-30 09:34:12 +0200130 unsigned long slice_end;
131 long slice_resid;
Jens Axboe6118b702009-06-30 09:34:12 +0200132
Christoph Hellwig65299a32011-08-23 14:50:29 +0200133 /* pending priority requests */
134 int prio_pending;
Jens Axboe6118b702009-06-30 09:34:12 +0200135 /* number of requests that are on the dispatch list or inside driver */
136 int dispatched;
137
138 /* io prio of this group */
139 unsigned short ioprio, org_ioprio;
Justin TerAvest4aede842011-07-12 08:31:45 +0200140 unsigned short ioprio_class;
Jens Axboe6118b702009-06-30 09:34:12 +0200141
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100142 pid_t pid;
143
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +0100144 u32 seek_history;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400145 sector_t last_request_pos;
146
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100147 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400148 struct cfq_queue *new_cfqq;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500149 struct cfq_group *cfqg;
Vivek Goyalc4e78932010-08-23 12:25:03 +0200150 /* Number of sectors dispatched from queue in single dispatch round */
151 unsigned long nr_sectors;
Jens Axboe6118b702009-06-30 09:34:12 +0200152};
153
154/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100155 * First index in the service_trees.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100156 * IDLE is handled separately, so it has negative index
157 */
158enum wl_prio_t {
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100159 BE_WORKLOAD = 0,
Vivek Goyal615f0252009-12-03 12:59:39 -0500160 RT_WORKLOAD = 1,
161 IDLE_WORKLOAD = 2,
Vivek Goyalb4627322010-10-22 09:48:43 +0200162 CFQ_PRIO_NR,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100163};
164
165/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100166 * Second index in the service_trees.
167 */
168enum wl_type_t {
169 ASYNC_WORKLOAD = 0,
170 SYNC_NOIDLE_WORKLOAD = 1,
171 SYNC_WORKLOAD = 2
172};
173
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500174/* This is per cgroup per device grouping structure */
175struct cfq_group {
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500176 /* group service_tree member */
177 struct rb_node rb_node;
178
179 /* group service_tree key */
180 u64 vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500181 unsigned int weight;
Justin TerAvest8184f932011-03-17 16:12:36 +0100182 unsigned int new_weight;
183 bool needs_update;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500184
185 /* number of cfqq currently on this group */
186 int nr_cfqq;
187
Jens Axboe22e2c502005-06-27 10:55:12 +0200188 /*
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200189 * Per group busy queues average. Useful for workload slice calc. We
Vivek Goyalb4627322010-10-22 09:48:43 +0200190 * create the array for each prio class but at run time it is used
191 * only for RT and BE class and slot for IDLE class remains unused.
192 * This is primarily done to avoid confusion and a gcc warning.
193 */
194 unsigned int busy_queues_avg[CFQ_PRIO_NR];
195 /*
196 * rr lists of queues with requests. We maintain service trees for
197 * RT and BE classes. These trees are subdivided in subclasses
198 * of SYNC, SYNC_NOIDLE and ASYNC based on workload type. For IDLE
199 * class there is no subclassification and all the cfq queues go on
200 * a single tree service_tree_idle.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100201 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200202 */
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100203 struct cfq_rb_root service_trees[2][3];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100204 struct cfq_rb_root service_tree_idle;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500205
206 unsigned long saved_workload_slice;
207 enum wl_type_t saved_workload;
208 enum wl_prio_t saved_serving_prio;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500209 struct blkio_group blkg;
210#ifdef CONFIG_CFQ_GROUP_IOSCHED
211 struct hlist_node cfqd_node;
Shaohua Li329a6782011-01-07 08:48:28 +0100212 int ref;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500213#endif
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200214 /* number of requests that are on the dispatch list or inside driver */
215 int dispatched;
Shaohua Li7700fc42011-07-12 14:24:56 +0200216 struct cfq_ttime ttime;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500217};
218
Tejun Heoc5869802011-12-14 00:33:41 +0100219struct cfq_io_cq {
220 struct io_cq icq; /* must be the first member */
221 struct cfq_queue *cfqq[2];
222 struct cfq_ttime ttime;
223};
224
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500225/*
226 * Per block device queue structure
227 */
228struct cfq_data {
229 struct request_queue *queue;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500230 /* Root service tree for cfq_groups */
231 struct cfq_rb_root grp_service_tree;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500232 struct cfq_group root_group;
233
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100234 /*
235 * The priority currently being served
236 */
237 enum wl_prio_t serving_prio;
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100238 enum wl_type_t serving_type;
239 unsigned long workload_expires;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500240 struct cfq_group *serving_group;
Jens Axboea36e71f2009-04-15 12:15:11 +0200241
242 /*
243 * Each priority tree is sorted by next_request position. These
244 * trees are used when determining if two or more queues are
245 * interleaving requests (see cfq_close_cooperator).
246 */
247 struct rb_root prio_trees[CFQ_PRIO_LISTS];
248
Jens Axboe22e2c502005-06-27 10:55:12 +0200249 unsigned int busy_queues;
Shaohua Lief8a41d2011-03-07 09:26:29 +0100250 unsigned int busy_sync_queues;
Jens Axboe22e2c502005-06-27 10:55:12 +0200251
Corrado Zoccolo53c583d2010-02-28 19:45:05 +0100252 int rq_in_driver;
253 int rq_in_flight[2];
Aaron Carroll45333d52008-08-26 15:52:36 +0200254
255 /*
256 * queue-depth detection
257 */
258 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200259 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100260 /*
261 * hw_tag can be
262 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
263 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
264 * 0 => no NCQ
265 */
266 int hw_tag_est_depth;
267 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200268
269 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200270 * idle window management
271 */
272 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200273 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200274
275 struct cfq_queue *active_queue;
Tejun Heoc5869802011-12-14 00:33:41 +0100276 struct cfq_io_cq *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200277
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200278 /*
279 * async queue for each priority case
280 */
281 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
282 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200283
Jens Axboe6d048f52007-04-25 12:44:27 +0200284 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /*
287 * tunables, see top of file
288 */
289 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200290 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 unsigned int cfq_back_penalty;
292 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200293 unsigned int cfq_slice[2];
294 unsigned int cfq_slice_async_rq;
295 unsigned int cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200296 unsigned int cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200297 unsigned int cfq_latency;
Al Virod9ff4182006-03-18 13:51:22 -0500298
Jens Axboe6118b702009-06-30 09:34:12 +0200299 /*
300 * Fallback dummy cfqq for extreme OOM conditions
301 */
302 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200303
Corrado Zoccolo573412b2009-12-06 11:48:52 +0100304 unsigned long last_delayed_sync;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500305
306 /* List of cfq groups being managed on this device*/
307 struct hlist_head cfqg_list;
Vivek Goyal56edf7d2011-05-19 15:38:22 -0400308
309 /* Number of groups which are on blkcg->blkg_list */
310 unsigned int nr_blkcg_linked_grps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
Vivek Goyal25fb5162009-12-03 12:59:46 -0500313static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
314
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500315static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
316 enum wl_prio_t prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -0500317 enum wl_type_t type)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100318{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500319 if (!cfqg)
320 return NULL;
321
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100322 if (prio == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500323 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100324
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500325 return &cfqg->service_trees[prio][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100326}
327
Jens Axboe3b181522005-06-27 10:56:24 +0200328enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100329 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
330 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200331 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100332 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100333 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
334 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
335 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100336 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200337 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400338 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Shaohua Liae54abe2010-02-05 13:11:45 +0100339 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100340 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Vivek Goyalf75edf22009-12-03 12:59:53 -0500341 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
Jens Axboe3b181522005-06-27 10:56:24 +0200342};
343
344#define CFQ_CFQQ_FNS(name) \
345static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
346{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100347 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200348} \
349static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
350{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100351 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200352} \
353static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
354{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100355 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200356}
357
358CFQ_CFQQ_FNS(on_rr);
359CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200360CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200361CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200362CFQ_CFQQ_FNS(fifo_expire);
363CFQ_CFQQ_FNS(idle_window);
364CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100365CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200366CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200367CFQ_CFQQ_FNS(coop);
Shaohua Liae54abe2010-02-05 13:11:45 +0100368CFQ_CFQQ_FNS(split_coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100369CFQ_CFQQ_FNS(deep);
Vivek Goyalf75edf22009-12-03 12:59:53 -0500370CFQ_CFQQ_FNS(wait_busy);
Jens Axboe3b181522005-06-27 10:56:24 +0200371#undef CFQ_CFQQ_FNS
372
Vivek Goyalafc24d42010-04-26 19:27:56 +0200373#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal2868ef72009-12-03 12:59:48 -0500374#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
375 blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \
376 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200377 blkg_path(&(cfqq)->cfqg->blkg), ##args)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500378
379#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \
380 blk_add_trace_msg((cfqd)->queue, "%s " fmt, \
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200381 blkg_path(&(cfqg)->blkg), ##args) \
Vivek Goyal2868ef72009-12-03 12:59:48 -0500382
383#else
Jens Axboe7b679132008-05-30 12:23:07 +0200384#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
385 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200386#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500387#endif
Jens Axboe7b679132008-05-30 12:23:07 +0200388#define cfq_log(cfqd, fmt, args...) \
389 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
390
Vivek Goyal615f0252009-12-03 12:59:39 -0500391/* Traverses through cfq group service trees */
392#define for_each_cfqg_st(cfqg, i, j, st) \
393 for (i = 0; i <= IDLE_WORKLOAD; i++) \
394 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
395 : &cfqg->service_tree_idle; \
396 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
397 (i == IDLE_WORKLOAD && j == 0); \
398 j++, st = i < IDLE_WORKLOAD ? \
399 &cfqg->service_trees[i][j]: NULL) \
400
Shaohua Lif5f2b6c2011-07-12 14:24:55 +0200401static inline bool cfq_io_thinktime_big(struct cfq_data *cfqd,
402 struct cfq_ttime *ttime, bool group_idle)
403{
404 unsigned long slice;
405 if (!sample_valid(ttime->ttime_samples))
406 return false;
407 if (group_idle)
408 slice = cfqd->cfq_group_idle;
409 else
410 slice = cfqd->cfq_slice_idle;
411 return ttime->ttime_mean > slice;
412}
Vivek Goyal615f0252009-12-03 12:59:39 -0500413
Vivek Goyal02b35082010-08-23 12:23:53 +0200414static inline bool iops_mode(struct cfq_data *cfqd)
415{
416 /*
417 * If we are not idling on queues and it is a NCQ drive, parallel
418 * execution of requests is on and measuring time is not possible
419 * in most of the cases until and unless we drive shallower queue
420 * depths and that becomes a performance bottleneck. In such cases
421 * switch to start providing fairness in terms of number of IOs.
422 */
423 if (!cfqd->cfq_slice_idle && cfqd->hw_tag)
424 return true;
425 else
426 return false;
427}
428
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100429static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
430{
431 if (cfq_class_idle(cfqq))
432 return IDLE_WORKLOAD;
433 if (cfq_class_rt(cfqq))
434 return RT_WORKLOAD;
435 return BE_WORKLOAD;
436}
437
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100438
439static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
440{
441 if (!cfq_cfqq_sync(cfqq))
442 return ASYNC_WORKLOAD;
443 if (!cfq_cfqq_idle_window(cfqq))
444 return SYNC_NOIDLE_WORKLOAD;
445 return SYNC_WORKLOAD;
446}
447
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500448static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
449 struct cfq_data *cfqd,
450 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100451{
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500452 if (wl == IDLE_WORKLOAD)
453 return cfqg->service_tree_idle.count;
454
455 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
456 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
457 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100458}
459
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500460static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
461 struct cfq_group *cfqg)
462{
463 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count
464 + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
465}
466
Jens Axboe165125e2007-07-24 09:28:11 +0200467static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200468static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100469 struct io_context *, gfp_t);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200470
Tejun Heoc5869802011-12-14 00:33:41 +0100471static inline struct cfq_io_cq *icq_to_cic(struct io_cq *icq)
472{
473 /* cic->icq is the first member, %NULL will convert to %NULL */
474 return container_of(icq, struct cfq_io_cq, icq);
475}
476
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100477static inline struct cfq_io_cq *cfq_cic_lookup(struct cfq_data *cfqd,
478 struct io_context *ioc)
479{
480 if (ioc)
481 return icq_to_cic(ioc_lookup_icq(ioc, cfqd->queue));
482 return NULL;
483}
484
Tejun Heoc5869802011-12-14 00:33:41 +0100485static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_cq *cic, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200486{
Jens Axboea6151c32009-10-07 20:02:57 +0200487 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200488}
489
Tejun Heoc5869802011-12-14 00:33:41 +0100490static inline void cic_set_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq,
491 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200492{
Jens Axboea6151c32009-10-07 20:02:57 +0200493 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200494}
495
Tejun Heoc5869802011-12-14 00:33:41 +0100496static inline struct cfq_data *cic_to_cfqd(struct cfq_io_cq *cic)
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400497{
Tejun Heoc5869802011-12-14 00:33:41 +0100498 return cic->icq.q->elevator->elevator_data;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400499}
500
Vasily Tarasov91fac312007-04-25 12:29:51 +0200501/*
502 * We regard a request as SYNC, if it's either a read or has the SYNC bit
503 * set (in which case it could also be direct WRITE).
504 */
Jens Axboea6151c32009-10-07 20:02:57 +0200505static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200506{
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200507 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200508}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700511 * scheduler run of queue, if there are requests pending and no one in the
512 * driver that will restart queueing
513 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200514static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700515{
Jens Axboe7b679132008-05-30 12:23:07 +0200516 if (cfqd->busy_queues) {
517 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200518 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200519 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100523 * Scale schedule slice based on io priority. Use the sync time slice only
524 * if a queue is marked sync and has sync io queued. A sync queue with async
525 * io only, should not get full sync slice length.
526 */
Jens Axboea6151c32009-10-07 20:02:57 +0200527static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200528 unsigned short prio)
529{
530 const int base_slice = cfqd->cfq_slice[sync];
531
532 WARN_ON(prio >= IOPRIO_BE_NR);
533
534 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
535}
536
Jens Axboe44f7c162007-01-19 11:51:58 +1100537static inline int
538cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
539{
Jens Axboed9e76202007-04-20 14:27:50 +0200540 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100541}
542
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500543static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
544{
545 u64 d = delta << CFQ_SERVICE_SHIFT;
546
547 d = d * BLKIO_WEIGHT_DEFAULT;
548 do_div(d, cfqg->weight);
549 return d;
550}
551
552static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
553{
554 s64 delta = (s64)(vdisktime - min_vdisktime);
555 if (delta > 0)
556 min_vdisktime = vdisktime;
557
558 return min_vdisktime;
559}
560
561static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
562{
563 s64 delta = (s64)(vdisktime - min_vdisktime);
564 if (delta < 0)
565 min_vdisktime = vdisktime;
566
567 return min_vdisktime;
568}
569
570static void update_min_vdisktime(struct cfq_rb_root *st)
571{
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500572 struct cfq_group *cfqg;
573
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500574 if (st->left) {
575 cfqg = rb_entry_cfqg(st->left);
Gui Jianfenga6032712011-03-07 09:28:09 +0100576 st->min_vdisktime = max_vdisktime(st->min_vdisktime,
577 cfqg->vdisktime);
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500578 }
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500579}
580
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100581/*
582 * get averaged number of queues of RT/BE priority.
583 * average is updated, with a formula that gives more weight to higher numbers,
584 * to quickly follows sudden increases and decrease slowly
585 */
586
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500587static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
588 struct cfq_group *cfqg, bool rt)
Jens Axboe5869619c2009-10-28 09:27:07 +0100589{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100590 unsigned min_q, max_q;
591 unsigned mult = cfq_hist_divisor - 1;
592 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500593 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100594
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500595 min_q = min(cfqg->busy_queues_avg[rt], busy);
596 max_q = max(cfqg->busy_queues_avg[rt], busy);
597 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100598 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500599 return cfqg->busy_queues_avg[rt];
600}
601
602static inline unsigned
603cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
604{
605 struct cfq_rb_root *st = &cfqd->grp_service_tree;
606
607 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100608}
609
Shaohua Lic553f8e2011-01-14 08:41:03 +0100610static inline unsigned
Vivek Goyalba5bd522011-01-19 08:25:02 -0700611cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100612{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100613 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
614 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500615 /*
616 * interested queues (we consider only the ones with the same
617 * priority class in the cfq group)
618 */
619 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
620 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100621 unsigned sync_slice = cfqd->cfq_slice[1];
622 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500623 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
624
625 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100626 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
627 /* scale low_slice according to IO priority
628 * and sync vs async */
629 unsigned low_slice =
630 min(slice, base_low_slice * slice / sync_slice);
631 /* the adapted slice value is scaled to fit all iqs
632 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500633 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100634 low_slice);
635 }
636 }
Shaohua Lic553f8e2011-01-14 08:41:03 +0100637 return slice;
638}
639
640static inline void
641cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
642{
Vivek Goyalba5bd522011-01-19 08:25:02 -0700643 unsigned slice = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +0100644
Vivek Goyaldae739e2009-12-03 12:59:45 -0500645 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100646 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500647 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200648 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100649}
650
651/*
652 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
653 * isn't valid until the first request from the dispatch is activated
654 * and the slice time set.
655 */
Jens Axboea6151c32009-10-07 20:02:57 +0200656static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100657{
658 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +0100659 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100660 if (time_before(jiffies, cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +0100661 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100662
Shaohua Lic1e44752010-11-08 15:01:02 +0100663 return true;
Jens Axboe44f7c162007-01-19 11:51:58 +1100664}
665
666/*
Jens Axboe5e705372006-07-13 12:39:25 +0200667 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200669 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 */
Jens Axboe5e705372006-07-13 12:39:25 +0200671static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100672cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100674 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200676#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
677#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
678 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Jens Axboe5e705372006-07-13 12:39:25 +0200680 if (rq1 == NULL || rq1 == rq2)
681 return rq2;
682 if (rq2 == NULL)
683 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200684
Namhyung Kim229836b2011-05-24 10:23:21 +0200685 if (rq_is_sync(rq1) != rq_is_sync(rq2))
686 return rq_is_sync(rq1) ? rq1 : rq2;
687
Christoph Hellwig65299a32011-08-23 14:50:29 +0200688 if ((rq1->cmd_flags ^ rq2->cmd_flags) & REQ_PRIO)
689 return rq1->cmd_flags & REQ_PRIO ? rq1 : rq2;
Jens Axboeb53d1ed2011-08-19 08:34:48 +0200690
Tejun Heo83096eb2009-05-07 22:24:39 +0900691 s1 = blk_rq_pos(rq1);
692 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /*
695 * by definition, 1KiB is 2 sectors
696 */
697 back_max = cfqd->cfq_back_max * 2;
698
699 /*
700 * Strict one way elevator _except_ in the case where we allow
701 * short backward seeks which are biased as twice the cost of a
702 * similar forward seek.
703 */
704 if (s1 >= last)
705 d1 = s1 - last;
706 else if (s1 + back_max >= last)
707 d1 = (last - s1) * cfqd->cfq_back_penalty;
708 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200709 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 if (s2 >= last)
712 d2 = s2 - last;
713 else if (s2 + back_max >= last)
714 d2 = (last - s2) * cfqd->cfq_back_penalty;
715 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200716 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Andreas Mohre8a99052006-03-28 08:59:49 +0200720 /*
721 * By doing switch() on the bit mask "wrap" we avoid having to
722 * check two variables for all permutations: --> faster!
723 */
724 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200725 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200726 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200727 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200728 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200729 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200730 else {
731 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200732 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200733 else
Jens Axboe5e705372006-07-13 12:39:25 +0200734 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200735 }
736
737 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200738 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200739 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200740 return rq2;
741 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200742 default:
743 /*
744 * Since both rqs are wrapped,
745 * start with the one that's further behind head
746 * (--> only *one* back seek required),
747 * since back seek takes more time than forward.
748 */
749 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200750 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 else
Jens Axboe5e705372006-07-13 12:39:25 +0200752 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754}
755
Jens Axboe498d3aa22007-04-26 12:54:48 +0200756/*
757 * The below is leftmost cache rbtree addon
758 */
Jens Axboe08717142008-01-28 11:38:15 +0100759static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200760{
Vivek Goyal615f0252009-12-03 12:59:39 -0500761 /* Service tree is empty */
762 if (!root->count)
763 return NULL;
764
Jens Axboecc09e292007-04-26 12:53:50 +0200765 if (!root->left)
766 root->left = rb_first(&root->rb);
767
Jens Axboe08717142008-01-28 11:38:15 +0100768 if (root->left)
769 return rb_entry(root->left, struct cfq_queue, rb_node);
770
771 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200772}
773
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500774static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
775{
776 if (!root->left)
777 root->left = rb_first(&root->rb);
778
779 if (root->left)
780 return rb_entry_cfqg(root->left);
781
782 return NULL;
783}
784
Jens Axboea36e71f2009-04-15 12:15:11 +0200785static void rb_erase_init(struct rb_node *n, struct rb_root *root)
786{
787 rb_erase(n, root);
788 RB_CLEAR_NODE(n);
789}
790
Jens Axboecc09e292007-04-26 12:53:50 +0200791static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
792{
793 if (root->left == n)
794 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200795 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100796 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200797}
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799/*
800 * would be nice to take fifo expire time into account as well
801 */
Jens Axboe5e705372006-07-13 12:39:25 +0200802static struct request *
803cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
804 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Jens Axboe21183b02006-07-13 12:33:14 +0200806 struct rb_node *rbnext = rb_next(&last->rb_node);
807 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200808 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Jens Axboe21183b02006-07-13 12:33:14 +0200810 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200813 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200816 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200817 else {
818 rbnext = rb_first(&cfqq->sort_list);
819 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200820 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100823 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Jens Axboed9e76202007-04-20 14:27:50 +0200826static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
827 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Jens Axboed9e76202007-04-20 14:27:50 +0200829 /*
830 * just an approximation, should be ok.
831 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500832 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100833 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200834}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500836static inline s64
837cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
838{
839 return cfqg->vdisktime - st->min_vdisktime;
840}
841
842static void
843__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
844{
845 struct rb_node **node = &st->rb.rb_node;
846 struct rb_node *parent = NULL;
847 struct cfq_group *__cfqg;
848 s64 key = cfqg_key(st, cfqg);
849 int left = 1;
850
851 while (*node != NULL) {
852 parent = *node;
853 __cfqg = rb_entry_cfqg(parent);
854
855 if (key < cfqg_key(st, __cfqg))
856 node = &parent->rb_left;
857 else {
858 node = &parent->rb_right;
859 left = 0;
860 }
861 }
862
863 if (left)
864 st->left = &cfqg->rb_node;
865
866 rb_link_node(&cfqg->rb_node, parent, node);
867 rb_insert_color(&cfqg->rb_node, &st->rb);
868}
869
870static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100871cfq_update_group_weight(struct cfq_group *cfqg)
872{
873 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
874 if (cfqg->needs_update) {
875 cfqg->weight = cfqg->new_weight;
876 cfqg->needs_update = false;
877 }
878}
879
880static void
881cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
882{
883 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
884
885 cfq_update_group_weight(cfqg);
886 __cfq_group_service_tree_add(st, cfqg);
887 st->total_weight += cfqg->weight;
888}
889
890static void
891cfq_group_notify_queue_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500892{
893 struct cfq_rb_root *st = &cfqd->grp_service_tree;
894 struct cfq_group *__cfqg;
895 struct rb_node *n;
896
897 cfqg->nr_cfqq++;
Gui Jianfeng760701b2010-11-30 20:52:47 +0100898 if (!RB_EMPTY_NODE(&cfqg->rb_node))
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500899 return;
900
901 /*
902 * Currently put the group at the end. Later implement something
903 * so that groups get lesser vtime based on their weights, so that
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300904 * if group does not loose all if it was not continuously backlogged.
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500905 */
906 n = rb_last(&st->rb);
907 if (n) {
908 __cfqg = rb_entry_cfqg(n);
909 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
910 } else
911 cfqg->vdisktime = st->min_vdisktime;
Justin TerAvest8184f932011-03-17 16:12:36 +0100912 cfq_group_service_tree_add(st, cfqg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500913}
914
915static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100916cfq_group_service_tree_del(struct cfq_rb_root *st, struct cfq_group *cfqg)
917{
918 st->total_weight -= cfqg->weight;
919 if (!RB_EMPTY_NODE(&cfqg->rb_node))
920 cfq_rb_erase(&cfqg->rb_node, st);
921}
922
923static void
924cfq_group_notify_queue_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500925{
926 struct cfq_rb_root *st = &cfqd->grp_service_tree;
927
928 BUG_ON(cfqg->nr_cfqq < 1);
929 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500930
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500931 /* If there are other cfq queues under this group, don't delete it */
932 if (cfqg->nr_cfqq)
933 return;
934
Vivek Goyal2868ef72009-12-03 12:59:48 -0500935 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Justin TerAvest8184f932011-03-17 16:12:36 +0100936 cfq_group_service_tree_del(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500937 cfqg->saved_workload_slice = 0;
Vivek Goyale98ef892010-06-18 10:39:47 -0400938 cfq_blkiocg_update_dequeue_stats(&cfqg->blkg, 1);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500939}
940
Justin TerAvest167400d2011-03-12 16:54:00 +0100941static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq,
942 unsigned int *unaccounted_time)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500943{
Vivek Goyalf75edf22009-12-03 12:59:53 -0500944 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500945
946 /*
947 * Queue got expired before even a single request completed or
948 * got expired immediately after first request completion.
949 */
950 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
951 /*
952 * Also charge the seek time incurred to the group, otherwise
953 * if there are mutiple queues in the group, each can dispatch
954 * a single request on seeky media and cause lots of seek time
955 * and group will never know it.
956 */
957 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
958 1);
959 } else {
960 slice_used = jiffies - cfqq->slice_start;
Justin TerAvest167400d2011-03-12 16:54:00 +0100961 if (slice_used > cfqq->allocated_slice) {
962 *unaccounted_time = slice_used - cfqq->allocated_slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500963 slice_used = cfqq->allocated_slice;
Justin TerAvest167400d2011-03-12 16:54:00 +0100964 }
965 if (time_after(cfqq->slice_start, cfqq->dispatch_start))
966 *unaccounted_time += cfqq->slice_start -
967 cfqq->dispatch_start;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500968 }
969
Vivek Goyaldae739e2009-12-03 12:59:45 -0500970 return slice_used;
971}
972
973static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
Vivek Goyale5ff0822010-04-26 19:25:11 +0200974 struct cfq_queue *cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500975{
976 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Justin TerAvest167400d2011-03-12 16:54:00 +0100977 unsigned int used_sl, charge, unaccounted_sl = 0;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500978 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
979 - cfqg->service_tree_idle.count;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500980
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500981 BUG_ON(nr_sync < 0);
Justin TerAvest167400d2011-03-12 16:54:00 +0100982 used_sl = charge = cfq_cfqq_slice_usage(cfqq, &unaccounted_sl);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500983
Vivek Goyal02b35082010-08-23 12:23:53 +0200984 if (iops_mode(cfqd))
985 charge = cfqq->slice_dispatch;
986 else if (!cfq_cfqq_sync(cfqq) && !nr_sync)
987 charge = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500988
989 /* Can't update vdisktime while group is on service tree */
Justin TerAvest8184f932011-03-17 16:12:36 +0100990 cfq_group_service_tree_del(st, cfqg);
Vivek Goyal02b35082010-08-23 12:23:53 +0200991 cfqg->vdisktime += cfq_scale_slice(charge, cfqg);
Justin TerAvest8184f932011-03-17 16:12:36 +0100992 /* If a new weight was requested, update now, off tree */
993 cfq_group_service_tree_add(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500994
995 /* This group is being expired. Save the context */
996 if (time_after(cfqd->workload_expires, jiffies)) {
997 cfqg->saved_workload_slice = cfqd->workload_expires
998 - jiffies;
999 cfqg->saved_workload = cfqd->serving_type;
1000 cfqg->saved_serving_prio = cfqd->serving_prio;
1001 } else
1002 cfqg->saved_workload_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -05001003
1004 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
1005 st->min_vdisktime);
Joe Perchesfd16d262011-06-13 10:42:49 +02001006 cfq_log_cfqq(cfqq->cfqd, cfqq,
1007 "sl_used=%u disp=%u charge=%u iops=%u sect=%lu",
1008 used_sl, cfqq->slice_dispatch, charge,
1009 iops_mode(cfqd), cfqq->nr_sectors);
Justin TerAvest167400d2011-03-12 16:54:00 +01001010 cfq_blkiocg_update_timeslice_used(&cfqg->blkg, used_sl,
1011 unaccounted_sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04001012 cfq_blkiocg_set_start_empty_time(&cfqg->blkg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001013}
1014
Vivek Goyal25fb5162009-12-03 12:59:46 -05001015#ifdef CONFIG_CFQ_GROUP_IOSCHED
1016static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg)
1017{
1018 if (blkg)
1019 return container_of(blkg, struct cfq_group, blkg);
1020 return NULL;
1021}
1022
Paul Bolle8aea4542011-06-06 05:07:54 +02001023static void cfq_update_blkio_group_weight(void *key, struct blkio_group *blkg,
1024 unsigned int weight)
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001025{
Justin TerAvest8184f932011-03-17 16:12:36 +01001026 struct cfq_group *cfqg = cfqg_of_blkg(blkg);
1027 cfqg->new_weight = weight;
1028 cfqg->needs_update = true;
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001029}
1030
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001031static void cfq_init_add_cfqg_lists(struct cfq_data *cfqd,
1032 struct cfq_group *cfqg, struct blkio_cgroup *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001033{
Vivek Goyal22084192009-12-03 12:59:49 -05001034 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
1035 unsigned int major, minor;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001036
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001037 /*
1038 * Add group onto cgroup list. It might happen that bdi->dev is
1039 * not initialized yet. Initialize this new group without major
1040 * and minor info and this info will be filled in once a new thread
1041 * comes for IO.
1042 */
1043 if (bdi->dev) {
Ricky Beniteza74b2ad2010-04-05 18:22:17 +02001044 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001045 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg,
1046 (void *)cfqd, MKDEV(major, minor));
1047 } else
1048 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg,
1049 (void *)cfqd, 0);
1050
1051 cfqd->nr_blkcg_linked_grps++;
1052 cfqg->weight = blkcg_get_weight(blkcg, cfqg->blkg.dev);
1053
1054 /* Add group on cfqd list */
1055 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
1056}
1057
1058/*
1059 * Should be called from sleepable context. No request queue lock as per
1060 * cpu stats are allocated dynamically and alloc_percpu needs to be called
1061 * from sleepable context.
1062 */
1063static struct cfq_group * cfq_alloc_cfqg(struct cfq_data *cfqd)
1064{
1065 struct cfq_group *cfqg = NULL;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001066 int i, j, ret;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001067 struct cfq_rb_root *st;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001068
1069 cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
1070 if (!cfqg)
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001071 return NULL;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001072
Vivek Goyal25fb5162009-12-03 12:59:46 -05001073 for_each_cfqg_st(cfqg, i, j, st)
1074 *st = CFQ_RB_ROOT;
1075 RB_CLEAR_NODE(&cfqg->rb_node);
1076
Shaohua Li7700fc42011-07-12 14:24:56 +02001077 cfqg->ttime.last_end_request = jiffies;
1078
Vivek Goyalb1c35762009-12-03 12:59:47 -05001079 /*
1080 * Take the initial reference that will be released on destroy
1081 * This can be thought of a joint reference by cgroup and
1082 * elevator which will be dropped by either elevator exit
1083 * or cgroup deletion path depending on who is exiting first.
1084 */
Shaohua Li329a6782011-01-07 08:48:28 +01001085 cfqg->ref = 1;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001086
1087 ret = blkio_alloc_blkg_stats(&cfqg->blkg);
1088 if (ret) {
1089 kfree(cfqg);
1090 return NULL;
1091 }
1092
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001093 return cfqg;
1094}
1095
1096static struct cfq_group *
1097cfq_find_cfqg(struct cfq_data *cfqd, struct blkio_cgroup *blkcg)
1098{
1099 struct cfq_group *cfqg = NULL;
1100 void *key = cfqd;
1101 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
1102 unsigned int major, minor;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001103
Vivek Goyal180be2a2010-09-14 08:47:11 +02001104 /*
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001105 * This is the common case when there are no blkio cgroups.
1106 * Avoid lookup in this case
Vivek Goyal180be2a2010-09-14 08:47:11 +02001107 */
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001108 if (blkcg == &blkio_root_cgroup)
1109 cfqg = &cfqd->root_group;
1110 else
1111 cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key));
1112
1113 if (cfqg && !cfqg->blkg.dev && bdi->dev && dev_name(bdi->dev)) {
Vivek Goyal180be2a2010-09-14 08:47:11 +02001114 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001115 cfqg->blkg.dev = MKDEV(major, minor);
1116 }
Vivek Goyal180be2a2010-09-14 08:47:11 +02001117
Vivek Goyal25fb5162009-12-03 12:59:46 -05001118 return cfqg;
1119}
1120
1121/*
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001122 * Search for the cfq group current task belongs to. request_queue lock must
1123 * be held.
Vivek Goyal25fb5162009-12-03 12:59:46 -05001124 */
Tejun Heo0a5a7d02012-03-05 13:15:02 -08001125static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd,
1126 struct blkio_cgroup *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001127{
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001128 struct cfq_group *cfqg = NULL, *__cfqg = NULL;
1129 struct request_queue *q = cfqd->queue;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001130
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001131 cfqg = cfq_find_cfqg(cfqd, blkcg);
Tejun Heo2a7f1242012-03-05 13:15:01 -08001132 if (cfqg)
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001133 return cfqg;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001134
Tejun Heo0a5a7d02012-03-05 13:15:02 -08001135 if (!css_tryget(&blkcg->css))
1136 return NULL;
1137
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001138 /*
1139 * Need to allocate a group. Allocation of group also needs allocation
1140 * of per cpu stats which in-turn takes a mutex() and can block. Hence
1141 * we need to drop rcu lock and queue_lock before we call alloc.
1142 *
1143 * Not taking any queue reference here and assuming that queue is
1144 * around by the time we return. CFQ queue allocation code does
1145 * the same. It might be racy though.
1146 */
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001147 rcu_read_unlock();
1148 spin_unlock_irq(q->queue_lock);
1149
1150 cfqg = cfq_alloc_cfqg(cfqd);
1151
1152 spin_lock_irq(q->queue_lock);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001153 rcu_read_lock();
Tejun Heo0a5a7d02012-03-05 13:15:02 -08001154 css_put(&blkcg->css);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001155
1156 /*
1157 * If some other thread already allocated the group while we were
1158 * not holding queue lock, free up the group
1159 */
1160 __cfqg = cfq_find_cfqg(cfqd, blkcg);
1161
1162 if (__cfqg) {
1163 kfree(cfqg);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001164 return __cfqg;
1165 }
1166
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001167 if (!cfqg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001168 cfqg = &cfqd->root_group;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001169
1170 cfq_init_add_cfqg_lists(cfqd, cfqg, blkcg);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001171 return cfqg;
1172}
1173
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001174static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1175{
Shaohua Li329a6782011-01-07 08:48:28 +01001176 cfqg->ref++;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001177 return cfqg;
1178}
1179
Vivek Goyal25fb5162009-12-03 12:59:46 -05001180static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1181{
1182 /* Currently, all async queues are mapped to root group */
1183 if (!cfq_cfqq_sync(cfqq))
1184 cfqg = &cfqq->cfqd->root_group;
1185
1186 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001187 /* cfqq reference on cfqg */
Shaohua Li329a6782011-01-07 08:48:28 +01001188 cfqq->cfqg->ref++;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001189}
Vivek Goyalb1c35762009-12-03 12:59:47 -05001190
1191static void cfq_put_cfqg(struct cfq_group *cfqg)
1192{
1193 struct cfq_rb_root *st;
1194 int i, j;
1195
Shaohua Li329a6782011-01-07 08:48:28 +01001196 BUG_ON(cfqg->ref <= 0);
1197 cfqg->ref--;
1198 if (cfqg->ref)
Vivek Goyalb1c35762009-12-03 12:59:47 -05001199 return;
1200 for_each_cfqg_st(cfqg, i, j, st)
Gui Jianfengb54ce602010-11-30 20:52:46 +01001201 BUG_ON(!RB_EMPTY_ROOT(&st->rb));
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001202 free_percpu(cfqg->blkg.stats_cpu);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001203 kfree(cfqg);
1204}
1205
1206static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1207{
1208 /* Something wrong if we are trying to remove same group twice */
1209 BUG_ON(hlist_unhashed(&cfqg->cfqd_node));
1210
1211 hlist_del_init(&cfqg->cfqd_node);
1212
Vivek Goyala5395b82011-08-02 09:24:09 +02001213 BUG_ON(cfqd->nr_blkcg_linked_grps <= 0);
1214 cfqd->nr_blkcg_linked_grps--;
1215
Vivek Goyalb1c35762009-12-03 12:59:47 -05001216 /*
1217 * Put the reference taken at the time of creation so that when all
1218 * queues are gone, group can be destroyed.
1219 */
1220 cfq_put_cfqg(cfqg);
1221}
1222
Tejun Heo72e06c22012-03-05 13:15:00 -08001223static bool cfq_release_cfq_groups(struct cfq_data *cfqd)
Vivek Goyalb1c35762009-12-03 12:59:47 -05001224{
1225 struct hlist_node *pos, *n;
1226 struct cfq_group *cfqg;
Tejun Heo72e06c22012-03-05 13:15:00 -08001227 bool empty = true;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001228
1229 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1230 /*
1231 * If cgroup removal path got to blk_group first and removed
1232 * it from cgroup list, then it will take care of destroying
1233 * cfqg also.
1234 */
Vivek Goyale98ef892010-06-18 10:39:47 -04001235 if (!cfq_blkiocg_del_blkio_group(&cfqg->blkg))
Vivek Goyalb1c35762009-12-03 12:59:47 -05001236 cfq_destroy_cfqg(cfqd, cfqg);
Tejun Heo72e06c22012-03-05 13:15:00 -08001237 else
1238 empty = false;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001239 }
Tejun Heo72e06c22012-03-05 13:15:00 -08001240 return empty;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001241}
1242
1243/*
1244 * Blk cgroup controller notification saying that blkio_group object is being
1245 * delinked as associated cgroup object is going away. That also means that
1246 * no new IO will come in this group. So get rid of this group as soon as
1247 * any pending IO in the group is finished.
1248 *
1249 * This function is called under rcu_read_lock(). key is the rcu protected
1250 * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu
1251 * read lock.
1252 *
1253 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
1254 * it should not be NULL as even if elevator was exiting, cgroup deltion
1255 * path got to it first.
1256 */
Paul Bolle8aea4542011-06-06 05:07:54 +02001257static void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
Vivek Goyalb1c35762009-12-03 12:59:47 -05001258{
1259 unsigned long flags;
1260 struct cfq_data *cfqd = key;
1261
1262 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1263 cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg));
1264 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1265}
1266
Tejun Heo72e06c22012-03-05 13:15:00 -08001267static struct elevator_type iosched_cfq;
1268
1269static bool cfq_clear_queue(struct request_queue *q)
1270{
1271 lockdep_assert_held(q->queue_lock);
1272
1273 /* shoot down blkgs iff the current elevator is cfq */
1274 if (!q->elevator || q->elevator->type != &iosched_cfq)
1275 return true;
1276
1277 return cfq_release_cfq_groups(q->elevator->elevator_data);
1278}
1279
Vivek Goyal25fb5162009-12-03 12:59:46 -05001280#else /* GROUP_IOSCHED */
Tejun Heo0a5a7d02012-03-05 13:15:02 -08001281static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd,
1282 struct blkio_cgroup *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001283{
1284 return &cfqd->root_group;
1285}
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001286
1287static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1288{
Dmitry Monakhov50eaeb32010-04-28 19:50:33 +02001289 return cfqg;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001290}
1291
Vivek Goyal25fb5162009-12-03 12:59:46 -05001292static inline void
1293cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1294 cfqq->cfqg = cfqg;
1295}
1296
Vivek Goyalb1c35762009-12-03 12:59:47 -05001297static void cfq_release_cfq_groups(struct cfq_data *cfqd) {}
1298static inline void cfq_put_cfqg(struct cfq_group *cfqg) {}
1299
Vivek Goyal25fb5162009-12-03 12:59:46 -05001300#endif /* GROUP_IOSCHED */
1301
Jens Axboe498d3aa22007-04-26 12:54:48 +02001302/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001303 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +02001304 * requests waiting to be processed. It is sorted in the order that
1305 * we will service the queues.
1306 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001307static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001308 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02001309{
Jens Axboe08717142008-01-28 11:38:15 +01001310 struct rb_node **p, *parent;
1311 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001312 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001313 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +02001314 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001315 int new_cfqq = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05001316
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001317 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
Vivek Goyal65b32a52009-12-16 17:52:59 -05001318 cfqq_type(cfqq));
Jens Axboe08717142008-01-28 11:38:15 +01001319 if (cfq_class_idle(cfqq)) {
1320 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001321 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +01001322 if (parent && parent != &cfqq->rb_node) {
1323 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1324 rb_key += __cfqq->rb_key;
1325 } else
1326 rb_key += jiffies;
1327 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02001328 /*
1329 * Get our rb key offset. Subtract any residual slice
1330 * value carried from last service. A negative resid
1331 * count indicates slice overrun, and this should position
1332 * the next service time further away in the tree.
1333 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001334 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02001335 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02001336 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001337 } else {
1338 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001339 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001340 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1341 }
Jens Axboed9e76202007-04-20 14:27:50 +02001342
1343 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05001344 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01001345 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001346 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01001347 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001348 if (rb_key == cfqq->rb_key &&
1349 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +02001350 return;
Jens Axboe53b037442006-07-28 09:48:51 +02001351
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001352 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1353 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001354 }
Jens Axboed9e76202007-04-20 14:27:50 +02001355
Jens Axboe498d3aa22007-04-26 12:54:48 +02001356 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01001357 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001358 cfqq->service_tree = service_tree;
1359 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02001360 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +02001361 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +02001362
Jens Axboed9e76202007-04-20 14:27:50 +02001363 parent = *p;
1364 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1365
Jens Axboe0c534e02007-04-18 20:01:57 +02001366 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001367 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02001368 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001369 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +02001370 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001371 else {
Jens Axboe67060e32007-04-18 20:13:32 +02001372 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02001373 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001374 }
Jens Axboe67060e32007-04-18 20:13:32 +02001375
1376 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +02001377 }
1378
Jens Axboecc09e292007-04-26 12:53:50 +02001379 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001380 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02001381
Jens Axboed9e76202007-04-20 14:27:50 +02001382 cfqq->rb_key = rb_key;
1383 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001384 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1385 service_tree->count++;
Namhyung Kim20359f22011-05-24 10:23:22 +02001386 if (add_front || !new_cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001387 return;
Justin TerAvest8184f932011-03-17 16:12:36 +01001388 cfq_group_notify_queue_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
Jens Axboea36e71f2009-04-15 12:15:11 +02001391static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001392cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1393 sector_t sector, struct rb_node **ret_parent,
1394 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02001395{
Jens Axboea36e71f2009-04-15 12:15:11 +02001396 struct rb_node **p, *parent;
1397 struct cfq_queue *cfqq = NULL;
1398
1399 parent = NULL;
1400 p = &root->rb_node;
1401 while (*p) {
1402 struct rb_node **n;
1403
1404 parent = *p;
1405 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1406
1407 /*
1408 * Sort strictly based on sector. Smallest to the left,
1409 * largest to the right.
1410 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001411 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001412 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001413 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001414 n = &(*p)->rb_left;
1415 else
1416 break;
1417 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001418 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001419 }
1420
1421 *ret_parent = parent;
1422 if (rb_link)
1423 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001424 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001425}
1426
1427static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1428{
Jens Axboea36e71f2009-04-15 12:15:11 +02001429 struct rb_node **p, *parent;
1430 struct cfq_queue *__cfqq;
1431
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001432 if (cfqq->p_root) {
1433 rb_erase(&cfqq->p_node, cfqq->p_root);
1434 cfqq->p_root = NULL;
1435 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001436
1437 if (cfq_class_idle(cfqq))
1438 return;
1439 if (!cfqq->next_rq)
1440 return;
1441
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001442 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001443 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1444 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001445 if (!__cfqq) {
1446 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001447 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1448 } else
1449 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001450}
1451
Jens Axboe498d3aa22007-04-26 12:54:48 +02001452/*
1453 * Update cfqq's position in the service tree.
1454 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001455static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001456{
Jens Axboe6d048f52007-04-25 12:44:27 +02001457 /*
1458 * Resorting requires the cfqq to be on the RR list already.
1459 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001460 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001461 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001462 cfq_prio_tree_add(cfqd, cfqq);
1463 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001464}
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466/*
1467 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001468 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 */
Jens Axboefebffd62008-01-28 13:19:43 +01001470static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Jens Axboe7b679132008-05-30 12:23:07 +02001472 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001473 BUG_ON(cfq_cfqq_on_rr(cfqq));
1474 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 cfqd->busy_queues++;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001476 if (cfq_cfqq_sync(cfqq))
1477 cfqd->busy_sync_queues++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Jens Axboeedd75ff2007-04-19 12:03:34 +02001479 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Jens Axboe498d3aa22007-04-26 12:54:48 +02001482/*
1483 * Called when the cfqq no longer has requests pending, remove it from
1484 * the service tree.
1485 */
Jens Axboefebffd62008-01-28 13:19:43 +01001486static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Jens Axboe7b679132008-05-30 12:23:07 +02001488 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001489 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1490 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001492 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1493 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1494 cfqq->service_tree = NULL;
1495 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001496 if (cfqq->p_root) {
1497 rb_erase(&cfqq->p_node, cfqq->p_root);
1498 cfqq->p_root = NULL;
1499 }
Jens Axboed9e76202007-04-20 14:27:50 +02001500
Justin TerAvest8184f932011-03-17 16:12:36 +01001501 cfq_group_notify_queue_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 BUG_ON(!cfqd->busy_queues);
1503 cfqd->busy_queues--;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001504 if (cfq_cfqq_sync(cfqq))
1505 cfqd->busy_sync_queues--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
1508/*
1509 * rb tree support functions
1510 */
Jens Axboefebffd62008-01-28 13:19:43 +01001511static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Jens Axboe5e705372006-07-13 12:39:25 +02001513 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001514 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Jens Axboeb4878f22005-10-20 16:42:29 +02001516 BUG_ON(!cfqq->queued[sync]);
1517 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Jens Axboe5e705372006-07-13 12:39:25 +02001519 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Vivek Goyalf04a6422009-12-03 12:59:40 -05001521 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1522 /*
1523 * Queue will be deleted from service tree when we actually
1524 * expire it later. Right now just remove it from prio tree
1525 * as it is empty.
1526 */
1527 if (cfqq->p_root) {
1528 rb_erase(&cfqq->p_node, cfqq->p_root);
1529 cfqq->p_root = NULL;
1530 }
1531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Jens Axboe5e705372006-07-13 12:39:25 +02001534static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
Jens Axboe5e705372006-07-13 12:39:25 +02001536 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 struct cfq_data *cfqd = cfqq->cfqd;
Jeff Moyer796d5112011-06-02 21:19:05 +02001538 struct request *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Jens Axboe5380a102006-07-13 12:37:56 +02001540 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Jeff Moyer796d5112011-06-02 21:19:05 +02001542 elv_rb_add(&cfqq->sort_list, rq);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001543
1544 if (!cfq_cfqq_on_rr(cfqq))
1545 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001546
1547 /*
1548 * check if this request is a better next-serve candidate
1549 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001550 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001551 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001552
1553 /*
1554 * adjust priority tree position, if ->next_rq changes
1555 */
1556 if (prev != cfqq->next_rq)
1557 cfq_prio_tree_add(cfqd, cfqq);
1558
Jens Axboe5044eed2007-04-25 11:53:48 +02001559 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Jens Axboefebffd62008-01-28 13:19:43 +01001562static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Jens Axboe5380a102006-07-13 12:37:56 +02001564 elv_rb_del(&cfqq->sort_list, rq);
1565 cfqq->queued[rq_is_sync(rq)]--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001566 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1567 rq_data_dir(rq), rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02001568 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04001569 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001570 &cfqq->cfqd->serving_group->blkg, rq_data_dir(rq),
1571 rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Jens Axboe206dc692006-03-28 13:03:44 +02001574static struct request *
1575cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
Jens Axboe206dc692006-03-28 13:03:44 +02001577 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01001578 struct cfq_io_cq *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001579 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Jens Axboe4ac845a2008-01-24 08:44:49 +01001581 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001582 if (!cic)
1583 return NULL;
1584
1585 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001586 if (cfqq) {
1587 sector_t sector = bio->bi_sector + bio_sectors(bio);
1588
Jens Axboe21183b02006-07-13 12:33:14 +02001589 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return NULL;
1593}
1594
Jens Axboe165125e2007-07-24 09:28:11 +02001595static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001596{
1597 struct cfq_data *cfqd = q->elevator->elevator_data;
1598
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001599 cfqd->rq_in_driver++;
Jens Axboe7b679132008-05-30 12:23:07 +02001600 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001601 cfqd->rq_in_driver);
Jens Axboe25776e32006-06-01 10:12:26 +02001602
Tejun Heo5b936292009-05-07 22:24:38 +09001603 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001604}
1605
Jens Axboe165125e2007-07-24 09:28:11 +02001606static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
Jens Axboe22e2c502005-06-27 10:55:12 +02001608 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001610 WARN_ON(!cfqd->rq_in_driver);
1611 cfqd->rq_in_driver--;
Jens Axboe7b679132008-05-30 12:23:07 +02001612 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001613 cfqd->rq_in_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
Jens Axboeb4878f22005-10-20 16:42:29 +02001616static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
Jens Axboe5e705372006-07-13 12:39:25 +02001618 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001619
Jens Axboe5e705372006-07-13 12:39:25 +02001620 if (cfqq->next_rq == rq)
1621 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Jens Axboeb4878f22005-10-20 16:42:29 +02001623 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001624 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001625
Aaron Carroll45333d52008-08-26 15:52:36 +02001626 cfqq->cfqd->rq_queued--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001627 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1628 rq_data_dir(rq), rq_is_sync(rq));
Christoph Hellwig65299a32011-08-23 14:50:29 +02001629 if (rq->cmd_flags & REQ_PRIO) {
1630 WARN_ON(!cfqq->prio_pending);
1631 cfqq->prio_pending--;
Jens Axboeb53d1ed2011-08-19 08:34:48 +02001632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
Jens Axboe165125e2007-07-24 09:28:11 +02001635static int cfq_merge(struct request_queue *q, struct request **req,
1636 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
1638 struct cfq_data *cfqd = q->elevator->elevator_data;
1639 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Jens Axboe206dc692006-03-28 13:03:44 +02001641 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001642 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001643 *req = __rq;
1644 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646
1647 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
Jens Axboe165125e2007-07-24 09:28:11 +02001650static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001651 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
Jens Axboe21183b02006-07-13 12:33:14 +02001653 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001654 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Jens Axboe5e705372006-07-13 12:39:25 +02001656 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
Divyesh Shah812d4022010-04-08 21:14:23 -07001660static void cfq_bio_merged(struct request_queue *q, struct request *req,
1661 struct bio *bio)
1662{
Vivek Goyale98ef892010-06-18 10:39:47 -04001663 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(req))->blkg,
1664 bio_data_dir(bio), cfq_bio_sync(bio));
Divyesh Shah812d4022010-04-08 21:14:23 -07001665}
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667static void
Jens Axboe165125e2007-07-24 09:28:11 +02001668cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 struct request *next)
1670{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001671 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Shaohua Li4a0b75c2011-12-16 14:00:22 +01001672 struct cfq_data *cfqd = q->elevator->elevator_data;
1673
Jens Axboe22e2c502005-06-27 10:55:12 +02001674 /*
1675 * reposition in fifo if next is older than rq
1676 */
1677 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001678 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001679 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001680 rq_set_fifo_time(rq, rq_fifo_time(next));
1681 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001682
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001683 if (cfqq->next_rq == next)
1684 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001685 cfq_remove_request(next);
Vivek Goyale98ef892010-06-18 10:39:47 -04001686 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(rq))->blkg,
1687 rq_data_dir(next), rq_is_sync(next));
Shaohua Li4a0b75c2011-12-16 14:00:22 +01001688
1689 cfqq = RQ_CFQQ(next);
1690 /*
1691 * all requests of this queue are merged to other queues, delete it
1692 * from the service tree. If it's the active_queue,
1693 * cfq_dispatch_requests() will choose to expire it or do idle
1694 */
1695 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list) &&
1696 cfqq != cfqd->active_queue)
1697 cfq_del_cfqq_rr(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001698}
1699
Jens Axboe165125e2007-07-24 09:28:11 +02001700static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001701 struct bio *bio)
1702{
1703 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heoc5869802011-12-14 00:33:41 +01001704 struct cfq_io_cq *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001705 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001706
1707 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001708 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001709 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001710 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001711 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001712
1713 /*
Tejun Heof1a4f4d2011-12-14 00:33:39 +01001714 * Lookup the cfqq that this bio will be queued with and allow
Tejun Heo07c2bd32012-02-08 09:19:42 +01001715 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +01001716 */
Tejun Heo07c2bd32012-02-08 09:19:42 +01001717 cic = cfq_cic_lookup(cfqd, current->io_context);
1718 if (!cic)
1719 return false;
Jens Axboe719d3402006-12-22 09:38:53 +01001720
Vasily Tarasov91fac312007-04-25 12:29:51 +02001721 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001722 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001723}
1724
Divyesh Shah812df482010-04-08 21:15:35 -07001725static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1726{
1727 del_timer(&cfqd->idle_slice_timer);
Vivek Goyale98ef892010-06-18 10:39:47 -04001728 cfq_blkiocg_update_idle_time_stats(&cfqq->cfqg->blkg);
Divyesh Shah812df482010-04-08 21:15:35 -07001729}
1730
Jens Axboefebffd62008-01-28 13:19:43 +01001731static void __cfq_set_active_queue(struct cfq_data *cfqd,
1732 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001733{
1734 if (cfqq) {
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001735 cfq_log_cfqq(cfqd, cfqq, "set_active wl_prio:%d wl_type:%d",
1736 cfqd->serving_prio, cfqd->serving_type);
Justin TerAvest62a37f62011-03-23 08:25:44 +01001737 cfq_blkiocg_update_avg_queue_size_stats(&cfqq->cfqg->blkg);
1738 cfqq->slice_start = 0;
1739 cfqq->dispatch_start = jiffies;
1740 cfqq->allocated_slice = 0;
1741 cfqq->slice_end = 0;
1742 cfqq->slice_dispatch = 0;
1743 cfqq->nr_sectors = 0;
1744
1745 cfq_clear_cfqq_wait_request(cfqq);
1746 cfq_clear_cfqq_must_dispatch(cfqq);
1747 cfq_clear_cfqq_must_alloc_slice(cfqq);
1748 cfq_clear_cfqq_fifo_expire(cfqq);
1749 cfq_mark_cfqq_slice_new(cfqq);
1750
1751 cfq_del_timer(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001752 }
1753
1754 cfqd->active_queue = cfqq;
1755}
1756
1757/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001758 * current cfqq expired its slice (or was too idle), select new one
1759 */
1760static void
1761__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Vivek Goyale5ff0822010-04-26 19:25:11 +02001762 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001763{
Jens Axboe7b679132008-05-30 12:23:07 +02001764 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1765
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001766 if (cfq_cfqq_wait_request(cfqq))
Divyesh Shah812df482010-04-08 21:15:35 -07001767 cfq_del_timer(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001768
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001769 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05001770 cfq_clear_cfqq_wait_busy(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001771
1772 /*
Shaohua Liae54abe2010-02-05 13:11:45 +01001773 * If this cfqq is shared between multiple processes, check to
1774 * make sure that those processes are still issuing I/Os within
1775 * the mean seek distance. If not, it may be time to break the
1776 * queues apart again.
1777 */
1778 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
1779 cfq_mark_cfqq_split_coop(cfqq);
1780
1781 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001782 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001783 */
Shaohua Lic553f8e2011-01-14 08:41:03 +01001784 if (timed_out) {
1785 if (cfq_cfqq_slice_new(cfqq))
Vivek Goyalba5bd522011-01-19 08:25:02 -07001786 cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +01001787 else
1788 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001789 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1790 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001791
Vivek Goyale5ff0822010-04-26 19:25:11 +02001792 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001793
Vivek Goyalf04a6422009-12-03 12:59:40 -05001794 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1795 cfq_del_cfqq_rr(cfqd, cfqq);
1796
Jens Axboeedd75ff2007-04-19 12:03:34 +02001797 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001798
1799 if (cfqq == cfqd->active_queue)
1800 cfqd->active_queue = NULL;
1801
1802 if (cfqd->active_cic) {
Tejun Heo11a31222012-02-07 07:51:30 +01001803 put_io_context(cfqd->active_cic->icq.ioc);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001804 cfqd->active_cic = NULL;
1805 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001806}
1807
Vivek Goyale5ff0822010-04-26 19:25:11 +02001808static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001809{
1810 struct cfq_queue *cfqq = cfqd->active_queue;
1811
1812 if (cfqq)
Vivek Goyale5ff0822010-04-26 19:25:11 +02001813 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001814}
1815
Jens Axboe498d3aa22007-04-26 12:54:48 +02001816/*
1817 * Get next queue for service. Unless we have a queue preemption,
1818 * we'll simply select the first cfqq in the service tree.
1819 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001820static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001821{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001822 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001823 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -05001824 cfqd->serving_type);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001825
Vivek Goyalf04a6422009-12-03 12:59:40 -05001826 if (!cfqd->rq_queued)
1827 return NULL;
1828
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001829 /* There is nothing to dispatch */
1830 if (!service_tree)
1831 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001832 if (RB_EMPTY_ROOT(&service_tree->rb))
1833 return NULL;
1834 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001835}
1836
Vivek Goyalf04a6422009-12-03 12:59:40 -05001837static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1838{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001839 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05001840 struct cfq_queue *cfqq;
1841 int i, j;
1842 struct cfq_rb_root *st;
1843
1844 if (!cfqd->rq_queued)
1845 return NULL;
1846
Vivek Goyal25fb5162009-12-03 12:59:46 -05001847 cfqg = cfq_get_next_cfqg(cfqd);
1848 if (!cfqg)
1849 return NULL;
1850
Vivek Goyalf04a6422009-12-03 12:59:40 -05001851 for_each_cfqg_st(cfqg, i, j, st)
1852 if ((cfqq = cfq_rb_first(st)) != NULL)
1853 return cfqq;
1854 return NULL;
1855}
1856
Jens Axboe498d3aa22007-04-26 12:54:48 +02001857/*
1858 * Get and set a new active queue for service.
1859 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001860static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1861 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001862{
Jens Axboee00ef792009-11-04 08:54:55 +01001863 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001864 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001865
Jens Axboe22e2c502005-06-27 10:55:12 +02001866 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001867 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001868}
1869
Jens Axboed9e76202007-04-20 14:27:50 +02001870static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1871 struct request *rq)
1872{
Tejun Heo83096eb2009-05-07 22:24:39 +09001873 if (blk_rq_pos(rq) >= cfqd->last_position)
1874 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001875 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001876 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001877}
1878
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001879static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Shaohua Lie9ce3352010-03-19 08:03:04 +01001880 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001881{
Shaohua Lie9ce3352010-03-19 08:03:04 +01001882 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001883}
1884
Jens Axboea36e71f2009-04-15 12:15:11 +02001885static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1886 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001887{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001888 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001889 struct rb_node *parent, *node;
1890 struct cfq_queue *__cfqq;
1891 sector_t sector = cfqd->last_position;
1892
1893 if (RB_EMPTY_ROOT(root))
1894 return NULL;
1895
1896 /*
1897 * First, if we find a request starting at the end of the last
1898 * request, choose it.
1899 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001900 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001901 if (__cfqq)
1902 return __cfqq;
1903
1904 /*
1905 * If the exact sector wasn't found, the parent of the NULL leaf
1906 * will contain the closest sector.
1907 */
1908 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001909 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001910 return __cfqq;
1911
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001912 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001913 node = rb_next(&__cfqq->p_node);
1914 else
1915 node = rb_prev(&__cfqq->p_node);
1916 if (!node)
1917 return NULL;
1918
1919 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001920 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001921 return __cfqq;
1922
1923 return NULL;
1924}
1925
1926/*
1927 * cfqd - obvious
1928 * cur_cfqq - passed in so that we don't decide that the current queue is
1929 * closely cooperating with itself.
1930 *
1931 * So, basically we're assuming that that cur_cfqq has dispatched at least
1932 * one request, and that cfqd->last_position reflects a position on the disk
1933 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1934 * assumption.
1935 */
1936static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001937 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001938{
1939 struct cfq_queue *cfqq;
1940
Divyesh Shah39c01b22010-03-25 15:45:57 +01001941 if (cfq_class_idle(cur_cfqq))
1942 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001943 if (!cfq_cfqq_sync(cur_cfqq))
1944 return NULL;
1945 if (CFQQ_SEEKY(cur_cfqq))
1946 return NULL;
1947
Jens Axboea36e71f2009-04-15 12:15:11 +02001948 /*
Gui Jianfengb9d8f4c2009-12-08 08:54:17 +01001949 * Don't search priority tree if it's the only queue in the group.
1950 */
1951 if (cur_cfqq->cfqg->nr_cfqq == 1)
1952 return NULL;
1953
1954 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001955 * We should notice if some of the queues are cooperating, eg
1956 * working closely on the same area of the disk. In that case,
1957 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001958 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001959 cfqq = cfqq_close(cfqd, cur_cfqq);
1960 if (!cfqq)
1961 return NULL;
1962
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001963 /* If new queue belongs to different cfq_group, don't choose it */
1964 if (cur_cfqq->cfqg != cfqq->cfqg)
1965 return NULL;
1966
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001967 /*
1968 * It only makes sense to merge sync queues.
1969 */
1970 if (!cfq_cfqq_sync(cfqq))
1971 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001972 if (CFQQ_SEEKY(cfqq))
1973 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001974
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001975 /*
1976 * Do not merge queues of different priority classes
1977 */
1978 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1979 return NULL;
1980
Jens Axboea36e71f2009-04-15 12:15:11 +02001981 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001982}
1983
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001984/*
1985 * Determine whether we should enforce idle window for this queue.
1986 */
1987
1988static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1989{
1990 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001991 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001992
Vivek Goyalf04a6422009-12-03 12:59:40 -05001993 BUG_ON(!service_tree);
1994 BUG_ON(!service_tree->count);
1995
Vivek Goyalb6508c12010-08-23 12:23:33 +02001996 if (!cfqd->cfq_slice_idle)
1997 return false;
1998
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001999 /* We never do for idle class queues. */
2000 if (prio == IDLE_WORKLOAD)
2001 return false;
2002
2003 /* We do for queues that were marked with idle window flag. */
Shaohua Li3c764b72009-12-04 13:12:06 +01002004 if (cfq_cfqq_idle_window(cfqq) &&
2005 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002006 return true;
2007
2008 /*
2009 * Otherwise, we do only if they are the last ones
2010 * in their service tree.
2011 */
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02002012 if (service_tree->count == 1 && cfq_cfqq_sync(cfqq) &&
2013 !cfq_io_thinktime_big(cfqd, &service_tree->ttime, false))
Shaohua Lic1e44752010-11-08 15:01:02 +01002014 return true;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002015 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d",
2016 service_tree->count);
Shaohua Lic1e44752010-11-08 15:01:02 +01002017 return false;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002018}
2019
Jens Axboe6d048f52007-04-25 12:44:27 +02002020static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002021{
Jens Axboe17926692007-01-19 11:59:30 +11002022 struct cfq_queue *cfqq = cfqd->active_queue;
Tejun Heoc5869802011-12-14 00:33:41 +01002023 struct cfq_io_cq *cic;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002024 unsigned long sl, group_idle = 0;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002025
Jens Axboea68bbddba2008-09-24 13:03:33 +02002026 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002027 * SSD device without seek penalty, disable idling. But only do so
2028 * for devices that support queuing, otherwise we still have a problem
2029 * with sync vs async workloads.
Jens Axboea68bbddba2008-09-24 13:03:33 +02002030 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002031 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbddba2008-09-24 13:03:33 +02002032 return;
2033
Jens Axboedd67d052006-06-21 09:36:18 +02002034 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02002035 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02002036
2037 /*
2038 * idle is disabled, either manually or by past process history
2039 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002040 if (!cfq_should_idle(cfqd, cfqq)) {
2041 /* no queue idling. Check for group idling */
2042 if (cfqd->cfq_group_idle)
2043 group_idle = cfqd->cfq_group_idle;
2044 else
2045 return;
2046 }
Jens Axboe6d048f52007-04-25 12:44:27 +02002047
Jens Axboe22e2c502005-06-27 10:55:12 +02002048 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002049 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02002050 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002051 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02002052 return;
2053
2054 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02002055 * task has exited, don't wait
2056 */
Jens Axboe206dc692006-03-28 13:03:44 +02002057 cic = cfqd->active_cic;
Tejun Heoc5869802011-12-14 00:33:41 +01002058 if (!cic || !atomic_read(&cic->icq.ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02002059 return;
2060
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002061 /*
2062 * If our average think time is larger than the remaining time
2063 * slice, then don't idle. This avoids overrunning the allotted
2064 * time slice.
2065 */
Shaohua Li383cd722011-07-12 14:24:35 +02002066 if (sample_valid(cic->ttime.ttime_samples) &&
2067 (cfqq->slice_end - jiffies < cic->ttime.ttime_mean)) {
Joe Perchesfd16d262011-06-13 10:42:49 +02002068 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%lu",
Shaohua Li383cd722011-07-12 14:24:35 +02002069 cic->ttime.ttime_mean);
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002070 return;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002071 }
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002072
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002073 /* There are other queues in the group, don't do group idle */
2074 if (group_idle && cfqq->cfqg->nr_cfqq > 1)
2075 return;
2076
Jens Axboe3b181522005-06-27 10:56:24 +02002077 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002078
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002079 if (group_idle)
2080 sl = cfqd->cfq_group_idle;
2081 else
2082 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02002083
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002084 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04002085 cfq_blkiocg_update_set_idle_time_stats(&cfqq->cfqg->blkg);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002086 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu group_idle: %d", sl,
2087 group_idle ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088}
2089
Jens Axboe498d3aa22007-04-26 12:54:48 +02002090/*
2091 * Move request from internal lists to the request queue dispatch list.
2092 */
Jens Axboe165125e2007-07-24 09:28:11 +02002093static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Jens Axboe3ed9a292007-04-23 08:33:33 +02002095 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02002096 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002097
Jens Axboe7b679132008-05-30 12:23:07 +02002098 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
2099
Jeff Moyer06d21882009-09-11 17:08:59 +02002100 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02002101 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002102 cfqq->dispatched++;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002103 (RQ_CFQG(rq))->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02002104 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02002105
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002106 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
Vivek Goyalc4e78932010-08-23 12:25:03 +02002107 cfqq->nr_sectors += blk_rq_sectors(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04002108 cfq_blkiocg_update_dispatch_stats(&cfqq->cfqg->blkg, blk_rq_bytes(rq),
Divyesh Shah84c124d2010-04-09 08:31:19 +02002109 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110}
2111
2112/*
2113 * return expired entry, or NULL to just start from scratch in rbtree
2114 */
Jens Axboefebffd62008-01-28 13:19:43 +01002115static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
Jens Axboe30996f42009-10-05 11:03:39 +02002117 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Jens Axboe3b181522005-06-27 10:56:24 +02002119 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11002121
2122 cfq_mark_cfqq_fifo_expire(cfqq);
2123
Jens Axboe89850f72006-07-22 16:48:31 +02002124 if (list_empty(&cfqq->fifo))
2125 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Jens Axboe89850f72006-07-22 16:48:31 +02002127 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02002128 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02002129 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Jens Axboe30996f42009-10-05 11:03:39 +02002131 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002132 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
2134
Jens Axboe22e2c502005-06-27 10:55:12 +02002135static inline int
2136cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2137{
2138 const int base_rq = cfqd->cfq_slice_async_rq;
2139
2140 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
2141
Namhyung Kimb9f8ce02011-05-24 10:23:21 +02002142 return 2 * base_rq * (IOPRIO_BE_NR - cfqq->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002143}
2144
2145/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002146 * Must be called with the queue_lock held.
2147 */
2148static int cfqq_process_refs(struct cfq_queue *cfqq)
2149{
2150 int process_refs, io_refs;
2151
2152 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
Shaohua Li30d7b942011-01-07 08:46:59 +01002153 process_refs = cfqq->ref - io_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002154 BUG_ON(process_refs < 0);
2155 return process_refs;
2156}
2157
2158static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
2159{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002160 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002161 struct cfq_queue *__cfqq;
2162
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002163 /*
2164 * If there are no process references on the new_cfqq, then it is
2165 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
2166 * chain may have dropped their last reference (not just their
2167 * last process reference).
2168 */
2169 if (!cfqq_process_refs(new_cfqq))
2170 return;
2171
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002172 /* Avoid a circular list and skip interim queue merges */
2173 while ((__cfqq = new_cfqq->new_cfqq)) {
2174 if (__cfqq == cfqq)
2175 return;
2176 new_cfqq = __cfqq;
2177 }
2178
2179 process_refs = cfqq_process_refs(cfqq);
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002180 new_process_refs = cfqq_process_refs(new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002181 /*
2182 * If the process for the cfqq has gone away, there is no
2183 * sense in merging the queues.
2184 */
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002185 if (process_refs == 0 || new_process_refs == 0)
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002186 return;
2187
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002188 /*
2189 * Merge in the direction of the lesser amount of work.
2190 */
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002191 if (new_process_refs >= process_refs) {
2192 cfqq->new_cfqq = new_cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002193 new_cfqq->ref += process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002194 } else {
2195 new_cfqq->new_cfqq = cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002196 cfqq->ref += new_process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002197 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002198}
2199
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002200static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
Vivek Goyal65b32a52009-12-16 17:52:59 -05002201 struct cfq_group *cfqg, enum wl_prio_t prio)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002202{
2203 struct cfq_queue *queue;
2204 int i;
2205 bool key_valid = false;
2206 unsigned long lowest_key = 0;
2207 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2208
Vivek Goyal65b32a52009-12-16 17:52:59 -05002209 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2210 /* select the one with lowest rb_key */
2211 queue = cfq_rb_first(service_tree_for(cfqg, prio, i));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002212 if (queue &&
2213 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2214 lowest_key = queue->rb_key;
2215 cur_best = i;
2216 key_valid = true;
2217 }
2218 }
2219
2220 return cur_best;
2221}
2222
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002223static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002224{
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002225 unsigned slice;
2226 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002227 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002228 unsigned group_slice;
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002229 enum wl_prio_t original_prio = cfqd->serving_prio;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002230
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002231 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002232 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002233 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002234 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002235 cfqd->serving_prio = BE_WORKLOAD;
2236 else {
2237 cfqd->serving_prio = IDLE_WORKLOAD;
2238 cfqd->workload_expires = jiffies + 1;
2239 return;
2240 }
2241
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002242 if (original_prio != cfqd->serving_prio)
2243 goto new_workload;
2244
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002245 /*
2246 * For RT and BE, we have to choose also the type
2247 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2248 * expiration time
2249 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002250 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002251 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002252
2253 /*
Vivek Goyal65b32a52009-12-16 17:52:59 -05002254 * check workload expiration, and that we still have other queues ready
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002255 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002256 if (count && !time_after(jiffies, cfqd->workload_expires))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002257 return;
2258
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002259new_workload:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002260 /* otherwise select new workload type */
2261 cfqd->serving_type =
Vivek Goyal65b32a52009-12-16 17:52:59 -05002262 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio);
2263 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002264 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002265
2266 /*
2267 * the workload slice is computed as a fraction of target latency
2268 * proportional to the number of queues in that workload, over
2269 * all the queues in the same priority class
2270 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002271 group_slice = cfq_group_slice(cfqd, cfqg);
2272
2273 slice = group_slice * count /
2274 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2275 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002276
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002277 if (cfqd->serving_type == ASYNC_WORKLOAD) {
2278 unsigned int tmp;
2279
2280 /*
2281 * Async queues are currently system wide. Just taking
2282 * proportion of queues with-in same group will lead to higher
2283 * async ratio system wide as generally root group is going
2284 * to have higher weight. A more accurate thing would be to
2285 * calculate system wide asnc/sync ratio.
2286 */
2287 tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg);
2288 tmp = tmp/cfqd->busy_queues;
2289 slice = min_t(unsigned, slice, tmp);
2290
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002291 /* async workload slice is scaled down according to
2292 * the sync/async slice ratio. */
2293 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002294 } else
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002295 /* sync workload slice is at least 2 * cfq_slice_idle */
2296 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2297
2298 slice = max_t(unsigned, slice, CFQ_MIN_TT);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002299 cfq_log(cfqd, "workload slice:%d", slice);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002300 cfqd->workload_expires = jiffies + slice;
2301}
2302
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002303static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2304{
2305 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002306 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002307
2308 if (RB_EMPTY_ROOT(&st->rb))
2309 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002310 cfqg = cfq_rb_first_group(st);
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002311 update_min_vdisktime(st);
2312 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002313}
2314
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002315static void cfq_choose_cfqg(struct cfq_data *cfqd)
2316{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002317 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2318
2319 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002320
2321 /* Restore the workload type data */
2322 if (cfqg->saved_workload_slice) {
2323 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2324 cfqd->serving_type = cfqg->saved_workload;
2325 cfqd->serving_prio = cfqg->saved_serving_prio;
Gui Jianfeng66ae2912009-12-15 10:08:45 +01002326 } else
2327 cfqd->workload_expires = jiffies - 1;
2328
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002329 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002330}
2331
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002332/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02002333 * Select a queue for service. If we have a current active queue,
2334 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02002335 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002336static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002337{
Jens Axboea36e71f2009-04-15 12:15:11 +02002338 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002339
2340 cfqq = cfqd->active_queue;
2341 if (!cfqq)
2342 goto new_queue;
2343
Vivek Goyalf04a6422009-12-03 12:59:40 -05002344 if (!cfqd->rq_queued)
2345 return NULL;
Vivek Goyalc244bb52009-12-08 17:52:57 -05002346
2347 /*
2348 * We were waiting for group to get backlogged. Expire the queue
2349 */
2350 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2351 goto expire;
2352
Jens Axboe22e2c502005-06-27 10:55:12 +02002353 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002354 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02002355 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05002356 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2357 /*
2358 * If slice had not expired at the completion of last request
2359 * we might not have turned on wait_busy flag. Don't expire
2360 * the queue yet. Allow the group to get backlogged.
2361 *
2362 * The very fact that we have used the slice, that means we
2363 * have been idling all along on this queue and it should be
2364 * ok to wait for this request to complete.
2365 */
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002366 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2367 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2368 cfqq = NULL;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002369 goto keep_queue;
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002370 } else
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002371 goto check_group_idle;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002372 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002373
2374 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002375 * The active queue has requests and isn't expired, allow it to
2376 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02002377 */
Jens Axboedd67d052006-06-21 09:36:18 +02002378 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002379 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02002380
2381 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02002382 * If another queue has a request waiting within our mean seek
2383 * distance, let it run. The expire code will check for close
2384 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002385 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02002386 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002387 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002388 if (new_cfqq) {
2389 if (!cfqq->new_cfqq)
2390 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02002391 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002392 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002393
2394 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002395 * No requests pending. If the active queue still has requests in
2396 * flight or is idling for a new request, allow either of these
2397 * conditions to happen (or time out) before selecting a new queue.
2398 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002399 if (timer_pending(&cfqd->idle_slice_timer)) {
2400 cfqq = NULL;
2401 goto keep_queue;
2402 }
2403
Shaohua Li8e1ac662010-11-08 15:01:04 +01002404 /*
2405 * This is a deep seek queue, but the device is much faster than
2406 * the queue can deliver, don't idle
2407 **/
2408 if (CFQQ_SEEKY(cfqq) && cfq_cfqq_idle_window(cfqq) &&
2409 (cfq_cfqq_slice_new(cfqq) ||
2410 (cfqq->slice_end - jiffies > jiffies - cfqq->slice_start))) {
2411 cfq_clear_cfqq_deep(cfqq);
2412 cfq_clear_cfqq_idle_window(cfqq);
2413 }
2414
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002415 if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2416 cfqq = NULL;
2417 goto keep_queue;
2418 }
2419
2420 /*
2421 * If group idle is enabled and there are requests dispatched from
2422 * this group, wait for requests to complete.
2423 */
2424check_group_idle:
Shaohua Li7700fc42011-07-12 14:24:56 +02002425 if (cfqd->cfq_group_idle && cfqq->cfqg->nr_cfqq == 1 &&
2426 cfqq->cfqg->dispatched &&
2427 !cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02002428 cfqq = NULL;
2429 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002430 }
2431
Jens Axboe3b181522005-06-27 10:56:24 +02002432expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02002433 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02002434new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002435 /*
2436 * Current queue expired. Check if we have to switch to a new
2437 * service tree
2438 */
2439 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002440 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002441
Jens Axboea36e71f2009-04-15 12:15:11 +02002442 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002443keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02002444 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002445}
2446
Jens Axboefebffd62008-01-28 13:19:43 +01002447static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02002448{
2449 int dispatched = 0;
2450
2451 while (cfqq->next_rq) {
2452 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2453 dispatched++;
2454 }
2455
2456 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05002457
2458 /* By default cfqq is not expired if it is empty. Do it explicitly */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002459 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02002460 return dispatched;
2461}
2462
Jens Axboe498d3aa22007-04-26 12:54:48 +02002463/*
2464 * Drain our current requests. Used for barriers and when switching
2465 * io schedulers on-the-fly.
2466 */
Jens Axboed9e76202007-04-20 14:27:50 +02002467static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002468{
Jens Axboe08717142008-01-28 11:38:15 +01002469 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002470 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002471
Divyesh Shah3440c492010-04-09 09:29:57 +02002472 /* Expire the timeslice of the current active queue first */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002473 cfq_slice_expired(cfqd, 0);
Divyesh Shah3440c492010-04-09 09:29:57 +02002474 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
2475 __cfq_set_active_queue(cfqd, cfqq);
Vivek Goyalf04a6422009-12-03 12:59:40 -05002476 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Divyesh Shah3440c492010-04-09 09:29:57 +02002477 }
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002478
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002479 BUG_ON(cfqd->busy_queues);
2480
Jeff Moyer6923715a2009-06-12 15:29:30 +02002481 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002482 return dispatched;
2483}
2484
Shaohua Liabc3c742010-03-01 09:20:54 +01002485static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
2486 struct cfq_queue *cfqq)
2487{
2488 /* the queue hasn't finished any request, can't estimate */
2489 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +01002490 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002491 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
2492 cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +01002493 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002494
Shaohua Lic1e44752010-11-08 15:01:02 +01002495 return false;
Shaohua Liabc3c742010-03-01 09:20:54 +01002496}
2497
Jens Axboe0b182d62009-10-06 20:49:37 +02002498static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02002499{
Jens Axboe2f5cb732009-04-07 08:51:19 +02002500 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Jens Axboe2f5cb732009-04-07 08:51:19 +02002502 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02002503 * Drain async requests before we start sync IO
2504 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002505 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02002506 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02002507
2508 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002509 * If this is an async queue and we have sync IO in flight, let it wait
2510 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002511 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002512 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002513
Shaohua Liabc3c742010-03-01 09:20:54 +01002514 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002515 if (cfq_class_idle(cfqq))
2516 max_dispatch = 1;
2517
2518 /*
2519 * Does this cfqq already have too much IO in flight?
2520 */
2521 if (cfqq->dispatched >= max_dispatch) {
Shaohua Lief8a41d2011-03-07 09:26:29 +01002522 bool promote_sync = false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002523 /*
2524 * idle queue must always only have a single IO in flight
2525 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02002526 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002527 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02002528
Jens Axboe2f5cb732009-04-07 08:51:19 +02002529 /*
Li, Shaohuac4ade942011-03-23 08:30:34 +01002530 * If there is only one sync queue
2531 * we can ignore async queue here and give the sync
Shaohua Lief8a41d2011-03-07 09:26:29 +01002532 * queue no dispatch limit. The reason is a sync queue can
2533 * preempt async queue, limiting the sync queue doesn't make
2534 * sense. This is useful for aiostress test.
2535 */
Li, Shaohuac4ade942011-03-23 08:30:34 +01002536 if (cfq_cfqq_sync(cfqq) && cfqd->busy_sync_queues == 1)
2537 promote_sync = true;
Shaohua Lief8a41d2011-03-07 09:26:29 +01002538
2539 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002540 * We have other queues, don't allow more IO from this one
2541 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002542 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq) &&
2543 !promote_sync)
Jens Axboe0b182d62009-10-06 20:49:37 +02002544 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11002545
Jens Axboe2f5cb732009-04-07 08:51:19 +02002546 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01002547 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02002548 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002549 if (cfqd->busy_queues == 1 || promote_sync)
Shaohua Liabc3c742010-03-01 09:20:54 +01002550 max_dispatch = -1;
2551 else
2552 /*
2553 * Normally we start throttling cfqq when cfq_quantum/2
2554 * requests have been dispatched. But we can drive
2555 * deeper queue depths at the beginning of slice
2556 * subjected to upper limit of cfq_quantum.
2557 * */
2558 max_dispatch = cfqd->cfq_quantum;
Jens Axboe8e296752009-10-03 16:26:03 +02002559 }
2560
2561 /*
2562 * Async queues must wait a bit before being allowed dispatch.
2563 * We also ramp up the dispatch depth gradually for async IO,
2564 * based on the last sync IO we serviced
2565 */
Jens Axboe963b72f2009-10-03 19:42:18 +02002566 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Corrado Zoccolo573412b2009-12-06 11:48:52 +01002567 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
Jens Axboe8e296752009-10-03 16:26:03 +02002568 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02002569
Jens Axboe61f0c1d2009-10-03 19:46:03 +02002570 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02002571 if (!depth && !cfqq->dispatched)
2572 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02002573 if (depth < max_dispatch)
2574 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 }
2576
Jens Axboe0b182d62009-10-06 20:49:37 +02002577 /*
2578 * If we're below the current max, allow a dispatch
2579 */
2580 return cfqq->dispatched < max_dispatch;
2581}
2582
2583/*
2584 * Dispatch a request from cfqq, moving them to the request queue
2585 * dispatch list.
2586 */
2587static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2588{
2589 struct request *rq;
2590
2591 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2592
2593 if (!cfq_may_dispatch(cfqd, cfqq))
2594 return false;
2595
2596 /*
2597 * follow expired path, else get first next available
2598 */
2599 rq = cfq_check_fifo(cfqq);
2600 if (!rq)
2601 rq = cfqq->next_rq;
2602
2603 /*
2604 * insert request into driver dispatch list
2605 */
2606 cfq_dispatch_insert(cfqd->queue, rq);
2607
2608 if (!cfqd->active_cic) {
Tejun Heoc5869802011-12-14 00:33:41 +01002609 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe0b182d62009-10-06 20:49:37 +02002610
Tejun Heoc5869802011-12-14 00:33:41 +01002611 atomic_long_inc(&cic->icq.ioc->refcount);
Jens Axboe0b182d62009-10-06 20:49:37 +02002612 cfqd->active_cic = cic;
2613 }
2614
2615 return true;
2616}
2617
2618/*
2619 * Find the cfqq that we need to service and move a request from that to the
2620 * dispatch list
2621 */
2622static int cfq_dispatch_requests(struct request_queue *q, int force)
2623{
2624 struct cfq_data *cfqd = q->elevator->elevator_data;
2625 struct cfq_queue *cfqq;
2626
2627 if (!cfqd->busy_queues)
2628 return 0;
2629
2630 if (unlikely(force))
2631 return cfq_forced_dispatch(cfqd);
2632
2633 cfqq = cfq_select_queue(cfqd);
2634 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002635 return 0;
2636
Jens Axboe2f5cb732009-04-07 08:51:19 +02002637 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002638 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002639 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002640 if (!cfq_dispatch_request(cfqd, cfqq))
2641 return 0;
2642
Jens Axboe2f5cb732009-04-07 08:51:19 +02002643 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002644 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002645
2646 /*
2647 * expire an async queue immediately if it has used up its slice. idle
2648 * queue always expire after 1 dispatch round.
2649 */
2650 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2651 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2652 cfq_class_idle(cfqq))) {
2653 cfqq->slice_end = jiffies + 1;
Vivek Goyale5ff0822010-04-26 19:25:11 +02002654 cfq_slice_expired(cfqd, 0);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002655 }
2656
Shan Weib217a902009-09-01 10:06:42 +02002657 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002658 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659}
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661/*
Jens Axboe5e705372006-07-13 12:39:25 +02002662 * task holds one reference to the queue, dropped when task exits. each rq
2663 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05002665 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 * queue lock must be held here.
2667 */
2668static void cfq_put_queue(struct cfq_queue *cfqq)
2669{
Jens Axboe22e2c502005-06-27 10:55:12 +02002670 struct cfq_data *cfqd = cfqq->cfqd;
Justin TerAvest0bbfeb82011-03-01 15:05:08 -05002671 struct cfq_group *cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02002672
Shaohua Li30d7b942011-01-07 08:46:59 +01002673 BUG_ON(cfqq->ref <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Shaohua Li30d7b942011-01-07 08:46:59 +01002675 cfqq->ref--;
2676 if (cfqq->ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 return;
2678
Jens Axboe7b679132008-05-30 12:23:07 +02002679 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002681 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002682 cfqg = cfqq->cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002684 if (unlikely(cfqd->active_queue == cfqq)) {
Vivek Goyale5ff0822010-04-26 19:25:11 +02002685 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002686 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002687 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002688
Vivek Goyalf04a6422009-12-03 12:59:40 -05002689 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 kmem_cache_free(cfq_pool, cfqq);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002691 cfq_put_cfqg(cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692}
2693
Shaohua Lid02a2c02010-05-25 10:16:53 +02002694static void cfq_put_cooperator(struct cfq_queue *cfqq)
Jens Axboe89850f72006-07-22 16:48:31 +02002695{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002696 struct cfq_queue *__cfqq, *next;
2697
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002698 /*
2699 * If this queue was scheduled to merge with another queue, be
2700 * sure to drop the reference taken on that queue (and others in
2701 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2702 */
2703 __cfqq = cfqq->new_cfqq;
2704 while (__cfqq) {
2705 if (__cfqq == cfqq) {
2706 WARN(1, "cfqq->new_cfqq loop detected\n");
2707 break;
2708 }
2709 next = __cfqq->new_cfqq;
2710 cfq_put_queue(__cfqq);
2711 __cfqq = next;
2712 }
Shaohua Lid02a2c02010-05-25 10:16:53 +02002713}
2714
2715static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2716{
2717 if (unlikely(cfqq == cfqd->active_queue)) {
2718 __cfq_slice_expired(cfqd, cfqq, 0);
2719 cfq_schedule_dispatch(cfqd);
2720 }
2721
2722 cfq_put_cooperator(cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002723
Jens Axboe89850f72006-07-22 16:48:31 +02002724 cfq_put_queue(cfqq);
2725}
2726
Tejun Heo9b84cac2011-12-14 00:33:42 +01002727static void cfq_init_icq(struct io_cq *icq)
2728{
2729 struct cfq_io_cq *cic = icq_to_cic(icq);
2730
2731 cic->ttime.last_end_request = jiffies;
2732}
2733
Tejun Heoc5869802011-12-14 00:33:41 +01002734static void cfq_exit_icq(struct io_cq *icq)
Jens Axboe89850f72006-07-22 16:48:31 +02002735{
Tejun Heoc5869802011-12-14 00:33:41 +01002736 struct cfq_io_cq *cic = icq_to_cic(icq);
Tejun Heo283287a2011-12-14 00:33:38 +01002737 struct cfq_data *cfqd = cic_to_cfqd(cic);
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002738
Jens Axboeff6657c2009-04-08 10:58:57 +02002739 if (cic->cfqq[BLK_RW_ASYNC]) {
2740 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2741 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002742 }
2743
Jens Axboeff6657c2009-04-08 10:58:57 +02002744 if (cic->cfqq[BLK_RW_SYNC]) {
2745 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2746 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002747 }
Jens Axboe89850f72006-07-22 16:48:31 +02002748}
2749
Jens Axboefd0928d2008-01-24 08:52:45 +01002750static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02002751{
2752 struct task_struct *tsk = current;
2753 int ioprio_class;
2754
Jens Axboe3b181522005-06-27 10:56:24 +02002755 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002756 return;
2757
Jens Axboefd0928d2008-01-24 08:52:45 +01002758 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002759 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002760 default:
2761 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2762 case IOPRIO_CLASS_NONE:
2763 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002764 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002765 */
2766 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002767 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002768 break;
2769 case IOPRIO_CLASS_RT:
2770 cfqq->ioprio = task_ioprio(ioc);
2771 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2772 break;
2773 case IOPRIO_CLASS_BE:
2774 cfqq->ioprio = task_ioprio(ioc);
2775 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2776 break;
2777 case IOPRIO_CLASS_IDLE:
2778 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2779 cfqq->ioprio = 7;
2780 cfq_clear_cfqq_idle_window(cfqq);
2781 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002782 }
2783
2784 /*
2785 * keep track of original prio settings in case we have to temporarily
2786 * elevate the priority of this queue
2787 */
2788 cfqq->org_ioprio = cfqq->ioprio;
Jens Axboe3b181522005-06-27 10:56:24 +02002789 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002790}
2791
Tejun Heoc5869802011-12-14 00:33:41 +01002792static void changed_ioprio(struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002793{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002794 struct cfq_data *cfqd = cic_to_cfqd(cic);
Al Viro478a82b2006-03-18 13:25:24 -05002795 struct cfq_queue *cfqq;
Jens Axboe35e60772006-06-14 09:10:45 +02002796
Jens Axboecaaa5f92006-06-16 11:23:00 +02002797 if (unlikely(!cfqd))
2798 return;
2799
Jens Axboeff6657c2009-04-08 10:58:57 +02002800 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002801 if (cfqq) {
2802 struct cfq_queue *new_cfqq;
Tejun Heoc5869802011-12-14 00:33:41 +01002803 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->icq.ioc,
Jens Axboeff6657c2009-04-08 10:58:57 +02002804 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002805 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002806 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002807 cfq_put_queue(cfqq);
2808 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002809 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002810
Jens Axboeff6657c2009-04-08 10:58:57 +02002811 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002812 if (cfqq)
2813 cfq_mark_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002814}
2815
Jens Axboed5036d72009-06-26 10:44:34 +02002816static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002817 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002818{
2819 RB_CLEAR_NODE(&cfqq->rb_node);
2820 RB_CLEAR_NODE(&cfqq->p_node);
2821 INIT_LIST_HEAD(&cfqq->fifo);
2822
Shaohua Li30d7b942011-01-07 08:46:59 +01002823 cfqq->ref = 0;
Jens Axboed5036d72009-06-26 10:44:34 +02002824 cfqq->cfqd = cfqd;
2825
2826 cfq_mark_cfqq_prio_changed(cfqq);
2827
2828 if (is_sync) {
2829 if (!cfq_class_idle(cfqq))
2830 cfq_mark_cfqq_idle_window(cfqq);
2831 cfq_mark_cfqq_sync(cfqq);
2832 }
2833 cfqq->pid = pid;
2834}
2835
Vivek Goyal246103332009-12-03 12:59:51 -05002836#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heoc5869802011-12-14 00:33:41 +01002837static void changed_cgroup(struct cfq_io_cq *cic)
Vivek Goyal246103332009-12-03 12:59:51 -05002838{
2839 struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002840 struct cfq_data *cfqd = cic_to_cfqd(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05002841 struct request_queue *q;
2842
2843 if (unlikely(!cfqd))
2844 return;
2845
2846 q = cfqd->queue;
2847
Vivek Goyal246103332009-12-03 12:59:51 -05002848 if (sync_cfqq) {
2849 /*
2850 * Drop reference to sync queue. A new sync queue will be
2851 * assigned in new group upon arrival of a fresh request.
2852 */
2853 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2854 cic_set_cfqq(cic, NULL, 1);
2855 cfq_put_queue(sync_cfqq);
2856 }
Vivek Goyal246103332009-12-03 12:59:51 -05002857}
Vivek Goyal246103332009-12-03 12:59:51 -05002858#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002861cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01002862 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863{
Tejun Heo0a5a7d02012-03-05 13:15:02 -08002864 struct blkio_cgroup *blkcg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 struct cfq_queue *cfqq, *new_cfqq = NULL;
Tejun Heoc5869802011-12-14 00:33:41 +01002866 struct cfq_io_cq *cic;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002867 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
2869retry:
Tejun Heo2a7f1242012-03-05 13:15:01 -08002870 rcu_read_lock();
2871
Tejun Heo0a5a7d02012-03-05 13:15:02 -08002872 blkcg = task_blkio_cgroup(current);
2873
2874 cfqg = cfq_get_cfqg(cfqd, blkcg);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002875 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002876 /* cic always exists here */
2877 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Jens Axboe6118b702009-06-30 09:34:12 +02002879 /*
2880 * Always try a new alloc if we fell back to the OOM cfqq
2881 * originally, since it should just be a temporary situation.
2882 */
2883 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2884 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (new_cfqq) {
2886 cfqq = new_cfqq;
2887 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002888 } else if (gfp_mask & __GFP_WAIT) {
Tejun Heo2a7f1242012-03-05 13:15:01 -08002889 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002891 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002892 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002893 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002895 if (new_cfqq)
2896 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002897 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002898 cfqq = kmem_cache_alloc_node(cfq_pool,
2899 gfp_mask | __GFP_ZERO,
2900 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Jens Axboe6118b702009-06-30 09:34:12 +02002903 if (cfqq) {
2904 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2905 cfq_init_prio_data(cfqq, ioc);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002906 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002907 cfq_log_cfqq(cfqd, cfqq, "alloced");
2908 } else
2909 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 }
2911
2912 if (new_cfqq)
2913 kmem_cache_free(cfq_pool, new_cfqq);
2914
Tejun Heo2a7f1242012-03-05 13:15:01 -08002915 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 return cfqq;
2917}
2918
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002919static struct cfq_queue **
2920cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2921{
Jens Axboefe094d92008-01-31 13:08:54 +01002922 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002923 case IOPRIO_CLASS_RT:
2924 return &cfqd->async_cfqq[0][ioprio];
2925 case IOPRIO_CLASS_BE:
2926 return &cfqd->async_cfqq[1][ioprio];
2927 case IOPRIO_CLASS_IDLE:
2928 return &cfqd->async_idle_cfqq;
2929 default:
2930 BUG();
2931 }
2932}
2933
Jens Axboe15c31be2007-07-10 13:43:25 +02002934static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002935cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02002936 gfp_t gfp_mask)
2937{
Jens Axboefd0928d2008-01-24 08:52:45 +01002938 const int ioprio = task_ioprio(ioc);
2939 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002940 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002941 struct cfq_queue *cfqq = NULL;
2942
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002943 if (!is_sync) {
2944 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2945 cfqq = *async_cfqq;
2946 }
2947
Jens Axboe6118b702009-06-30 09:34:12 +02002948 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01002949 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002950
2951 /*
2952 * pin the queue now that it's allocated, scheduler exit will prune it
2953 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002954 if (!is_sync && !(*async_cfqq)) {
Shaohua Li30d7b942011-01-07 08:46:59 +01002955 cfqq->ref++;
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002956 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002957 }
2958
Shaohua Li30d7b942011-01-07 08:46:59 +01002959 cfqq->ref++;
Jens Axboe15c31be2007-07-10 13:43:25 +02002960 return cfqq;
2961}
2962
Jens Axboe22e2c502005-06-27 10:55:12 +02002963static void
Shaohua Li383cd722011-07-12 14:24:35 +02002964__cfq_update_io_thinktime(struct cfq_ttime *ttime, unsigned long slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02002965{
Shaohua Li383cd722011-07-12 14:24:35 +02002966 unsigned long elapsed = jiffies - ttime->last_end_request;
2967 elapsed = min(elapsed, 2UL * slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02002968
Shaohua Li383cd722011-07-12 14:24:35 +02002969 ttime->ttime_samples = (7*ttime->ttime_samples + 256) / 8;
2970 ttime->ttime_total = (7*ttime->ttime_total + 256*elapsed) / 8;
2971 ttime->ttime_mean = (ttime->ttime_total + 128) / ttime->ttime_samples;
2972}
2973
2974static void
2975cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01002976 struct cfq_io_cq *cic)
Shaohua Li383cd722011-07-12 14:24:35 +02002977{
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02002978 if (cfq_cfqq_sync(cfqq)) {
Shaohua Li383cd722011-07-12 14:24:35 +02002979 __cfq_update_io_thinktime(&cic->ttime, cfqd->cfq_slice_idle);
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02002980 __cfq_update_io_thinktime(&cfqq->service_tree->ttime,
2981 cfqd->cfq_slice_idle);
2982 }
Shaohua Li7700fc42011-07-12 14:24:56 +02002983#ifdef CONFIG_CFQ_GROUP_IOSCHED
2984 __cfq_update_io_thinktime(&cfqq->cfqg->ttime, cfqd->cfq_group_idle);
2985#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02002986}
2987
Jens Axboe206dc692006-03-28 13:03:44 +02002988static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002989cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02002990 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02002991{
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01002992 sector_t sdist = 0;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01002993 sector_t n_sec = blk_rq_sectors(rq);
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01002994 if (cfqq->last_request_pos) {
2995 if (cfqq->last_request_pos < blk_rq_pos(rq))
2996 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
2997 else
2998 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
2999 }
Jens Axboe206dc692006-03-28 13:03:44 +02003000
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003001 cfqq->seek_history <<= 1;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003002 if (blk_queue_nonrot(cfqd->queue))
3003 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
3004 else
3005 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
Jens Axboe206dc692006-03-28 13:03:44 +02003006}
Jens Axboe22e2c502005-06-27 10:55:12 +02003007
3008/*
3009 * Disable idle window if the process thinks too long or seeks so much that
3010 * it doesn't matter
3011 */
3012static void
3013cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01003014 struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02003015{
Jens Axboe7b679132008-05-30 12:23:07 +02003016 int old_idle, enable_idle;
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003017
Jens Axboe08717142008-01-28 11:38:15 +01003018 /*
3019 * Don't idle for async or idle io prio class
3020 */
3021 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003022 return;
3023
Jens Axboec265a7f2008-06-26 13:49:33 +02003024 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003025
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003026 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3027 cfq_mark_cfqq_deep(cfqq);
3028
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003029 if (cfqq->next_rq && (cfqq->next_rq->cmd_flags & REQ_NOIDLE))
3030 enable_idle = 0;
Tejun Heoc5869802011-12-14 00:33:41 +01003031 else if (!atomic_read(&cic->icq.ioc->nr_tasks) ||
3032 !cfqd->cfq_slice_idle ||
3033 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02003034 enable_idle = 0;
Shaohua Li383cd722011-07-12 14:24:35 +02003035 else if (sample_valid(cic->ttime.ttime_samples)) {
3036 if (cic->ttime.ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003037 enable_idle = 0;
3038 else
3039 enable_idle = 1;
3040 }
3041
Jens Axboe7b679132008-05-30 12:23:07 +02003042 if (old_idle != enable_idle) {
3043 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3044 if (enable_idle)
3045 cfq_mark_cfqq_idle_window(cfqq);
3046 else
3047 cfq_clear_cfqq_idle_window(cfqq);
3048 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003049}
3050
Jens Axboe22e2c502005-06-27 10:55:12 +02003051/*
3052 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3053 * no or if we aren't sure, a 1 will cause a preempt.
3054 */
Jens Axboea6151c32009-10-07 20:02:57 +02003055static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02003056cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02003057 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003058{
Jens Axboe6d048f52007-04-25 12:44:27 +02003059 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003060
Jens Axboe6d048f52007-04-25 12:44:27 +02003061 cfqq = cfqd->active_queue;
3062 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02003063 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003064
Jens Axboe6d048f52007-04-25 12:44:27 +02003065 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003066 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003067
3068 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003069 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003070
Jens Axboe22e2c502005-06-27 10:55:12 +02003071 /*
Divyesh Shah875feb62010-01-06 18:58:20 -08003072 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3073 */
3074 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3075 return false;
3076
3077 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02003078 * if the new request is sync, but the currently running queue is
3079 * not, let the sync request have priority.
3080 */
Jens Axboe5e705372006-07-13 12:39:25 +02003081 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003082 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003083
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003084 if (new_cfqq->cfqg != cfqq->cfqg)
3085 return false;
3086
3087 if (cfq_slice_used(cfqq))
3088 return true;
3089
3090 /* Allow preemption only if we are idling on sync-noidle tree */
3091 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
3092 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3093 new_cfqq->service_tree->count == 2 &&
3094 RB_EMPTY_ROOT(&cfqq->sort_list))
3095 return true;
3096
Jens Axboe374f84a2006-07-23 01:42:19 +02003097 /*
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003098 * So both queues are sync. Let the new request get disk time if
3099 * it's a metadata request and the current queue is doing regular IO.
3100 */
Christoph Hellwig65299a32011-08-23 14:50:29 +02003101 if ((rq->cmd_flags & REQ_PRIO) && !cfqq->prio_pending)
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003102 return true;
3103
3104 /*
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003105 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3106 */
3107 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003108 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003109
Shaohua Lid2d59e12010-11-08 15:01:03 +01003110 /* An idle queue should not be idle now for some reason */
3111 if (RB_EMPTY_ROOT(&cfqq->sort_list) && !cfq_should_idle(cfqd, cfqq))
3112 return true;
3113
Jens Axboe1e3335d2007-02-14 19:59:49 +01003114 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003115 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003116
3117 /*
3118 * if this request is as-good as one we would expect from the
3119 * current cfqq, let it preempt
3120 */
Shaohua Lie9ce3352010-03-19 08:03:04 +01003121 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02003122 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003123
Jens Axboea6151c32009-10-07 20:02:57 +02003124 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003125}
3126
3127/*
3128 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3129 * let it have half of its nominal slice.
3130 */
3131static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3132{
Shaohua Lidf0793a2012-01-19 09:20:09 +01003133 enum wl_type_t old_type = cfqq_type(cfqd->active_queue);
3134
Jens Axboe7b679132008-05-30 12:23:07 +02003135 cfq_log_cfqq(cfqd, cfqq, "preempt");
Shaohua Lidf0793a2012-01-19 09:20:09 +01003136 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003137
Jens Axboebf572252006-07-19 20:29:12 +02003138 /*
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003139 * workload type is changed, don't save slice, otherwise preempt
3140 * doesn't happen
3141 */
Shaohua Lidf0793a2012-01-19 09:20:09 +01003142 if (old_type != cfqq_type(cfqq))
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003143 cfqq->cfqg->saved_workload_slice = 0;
3144
3145 /*
Jens Axboebf572252006-07-19 20:29:12 +02003146 * Put the new queue at the front of the of the current list,
3147 * so we know that it will be selected next.
3148 */
3149 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02003150
3151 cfq_service_tree_add(cfqd, cfqq, 1);
Justin TerAvesteda5e0c2011-03-22 21:26:49 +01003152
Justin TerAvest62a37f62011-03-23 08:25:44 +01003153 cfqq->slice_end = 0;
3154 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003155}
3156
3157/*
Jens Axboe5e705372006-07-13 12:39:25 +02003158 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02003159 * something we should do about it
3160 */
3161static void
Jens Axboe5e705372006-07-13 12:39:25 +02003162cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3163 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003164{
Tejun Heoc5869802011-12-14 00:33:41 +01003165 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003166
Aaron Carroll45333d52008-08-26 15:52:36 +02003167 cfqd->rq_queued++;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003168 if (rq->cmd_flags & REQ_PRIO)
3169 cfqq->prio_pending++;
Jens Axboe374f84a2006-07-23 01:42:19 +02003170
Shaohua Li383cd722011-07-12 14:24:35 +02003171 cfq_update_io_thinktime(cfqd, cfqq, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003172 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003173 cfq_update_idle_window(cfqd, cfqq, cic);
3174
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003175 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003176
3177 if (cfqq == cfqd->active_queue) {
3178 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003179 * Remember that we saw a request from this process, but
3180 * don't start queuing just yet. Otherwise we risk seeing lots
3181 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003182 * and merging. If the request is already larger than a single
3183 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003184 * merging is already done. Ditto for a busy system that
3185 * has other work pending, don't risk delaying until the
3186 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003187 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003188 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003189 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3190 cfqd->busy_queues > 1) {
Divyesh Shah812df482010-04-08 21:15:35 -07003191 cfq_del_timer(cfqd, cfqq);
Gui Jianfeng554554f2009-12-10 09:38:39 +01003192 cfq_clear_cfqq_wait_request(cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003193 __blk_run_queue(cfqd->queue);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003194 } else {
Vivek Goyale98ef892010-06-18 10:39:47 -04003195 cfq_blkiocg_update_idle_time_stats(
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003196 &cfqq->cfqg->blkg);
Vivek Goyalbf7919372009-12-03 12:59:37 -05003197 cfq_mark_cfqq_must_dispatch(cfqq);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003198 }
Jens Axboed6ceb252009-04-14 14:18:16 +02003199 }
Jens Axboe5e705372006-07-13 12:39:25 +02003200 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003201 /*
3202 * not the active queue - expire current slice if it is
3203 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003204 * has some old slice time left and is of higher priority or
3205 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003206 */
3207 cfq_preempt_queue(cfqd, cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003208 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003209 }
3210}
3211
Jens Axboe165125e2007-07-24 09:28:11 +02003212static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003213{
Jens Axboeb4878f22005-10-20 16:42:29 +02003214 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003215 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003216
Jens Axboe7b679132008-05-30 12:23:07 +02003217 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Tejun Heoc5869802011-12-14 00:33:41 +01003218 cfq_init_prio_data(cfqq, RQ_CIC(rq)->icq.ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
Jens Axboe30996f42009-10-05 11:03:39 +02003220 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02003221 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003222 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04003223 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -07003224 &cfqd->serving_group->blkg, rq_data_dir(rq),
3225 rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02003226 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227}
3228
Aaron Carroll45333d52008-08-26 15:52:36 +02003229/*
3230 * Update hw_tag based on peak queue depth over 50 samples under
3231 * sufficient load.
3232 */
3233static void cfq_update_hw_tag(struct cfq_data *cfqd)
3234{
Shaohua Li1a1238a2009-10-27 08:46:23 +01003235 struct cfq_queue *cfqq = cfqd->active_queue;
3236
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003237 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
3238 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003239
3240 if (cfqd->hw_tag == 1)
3241 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02003242
3243 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003244 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003245 return;
3246
Shaohua Li1a1238a2009-10-27 08:46:23 +01003247 /*
3248 * If active queue hasn't enough requests and can idle, cfq might not
3249 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3250 * case
3251 */
3252 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3253 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003254 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
Shaohua Li1a1238a2009-10-27 08:46:23 +01003255 return;
3256
Aaron Carroll45333d52008-08-26 15:52:36 +02003257 if (cfqd->hw_tag_samples++ < 50)
3258 return;
3259
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003260 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003261 cfqd->hw_tag = 1;
3262 else
3263 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02003264}
3265
Vivek Goyal7667aa02009-12-08 17:52:58 -05003266static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3267{
Tejun Heoc5869802011-12-14 00:33:41 +01003268 struct cfq_io_cq *cic = cfqd->active_cic;
Vivek Goyal7667aa02009-12-08 17:52:58 -05003269
Justin TerAvest02a8f012011-02-09 14:20:03 +01003270 /* If the queue already has requests, don't wait */
3271 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
3272 return false;
3273
Vivek Goyal7667aa02009-12-08 17:52:58 -05003274 /* If there are other queues in the group, don't wait */
3275 if (cfqq->cfqg->nr_cfqq > 1)
3276 return false;
3277
Shaohua Li7700fc42011-07-12 14:24:56 +02003278 /* the only queue in the group, but think time is big */
3279 if (cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true))
3280 return false;
3281
Vivek Goyal7667aa02009-12-08 17:52:58 -05003282 if (cfq_slice_used(cfqq))
3283 return true;
3284
3285 /* if slice left is less than think time, wait busy */
Shaohua Li383cd722011-07-12 14:24:35 +02003286 if (cic && sample_valid(cic->ttime.ttime_samples)
3287 && (cfqq->slice_end - jiffies < cic->ttime.ttime_mean))
Vivek Goyal7667aa02009-12-08 17:52:58 -05003288 return true;
3289
3290 /*
3291 * If think times is less than a jiffy than ttime_mean=0 and above
3292 * will not be true. It might happen that slice has not expired yet
3293 * but will expire soon (4-5 ns) during select_queue(). To cover the
3294 * case where think time is less than a jiffy, mark the queue wait
3295 * busy if only 1 jiffy is left in the slice.
3296 */
3297 if (cfqq->slice_end - jiffies == 1)
3298 return true;
3299
3300 return false;
3301}
3302
Jens Axboe165125e2007-07-24 09:28:11 +02003303static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304{
Jens Axboe5e705372006-07-13 12:39:25 +02003305 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003306 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02003307 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003308 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
Jens Axboeb4878f22005-10-20 16:42:29 +02003310 now = jiffies;
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003311 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
3312 !!(rq->cmd_flags & REQ_NOIDLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
Aaron Carroll45333d52008-08-26 15:52:36 +02003314 cfq_update_hw_tag(cfqd);
3315
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003316 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02003317 WARN_ON(!cfqq->dispatched);
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003318 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02003319 cfqq->dispatched--;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003320 (RQ_CFQG(rq))->dispatched--;
Vivek Goyale98ef892010-06-18 10:39:47 -04003321 cfq_blkiocg_update_completion_stats(&cfqq->cfqg->blkg,
3322 rq_start_time_ns(rq), rq_io_start_time_ns(rq),
3323 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003325 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
Jens Axboe3ed9a292007-04-23 08:33:33 +02003326
Vivek Goyal365722b2009-10-03 15:21:27 +02003327 if (sync) {
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003328 struct cfq_rb_root *service_tree;
3329
Shaohua Li383cd722011-07-12 14:24:35 +02003330 RQ_CIC(rq)->ttime.last_end_request = now;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003331
3332 if (cfq_cfqq_on_rr(cfqq))
3333 service_tree = cfqq->service_tree;
3334 else
3335 service_tree = service_tree_for(cfqq->cfqg,
3336 cfqq_prio(cfqq), cfqq_type(cfqq));
3337 service_tree->ttime.last_end_request = now;
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003338 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3339 cfqd->last_delayed_sync = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02003340 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003341
Shaohua Li7700fc42011-07-12 14:24:56 +02003342#ifdef CONFIG_CFQ_GROUP_IOSCHED
3343 cfqq->cfqg->ttime.last_end_request = now;
3344#endif
3345
Jens Axboecaaa5f92006-06-16 11:23:00 +02003346 /*
3347 * If this is the active queue, check if it needs to be expired,
3348 * or if we want to idle in case it has no pending requests.
3349 */
3350 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02003351 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3352
Jens Axboe44f7c162007-01-19 11:51:58 +11003353 if (cfq_cfqq_slice_new(cfqq)) {
3354 cfq_set_prio_slice(cfqd, cfqq);
3355 cfq_clear_cfqq_slice_new(cfqq);
3356 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05003357
3358 /*
Vivek Goyal7667aa02009-12-08 17:52:58 -05003359 * Should we wait for next request to come in before we expire
3360 * the queue.
Vivek Goyalf75edf22009-12-03 12:59:53 -05003361 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05003362 if (cfq_should_wait_busy(cfqd, cfqq)) {
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003363 unsigned long extend_sl = cfqd->cfq_slice_idle;
3364 if (!cfqd->cfq_slice_idle)
3365 extend_sl = cfqd->cfq_group_idle;
3366 cfqq->slice_end = jiffies + extend_sl;
Vivek Goyalf75edf22009-12-03 12:59:53 -05003367 cfq_mark_cfqq_wait_busy(cfqq);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01003368 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
Vivek Goyalf75edf22009-12-03 12:59:53 -05003369 }
3370
Jens Axboea36e71f2009-04-15 12:15:11 +02003371 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003372 * Idling is not enabled on:
3373 * - expired queues
3374 * - idle-priority queues
3375 * - async queues
3376 * - queues with still some requests queued
3377 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02003378 */
Jens Axboe08717142008-01-28 11:38:15 +01003379 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Vivek Goyale5ff0822010-04-26 19:25:11 +02003380 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003381 else if (sync && cfqq_empty &&
3382 !cfq_close_cooperator(cfqd, cfqq)) {
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003383 cfq_arm_slice_timer(cfqd);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003384 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003385 }
Jens Axboe6d048f52007-04-25 12:44:27 +02003386
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003387 if (!cfqd->rq_in_driver)
Jens Axboe23e018a2009-10-05 08:52:35 +02003388 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389}
3390
Jens Axboe89850f72006-07-22 16:48:31 +02003391static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003392{
Jens Axboe1b379d82009-08-11 08:26:11 +02003393 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003394 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003395 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003396 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003397
3398 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003399}
3400
Jens Axboe165125e2007-07-24 09:28:11 +02003401static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003402{
3403 struct cfq_data *cfqd = q->elevator->elevator_data;
3404 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01003405 struct cfq_io_cq *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003406 struct cfq_queue *cfqq;
3407
3408 /*
3409 * don't force setup of a queue from here, as a call to may_queue
3410 * does not necessarily imply that a request actually will be queued.
3411 * so just lookup a possibly existing queue, or return 'may queue'
3412 * if that fails
3413 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003414 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003415 if (!cic)
3416 return ELV_MQUEUE_MAY;
3417
Jens Axboeb0b78f82009-04-08 10:56:08 +02003418 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003419 if (cfqq) {
Tejun Heoc5869802011-12-14 00:33:41 +01003420 cfq_init_prio_data(cfqq, cic->icq.ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02003421
Jens Axboe89850f72006-07-22 16:48:31 +02003422 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003423 }
3424
3425 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426}
3427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428/*
3429 * queue lock held here
3430 */
Jens Axboebb37b942006-12-01 10:42:33 +01003431static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432{
Jens Axboe5e705372006-07-13 12:39:25 +02003433 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Jens Axboe5e705372006-07-13 12:39:25 +02003435 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003436 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Jens Axboe22e2c502005-06-27 10:55:12 +02003438 BUG_ON(!cfqq->allocated[rw]);
3439 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003441 /* Put down rq reference on cfqg */
3442 cfq_put_cfqg(RQ_CFQG(rq));
Tejun Heoa612fdd2011-12-14 00:33:41 +01003443 rq->elv.priv[0] = NULL;
3444 rq->elv.priv[1] = NULL;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003445
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 cfq_put_queue(cfqq);
3447 }
3448}
3449
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003450static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01003451cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_cq *cic,
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003452 struct cfq_queue *cfqq)
3453{
3454 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3455 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003456 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003457 cfq_put_queue(cfqq);
3458 return cic_to_cfqq(cic, 1);
3459}
3460
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003461/*
3462 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3463 * was the last process referring to said cfqq.
3464 */
3465static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01003466split_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq)
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003467{
3468 if (cfqq_process_refs(cfqq) == 1) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003469 cfqq->pid = current->pid;
3470 cfq_clear_cfqq_coop(cfqq);
Shaohua Liae54abe2010-02-05 13:11:45 +01003471 cfq_clear_cfqq_split_coop(cfqq);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003472 return cfqq;
3473 }
3474
3475 cic_set_cfqq(cic, NULL, 1);
Shaohua Lid02a2c02010-05-25 10:16:53 +02003476
3477 cfq_put_cooperator(cfqq);
3478
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003479 cfq_put_queue(cfqq);
3480 return NULL;
3481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003483 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003485static int
Jens Axboe165125e2007-07-24 09:28:11 +02003486cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487{
3488 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heof1f8cc92011-12-14 00:33:42 +01003489 struct cfq_io_cq *cic = icq_to_cic(rq->elv.icq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003491 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003492 struct cfq_queue *cfqq;
Tejun Heod705ae62012-02-15 09:45:49 +01003493 unsigned int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
3495 might_sleep_if(gfp_mask & __GFP_WAIT);
3496
Tejun Heo216284c2011-12-14 00:33:38 +01003497 spin_lock_irq(q->queue_lock);
Tejun Heof1f8cc92011-12-14 00:33:42 +01003498
3499 /* handle changed notifications */
Tejun Heod705ae62012-02-15 09:45:49 +01003500 changed = icq_get_changed(&cic->icq);
3501 if (unlikely(changed & ICQ_IOPRIO_CHANGED))
3502 changed_ioprio(cic);
Tejun Heof1f8cc92011-12-14 00:33:42 +01003503#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heod705ae62012-02-15 09:45:49 +01003504 if (unlikely(changed & ICQ_CGROUP_CHANGED))
3505 changed_cgroup(cic);
Tejun Heof1f8cc92011-12-14 00:33:42 +01003506#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003508new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003509 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003510 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Tejun Heoc5869802011-12-14 00:33:41 +01003511 cfqq = cfq_get_queue(cfqd, is_sync, cic->icq.ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003512 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003513 } else {
3514 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003515 * If the queue was seeky for too long, break it apart.
3516 */
Shaohua Liae54abe2010-02-05 13:11:45 +01003517 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003518 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3519 cfqq = split_cfqq(cic, cfqq);
3520 if (!cfqq)
3521 goto new_queue;
3522 }
3523
3524 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003525 * Check to see if this queue is scheduled to merge with
3526 * another, closely cooperating queue. The merging of
3527 * queues happens here as it must be done in process context.
3528 * The reference on new_cfqq was taken in merge_cfqqs.
3529 */
3530 if (cfqq->new_cfqq)
3531 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533
3534 cfqq->allocated[rw]++;
Jens Axboe5e705372006-07-13 12:39:25 +02003535
Jens Axboe6fae9c22011-03-01 15:04:39 -05003536 cfqq->ref++;
Tejun Heoa612fdd2011-12-14 00:33:41 +01003537 rq->elv.priv[0] = cfqq;
3538 rq->elv.priv[1] = cfq_ref_get_cfqg(cfqq->cfqg);
Tejun Heo216284c2011-12-14 00:33:38 +01003539 spin_unlock_irq(q->queue_lock);
Jens Axboe5e705372006-07-13 12:39:25 +02003540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541}
3542
David Howells65f27f32006-11-22 14:55:48 +00003543static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003544{
David Howells65f27f32006-11-22 14:55:48 +00003545 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003546 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003547 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003548
Jens Axboe40bb54d2009-04-15 12:11:10 +02003549 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003550 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003551 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003552}
3553
3554/*
3555 * Timer running if the active_queue is currently idling inside its time slice
3556 */
3557static void cfq_idle_slice_timer(unsigned long data)
3558{
3559 struct cfq_data *cfqd = (struct cfq_data *) data;
3560 struct cfq_queue *cfqq;
3561 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003562 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003563
Jens Axboe7b679132008-05-30 12:23:07 +02003564 cfq_log(cfqd, "idle timer fired");
3565
Jens Axboe22e2c502005-06-27 10:55:12 +02003566 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3567
Jens Axboefe094d92008-01-31 13:08:54 +01003568 cfqq = cfqd->active_queue;
3569 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003570 timed_out = 0;
3571
Jens Axboe22e2c502005-06-27 10:55:12 +02003572 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003573 * We saw a request before the queue expired, let it through
3574 */
3575 if (cfq_cfqq_must_dispatch(cfqq))
3576 goto out_kick;
3577
3578 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003579 * expired
3580 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003581 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003582 goto expire;
3583
3584 /*
3585 * only expire and reinvoke request handler, if there are
3586 * other queues with pending requests
3587 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003588 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003589 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003590
3591 /*
3592 * not expired and it has a request pending, let it dispatch
3593 */
Jens Axboe75e50982009-04-07 08:56:14 +02003594 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003595 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003596
3597 /*
3598 * Queue depth flag is reset only when the idle didn't succeed
3599 */
3600 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003601 }
3602expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02003603 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003604out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003605 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003606out_cont:
3607 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3608}
3609
Jens Axboe3b181522005-06-27 10:56:24 +02003610static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3611{
3612 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003613 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003614}
Jens Axboe22e2c502005-06-27 10:55:12 +02003615
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003616static void cfq_put_async_queues(struct cfq_data *cfqd)
3617{
3618 int i;
3619
3620 for (i = 0; i < IOPRIO_BE_NR; i++) {
3621 if (cfqd->async_cfqq[0][i])
3622 cfq_put_queue(cfqd->async_cfqq[0][i]);
3623 if (cfqd->async_cfqq[1][i])
3624 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003625 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003626
3627 if (cfqd->async_idle_cfqq)
3628 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003629}
3630
Jens Axboeb374d182008-10-31 10:05:07 +01003631static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632{
Jens Axboe22e2c502005-06-27 10:55:12 +02003633 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003634 struct request_queue *q = cfqd->queue;
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003635 bool wait = false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003636
Jens Axboe3b181522005-06-27 10:56:24 +02003637 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003638
Al Virod9ff4182006-03-18 13:51:22 -05003639 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003640
Al Virod9ff4182006-03-18 13:51:22 -05003641 if (cfqd->active_queue)
Vivek Goyale5ff0822010-04-26 19:25:11 +02003642 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003643
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003644 cfq_put_async_queues(cfqd);
Vivek Goyalb1c35762009-12-03 12:59:47 -05003645 cfq_release_cfq_groups(cfqd);
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003646
3647 /*
3648 * If there are groups which we could not unlink from blkcg list,
3649 * wait for a rcu period for them to be freed.
3650 */
3651 if (cfqd->nr_blkcg_linked_grps)
3652 wait = true;
Jens Axboe15c31be2007-07-10 13:43:25 +02003653
Al Virod9ff4182006-03-18 13:51:22 -05003654 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05003655
3656 cfq_shutdown_timer_wq(cfqd);
3657
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003658 /*
3659 * Wait for cfqg->blkg->key accessors to exit their grace periods.
3660 * Do this wait only if there are other unlinked groups out
3661 * there. This can happen if cgroup deletion path claimed the
3662 * responsibility of cleaning up a group before queue cleanup code
3663 * get to the group.
3664 *
3665 * Do not call synchronize_rcu() unconditionally as there are drivers
3666 * which create/delete request queue hundreds of times during scan/boot
3667 * and synchronize_rcu() can take significant time and slow down boot.
3668 */
3669 if (wait)
3670 synchronize_rcu();
Vivek Goyal2abae552011-05-23 10:02:19 +02003671
3672#ifdef CONFIG_CFQ_GROUP_IOSCHED
3673 /* Free up per cpu stats for root group */
3674 free_percpu(cfqd->root_group.blkg.stats_cpu);
3675#endif
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003676 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677}
3678
Tejun Heob2fab5a2012-03-05 13:14:57 -08003679static int cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680{
3681 struct cfq_data *cfqd;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003682 int i, j;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003683 struct cfq_group *cfqg;
Vivek Goyal615f0252009-12-03 12:59:39 -05003684 struct cfq_rb_root *st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
Christoph Lameter94f60302007-07-17 04:03:29 -07003686 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Tejun Heoa73f7302011-12-14 00:33:37 +01003687 if (!cfqd)
Tejun Heob2fab5a2012-03-05 13:14:57 -08003688 return -ENOMEM;
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003689
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003690 /* Init root service tree */
3691 cfqd->grp_service_tree = CFQ_RB_ROOT;
3692
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003693 /* Init root group */
3694 cfqg = &cfqd->root_group;
Vivek Goyal615f0252009-12-03 12:59:39 -05003695 for_each_cfqg_st(cfqg, i, j, st)
3696 *st = CFQ_RB_ROOT;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003697 RB_CLEAR_NODE(&cfqg->rb_node);
Jens Axboe26a2ac02009-04-23 12:13:27 +02003698
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003699 /* Give preference to root group over other groups */
3700 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3701
Vivek Goyal25fb5162009-12-03 12:59:46 -05003702#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyalb1c35762009-12-03 12:59:47 -05003703 /*
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003704 * Set root group reference to 2. One reference will be dropped when
3705 * all groups on cfqd->cfqg_list are being deleted during queue exit.
3706 * Other reference will remain there as we don't want to delete this
3707 * group as it is statically allocated and gets destroyed when
3708 * throtl_data goes away.
Vivek Goyalb1c35762009-12-03 12:59:47 -05003709 */
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003710 cfqg->ref = 2;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003711
3712 if (blkio_alloc_blkg_stats(&cfqg->blkg)) {
3713 kfree(cfqg);
3714 kfree(cfqd);
Tejun Heob2fab5a2012-03-05 13:14:57 -08003715 return -ENOMEM;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003716 }
3717
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003718 rcu_read_lock();
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003719
Vivek Goyale98ef892010-06-18 10:39:47 -04003720 cfq_blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg,
3721 (void *)cfqd, 0);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003722 rcu_read_unlock();
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003723 cfqd->nr_blkcg_linked_grps++;
3724
3725 /* Add group on cfqd->cfqg_list */
3726 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
Vivek Goyal25fb5162009-12-03 12:59:46 -05003727#endif
Jens Axboe26a2ac02009-04-23 12:13:27 +02003728 /*
3729 * Not strictly needed (since RB_ROOT just clears the node and we
3730 * zeroed cfqd on alloc), but better be safe in case someone decides
3731 * to add magic to the rb code
3732 */
3733 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3734 cfqd->prio_trees[i] = RB_ROOT;
3735
Jens Axboe6118b702009-06-30 09:34:12 +02003736 /*
3737 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3738 * Grab a permanent reference to it, so that the normal code flow
3739 * will not attempt to free it.
3740 */
3741 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
Shaohua Li30d7b942011-01-07 08:46:59 +01003742 cfqd->oom_cfqq.ref++;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003743 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
Jens Axboe6118b702009-06-30 09:34:12 +02003744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 cfqd->queue = q;
Tejun Heob2fab5a2012-03-05 13:14:57 -08003746 q->elevator->elevator_data = cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
Jens Axboe22e2c502005-06-27 10:55:12 +02003748 init_timer(&cfqd->idle_slice_timer);
3749 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3750 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3751
Jens Axboe23e018a2009-10-05 08:52:35 +02003752 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003753
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003755 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3756 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 cfqd->cfq_back_max = cfq_back_max;
3758 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003759 cfqd->cfq_slice[0] = cfq_slice_async;
3760 cfqd->cfq_slice[1] = cfq_slice_sync;
3761 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3762 cfqd->cfq_slice_idle = cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003763 cfqd->cfq_group_idle = cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003764 cfqd->cfq_latency = 1;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003765 cfqd->hw_tag = -1;
Corrado Zoccoloedc71132009-12-09 20:56:04 +01003766 /*
3767 * we optimistically start assuming sync ops weren't delayed in last
3768 * second, in order to have larger depth for async operations.
3769 */
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003770 cfqd->last_delayed_sync = jiffies - HZ;
Tejun Heob2fab5a2012-03-05 13:14:57 -08003771 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772}
3773
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774/*
3775 * sysfs parts below -->
3776 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777static ssize_t
3778cfq_var_show(unsigned int var, char *page)
3779{
3780 return sprintf(page, "%d\n", var);
3781}
3782
3783static ssize_t
3784cfq_var_store(unsigned int *var, const char *page, size_t count)
3785{
3786 char *p = (char *) page;
3787
3788 *var = simple_strtoul(p, &p, 10);
3789 return count;
3790}
3791
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003793static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003795 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 unsigned int __data = __VAR; \
3797 if (__CONV) \
3798 __data = jiffies_to_msecs(__data); \
3799 return cfq_var_show(__data, (page)); \
3800}
3801SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003802SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
3803SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05003804SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
3805SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003806SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003807SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003808SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
3809SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
3810SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003811SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812#undef SHOW_FUNCTION
3813
3814#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003815static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003817 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 unsigned int __data; \
3819 int ret = cfq_var_store(&__data, (page), count); \
3820 if (__data < (MIN)) \
3821 __data = (MIN); \
3822 else if (__data > (MAX)) \
3823 __data = (MAX); \
3824 if (__CONV) \
3825 *(__PTR) = msecs_to_jiffies(__data); \
3826 else \
3827 *(__PTR) = __data; \
3828 return ret; \
3829}
3830STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003831STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
3832 UINT_MAX, 1);
3833STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
3834 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05003835STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003836STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
3837 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003838STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003839STORE_FUNCTION(cfq_group_idle_store, &cfqd->cfq_group_idle, 0, UINT_MAX, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003840STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
3841STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01003842STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
3843 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003844STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845#undef STORE_FUNCTION
3846
Al Viroe572ec72006-03-18 22:27:18 -05003847#define CFQ_ATTR(name) \
3848 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02003849
Al Viroe572ec72006-03-18 22:27:18 -05003850static struct elv_fs_entry cfq_attrs[] = {
3851 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05003852 CFQ_ATTR(fifo_expire_sync),
3853 CFQ_ATTR(fifo_expire_async),
3854 CFQ_ATTR(back_seek_max),
3855 CFQ_ATTR(back_seek_penalty),
3856 CFQ_ATTR(slice_sync),
3857 CFQ_ATTR(slice_async),
3858 CFQ_ATTR(slice_async_rq),
3859 CFQ_ATTR(slice_idle),
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003860 CFQ_ATTR(group_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02003861 CFQ_ATTR(low_latency),
Al Viroe572ec72006-03-18 22:27:18 -05003862 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863};
3864
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865static struct elevator_type iosched_cfq = {
3866 .ops = {
3867 .elevator_merge_fn = cfq_merge,
3868 .elevator_merged_fn = cfq_merged_request,
3869 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01003870 .elevator_allow_merge_fn = cfq_allow_merge,
Divyesh Shah812d4022010-04-08 21:14:23 -07003871 .elevator_bio_merged_fn = cfq_bio_merged,
Jens Axboeb4878f22005-10-20 16:42:29 +02003872 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02003874 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 .elevator_deactivate_req_fn = cfq_deactivate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02003877 .elevator_former_req_fn = elv_rb_former_request,
3878 .elevator_latter_req_fn = elv_rb_latter_request,
Tejun Heo9b84cac2011-12-14 00:33:42 +01003879 .elevator_init_icq_fn = cfq_init_icq,
Tejun Heo7e5a8792011-12-14 00:33:42 +01003880 .elevator_exit_icq_fn = cfq_exit_icq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 .elevator_set_req_fn = cfq_set_request,
3882 .elevator_put_req_fn = cfq_put_request,
3883 .elevator_may_queue_fn = cfq_may_queue,
3884 .elevator_init_fn = cfq_init_queue,
3885 .elevator_exit_fn = cfq_exit_queue,
3886 },
Tejun Heo3d3c2372011-12-14 00:33:42 +01003887 .icq_size = sizeof(struct cfq_io_cq),
3888 .icq_align = __alignof__(struct cfq_io_cq),
Al Viro3d1ab402006-03-18 18:35:43 -05003889 .elevator_attrs = cfq_attrs,
Tejun Heo3d3c2372011-12-14 00:33:42 +01003890 .elevator_name = "cfq",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 .elevator_owner = THIS_MODULE,
3892};
3893
Vivek Goyal3e252062009-12-04 10:36:42 -05003894#ifdef CONFIG_CFQ_GROUP_IOSCHED
3895static struct blkio_policy_type blkio_policy_cfq = {
3896 .ops = {
3897 .blkio_unlink_group_fn = cfq_unlink_blkio_group,
Tejun Heo72e06c22012-03-05 13:15:00 -08003898 .blkio_clear_queue_fn = cfq_clear_queue,
Vivek Goyal3e252062009-12-04 10:36:42 -05003899 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
3900 },
Vivek Goyal062a6442010-09-15 17:06:33 -04003901 .plid = BLKIO_POLICY_PROP,
Vivek Goyal3e252062009-12-04 10:36:42 -05003902};
Vivek Goyal3e252062009-12-04 10:36:42 -05003903#endif
3904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905static int __init cfq_init(void)
3906{
Tejun Heo3d3c2372011-12-14 00:33:42 +01003907 int ret;
3908
Jens Axboe22e2c502005-06-27 10:55:12 +02003909 /*
3910 * could be 0 on HZ < 1000 setups
3911 */
3912 if (!cfq_slice_async)
3913 cfq_slice_async = 1;
3914 if (!cfq_slice_idle)
3915 cfq_slice_idle = 1;
3916
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003917#ifdef CONFIG_CFQ_GROUP_IOSCHED
3918 if (!cfq_group_idle)
3919 cfq_group_idle = 1;
3920#else
3921 cfq_group_idle = 0;
3922#endif
Tejun Heo3d3c2372011-12-14 00:33:42 +01003923 cfq_pool = KMEM_CACHE(cfq_queue, 0);
3924 if (!cfq_pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 return -ENOMEM;
3926
Tejun Heo3d3c2372011-12-14 00:33:42 +01003927 ret = elv_register(&iosched_cfq);
3928 if (ret) {
3929 kmem_cache_destroy(cfq_pool);
3930 return ret;
3931 }
Tejun Heo3d3c2372011-12-14 00:33:42 +01003932
Tejun Heob95ada52012-03-05 13:14:55 -08003933#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal3e252062009-12-04 10:36:42 -05003934 blkio_policy_register(&blkio_policy_cfq);
Tejun Heob95ada52012-03-05 13:14:55 -08003935#endif
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01003936 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937}
3938
3939static void __exit cfq_exit(void)
3940{
Tejun Heob95ada52012-03-05 13:14:55 -08003941#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal3e252062009-12-04 10:36:42 -05003942 blkio_policy_unregister(&blkio_policy_cfq);
Tejun Heob95ada52012-03-05 13:14:55 -08003943#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 elv_unregister(&iosched_cfq);
Tejun Heo3d3c2372011-12-14 00:33:42 +01003945 kmem_cache_destroy(cfq_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946}
3947
3948module_init(cfq_init);
3949module_exit(cfq_exit);
3950
3951MODULE_AUTHOR("Jens Axboe");
3952MODULE_LICENSE("GPL");
3953MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");