blob: 7c3893d4447ae8e135417f9594d22589a679d658 [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
Tejun Heo03814112012-03-05 13:15:14 -080020static struct blkio_policy_type blkio_policy_cfq;
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/*
23 * tunables
24 */
Jens Axboefe094d92008-01-31 13:08:54 +010025/* max queue in one round of service */
Shaohua Liabc3c742010-03-01 09:20:54 +010026static const int cfq_quantum = 8;
Arjan van de Ven64100092006-01-06 09:46:02 +010027static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
Jens Axboefe094d92008-01-31 13:08:54 +010028/* maximum backwards seek, in KiB */
29static const int cfq_back_max = 16 * 1024;
30/* penalty of a backwards seek */
31static const int cfq_back_penalty = 2;
Arjan van de Ven64100092006-01-06 09:46:02 +010032static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020033static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010034static const int cfq_slice_async_rq = 2;
Jens Axboecaaa5f92006-06-16 11:23:00 +020035static int cfq_slice_idle = HZ / 125;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +020036static int cfq_group_idle = HZ / 125;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +010037static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
38static const int cfq_hist_divisor = 4;
Jens Axboe22e2c502005-06-27 10:55:12 +020039
Jens Axboed9e76202007-04-20 14:27:50 +020040/*
Jens Axboe08717142008-01-28 11:38:15 +010041 * offset from end of service tree
Jens Axboed9e76202007-04-20 14:27:50 +020042 */
Jens Axboe08717142008-01-28 11:38:15 +010043#define CFQ_IDLE_DELAY (HZ / 5)
Jens Axboed9e76202007-04-20 14:27:50 +020044
45/*
46 * below this threshold, we consider thinktime immediate
47 */
48#define CFQ_MIN_TT (2)
49
Jens Axboe22e2c502005-06-27 10:55:12 +020050#define CFQ_SLICE_SCALE (5)
Aaron Carroll45333d52008-08-26 15:52:36 +020051#define CFQ_HW_QUEUE_MIN (5)
Vivek Goyal25bc6b02009-12-03 12:59:43 -050052#define CFQ_SERVICE_SHIFT 12
Jens Axboe22e2c502005-06-27 10:55:12 +020053
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010054#define CFQQ_SEEK_THR (sector_t)(8 * 100)
Shaohua Lie9ce3352010-03-19 08:03:04 +010055#define CFQQ_CLOSE_THR (sector_t)(8 * 1024)
Corrado Zoccolo41647e72010-02-27 19:45:40 +010056#define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32)
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010057#define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8)
Shaohua Liae54abe2010-02-05 13:11:45 +010058
Tejun Heoa612fdd2011-12-14 00:33:41 +010059#define RQ_CIC(rq) icq_to_cic((rq)->elv.icq)
60#define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elv.priv[0])
61#define RQ_CFQG(rq) (struct cfq_group *) ((rq)->elv.priv[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Christoph Lametere18b8902006-12-06 20:33:20 -080063static struct kmem_cache *cfq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Jens Axboe22e2c502005-06-27 10:55:12 +020065#define CFQ_PRIO_LISTS IOPRIO_BE_NR
66#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
Jens Axboe22e2c502005-06-27 10:55:12 +020067#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
68
Jens Axboe206dc692006-03-28 13:03:44 +020069#define sample_valid(samples) ((samples) > 80)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050070#define rb_entry_cfqg(node) rb_entry((node), struct cfq_group, rb_node)
Jens Axboe206dc692006-03-28 13:03:44 +020071
Tejun Heoc5869802011-12-14 00:33:41 +010072struct cfq_ttime {
73 unsigned long last_end_request;
74
75 unsigned long ttime_total;
76 unsigned long ttime_samples;
77 unsigned long ttime_mean;
78};
79
Jens Axboe22e2c502005-06-27 10:55:12 +020080/*
Jens Axboecc09e292007-04-26 12:53:50 +020081 * Most of our rbtree usage is for sorting with min extraction, so
82 * if we cache the leftmost node we don't have to walk down the tree
83 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
84 * move this into the elevator for the rq sorting as well.
85 */
86struct cfq_rb_root {
87 struct rb_root rb;
88 struct rb_node *left;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010089 unsigned count;
Richard Kennedy73e9ffd2010-03-01 10:50:20 +010090 unsigned total_weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050091 u64 min_vdisktime;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020092 struct cfq_ttime ttime;
Jens Axboecc09e292007-04-26 12:53:50 +020093};
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020094#define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, \
95 .ttime = {.last_end_request = jiffies,},}
Jens Axboecc09e292007-04-26 12:53:50 +020096
97/*
Jens Axboe6118b702009-06-30 09:34:12 +020098 * Per process-grouping structure
99 */
100struct cfq_queue {
101 /* reference count */
Shaohua Li30d7b942011-01-07 08:46:59 +0100102 int ref;
Jens Axboe6118b702009-06-30 09:34:12 +0200103 /* various state flags, see below */
104 unsigned int flags;
105 /* parent cfq_data */
106 struct cfq_data *cfqd;
107 /* service_tree member */
108 struct rb_node rb_node;
109 /* service_tree key */
110 unsigned long rb_key;
111 /* prio tree member */
112 struct rb_node p_node;
113 /* prio tree root we belong to, if any */
114 struct rb_root *p_root;
115 /* sorted list of pending requests */
116 struct rb_root sort_list;
117 /* if fifo isn't expired, next request to serve */
118 struct request *next_rq;
119 /* requests queued in sort_list */
120 int queued[2];
121 /* currently allocated requests */
122 int allocated[2];
123 /* fifo list of requests in sort_list */
124 struct list_head fifo;
125
Vivek Goyaldae739e2009-12-03 12:59:45 -0500126 /* time when queue got scheduled in to dispatch first request. */
127 unsigned long dispatch_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500128 unsigned int allocated_slice;
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100129 unsigned int slice_dispatch;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500130 /* time when first request from queue completed and slice started. */
131 unsigned long slice_start;
Jens Axboe6118b702009-06-30 09:34:12 +0200132 unsigned long slice_end;
133 long slice_resid;
Jens Axboe6118b702009-06-30 09:34:12 +0200134
Christoph Hellwig65299a32011-08-23 14:50:29 +0200135 /* pending priority requests */
136 int prio_pending;
Jens Axboe6118b702009-06-30 09:34:12 +0200137 /* number of requests that are on the dispatch list or inside driver */
138 int dispatched;
139
140 /* io prio of this group */
141 unsigned short ioprio, org_ioprio;
Justin TerAvest4aede842011-07-12 08:31:45 +0200142 unsigned short ioprio_class;
Jens Axboe6118b702009-06-30 09:34:12 +0200143
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100144 pid_t pid;
145
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +0100146 u32 seek_history;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400147 sector_t last_request_pos;
148
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100149 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400150 struct cfq_queue *new_cfqq;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500151 struct cfq_group *cfqg;
Vivek Goyalc4e78932010-08-23 12:25:03 +0200152 /* Number of sectors dispatched from queue in single dispatch round */
153 unsigned long nr_sectors;
Jens Axboe6118b702009-06-30 09:34:12 +0200154};
155
156/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100157 * First index in the service_trees.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100158 * IDLE is handled separately, so it has negative index
159 */
160enum wl_prio_t {
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100161 BE_WORKLOAD = 0,
Vivek Goyal615f0252009-12-03 12:59:39 -0500162 RT_WORKLOAD = 1,
163 IDLE_WORKLOAD = 2,
Vivek Goyalb4627322010-10-22 09:48:43 +0200164 CFQ_PRIO_NR,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100165};
166
167/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100168 * Second index in the service_trees.
169 */
170enum wl_type_t {
171 ASYNC_WORKLOAD = 0,
172 SYNC_NOIDLE_WORKLOAD = 1,
173 SYNC_WORKLOAD = 2
174};
175
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500176/* This is per cgroup per device grouping structure */
177struct cfq_group {
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500178 /* group service_tree member */
179 struct rb_node rb_node;
180
181 /* group service_tree key */
182 u64 vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500183 unsigned int weight;
Justin TerAvest8184f932011-03-17 16:12:36 +0100184 unsigned int new_weight;
185 bool needs_update;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500186
187 /* number of cfqq currently on this group */
188 int nr_cfqq;
189
Jens Axboe22e2c502005-06-27 10:55:12 +0200190 /*
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200191 * Per group busy queues average. Useful for workload slice calc. We
Vivek Goyalb4627322010-10-22 09:48:43 +0200192 * create the array for each prio class but at run time it is used
193 * only for RT and BE class and slot for IDLE class remains unused.
194 * This is primarily done to avoid confusion and a gcc warning.
195 */
196 unsigned int busy_queues_avg[CFQ_PRIO_NR];
197 /*
198 * rr lists of queues with requests. We maintain service trees for
199 * RT and BE classes. These trees are subdivided in subclasses
200 * of SYNC, SYNC_NOIDLE and ASYNC based on workload type. For IDLE
201 * class there is no subclassification and all the cfq queues go on
202 * a single tree service_tree_idle.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100203 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200204 */
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100205 struct cfq_rb_root service_trees[2][3];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100206 struct cfq_rb_root service_tree_idle;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500207
208 unsigned long saved_workload_slice;
209 enum wl_type_t saved_workload;
210 enum wl_prio_t saved_serving_prio;
Tejun Heo4eef3042012-03-05 13:15:18 -0800211
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200212 /* number of requests that are on the dispatch list or inside driver */
213 int dispatched;
Shaohua Li7700fc42011-07-12 14:24:56 +0200214 struct cfq_ttime ttime;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500215};
216
Tejun Heoc5869802011-12-14 00:33:41 +0100217struct cfq_io_cq {
218 struct io_cq icq; /* must be the first member */
219 struct cfq_queue *cfqq[2];
220 struct cfq_ttime ttime;
Tejun Heo598971b2012-03-19 15:10:58 -0700221 int ioprio; /* the current ioprio */
222#ifdef CONFIG_CFQ_GROUP_IOSCHED
223 uint64_t blkcg_id; /* the current blkcg ID */
224#endif
Tejun Heoc5869802011-12-14 00:33:41 +0100225};
226
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500227/*
228 * Per block device queue structure
229 */
230struct cfq_data {
231 struct request_queue *queue;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500232 /* Root service tree for cfq_groups */
233 struct cfq_rb_root grp_service_tree;
Tejun Heof51b8022012-03-05 13:15:05 -0800234 struct cfq_group *root_group;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500235
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100236 /*
237 * The priority currently being served
238 */
239 enum wl_prio_t serving_prio;
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100240 enum wl_type_t serving_type;
241 unsigned long workload_expires;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500242 struct cfq_group *serving_group;
Jens Axboea36e71f2009-04-15 12:15:11 +0200243
244 /*
245 * Each priority tree is sorted by next_request position. These
246 * trees are used when determining if two or more queues are
247 * interleaving requests (see cfq_close_cooperator).
248 */
249 struct rb_root prio_trees[CFQ_PRIO_LISTS];
250
Jens Axboe22e2c502005-06-27 10:55:12 +0200251 unsigned int busy_queues;
Shaohua Lief8a41d2011-03-07 09:26:29 +0100252 unsigned int busy_sync_queues;
Jens Axboe22e2c502005-06-27 10:55:12 +0200253
Corrado Zoccolo53c583d2010-02-28 19:45:05 +0100254 int rq_in_driver;
255 int rq_in_flight[2];
Aaron Carroll45333d52008-08-26 15:52:36 +0200256
257 /*
258 * queue-depth detection
259 */
260 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200261 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100262 /*
263 * hw_tag can be
264 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
265 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
266 * 0 => no NCQ
267 */
268 int hw_tag_est_depth;
269 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200270
271 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200272 * idle window management
273 */
274 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200275 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200276
277 struct cfq_queue *active_queue;
Tejun Heoc5869802011-12-14 00:33:41 +0100278 struct cfq_io_cq *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200279
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200280 /*
281 * async queue for each priority case
282 */
283 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
284 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200285
Jens Axboe6d048f52007-04-25 12:44:27 +0200286 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /*
289 * tunables, see top of file
290 */
291 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200292 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 unsigned int cfq_back_penalty;
294 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200295 unsigned int cfq_slice[2];
296 unsigned int cfq_slice_async_rq;
297 unsigned int cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200298 unsigned int cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200299 unsigned int cfq_latency;
Al Virod9ff4182006-03-18 13:51:22 -0500300
Jens Axboe6118b702009-06-30 09:34:12 +0200301 /*
302 * Fallback dummy cfqq for extreme OOM conditions
303 */
304 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200305
Corrado Zoccolo573412b2009-12-06 11:48:52 +0100306 unsigned long last_delayed_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307};
308
Tejun Heo03814112012-03-05 13:15:14 -0800309static inline struct cfq_group *blkg_to_cfqg(struct blkio_group *blkg)
310{
311 return blkg_to_pdata(blkg, &blkio_policy_cfq);
312}
313
314static inline struct blkio_group *cfqg_to_blkg(struct cfq_group *cfqg)
315{
316 return pdata_to_blkg(cfqg, &blkio_policy_cfq);
317}
318
Vivek Goyal25fb5162009-12-03 12:59:46 -0500319static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
320
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500321static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
322 enum wl_prio_t prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -0500323 enum wl_type_t type)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100324{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500325 if (!cfqg)
326 return NULL;
327
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100328 if (prio == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500329 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100330
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500331 return &cfqg->service_trees[prio][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100332}
333
Jens Axboe3b181522005-06-27 10:56:24 +0200334enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100335 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
336 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200337 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100338 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100339 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
340 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
341 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100342 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200343 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400344 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Shaohua Liae54abe2010-02-05 13:11:45 +0100345 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100346 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Vivek Goyalf75edf22009-12-03 12:59:53 -0500347 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
Jens Axboe3b181522005-06-27 10:56:24 +0200348};
349
350#define CFQ_CFQQ_FNS(name) \
351static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
352{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100353 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200354} \
355static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
356{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100357 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200358} \
359static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
360{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100361 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200362}
363
364CFQ_CFQQ_FNS(on_rr);
365CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200366CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200367CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200368CFQ_CFQQ_FNS(fifo_expire);
369CFQ_CFQQ_FNS(idle_window);
370CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100371CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200372CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200373CFQ_CFQQ_FNS(coop);
Shaohua Liae54abe2010-02-05 13:11:45 +0100374CFQ_CFQQ_FNS(split_coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100375CFQ_CFQQ_FNS(deep);
Vivek Goyalf75edf22009-12-03 12:59:53 -0500376CFQ_CFQQ_FNS(wait_busy);
Jens Axboe3b181522005-06-27 10:56:24 +0200377#undef CFQ_CFQQ_FNS
378
Vivek Goyalafc24d42010-04-26 19:27:56 +0200379#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal2868ef72009-12-03 12:59:48 -0500380#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
381 blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \
382 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
Tejun Heo03814112012-03-05 13:15:14 -0800383 blkg_path(cfqg_to_blkg((cfqq)->cfqg)), ##args)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500384
385#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \
386 blk_add_trace_msg((cfqd)->queue, "%s " fmt, \
Tejun Heo03814112012-03-05 13:15:14 -0800387 blkg_path(cfqg_to_blkg((cfqg))), ##args) \
Vivek Goyal2868ef72009-12-03 12:59:48 -0500388
389#else
Jens Axboe7b679132008-05-30 12:23:07 +0200390#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
391 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200392#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500393#endif
Jens Axboe7b679132008-05-30 12:23:07 +0200394#define cfq_log(cfqd, fmt, args...) \
395 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
396
Vivek Goyal615f0252009-12-03 12:59:39 -0500397/* Traverses through cfq group service trees */
398#define for_each_cfqg_st(cfqg, i, j, st) \
399 for (i = 0; i <= IDLE_WORKLOAD; i++) \
400 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
401 : &cfqg->service_tree_idle; \
402 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
403 (i == IDLE_WORKLOAD && j == 0); \
404 j++, st = i < IDLE_WORKLOAD ? \
405 &cfqg->service_trees[i][j]: NULL) \
406
Shaohua Lif5f2b6c2011-07-12 14:24:55 +0200407static inline bool cfq_io_thinktime_big(struct cfq_data *cfqd,
408 struct cfq_ttime *ttime, bool group_idle)
409{
410 unsigned long slice;
411 if (!sample_valid(ttime->ttime_samples))
412 return false;
413 if (group_idle)
414 slice = cfqd->cfq_group_idle;
415 else
416 slice = cfqd->cfq_slice_idle;
417 return ttime->ttime_mean > slice;
418}
Vivek Goyal615f0252009-12-03 12:59:39 -0500419
Vivek Goyal02b35082010-08-23 12:23:53 +0200420static inline bool iops_mode(struct cfq_data *cfqd)
421{
422 /*
423 * If we are not idling on queues and it is a NCQ drive, parallel
424 * execution of requests is on and measuring time is not possible
425 * in most of the cases until and unless we drive shallower queue
426 * depths and that becomes a performance bottleneck. In such cases
427 * switch to start providing fairness in terms of number of IOs.
428 */
429 if (!cfqd->cfq_slice_idle && cfqd->hw_tag)
430 return true;
431 else
432 return false;
433}
434
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100435static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
436{
437 if (cfq_class_idle(cfqq))
438 return IDLE_WORKLOAD;
439 if (cfq_class_rt(cfqq))
440 return RT_WORKLOAD;
441 return BE_WORKLOAD;
442}
443
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100444
445static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
446{
447 if (!cfq_cfqq_sync(cfqq))
448 return ASYNC_WORKLOAD;
449 if (!cfq_cfqq_idle_window(cfqq))
450 return SYNC_NOIDLE_WORKLOAD;
451 return SYNC_WORKLOAD;
452}
453
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500454static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
455 struct cfq_data *cfqd,
456 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100457{
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500458 if (wl == IDLE_WORKLOAD)
459 return cfqg->service_tree_idle.count;
460
461 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
462 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
463 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100464}
465
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500466static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
467 struct cfq_group *cfqg)
468{
469 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count
470 + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
471}
472
Jens Axboe165125e2007-07-24 09:28:11 +0200473static void cfq_dispatch_insert(struct request_queue *, struct request *);
Tejun Heo4f85cb92012-03-05 13:15:28 -0800474static struct cfq_queue *cfq_get_queue(struct cfq_data *cfqd, bool is_sync,
Tejun Heoabede6d2012-03-19 15:10:57 -0700475 struct cfq_io_cq *cic, struct bio *bio,
Tejun Heo4f85cb92012-03-05 13:15:28 -0800476 gfp_t gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200477
Tejun Heoc5869802011-12-14 00:33:41 +0100478static inline struct cfq_io_cq *icq_to_cic(struct io_cq *icq)
479{
480 /* cic->icq is the first member, %NULL will convert to %NULL */
481 return container_of(icq, struct cfq_io_cq, icq);
482}
483
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100484static inline struct cfq_io_cq *cfq_cic_lookup(struct cfq_data *cfqd,
485 struct io_context *ioc)
486{
487 if (ioc)
488 return icq_to_cic(ioc_lookup_icq(ioc, cfqd->queue));
489 return NULL;
490}
491
Tejun Heoc5869802011-12-14 00:33:41 +0100492static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_cq *cic, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200493{
Jens Axboea6151c32009-10-07 20:02:57 +0200494 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200495}
496
Tejun Heoc5869802011-12-14 00:33:41 +0100497static inline void cic_set_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq,
498 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200499{
Jens Axboea6151c32009-10-07 20:02:57 +0200500 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200501}
502
Tejun Heoc5869802011-12-14 00:33:41 +0100503static inline struct cfq_data *cic_to_cfqd(struct cfq_io_cq *cic)
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400504{
Tejun Heoc5869802011-12-14 00:33:41 +0100505 return cic->icq.q->elevator->elevator_data;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400506}
507
Vasily Tarasov91fac312007-04-25 12:29:51 +0200508/*
509 * We regard a request as SYNC, if it's either a read or has the SYNC bit
510 * set (in which case it could also be direct WRITE).
511 */
Jens Axboea6151c32009-10-07 20:02:57 +0200512static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200513{
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200514 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200515}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700518 * scheduler run of queue, if there are requests pending and no one in the
519 * driver that will restart queueing
520 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200521static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700522{
Jens Axboe7b679132008-05-30 12:23:07 +0200523 if (cfqd->busy_queues) {
524 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200525 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200526 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700527}
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100530 * Scale schedule slice based on io priority. Use the sync time slice only
531 * if a queue is marked sync and has sync io queued. A sync queue with async
532 * io only, should not get full sync slice length.
533 */
Jens Axboea6151c32009-10-07 20:02:57 +0200534static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200535 unsigned short prio)
536{
537 const int base_slice = cfqd->cfq_slice[sync];
538
539 WARN_ON(prio >= IOPRIO_BE_NR);
540
541 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
542}
543
Jens Axboe44f7c162007-01-19 11:51:58 +1100544static inline int
545cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
546{
Jens Axboed9e76202007-04-20 14:27:50 +0200547 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100548}
549
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500550static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
551{
552 u64 d = delta << CFQ_SERVICE_SHIFT;
553
554 d = d * BLKIO_WEIGHT_DEFAULT;
555 do_div(d, cfqg->weight);
556 return d;
557}
558
559static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
560{
561 s64 delta = (s64)(vdisktime - min_vdisktime);
562 if (delta > 0)
563 min_vdisktime = vdisktime;
564
565 return min_vdisktime;
566}
567
568static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
569{
570 s64 delta = (s64)(vdisktime - min_vdisktime);
571 if (delta < 0)
572 min_vdisktime = vdisktime;
573
574 return min_vdisktime;
575}
576
577static void update_min_vdisktime(struct cfq_rb_root *st)
578{
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500579 struct cfq_group *cfqg;
580
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500581 if (st->left) {
582 cfqg = rb_entry_cfqg(st->left);
Gui Jianfenga6032712011-03-07 09:28:09 +0100583 st->min_vdisktime = max_vdisktime(st->min_vdisktime,
584 cfqg->vdisktime);
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500585 }
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500586}
587
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100588/*
589 * get averaged number of queues of RT/BE priority.
590 * average is updated, with a formula that gives more weight to higher numbers,
591 * to quickly follows sudden increases and decrease slowly
592 */
593
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500594static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
595 struct cfq_group *cfqg, bool rt)
Jens Axboe5869619c2009-10-28 09:27:07 +0100596{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100597 unsigned min_q, max_q;
598 unsigned mult = cfq_hist_divisor - 1;
599 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500600 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100601
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500602 min_q = min(cfqg->busy_queues_avg[rt], busy);
603 max_q = max(cfqg->busy_queues_avg[rt], busy);
604 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100605 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500606 return cfqg->busy_queues_avg[rt];
607}
608
609static inline unsigned
610cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
611{
612 struct cfq_rb_root *st = &cfqd->grp_service_tree;
613
614 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100615}
616
Shaohua Lic553f8e2011-01-14 08:41:03 +0100617static inline unsigned
Vivek Goyalba5bd522011-01-19 08:25:02 -0700618cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100619{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100620 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
621 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500622 /*
623 * interested queues (we consider only the ones with the same
624 * priority class in the cfq group)
625 */
626 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
627 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100628 unsigned sync_slice = cfqd->cfq_slice[1];
629 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500630 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
631
632 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100633 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
634 /* scale low_slice according to IO priority
635 * and sync vs async */
636 unsigned low_slice =
637 min(slice, base_low_slice * slice / sync_slice);
638 /* the adapted slice value is scaled to fit all iqs
639 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500640 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100641 low_slice);
642 }
643 }
Shaohua Lic553f8e2011-01-14 08:41:03 +0100644 return slice;
645}
646
647static inline void
648cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
649{
Vivek Goyalba5bd522011-01-19 08:25:02 -0700650 unsigned slice = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +0100651
Vivek Goyaldae739e2009-12-03 12:59:45 -0500652 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100653 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500654 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200655 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100656}
657
658/*
659 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
660 * isn't valid until the first request from the dispatch is activated
661 * and the slice time set.
662 */
Jens Axboea6151c32009-10-07 20:02:57 +0200663static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100664{
665 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +0100666 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100667 if (time_before(jiffies, cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +0100668 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100669
Shaohua Lic1e44752010-11-08 15:01:02 +0100670 return true;
Jens Axboe44f7c162007-01-19 11:51:58 +1100671}
672
673/*
Jens Axboe5e705372006-07-13 12:39:25 +0200674 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200676 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 */
Jens Axboe5e705372006-07-13 12:39:25 +0200678static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100679cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100681 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200683#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
684#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
685 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Jens Axboe5e705372006-07-13 12:39:25 +0200687 if (rq1 == NULL || rq1 == rq2)
688 return rq2;
689 if (rq2 == NULL)
690 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200691
Namhyung Kim229836b2011-05-24 10:23:21 +0200692 if (rq_is_sync(rq1) != rq_is_sync(rq2))
693 return rq_is_sync(rq1) ? rq1 : rq2;
694
Christoph Hellwig65299a32011-08-23 14:50:29 +0200695 if ((rq1->cmd_flags ^ rq2->cmd_flags) & REQ_PRIO)
696 return rq1->cmd_flags & REQ_PRIO ? rq1 : rq2;
Jens Axboeb53d1ed2011-08-19 08:34:48 +0200697
Tejun Heo83096eb2009-05-07 22:24:39 +0900698 s1 = blk_rq_pos(rq1);
699 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /*
702 * by definition, 1KiB is 2 sectors
703 */
704 back_max = cfqd->cfq_back_max * 2;
705
706 /*
707 * Strict one way elevator _except_ in the case where we allow
708 * short backward seeks which are biased as twice the cost of a
709 * similar forward seek.
710 */
711 if (s1 >= last)
712 d1 = s1 - last;
713 else if (s1 + back_max >= last)
714 d1 = (last - s1) * cfqd->cfq_back_penalty;
715 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200716 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 if (s2 >= last)
719 d2 = s2 - last;
720 else if (s2 + back_max >= last)
721 d2 = (last - s2) * cfqd->cfq_back_penalty;
722 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200723 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Andreas Mohre8a99052006-03-28 08:59:49 +0200727 /*
728 * By doing switch() on the bit mask "wrap" we avoid having to
729 * check two variables for all permutations: --> faster!
730 */
731 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200732 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200733 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200734 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200735 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200736 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200737 else {
738 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200739 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200740 else
Jens Axboe5e705372006-07-13 12:39:25 +0200741 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200742 }
743
744 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200745 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200746 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200747 return rq2;
748 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200749 default:
750 /*
751 * Since both rqs are wrapped,
752 * start with the one that's further behind head
753 * (--> only *one* back seek required),
754 * since back seek takes more time than forward.
755 */
756 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200757 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 else
Jens Axboe5e705372006-07-13 12:39:25 +0200759 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761}
762
Jens Axboe498d3aa22007-04-26 12:54:48 +0200763/*
764 * The below is leftmost cache rbtree addon
765 */
Jens Axboe08717142008-01-28 11:38:15 +0100766static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200767{
Vivek Goyal615f0252009-12-03 12:59:39 -0500768 /* Service tree is empty */
769 if (!root->count)
770 return NULL;
771
Jens Axboecc09e292007-04-26 12:53:50 +0200772 if (!root->left)
773 root->left = rb_first(&root->rb);
774
Jens Axboe08717142008-01-28 11:38:15 +0100775 if (root->left)
776 return rb_entry(root->left, struct cfq_queue, rb_node);
777
778 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200779}
780
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500781static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
782{
783 if (!root->left)
784 root->left = rb_first(&root->rb);
785
786 if (root->left)
787 return rb_entry_cfqg(root->left);
788
789 return NULL;
790}
791
Jens Axboea36e71f2009-04-15 12:15:11 +0200792static void rb_erase_init(struct rb_node *n, struct rb_root *root)
793{
794 rb_erase(n, root);
795 RB_CLEAR_NODE(n);
796}
797
Jens Axboecc09e292007-04-26 12:53:50 +0200798static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
799{
800 if (root->left == n)
801 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200802 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100803 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200804}
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806/*
807 * would be nice to take fifo expire time into account as well
808 */
Jens Axboe5e705372006-07-13 12:39:25 +0200809static struct request *
810cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
811 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Jens Axboe21183b02006-07-13 12:33:14 +0200813 struct rb_node *rbnext = rb_next(&last->rb_node);
814 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200815 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Jens Axboe21183b02006-07-13 12:33:14 +0200817 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200820 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200823 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200824 else {
825 rbnext = rb_first(&cfqq->sort_list);
826 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200827 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100830 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
Jens Axboed9e76202007-04-20 14:27:50 +0200833static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
834 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Jens Axboed9e76202007-04-20 14:27:50 +0200836 /*
837 * just an approximation, should be ok.
838 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500839 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100840 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200841}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500843static inline s64
844cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
845{
846 return cfqg->vdisktime - st->min_vdisktime;
847}
848
849static void
850__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
851{
852 struct rb_node **node = &st->rb.rb_node;
853 struct rb_node *parent = NULL;
854 struct cfq_group *__cfqg;
855 s64 key = cfqg_key(st, cfqg);
856 int left = 1;
857
858 while (*node != NULL) {
859 parent = *node;
860 __cfqg = rb_entry_cfqg(parent);
861
862 if (key < cfqg_key(st, __cfqg))
863 node = &parent->rb_left;
864 else {
865 node = &parent->rb_right;
866 left = 0;
867 }
868 }
869
870 if (left)
871 st->left = &cfqg->rb_node;
872
873 rb_link_node(&cfqg->rb_node, parent, node);
874 rb_insert_color(&cfqg->rb_node, &st->rb);
875}
876
877static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100878cfq_update_group_weight(struct cfq_group *cfqg)
879{
880 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
881 if (cfqg->needs_update) {
882 cfqg->weight = cfqg->new_weight;
883 cfqg->needs_update = false;
884 }
885}
886
887static void
888cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
889{
890 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
891
892 cfq_update_group_weight(cfqg);
893 __cfq_group_service_tree_add(st, cfqg);
894 st->total_weight += cfqg->weight;
895}
896
897static void
898cfq_group_notify_queue_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500899{
900 struct cfq_rb_root *st = &cfqd->grp_service_tree;
901 struct cfq_group *__cfqg;
902 struct rb_node *n;
903
904 cfqg->nr_cfqq++;
Gui Jianfeng760701b2010-11-30 20:52:47 +0100905 if (!RB_EMPTY_NODE(&cfqg->rb_node))
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500906 return;
907
908 /*
909 * Currently put the group at the end. Later implement something
910 * so that groups get lesser vtime based on their weights, so that
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300911 * if group does not loose all if it was not continuously backlogged.
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500912 */
913 n = rb_last(&st->rb);
914 if (n) {
915 __cfqg = rb_entry_cfqg(n);
916 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
917 } else
918 cfqg->vdisktime = st->min_vdisktime;
Justin TerAvest8184f932011-03-17 16:12:36 +0100919 cfq_group_service_tree_add(st, cfqg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500920}
921
922static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100923cfq_group_service_tree_del(struct cfq_rb_root *st, struct cfq_group *cfqg)
924{
925 st->total_weight -= cfqg->weight;
926 if (!RB_EMPTY_NODE(&cfqg->rb_node))
927 cfq_rb_erase(&cfqg->rb_node, st);
928}
929
930static void
931cfq_group_notify_queue_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500932{
933 struct cfq_rb_root *st = &cfqd->grp_service_tree;
934
935 BUG_ON(cfqg->nr_cfqq < 1);
936 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500937
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500938 /* If there are other cfq queues under this group, don't delete it */
939 if (cfqg->nr_cfqq)
940 return;
941
Vivek Goyal2868ef72009-12-03 12:59:48 -0500942 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Justin TerAvest8184f932011-03-17 16:12:36 +0100943 cfq_group_service_tree_del(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500944 cfqg->saved_workload_slice = 0;
Tejun Heoc1768262012-03-05 13:15:17 -0800945 cfq_blkiocg_update_dequeue_stats(cfqg_to_blkg(cfqg),
946 &blkio_policy_cfq, 1);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500947}
948
Justin TerAvest167400d2011-03-12 16:54:00 +0100949static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq,
950 unsigned int *unaccounted_time)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500951{
Vivek Goyalf75edf22009-12-03 12:59:53 -0500952 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500953
954 /*
955 * Queue got expired before even a single request completed or
956 * got expired immediately after first request completion.
957 */
958 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
959 /*
960 * Also charge the seek time incurred to the group, otherwise
961 * if there are mutiple queues in the group, each can dispatch
962 * a single request on seeky media and cause lots of seek time
963 * and group will never know it.
964 */
965 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
966 1);
967 } else {
968 slice_used = jiffies - cfqq->slice_start;
Justin TerAvest167400d2011-03-12 16:54:00 +0100969 if (slice_used > cfqq->allocated_slice) {
970 *unaccounted_time = slice_used - cfqq->allocated_slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500971 slice_used = cfqq->allocated_slice;
Justin TerAvest167400d2011-03-12 16:54:00 +0100972 }
973 if (time_after(cfqq->slice_start, cfqq->dispatch_start))
974 *unaccounted_time += cfqq->slice_start -
975 cfqq->dispatch_start;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500976 }
977
Vivek Goyaldae739e2009-12-03 12:59:45 -0500978 return slice_used;
979}
980
981static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
Vivek Goyale5ff0822010-04-26 19:25:11 +0200982 struct cfq_queue *cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500983{
984 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Justin TerAvest167400d2011-03-12 16:54:00 +0100985 unsigned int used_sl, charge, unaccounted_sl = 0;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500986 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
987 - cfqg->service_tree_idle.count;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500988
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500989 BUG_ON(nr_sync < 0);
Justin TerAvest167400d2011-03-12 16:54:00 +0100990 used_sl = charge = cfq_cfqq_slice_usage(cfqq, &unaccounted_sl);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500991
Vivek Goyal02b35082010-08-23 12:23:53 +0200992 if (iops_mode(cfqd))
993 charge = cfqq->slice_dispatch;
994 else if (!cfq_cfqq_sync(cfqq) && !nr_sync)
995 charge = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500996
997 /* Can't update vdisktime while group is on service tree */
Justin TerAvest8184f932011-03-17 16:12:36 +0100998 cfq_group_service_tree_del(st, cfqg);
Vivek Goyal02b35082010-08-23 12:23:53 +0200999 cfqg->vdisktime += cfq_scale_slice(charge, cfqg);
Justin TerAvest8184f932011-03-17 16:12:36 +01001000 /* If a new weight was requested, update now, off tree */
1001 cfq_group_service_tree_add(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001002
1003 /* This group is being expired. Save the context */
1004 if (time_after(cfqd->workload_expires, jiffies)) {
1005 cfqg->saved_workload_slice = cfqd->workload_expires
1006 - jiffies;
1007 cfqg->saved_workload = cfqd->serving_type;
1008 cfqg->saved_serving_prio = cfqd->serving_prio;
1009 } else
1010 cfqg->saved_workload_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -05001011
1012 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
1013 st->min_vdisktime);
Joe Perchesfd16d262011-06-13 10:42:49 +02001014 cfq_log_cfqq(cfqq->cfqd, cfqq,
1015 "sl_used=%u disp=%u charge=%u iops=%u sect=%lu",
1016 used_sl, cfqq->slice_dispatch, charge,
1017 iops_mode(cfqd), cfqq->nr_sectors);
Tejun Heoc1768262012-03-05 13:15:17 -08001018 cfq_blkiocg_update_timeslice_used(cfqg_to_blkg(cfqg), &blkio_policy_cfq,
1019 used_sl, unaccounted_sl);
1020 cfq_blkiocg_set_start_empty_time(cfqg_to_blkg(cfqg), &blkio_policy_cfq);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001021}
1022
Tejun Heof51b8022012-03-05 13:15:05 -08001023/**
1024 * cfq_init_cfqg_base - initialize base part of a cfq_group
1025 * @cfqg: cfq_group to initialize
1026 *
1027 * Initialize the base part which is used whether %CONFIG_CFQ_GROUP_IOSCHED
1028 * is enabled or not.
1029 */
1030static void cfq_init_cfqg_base(struct cfq_group *cfqg)
1031{
1032 struct cfq_rb_root *st;
1033 int i, j;
1034
1035 for_each_cfqg_st(cfqg, i, j, st)
1036 *st = CFQ_RB_ROOT;
1037 RB_CLEAR_NODE(&cfqg->rb_node);
1038
1039 cfqg->ttime.last_end_request = jiffies;
1040}
1041
Vivek Goyal25fb5162009-12-03 12:59:46 -05001042#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heoca32aef2012-03-05 13:15:03 -08001043static void cfq_update_blkio_group_weight(struct request_queue *q,
1044 struct blkio_group *blkg,
Paul Bolle8aea4542011-06-06 05:07:54 +02001045 unsigned int weight)
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001046{
Tejun Heo03814112012-03-05 13:15:14 -08001047 struct cfq_group *cfqg = blkg_to_cfqg(blkg);
1048
Justin TerAvest8184f932011-03-17 16:12:36 +01001049 cfqg->new_weight = weight;
1050 cfqg->needs_update = true;
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001051}
1052
Tejun Heo03814112012-03-05 13:15:14 -08001053static void cfq_init_blkio_group(struct blkio_group *blkg)
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001054{
Tejun Heo03814112012-03-05 13:15:14 -08001055 struct cfq_group *cfqg = blkg_to_cfqg(blkg);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001056
Tejun Heof51b8022012-03-05 13:15:05 -08001057 cfq_init_cfqg_base(cfqg);
Tejun Heo03814112012-03-05 13:15:14 -08001058 cfqg->weight = blkg->blkcg->weight;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001059}
1060
1061/*
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001062 * Search for the cfq group current task belongs to. request_queue lock must
1063 * be held.
Vivek Goyal25fb5162009-12-03 12:59:46 -05001064 */
Tejun Heocd1604f2012-03-05 13:15:06 -08001065static struct cfq_group *cfq_lookup_create_cfqg(struct cfq_data *cfqd,
1066 struct blkio_cgroup *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001067{
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001068 struct request_queue *q = cfqd->queue;
Tejun Heocd1604f2012-03-05 13:15:06 -08001069 struct cfq_group *cfqg = NULL;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001070
Tejun Heocd1604f2012-03-05 13:15:06 -08001071 /* avoid lookup for the common case where there's no blkio cgroup */
1072 if (blkcg == &blkio_root_cgroup) {
1073 cfqg = cfqd->root_group;
1074 } else {
1075 struct blkio_group *blkg;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001076
Tejun Heocd1604f2012-03-05 13:15:06 -08001077 blkg = blkg_lookup_create(blkcg, q, BLKIO_POLICY_PROP, false);
1078 if (!IS_ERR(blkg))
Tejun Heo03814112012-03-05 13:15:14 -08001079 cfqg = blkg_to_cfqg(blkg);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001080 }
1081
Vivek Goyal25fb5162009-12-03 12:59:46 -05001082 return cfqg;
1083}
1084
1085static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1086{
1087 /* Currently, all async queues are mapped to root group */
1088 if (!cfq_cfqq_sync(cfqq))
Tejun Heof51b8022012-03-05 13:15:05 -08001089 cfqg = cfqq->cfqd->root_group;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001090
1091 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001092 /* cfqq reference on cfqg */
Tejun Heo1adaf3d2012-03-05 13:15:15 -08001093 blkg_get(cfqg_to_blkg(cfqg));
Vivek Goyalb1c35762009-12-03 12:59:47 -05001094}
1095
Vivek Goyal25fb5162009-12-03 12:59:46 -05001096#else /* GROUP_IOSCHED */
Tejun Heocd1604f2012-03-05 13:15:06 -08001097static struct cfq_group *cfq_lookup_create_cfqg(struct cfq_data *cfqd,
1098 struct blkio_cgroup *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001099{
Tejun Heof51b8022012-03-05 13:15:05 -08001100 return cfqd->root_group;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001101}
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001102
Vivek Goyal25fb5162009-12-03 12:59:46 -05001103static inline void
1104cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1105 cfqq->cfqg = cfqg;
1106}
1107
1108#endif /* GROUP_IOSCHED */
1109
Jens Axboe498d3aa22007-04-26 12:54:48 +02001110/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001111 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +02001112 * requests waiting to be processed. It is sorted in the order that
1113 * we will service the queues.
1114 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001115static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001116 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02001117{
Jens Axboe08717142008-01-28 11:38:15 +01001118 struct rb_node **p, *parent;
1119 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001120 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001121 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +02001122 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001123 int new_cfqq = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05001124
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001125 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
Vivek Goyal65b32a52009-12-16 17:52:59 -05001126 cfqq_type(cfqq));
Jens Axboe08717142008-01-28 11:38:15 +01001127 if (cfq_class_idle(cfqq)) {
1128 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001129 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +01001130 if (parent && parent != &cfqq->rb_node) {
1131 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1132 rb_key += __cfqq->rb_key;
1133 } else
1134 rb_key += jiffies;
1135 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02001136 /*
1137 * Get our rb key offset. Subtract any residual slice
1138 * value carried from last service. A negative resid
1139 * count indicates slice overrun, and this should position
1140 * the next service time further away in the tree.
1141 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001142 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02001143 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02001144 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001145 } else {
1146 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001147 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001148 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1149 }
Jens Axboed9e76202007-04-20 14:27:50 +02001150
1151 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05001152 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01001153 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001154 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01001155 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001156 if (rb_key == cfqq->rb_key &&
1157 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +02001158 return;
Jens Axboe53b037442006-07-28 09:48:51 +02001159
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001160 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1161 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001162 }
Jens Axboed9e76202007-04-20 14:27:50 +02001163
Jens Axboe498d3aa22007-04-26 12:54:48 +02001164 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01001165 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001166 cfqq->service_tree = service_tree;
1167 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02001168 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +02001169 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +02001170
Jens Axboed9e76202007-04-20 14:27:50 +02001171 parent = *p;
1172 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1173
Jens Axboe0c534e02007-04-18 20:01:57 +02001174 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001175 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02001176 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001177 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +02001178 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001179 else {
Jens Axboe67060e32007-04-18 20:13:32 +02001180 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02001181 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001182 }
Jens Axboe67060e32007-04-18 20:13:32 +02001183
1184 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +02001185 }
1186
Jens Axboecc09e292007-04-26 12:53:50 +02001187 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001188 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02001189
Jens Axboed9e76202007-04-20 14:27:50 +02001190 cfqq->rb_key = rb_key;
1191 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001192 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1193 service_tree->count++;
Namhyung Kim20359f22011-05-24 10:23:22 +02001194 if (add_front || !new_cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001195 return;
Justin TerAvest8184f932011-03-17 16:12:36 +01001196 cfq_group_notify_queue_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
Jens Axboea36e71f2009-04-15 12:15:11 +02001199static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001200cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1201 sector_t sector, struct rb_node **ret_parent,
1202 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02001203{
Jens Axboea36e71f2009-04-15 12:15:11 +02001204 struct rb_node **p, *parent;
1205 struct cfq_queue *cfqq = NULL;
1206
1207 parent = NULL;
1208 p = &root->rb_node;
1209 while (*p) {
1210 struct rb_node **n;
1211
1212 parent = *p;
1213 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1214
1215 /*
1216 * Sort strictly based on sector. Smallest to the left,
1217 * largest to the right.
1218 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001219 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001220 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001221 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001222 n = &(*p)->rb_left;
1223 else
1224 break;
1225 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001226 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001227 }
1228
1229 *ret_parent = parent;
1230 if (rb_link)
1231 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001232 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001233}
1234
1235static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1236{
Jens Axboea36e71f2009-04-15 12:15:11 +02001237 struct rb_node **p, *parent;
1238 struct cfq_queue *__cfqq;
1239
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001240 if (cfqq->p_root) {
1241 rb_erase(&cfqq->p_node, cfqq->p_root);
1242 cfqq->p_root = NULL;
1243 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001244
1245 if (cfq_class_idle(cfqq))
1246 return;
1247 if (!cfqq->next_rq)
1248 return;
1249
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001250 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001251 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1252 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001253 if (!__cfqq) {
1254 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001255 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1256 } else
1257 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001258}
1259
Jens Axboe498d3aa22007-04-26 12:54:48 +02001260/*
1261 * Update cfqq's position in the service tree.
1262 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001263static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001264{
Jens Axboe6d048f52007-04-25 12:44:27 +02001265 /*
1266 * Resorting requires the cfqq to be on the RR list already.
1267 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001268 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001269 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001270 cfq_prio_tree_add(cfqd, cfqq);
1271 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001272}
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274/*
1275 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001276 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 */
Jens Axboefebffd62008-01-28 13:19:43 +01001278static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Jens Axboe7b679132008-05-30 12:23:07 +02001280 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001281 BUG_ON(cfq_cfqq_on_rr(cfqq));
1282 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 cfqd->busy_queues++;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001284 if (cfq_cfqq_sync(cfqq))
1285 cfqd->busy_sync_queues++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Jens Axboeedd75ff2007-04-19 12:03:34 +02001287 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
Jens Axboe498d3aa22007-04-26 12:54:48 +02001290/*
1291 * Called when the cfqq no longer has requests pending, remove it from
1292 * the service tree.
1293 */
Jens Axboefebffd62008-01-28 13:19:43 +01001294static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Jens Axboe7b679132008-05-30 12:23:07 +02001296 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001297 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1298 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001300 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1301 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1302 cfqq->service_tree = NULL;
1303 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001304 if (cfqq->p_root) {
1305 rb_erase(&cfqq->p_node, cfqq->p_root);
1306 cfqq->p_root = NULL;
1307 }
Jens Axboed9e76202007-04-20 14:27:50 +02001308
Justin TerAvest8184f932011-03-17 16:12:36 +01001309 cfq_group_notify_queue_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 BUG_ON(!cfqd->busy_queues);
1311 cfqd->busy_queues--;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001312 if (cfq_cfqq_sync(cfqq))
1313 cfqd->busy_sync_queues--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
1316/*
1317 * rb tree support functions
1318 */
Jens Axboefebffd62008-01-28 13:19:43 +01001319static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Jens Axboe5e705372006-07-13 12:39:25 +02001321 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001322 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Jens Axboeb4878f22005-10-20 16:42:29 +02001324 BUG_ON(!cfqq->queued[sync]);
1325 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Jens Axboe5e705372006-07-13 12:39:25 +02001327 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Vivek Goyalf04a6422009-12-03 12:59:40 -05001329 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1330 /*
1331 * Queue will be deleted from service tree when we actually
1332 * expire it later. Right now just remove it from prio tree
1333 * as it is empty.
1334 */
1335 if (cfqq->p_root) {
1336 rb_erase(&cfqq->p_node, cfqq->p_root);
1337 cfqq->p_root = NULL;
1338 }
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
Jens Axboe5e705372006-07-13 12:39:25 +02001342static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Jens Axboe5e705372006-07-13 12:39:25 +02001344 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 struct cfq_data *cfqd = cfqq->cfqd;
Jeff Moyer796d5112011-06-02 21:19:05 +02001346 struct request *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Jens Axboe5380a102006-07-13 12:37:56 +02001348 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Jeff Moyer796d5112011-06-02 21:19:05 +02001350 elv_rb_add(&cfqq->sort_list, rq);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001351
1352 if (!cfq_cfqq_on_rr(cfqq))
1353 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001354
1355 /*
1356 * check if this request is a better next-serve candidate
1357 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001358 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001359 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001360
1361 /*
1362 * adjust priority tree position, if ->next_rq changes
1363 */
1364 if (prev != cfqq->next_rq)
1365 cfq_prio_tree_add(cfqd, cfqq);
1366
Jens Axboe5044eed2007-04-25 11:53:48 +02001367 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Jens Axboefebffd62008-01-28 13:19:43 +01001370static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Jens Axboe5380a102006-07-13 12:37:56 +02001372 elv_rb_del(&cfqq->sort_list, rq);
1373 cfqq->queued[rq_is_sync(rq)]--;
Tejun Heo03814112012-03-05 13:15:14 -08001374 cfq_blkiocg_update_io_remove_stats(cfqg_to_blkg(RQ_CFQG(rq)),
Tejun Heoc1768262012-03-05 13:15:17 -08001375 &blkio_policy_cfq, rq_data_dir(rq),
1376 rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02001377 cfq_add_rq_rb(rq);
Tejun Heo03814112012-03-05 13:15:14 -08001378 cfq_blkiocg_update_io_add_stats(cfqg_to_blkg(RQ_CFQG(rq)),
Tejun Heoc1768262012-03-05 13:15:17 -08001379 &blkio_policy_cfq,
Tejun Heo03814112012-03-05 13:15:14 -08001380 cfqg_to_blkg(cfqq->cfqd->serving_group),
1381 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
1383
Jens Axboe206dc692006-03-28 13:03:44 +02001384static struct request *
1385cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Jens Axboe206dc692006-03-28 13:03:44 +02001387 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01001388 struct cfq_io_cq *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001389 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Jens Axboe4ac845a2008-01-24 08:44:49 +01001391 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001392 if (!cic)
1393 return NULL;
1394
1395 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001396 if (cfqq) {
1397 sector_t sector = bio->bi_sector + bio_sectors(bio);
1398
Jens Axboe21183b02006-07-13 12:33:14 +02001399 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return NULL;
1403}
1404
Jens Axboe165125e2007-07-24 09:28:11 +02001405static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001406{
1407 struct cfq_data *cfqd = q->elevator->elevator_data;
1408
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001409 cfqd->rq_in_driver++;
Jens Axboe7b679132008-05-30 12:23:07 +02001410 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001411 cfqd->rq_in_driver);
Jens Axboe25776e32006-06-01 10:12:26 +02001412
Tejun Heo5b936292009-05-07 22:24:38 +09001413 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001414}
1415
Jens Axboe165125e2007-07-24 09:28:11 +02001416static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Jens Axboe22e2c502005-06-27 10:55:12 +02001418 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001420 WARN_ON(!cfqd->rq_in_driver);
1421 cfqd->rq_in_driver--;
Jens Axboe7b679132008-05-30 12:23:07 +02001422 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001423 cfqd->rq_in_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
Jens Axboeb4878f22005-10-20 16:42:29 +02001426static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Jens Axboe5e705372006-07-13 12:39:25 +02001428 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001429
Jens Axboe5e705372006-07-13 12:39:25 +02001430 if (cfqq->next_rq == rq)
1431 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Jens Axboeb4878f22005-10-20 16:42:29 +02001433 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001434 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001435
Aaron Carroll45333d52008-08-26 15:52:36 +02001436 cfqq->cfqd->rq_queued--;
Tejun Heo03814112012-03-05 13:15:14 -08001437 cfq_blkiocg_update_io_remove_stats(cfqg_to_blkg(RQ_CFQG(rq)),
Tejun Heoc1768262012-03-05 13:15:17 -08001438 &blkio_policy_cfq, rq_data_dir(rq),
1439 rq_is_sync(rq));
Christoph Hellwig65299a32011-08-23 14:50:29 +02001440 if (rq->cmd_flags & REQ_PRIO) {
1441 WARN_ON(!cfqq->prio_pending);
1442 cfqq->prio_pending--;
Jens Axboeb53d1ed2011-08-19 08:34:48 +02001443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444}
1445
Jens Axboe165125e2007-07-24 09:28:11 +02001446static int cfq_merge(struct request_queue *q, struct request **req,
1447 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 struct cfq_data *cfqd = q->elevator->elevator_data;
1450 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Jens Axboe206dc692006-03-28 13:03:44 +02001452 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001453 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001454 *req = __rq;
1455 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
1457
1458 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
Jens Axboe165125e2007-07-24 09:28:11 +02001461static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001462 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Jens Axboe21183b02006-07-13 12:33:14 +02001464 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001465 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Jens Axboe5e705372006-07-13 12:39:25 +02001467 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469}
1470
Divyesh Shah812d4022010-04-08 21:14:23 -07001471static void cfq_bio_merged(struct request_queue *q, struct request *req,
1472 struct bio *bio)
1473{
Tejun Heo03814112012-03-05 13:15:14 -08001474 cfq_blkiocg_update_io_merged_stats(cfqg_to_blkg(RQ_CFQG(req)),
Tejun Heoc1768262012-03-05 13:15:17 -08001475 &blkio_policy_cfq, bio_data_dir(bio),
1476 cfq_bio_sync(bio));
Divyesh Shah812d4022010-04-08 21:14:23 -07001477}
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479static void
Jens Axboe165125e2007-07-24 09:28:11 +02001480cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 struct request *next)
1482{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001483 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Shaohua Li4a0b75c2011-12-16 14:00:22 +01001484 struct cfq_data *cfqd = q->elevator->elevator_data;
1485
Jens Axboe22e2c502005-06-27 10:55:12 +02001486 /*
1487 * reposition in fifo if next is older than rq
1488 */
1489 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001490 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001491 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001492 rq_set_fifo_time(rq, rq_fifo_time(next));
1493 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001494
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001495 if (cfqq->next_rq == next)
1496 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001497 cfq_remove_request(next);
Tejun Heo03814112012-03-05 13:15:14 -08001498 cfq_blkiocg_update_io_merged_stats(cfqg_to_blkg(RQ_CFQG(rq)),
Tejun Heoc1768262012-03-05 13:15:17 -08001499 &blkio_policy_cfq, rq_data_dir(next),
1500 rq_is_sync(next));
Shaohua Li4a0b75c2011-12-16 14:00:22 +01001501
1502 cfqq = RQ_CFQQ(next);
1503 /*
1504 * all requests of this queue are merged to other queues, delete it
1505 * from the service tree. If it's the active_queue,
1506 * cfq_dispatch_requests() will choose to expire it or do idle
1507 */
1508 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list) &&
1509 cfqq != cfqd->active_queue)
1510 cfq_del_cfqq_rr(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001511}
1512
Jens Axboe165125e2007-07-24 09:28:11 +02001513static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001514 struct bio *bio)
1515{
1516 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heoc5869802011-12-14 00:33:41 +01001517 struct cfq_io_cq *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001518 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001519
1520 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001521 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001522 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001523 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001524 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001525
1526 /*
Tejun Heof1a4f4d2011-12-14 00:33:39 +01001527 * Lookup the cfqq that this bio will be queued with and allow
Tejun Heo07c2bd32012-02-08 09:19:42 +01001528 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +01001529 */
Tejun Heo07c2bd32012-02-08 09:19:42 +01001530 cic = cfq_cic_lookup(cfqd, current->io_context);
1531 if (!cic)
1532 return false;
Jens Axboe719d3402006-12-22 09:38:53 +01001533
Vasily Tarasov91fac312007-04-25 12:29:51 +02001534 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001535 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001536}
1537
Divyesh Shah812df482010-04-08 21:15:35 -07001538static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1539{
1540 del_timer(&cfqd->idle_slice_timer);
Tejun Heoc1768262012-03-05 13:15:17 -08001541 cfq_blkiocg_update_idle_time_stats(cfqg_to_blkg(cfqq->cfqg),
1542 &blkio_policy_cfq);
Divyesh Shah812df482010-04-08 21:15:35 -07001543}
1544
Jens Axboefebffd62008-01-28 13:19:43 +01001545static void __cfq_set_active_queue(struct cfq_data *cfqd,
1546 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001547{
1548 if (cfqq) {
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001549 cfq_log_cfqq(cfqd, cfqq, "set_active wl_prio:%d wl_type:%d",
1550 cfqd->serving_prio, cfqd->serving_type);
Tejun Heoc1768262012-03-05 13:15:17 -08001551 cfq_blkiocg_update_avg_queue_size_stats(cfqg_to_blkg(cfqq->cfqg),
1552 &blkio_policy_cfq);
Justin TerAvest62a37f62011-03-23 08:25:44 +01001553 cfqq->slice_start = 0;
1554 cfqq->dispatch_start = jiffies;
1555 cfqq->allocated_slice = 0;
1556 cfqq->slice_end = 0;
1557 cfqq->slice_dispatch = 0;
1558 cfqq->nr_sectors = 0;
1559
1560 cfq_clear_cfqq_wait_request(cfqq);
1561 cfq_clear_cfqq_must_dispatch(cfqq);
1562 cfq_clear_cfqq_must_alloc_slice(cfqq);
1563 cfq_clear_cfqq_fifo_expire(cfqq);
1564 cfq_mark_cfqq_slice_new(cfqq);
1565
1566 cfq_del_timer(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001567 }
1568
1569 cfqd->active_queue = cfqq;
1570}
1571
1572/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001573 * current cfqq expired its slice (or was too idle), select new one
1574 */
1575static void
1576__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Vivek Goyale5ff0822010-04-26 19:25:11 +02001577 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001578{
Jens Axboe7b679132008-05-30 12:23:07 +02001579 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1580
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001581 if (cfq_cfqq_wait_request(cfqq))
Divyesh Shah812df482010-04-08 21:15:35 -07001582 cfq_del_timer(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001583
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001584 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05001585 cfq_clear_cfqq_wait_busy(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001586
1587 /*
Shaohua Liae54abe2010-02-05 13:11:45 +01001588 * If this cfqq is shared between multiple processes, check to
1589 * make sure that those processes are still issuing I/Os within
1590 * the mean seek distance. If not, it may be time to break the
1591 * queues apart again.
1592 */
1593 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
1594 cfq_mark_cfqq_split_coop(cfqq);
1595
1596 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001597 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001598 */
Shaohua Lic553f8e2011-01-14 08:41:03 +01001599 if (timed_out) {
1600 if (cfq_cfqq_slice_new(cfqq))
Vivek Goyalba5bd522011-01-19 08:25:02 -07001601 cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +01001602 else
1603 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001604 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1605 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001606
Vivek Goyale5ff0822010-04-26 19:25:11 +02001607 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001608
Vivek Goyalf04a6422009-12-03 12:59:40 -05001609 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1610 cfq_del_cfqq_rr(cfqd, cfqq);
1611
Jens Axboeedd75ff2007-04-19 12:03:34 +02001612 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001613
1614 if (cfqq == cfqd->active_queue)
1615 cfqd->active_queue = NULL;
1616
1617 if (cfqd->active_cic) {
Tejun Heo11a31222012-02-07 07:51:30 +01001618 put_io_context(cfqd->active_cic->icq.ioc);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001619 cfqd->active_cic = NULL;
1620 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001621}
1622
Vivek Goyale5ff0822010-04-26 19:25:11 +02001623static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001624{
1625 struct cfq_queue *cfqq = cfqd->active_queue;
1626
1627 if (cfqq)
Vivek Goyale5ff0822010-04-26 19:25:11 +02001628 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001629}
1630
Jens Axboe498d3aa22007-04-26 12:54:48 +02001631/*
1632 * Get next queue for service. Unless we have a queue preemption,
1633 * we'll simply select the first cfqq in the service tree.
1634 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001635static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001636{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001637 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001638 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -05001639 cfqd->serving_type);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001640
Vivek Goyalf04a6422009-12-03 12:59:40 -05001641 if (!cfqd->rq_queued)
1642 return NULL;
1643
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001644 /* There is nothing to dispatch */
1645 if (!service_tree)
1646 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001647 if (RB_EMPTY_ROOT(&service_tree->rb))
1648 return NULL;
1649 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001650}
1651
Vivek Goyalf04a6422009-12-03 12:59:40 -05001652static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1653{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001654 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05001655 struct cfq_queue *cfqq;
1656 int i, j;
1657 struct cfq_rb_root *st;
1658
1659 if (!cfqd->rq_queued)
1660 return NULL;
1661
Vivek Goyal25fb5162009-12-03 12:59:46 -05001662 cfqg = cfq_get_next_cfqg(cfqd);
1663 if (!cfqg)
1664 return NULL;
1665
Vivek Goyalf04a6422009-12-03 12:59:40 -05001666 for_each_cfqg_st(cfqg, i, j, st)
1667 if ((cfqq = cfq_rb_first(st)) != NULL)
1668 return cfqq;
1669 return NULL;
1670}
1671
Jens Axboe498d3aa22007-04-26 12:54:48 +02001672/*
1673 * Get and set a new active queue for service.
1674 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001675static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1676 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001677{
Jens Axboee00ef792009-11-04 08:54:55 +01001678 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001679 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001680
Jens Axboe22e2c502005-06-27 10:55:12 +02001681 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001682 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001683}
1684
Jens Axboed9e76202007-04-20 14:27:50 +02001685static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1686 struct request *rq)
1687{
Tejun Heo83096eb2009-05-07 22:24:39 +09001688 if (blk_rq_pos(rq) >= cfqd->last_position)
1689 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001690 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001691 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001692}
1693
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001694static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Shaohua Lie9ce3352010-03-19 08:03:04 +01001695 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001696{
Shaohua Lie9ce3352010-03-19 08:03:04 +01001697 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001698}
1699
Jens Axboea36e71f2009-04-15 12:15:11 +02001700static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1701 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001702{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001703 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001704 struct rb_node *parent, *node;
1705 struct cfq_queue *__cfqq;
1706 sector_t sector = cfqd->last_position;
1707
1708 if (RB_EMPTY_ROOT(root))
1709 return NULL;
1710
1711 /*
1712 * First, if we find a request starting at the end of the last
1713 * request, choose it.
1714 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001715 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001716 if (__cfqq)
1717 return __cfqq;
1718
1719 /*
1720 * If the exact sector wasn't found, the parent of the NULL leaf
1721 * will contain the closest sector.
1722 */
1723 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001724 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001725 return __cfqq;
1726
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001727 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001728 node = rb_next(&__cfqq->p_node);
1729 else
1730 node = rb_prev(&__cfqq->p_node);
1731 if (!node)
1732 return NULL;
1733
1734 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001735 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001736 return __cfqq;
1737
1738 return NULL;
1739}
1740
1741/*
1742 * cfqd - obvious
1743 * cur_cfqq - passed in so that we don't decide that the current queue is
1744 * closely cooperating with itself.
1745 *
1746 * So, basically we're assuming that that cur_cfqq has dispatched at least
1747 * one request, and that cfqd->last_position reflects a position on the disk
1748 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1749 * assumption.
1750 */
1751static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001752 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001753{
1754 struct cfq_queue *cfqq;
1755
Divyesh Shah39c01b22010-03-25 15:45:57 +01001756 if (cfq_class_idle(cur_cfqq))
1757 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001758 if (!cfq_cfqq_sync(cur_cfqq))
1759 return NULL;
1760 if (CFQQ_SEEKY(cur_cfqq))
1761 return NULL;
1762
Jens Axboea36e71f2009-04-15 12:15:11 +02001763 /*
Gui Jianfengb9d8f4c2009-12-08 08:54:17 +01001764 * Don't search priority tree if it's the only queue in the group.
1765 */
1766 if (cur_cfqq->cfqg->nr_cfqq == 1)
1767 return NULL;
1768
1769 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001770 * We should notice if some of the queues are cooperating, eg
1771 * working closely on the same area of the disk. In that case,
1772 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001773 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001774 cfqq = cfqq_close(cfqd, cur_cfqq);
1775 if (!cfqq)
1776 return NULL;
1777
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001778 /* If new queue belongs to different cfq_group, don't choose it */
1779 if (cur_cfqq->cfqg != cfqq->cfqg)
1780 return NULL;
1781
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001782 /*
1783 * It only makes sense to merge sync queues.
1784 */
1785 if (!cfq_cfqq_sync(cfqq))
1786 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001787 if (CFQQ_SEEKY(cfqq))
1788 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001789
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001790 /*
1791 * Do not merge queues of different priority classes
1792 */
1793 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1794 return NULL;
1795
Jens Axboea36e71f2009-04-15 12:15:11 +02001796 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001797}
1798
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001799/*
1800 * Determine whether we should enforce idle window for this queue.
1801 */
1802
1803static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1804{
1805 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001806 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001807
Vivek Goyalf04a6422009-12-03 12:59:40 -05001808 BUG_ON(!service_tree);
1809 BUG_ON(!service_tree->count);
1810
Vivek Goyalb6508c12010-08-23 12:23:33 +02001811 if (!cfqd->cfq_slice_idle)
1812 return false;
1813
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001814 /* We never do for idle class queues. */
1815 if (prio == IDLE_WORKLOAD)
1816 return false;
1817
1818 /* We do for queues that were marked with idle window flag. */
Shaohua Li3c764b72009-12-04 13:12:06 +01001819 if (cfq_cfqq_idle_window(cfqq) &&
1820 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001821 return true;
1822
1823 /*
1824 * Otherwise, we do only if they are the last ones
1825 * in their service tree.
1826 */
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02001827 if (service_tree->count == 1 && cfq_cfqq_sync(cfqq) &&
1828 !cfq_io_thinktime_big(cfqd, &service_tree->ttime, false))
Shaohua Lic1e44752010-11-08 15:01:02 +01001829 return true;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001830 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d",
1831 service_tree->count);
Shaohua Lic1e44752010-11-08 15:01:02 +01001832 return false;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001833}
1834
Jens Axboe6d048f52007-04-25 12:44:27 +02001835static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001836{
Jens Axboe17926692007-01-19 11:59:30 +11001837 struct cfq_queue *cfqq = cfqd->active_queue;
Tejun Heoc5869802011-12-14 00:33:41 +01001838 struct cfq_io_cq *cic;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001839 unsigned long sl, group_idle = 0;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001840
Jens Axboea68bbdd2008-09-24 13:03:33 +02001841 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001842 * SSD device without seek penalty, disable idling. But only do so
1843 * for devices that support queuing, otherwise we still have a problem
1844 * with sync vs async workloads.
Jens Axboea68bbdd2008-09-24 13:03:33 +02001845 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001846 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbdd2008-09-24 13:03:33 +02001847 return;
1848
Jens Axboedd67d052006-06-21 09:36:18 +02001849 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02001850 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02001851
1852 /*
1853 * idle is disabled, either manually or by past process history
1854 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001855 if (!cfq_should_idle(cfqd, cfqq)) {
1856 /* no queue idling. Check for group idling */
1857 if (cfqd->cfq_group_idle)
1858 group_idle = cfqd->cfq_group_idle;
1859 else
1860 return;
1861 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001862
Jens Axboe22e2c502005-06-27 10:55:12 +02001863 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001864 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02001865 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001866 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02001867 return;
1868
1869 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02001870 * task has exited, don't wait
1871 */
Jens Axboe206dc692006-03-28 13:03:44 +02001872 cic = cfqd->active_cic;
Tejun Heof6e8d012012-03-05 13:15:26 -08001873 if (!cic || !atomic_read(&cic->icq.ioc->active_ref))
Jens Axboe6d048f52007-04-25 12:44:27 +02001874 return;
1875
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001876 /*
1877 * If our average think time is larger than the remaining time
1878 * slice, then don't idle. This avoids overrunning the allotted
1879 * time slice.
1880 */
Shaohua Li383cd722011-07-12 14:24:35 +02001881 if (sample_valid(cic->ttime.ttime_samples) &&
1882 (cfqq->slice_end - jiffies < cic->ttime.ttime_mean)) {
Joe Perchesfd16d262011-06-13 10:42:49 +02001883 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%lu",
Shaohua Li383cd722011-07-12 14:24:35 +02001884 cic->ttime.ttime_mean);
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001885 return;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001886 }
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001887
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001888 /* There are other queues in the group, don't do group idle */
1889 if (group_idle && cfqq->cfqg->nr_cfqq > 1)
1890 return;
1891
Jens Axboe3b181522005-06-27 10:56:24 +02001892 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001893
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001894 if (group_idle)
1895 sl = cfqd->cfq_group_idle;
1896 else
1897 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02001898
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001899 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Tejun Heoc1768262012-03-05 13:15:17 -08001900 cfq_blkiocg_update_set_idle_time_stats(cfqg_to_blkg(cfqq->cfqg),
1901 &blkio_policy_cfq);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001902 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu group_idle: %d", sl,
1903 group_idle ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
Jens Axboe498d3aa22007-04-26 12:54:48 +02001906/*
1907 * Move request from internal lists to the request queue dispatch list.
1908 */
Jens Axboe165125e2007-07-24 09:28:11 +02001909static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
Jens Axboe3ed9a292007-04-23 08:33:33 +02001911 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001912 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001913
Jens Axboe7b679132008-05-30 12:23:07 +02001914 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
1915
Jeff Moyer06d21882009-09-11 17:08:59 +02001916 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02001917 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001918 cfqq->dispatched++;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001919 (RQ_CFQG(rq))->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02001920 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02001921
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001922 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
Vivek Goyalc4e78932010-08-23 12:25:03 +02001923 cfqq->nr_sectors += blk_rq_sectors(rq);
Tejun Heo03814112012-03-05 13:15:14 -08001924 cfq_blkiocg_update_dispatch_stats(cfqg_to_blkg(cfqq->cfqg),
Tejun Heoc1768262012-03-05 13:15:17 -08001925 &blkio_policy_cfq, blk_rq_bytes(rq),
1926 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
1929/*
1930 * return expired entry, or NULL to just start from scratch in rbtree
1931 */
Jens Axboefebffd62008-01-28 13:19:43 +01001932static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Jens Axboe30996f42009-10-05 11:03:39 +02001934 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Jens Axboe3b181522005-06-27 10:56:24 +02001936 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11001938
1939 cfq_mark_cfqq_fifo_expire(cfqq);
1940
Jens Axboe89850f72006-07-22 16:48:31 +02001941 if (list_empty(&cfqq->fifo))
1942 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Jens Axboe89850f72006-07-22 16:48:31 +02001944 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02001945 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02001946 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Jens Axboe30996f42009-10-05 11:03:39 +02001948 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001949 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950}
1951
Jens Axboe22e2c502005-06-27 10:55:12 +02001952static inline int
1953cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1954{
1955 const int base_rq = cfqd->cfq_slice_async_rq;
1956
1957 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1958
Namhyung Kimb9f8ce02011-05-24 10:23:21 +02001959 return 2 * base_rq * (IOPRIO_BE_NR - cfqq->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001960}
1961
1962/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001963 * Must be called with the queue_lock held.
1964 */
1965static int cfqq_process_refs(struct cfq_queue *cfqq)
1966{
1967 int process_refs, io_refs;
1968
1969 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
Shaohua Li30d7b942011-01-07 08:46:59 +01001970 process_refs = cfqq->ref - io_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001971 BUG_ON(process_refs < 0);
1972 return process_refs;
1973}
1974
1975static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
1976{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001977 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001978 struct cfq_queue *__cfqq;
1979
Jeff Moyerc10b61f2010-06-17 10:19:11 -04001980 /*
1981 * If there are no process references on the new_cfqq, then it is
1982 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
1983 * chain may have dropped their last reference (not just their
1984 * last process reference).
1985 */
1986 if (!cfqq_process_refs(new_cfqq))
1987 return;
1988
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001989 /* Avoid a circular list and skip interim queue merges */
1990 while ((__cfqq = new_cfqq->new_cfqq)) {
1991 if (__cfqq == cfqq)
1992 return;
1993 new_cfqq = __cfqq;
1994 }
1995
1996 process_refs = cfqq_process_refs(cfqq);
Jeff Moyerc10b61f2010-06-17 10:19:11 -04001997 new_process_refs = cfqq_process_refs(new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001998 /*
1999 * If the process for the cfqq has gone away, there is no
2000 * sense in merging the queues.
2001 */
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002002 if (process_refs == 0 || new_process_refs == 0)
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002003 return;
2004
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002005 /*
2006 * Merge in the direction of the lesser amount of work.
2007 */
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002008 if (new_process_refs >= process_refs) {
2009 cfqq->new_cfqq = new_cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002010 new_cfqq->ref += process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002011 } else {
2012 new_cfqq->new_cfqq = cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002013 cfqq->ref += new_process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002014 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002015}
2016
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002017static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
Vivek Goyal65b32a52009-12-16 17:52:59 -05002018 struct cfq_group *cfqg, enum wl_prio_t prio)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002019{
2020 struct cfq_queue *queue;
2021 int i;
2022 bool key_valid = false;
2023 unsigned long lowest_key = 0;
2024 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2025
Vivek Goyal65b32a52009-12-16 17:52:59 -05002026 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2027 /* select the one with lowest rb_key */
2028 queue = cfq_rb_first(service_tree_for(cfqg, prio, i));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002029 if (queue &&
2030 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2031 lowest_key = queue->rb_key;
2032 cur_best = i;
2033 key_valid = true;
2034 }
2035 }
2036
2037 return cur_best;
2038}
2039
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002040static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002041{
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002042 unsigned slice;
2043 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002044 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002045 unsigned group_slice;
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002046 enum wl_prio_t original_prio = cfqd->serving_prio;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002047
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002048 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002049 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002050 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002051 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002052 cfqd->serving_prio = BE_WORKLOAD;
2053 else {
2054 cfqd->serving_prio = IDLE_WORKLOAD;
2055 cfqd->workload_expires = jiffies + 1;
2056 return;
2057 }
2058
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002059 if (original_prio != cfqd->serving_prio)
2060 goto new_workload;
2061
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002062 /*
2063 * For RT and BE, we have to choose also the type
2064 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2065 * expiration time
2066 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002067 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002068 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002069
2070 /*
Vivek Goyal65b32a52009-12-16 17:52:59 -05002071 * check workload expiration, and that we still have other queues ready
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002072 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002073 if (count && !time_after(jiffies, cfqd->workload_expires))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002074 return;
2075
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002076new_workload:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002077 /* otherwise select new workload type */
2078 cfqd->serving_type =
Vivek Goyal65b32a52009-12-16 17:52:59 -05002079 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio);
2080 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002081 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002082
2083 /*
2084 * the workload slice is computed as a fraction of target latency
2085 * proportional to the number of queues in that workload, over
2086 * all the queues in the same priority class
2087 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002088 group_slice = cfq_group_slice(cfqd, cfqg);
2089
2090 slice = group_slice * count /
2091 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2092 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002093
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002094 if (cfqd->serving_type == ASYNC_WORKLOAD) {
2095 unsigned int tmp;
2096
2097 /*
2098 * Async queues are currently system wide. Just taking
2099 * proportion of queues with-in same group will lead to higher
2100 * async ratio system wide as generally root group is going
2101 * to have higher weight. A more accurate thing would be to
2102 * calculate system wide asnc/sync ratio.
2103 */
2104 tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg);
2105 tmp = tmp/cfqd->busy_queues;
2106 slice = min_t(unsigned, slice, tmp);
2107
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002108 /* async workload slice is scaled down according to
2109 * the sync/async slice ratio. */
2110 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002111 } else
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002112 /* sync workload slice is at least 2 * cfq_slice_idle */
2113 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2114
2115 slice = max_t(unsigned, slice, CFQ_MIN_TT);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002116 cfq_log(cfqd, "workload slice:%d", slice);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002117 cfqd->workload_expires = jiffies + slice;
2118}
2119
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002120static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2121{
2122 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002123 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002124
2125 if (RB_EMPTY_ROOT(&st->rb))
2126 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002127 cfqg = cfq_rb_first_group(st);
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002128 update_min_vdisktime(st);
2129 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002130}
2131
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002132static void cfq_choose_cfqg(struct cfq_data *cfqd)
2133{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002134 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2135
2136 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002137
2138 /* Restore the workload type data */
2139 if (cfqg->saved_workload_slice) {
2140 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2141 cfqd->serving_type = cfqg->saved_workload;
2142 cfqd->serving_prio = cfqg->saved_serving_prio;
Gui Jianfeng66ae2912009-12-15 10:08:45 +01002143 } else
2144 cfqd->workload_expires = jiffies - 1;
2145
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002146 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002147}
2148
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002149/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02002150 * Select a queue for service. If we have a current active queue,
2151 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02002152 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002153static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002154{
Jens Axboea36e71f2009-04-15 12:15:11 +02002155 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002156
2157 cfqq = cfqd->active_queue;
2158 if (!cfqq)
2159 goto new_queue;
2160
Vivek Goyalf04a6422009-12-03 12:59:40 -05002161 if (!cfqd->rq_queued)
2162 return NULL;
Vivek Goyalc244bb52009-12-08 17:52:57 -05002163
2164 /*
2165 * We were waiting for group to get backlogged. Expire the queue
2166 */
2167 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2168 goto expire;
2169
Jens Axboe22e2c502005-06-27 10:55:12 +02002170 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002171 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02002172 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05002173 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2174 /*
2175 * If slice had not expired at the completion of last request
2176 * we might not have turned on wait_busy flag. Don't expire
2177 * the queue yet. Allow the group to get backlogged.
2178 *
2179 * The very fact that we have used the slice, that means we
2180 * have been idling all along on this queue and it should be
2181 * ok to wait for this request to complete.
2182 */
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002183 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2184 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2185 cfqq = NULL;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002186 goto keep_queue;
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002187 } else
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002188 goto check_group_idle;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002189 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002190
2191 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002192 * The active queue has requests and isn't expired, allow it to
2193 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02002194 */
Jens Axboedd67d052006-06-21 09:36:18 +02002195 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002196 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02002197
2198 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02002199 * If another queue has a request waiting within our mean seek
2200 * distance, let it run. The expire code will check for close
2201 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002202 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02002203 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002204 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002205 if (new_cfqq) {
2206 if (!cfqq->new_cfqq)
2207 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02002208 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002209 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002210
2211 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002212 * No requests pending. If the active queue still has requests in
2213 * flight or is idling for a new request, allow either of these
2214 * conditions to happen (or time out) before selecting a new queue.
2215 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002216 if (timer_pending(&cfqd->idle_slice_timer)) {
2217 cfqq = NULL;
2218 goto keep_queue;
2219 }
2220
Shaohua Li8e1ac662010-11-08 15:01:04 +01002221 /*
2222 * This is a deep seek queue, but the device is much faster than
2223 * the queue can deliver, don't idle
2224 **/
2225 if (CFQQ_SEEKY(cfqq) && cfq_cfqq_idle_window(cfqq) &&
2226 (cfq_cfqq_slice_new(cfqq) ||
2227 (cfqq->slice_end - jiffies > jiffies - cfqq->slice_start))) {
2228 cfq_clear_cfqq_deep(cfqq);
2229 cfq_clear_cfqq_idle_window(cfqq);
2230 }
2231
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002232 if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2233 cfqq = NULL;
2234 goto keep_queue;
2235 }
2236
2237 /*
2238 * If group idle is enabled and there are requests dispatched from
2239 * this group, wait for requests to complete.
2240 */
2241check_group_idle:
Shaohua Li7700fc42011-07-12 14:24:56 +02002242 if (cfqd->cfq_group_idle && cfqq->cfqg->nr_cfqq == 1 &&
2243 cfqq->cfqg->dispatched &&
2244 !cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02002245 cfqq = NULL;
2246 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002247 }
2248
Jens Axboe3b181522005-06-27 10:56:24 +02002249expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02002250 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02002251new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002252 /*
2253 * Current queue expired. Check if we have to switch to a new
2254 * service tree
2255 */
2256 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002257 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002258
Jens Axboea36e71f2009-04-15 12:15:11 +02002259 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002260keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02002261 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002262}
2263
Jens Axboefebffd62008-01-28 13:19:43 +01002264static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02002265{
2266 int dispatched = 0;
2267
2268 while (cfqq->next_rq) {
2269 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2270 dispatched++;
2271 }
2272
2273 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05002274
2275 /* By default cfqq is not expired if it is empty. Do it explicitly */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002276 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02002277 return dispatched;
2278}
2279
Jens Axboe498d3aa22007-04-26 12:54:48 +02002280/*
2281 * Drain our current requests. Used for barriers and when switching
2282 * io schedulers on-the-fly.
2283 */
Jens Axboed9e76202007-04-20 14:27:50 +02002284static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002285{
Jens Axboe08717142008-01-28 11:38:15 +01002286 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002287 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002288
Divyesh Shah3440c492010-04-09 09:29:57 +02002289 /* Expire the timeslice of the current active queue first */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002290 cfq_slice_expired(cfqd, 0);
Divyesh Shah3440c492010-04-09 09:29:57 +02002291 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
2292 __cfq_set_active_queue(cfqd, cfqq);
Vivek Goyalf04a6422009-12-03 12:59:40 -05002293 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Divyesh Shah3440c492010-04-09 09:29:57 +02002294 }
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002295
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002296 BUG_ON(cfqd->busy_queues);
2297
Jeff Moyer69237152009-06-12 15:29:30 +02002298 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002299 return dispatched;
2300}
2301
Shaohua Liabc3c742010-03-01 09:20:54 +01002302static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
2303 struct cfq_queue *cfqq)
2304{
2305 /* the queue hasn't finished any request, can't estimate */
2306 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +01002307 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002308 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
2309 cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +01002310 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002311
Shaohua Lic1e44752010-11-08 15:01:02 +01002312 return false;
Shaohua Liabc3c742010-03-01 09:20:54 +01002313}
2314
Jens Axboe0b182d62009-10-06 20:49:37 +02002315static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02002316{
Jens Axboe2f5cb732009-04-07 08:51:19 +02002317 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Jens Axboe2f5cb732009-04-07 08:51:19 +02002319 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02002320 * Drain async requests before we start sync IO
2321 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002322 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02002323 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02002324
2325 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002326 * If this is an async queue and we have sync IO in flight, let it wait
2327 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002328 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002329 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002330
Shaohua Liabc3c742010-03-01 09:20:54 +01002331 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002332 if (cfq_class_idle(cfqq))
2333 max_dispatch = 1;
2334
2335 /*
2336 * Does this cfqq already have too much IO in flight?
2337 */
2338 if (cfqq->dispatched >= max_dispatch) {
Shaohua Lief8a41d2011-03-07 09:26:29 +01002339 bool promote_sync = false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002340 /*
2341 * idle queue must always only have a single IO in flight
2342 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02002343 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002344 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02002345
Jens Axboe2f5cb732009-04-07 08:51:19 +02002346 /*
Li, Shaohuac4ade942011-03-23 08:30:34 +01002347 * If there is only one sync queue
2348 * we can ignore async queue here and give the sync
Shaohua Lief8a41d2011-03-07 09:26:29 +01002349 * queue no dispatch limit. The reason is a sync queue can
2350 * preempt async queue, limiting the sync queue doesn't make
2351 * sense. This is useful for aiostress test.
2352 */
Li, Shaohuac4ade942011-03-23 08:30:34 +01002353 if (cfq_cfqq_sync(cfqq) && cfqd->busy_sync_queues == 1)
2354 promote_sync = true;
Shaohua Lief8a41d2011-03-07 09:26:29 +01002355
2356 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002357 * We have other queues, don't allow more IO from this one
2358 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002359 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq) &&
2360 !promote_sync)
Jens Axboe0b182d62009-10-06 20:49:37 +02002361 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11002362
Jens Axboe2f5cb732009-04-07 08:51:19 +02002363 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01002364 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02002365 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002366 if (cfqd->busy_queues == 1 || promote_sync)
Shaohua Liabc3c742010-03-01 09:20:54 +01002367 max_dispatch = -1;
2368 else
2369 /*
2370 * Normally we start throttling cfqq when cfq_quantum/2
2371 * requests have been dispatched. But we can drive
2372 * deeper queue depths at the beginning of slice
2373 * subjected to upper limit of cfq_quantum.
2374 * */
2375 max_dispatch = cfqd->cfq_quantum;
Jens Axboe8e296752009-10-03 16:26:03 +02002376 }
2377
2378 /*
2379 * Async queues must wait a bit before being allowed dispatch.
2380 * We also ramp up the dispatch depth gradually for async IO,
2381 * based on the last sync IO we serviced
2382 */
Jens Axboe963b72f2009-10-03 19:42:18 +02002383 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Corrado Zoccolo573412b2009-12-06 11:48:52 +01002384 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
Jens Axboe8e296752009-10-03 16:26:03 +02002385 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02002386
Jens Axboe61f0c1d2009-10-03 19:46:03 +02002387 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02002388 if (!depth && !cfqq->dispatched)
2389 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02002390 if (depth < max_dispatch)
2391 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 }
2393
Jens Axboe0b182d62009-10-06 20:49:37 +02002394 /*
2395 * If we're below the current max, allow a dispatch
2396 */
2397 return cfqq->dispatched < max_dispatch;
2398}
2399
2400/*
2401 * Dispatch a request from cfqq, moving them to the request queue
2402 * dispatch list.
2403 */
2404static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2405{
2406 struct request *rq;
2407
2408 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2409
2410 if (!cfq_may_dispatch(cfqd, cfqq))
2411 return false;
2412
2413 /*
2414 * follow expired path, else get first next available
2415 */
2416 rq = cfq_check_fifo(cfqq);
2417 if (!rq)
2418 rq = cfqq->next_rq;
2419
2420 /*
2421 * insert request into driver dispatch list
2422 */
2423 cfq_dispatch_insert(cfqd->queue, rq);
2424
2425 if (!cfqd->active_cic) {
Tejun Heoc5869802011-12-14 00:33:41 +01002426 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe0b182d62009-10-06 20:49:37 +02002427
Tejun Heoc5869802011-12-14 00:33:41 +01002428 atomic_long_inc(&cic->icq.ioc->refcount);
Jens Axboe0b182d62009-10-06 20:49:37 +02002429 cfqd->active_cic = cic;
2430 }
2431
2432 return true;
2433}
2434
2435/*
2436 * Find the cfqq that we need to service and move a request from that to the
2437 * dispatch list
2438 */
2439static int cfq_dispatch_requests(struct request_queue *q, int force)
2440{
2441 struct cfq_data *cfqd = q->elevator->elevator_data;
2442 struct cfq_queue *cfqq;
2443
2444 if (!cfqd->busy_queues)
2445 return 0;
2446
2447 if (unlikely(force))
2448 return cfq_forced_dispatch(cfqd);
2449
2450 cfqq = cfq_select_queue(cfqd);
2451 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002452 return 0;
2453
Jens Axboe2f5cb732009-04-07 08:51:19 +02002454 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002455 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002456 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002457 if (!cfq_dispatch_request(cfqd, cfqq))
2458 return 0;
2459
Jens Axboe2f5cb732009-04-07 08:51:19 +02002460 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002461 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002462
2463 /*
2464 * expire an async queue immediately if it has used up its slice. idle
2465 * queue always expire after 1 dispatch round.
2466 */
2467 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2468 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2469 cfq_class_idle(cfqq))) {
2470 cfqq->slice_end = jiffies + 1;
Vivek Goyale5ff0822010-04-26 19:25:11 +02002471 cfq_slice_expired(cfqd, 0);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002472 }
2473
Shan Weib217a902009-09-01 10:06:42 +02002474 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002475 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476}
2477
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478/*
Jens Axboe5e705372006-07-13 12:39:25 +02002479 * task holds one reference to the queue, dropped when task exits. each rq
2480 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05002482 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 * queue lock must be held here.
2484 */
2485static void cfq_put_queue(struct cfq_queue *cfqq)
2486{
Jens Axboe22e2c502005-06-27 10:55:12 +02002487 struct cfq_data *cfqd = cfqq->cfqd;
Justin TerAvest0bbfeb82011-03-01 15:05:08 -05002488 struct cfq_group *cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02002489
Shaohua Li30d7b942011-01-07 08:46:59 +01002490 BUG_ON(cfqq->ref <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Shaohua Li30d7b942011-01-07 08:46:59 +01002492 cfqq->ref--;
2493 if (cfqq->ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 return;
2495
Jens Axboe7b679132008-05-30 12:23:07 +02002496 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002498 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002499 cfqg = cfqq->cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002501 if (unlikely(cfqd->active_queue == cfqq)) {
Vivek Goyale5ff0822010-04-26 19:25:11 +02002502 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002503 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002504 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002505
Vivek Goyalf04a6422009-12-03 12:59:40 -05002506 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 kmem_cache_free(cfq_pool, cfqq);
Tejun Heo1adaf3d2012-03-05 13:15:15 -08002508 blkg_put(cfqg_to_blkg(cfqg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509}
2510
Shaohua Lid02a2c02010-05-25 10:16:53 +02002511static void cfq_put_cooperator(struct cfq_queue *cfqq)
Jens Axboe89850f72006-07-22 16:48:31 +02002512{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002513 struct cfq_queue *__cfqq, *next;
2514
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002515 /*
2516 * If this queue was scheduled to merge with another queue, be
2517 * sure to drop the reference taken on that queue (and others in
2518 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2519 */
2520 __cfqq = cfqq->new_cfqq;
2521 while (__cfqq) {
2522 if (__cfqq == cfqq) {
2523 WARN(1, "cfqq->new_cfqq loop detected\n");
2524 break;
2525 }
2526 next = __cfqq->new_cfqq;
2527 cfq_put_queue(__cfqq);
2528 __cfqq = next;
2529 }
Shaohua Lid02a2c02010-05-25 10:16:53 +02002530}
2531
2532static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2533{
2534 if (unlikely(cfqq == cfqd->active_queue)) {
2535 __cfq_slice_expired(cfqd, cfqq, 0);
2536 cfq_schedule_dispatch(cfqd);
2537 }
2538
2539 cfq_put_cooperator(cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002540
Jens Axboe89850f72006-07-22 16:48:31 +02002541 cfq_put_queue(cfqq);
2542}
2543
Tejun Heo9b84cac2011-12-14 00:33:42 +01002544static void cfq_init_icq(struct io_cq *icq)
2545{
2546 struct cfq_io_cq *cic = icq_to_cic(icq);
2547
2548 cic->ttime.last_end_request = jiffies;
2549}
2550
Tejun Heoc5869802011-12-14 00:33:41 +01002551static void cfq_exit_icq(struct io_cq *icq)
Jens Axboe89850f72006-07-22 16:48:31 +02002552{
Tejun Heoc5869802011-12-14 00:33:41 +01002553 struct cfq_io_cq *cic = icq_to_cic(icq);
Tejun Heo283287a2011-12-14 00:33:38 +01002554 struct cfq_data *cfqd = cic_to_cfqd(cic);
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002555
Jens Axboeff6657c2009-04-08 10:58:57 +02002556 if (cic->cfqq[BLK_RW_ASYNC]) {
2557 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2558 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002559 }
2560
Jens Axboeff6657c2009-04-08 10:58:57 +02002561 if (cic->cfqq[BLK_RW_SYNC]) {
2562 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2563 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002564 }
Jens Axboe89850f72006-07-22 16:48:31 +02002565}
2566
Tejun Heoabede6d2012-03-19 15:10:57 -07002567static void cfq_init_prio_data(struct cfq_queue *cfqq, struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002568{
2569 struct task_struct *tsk = current;
2570 int ioprio_class;
2571
Jens Axboe3b181522005-06-27 10:56:24 +02002572 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002573 return;
2574
Tejun Heo598971b2012-03-19 15:10:58 -07002575 ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002576 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002577 default:
2578 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2579 case IOPRIO_CLASS_NONE:
2580 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002581 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002582 */
2583 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002584 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002585 break;
2586 case IOPRIO_CLASS_RT:
Tejun Heo598971b2012-03-19 15:10:58 -07002587 cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
Jens Axboefe094d92008-01-31 13:08:54 +01002588 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2589 break;
2590 case IOPRIO_CLASS_BE:
Tejun Heo598971b2012-03-19 15:10:58 -07002591 cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
Jens Axboefe094d92008-01-31 13:08:54 +01002592 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2593 break;
2594 case IOPRIO_CLASS_IDLE:
2595 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2596 cfqq->ioprio = 7;
2597 cfq_clear_cfqq_idle_window(cfqq);
2598 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002599 }
2600
2601 /*
2602 * keep track of original prio settings in case we have to temporarily
2603 * elevate the priority of this queue
2604 */
2605 cfqq->org_ioprio = cfqq->ioprio;
Jens Axboe3b181522005-06-27 10:56:24 +02002606 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002607}
2608
Tejun Heo598971b2012-03-19 15:10:58 -07002609static void check_ioprio_changed(struct cfq_io_cq *cic, struct bio *bio)
Jens Axboe22e2c502005-06-27 10:55:12 +02002610{
Tejun Heo598971b2012-03-19 15:10:58 -07002611 int ioprio = cic->icq.ioc->ioprio;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002612 struct cfq_data *cfqd = cic_to_cfqd(cic);
Al Viro478a82b2006-03-18 13:25:24 -05002613 struct cfq_queue *cfqq;
Jens Axboe35e60772006-06-14 09:10:45 +02002614
Tejun Heo598971b2012-03-19 15:10:58 -07002615 /*
2616 * Check whether ioprio has changed. The condition may trigger
2617 * spuriously on a newly created cic but there's no harm.
2618 */
2619 if (unlikely(!cfqd) || likely(cic->ioprio == ioprio))
Jens Axboecaaa5f92006-06-16 11:23:00 +02002620 return;
2621
Jens Axboeff6657c2009-04-08 10:58:57 +02002622 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002623 if (cfqq) {
2624 struct cfq_queue *new_cfqq;
Tejun Heoabede6d2012-03-19 15:10:57 -07002625 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic, bio,
2626 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002627 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002628 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002629 cfq_put_queue(cfqq);
2630 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002631 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002632
Jens Axboeff6657c2009-04-08 10:58:57 +02002633 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002634 if (cfqq)
2635 cfq_mark_cfqq_prio_changed(cfqq);
Tejun Heo598971b2012-03-19 15:10:58 -07002636
2637 cic->ioprio = ioprio;
Jens Axboe22e2c502005-06-27 10:55:12 +02002638}
2639
Jens Axboed5036d72009-06-26 10:44:34 +02002640static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002641 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002642{
2643 RB_CLEAR_NODE(&cfqq->rb_node);
2644 RB_CLEAR_NODE(&cfqq->p_node);
2645 INIT_LIST_HEAD(&cfqq->fifo);
2646
Shaohua Li30d7b942011-01-07 08:46:59 +01002647 cfqq->ref = 0;
Jens Axboed5036d72009-06-26 10:44:34 +02002648 cfqq->cfqd = cfqd;
2649
2650 cfq_mark_cfqq_prio_changed(cfqq);
2651
2652 if (is_sync) {
2653 if (!cfq_class_idle(cfqq))
2654 cfq_mark_cfqq_idle_window(cfqq);
2655 cfq_mark_cfqq_sync(cfqq);
2656 }
2657 cfqq->pid = pid;
2658}
2659
Vivek Goyal246103332009-12-03 12:59:51 -05002660#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heo598971b2012-03-19 15:10:58 -07002661static void check_blkcg_changed(struct cfq_io_cq *cic, struct bio *bio)
Vivek Goyal246103332009-12-03 12:59:51 -05002662{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002663 struct cfq_data *cfqd = cic_to_cfqd(cic);
Tejun Heo598971b2012-03-19 15:10:58 -07002664 struct cfq_queue *sync_cfqq;
2665 uint64_t id;
Vivek Goyal246103332009-12-03 12:59:51 -05002666
Tejun Heo598971b2012-03-19 15:10:58 -07002667 rcu_read_lock();
2668 id = bio_blkio_cgroup(bio)->id;
2669 rcu_read_unlock();
2670
2671 /*
2672 * Check whether blkcg has changed. The condition may trigger
2673 * spuriously on a newly created cic but there's no harm.
2674 */
2675 if (unlikely(!cfqd) || likely(cic->blkcg_id == id))
Vivek Goyal246103332009-12-03 12:59:51 -05002676 return;
2677
Tejun Heo598971b2012-03-19 15:10:58 -07002678 sync_cfqq = cic_to_cfqq(cic, 1);
Vivek Goyal246103332009-12-03 12:59:51 -05002679 if (sync_cfqq) {
2680 /*
2681 * Drop reference to sync queue. A new sync queue will be
2682 * assigned in new group upon arrival of a fresh request.
2683 */
2684 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2685 cic_set_cfqq(cic, NULL, 1);
2686 cfq_put_queue(sync_cfqq);
2687 }
Tejun Heo598971b2012-03-19 15:10:58 -07002688
2689 cic->blkcg_id = id;
Vivek Goyal246103332009-12-03 12:59:51 -05002690}
Tejun Heo598971b2012-03-19 15:10:58 -07002691#else
2692static inline void check_blkcg_changed(struct cfq_io_cq *cic, struct bio *bio) { }
Vivek Goyal246103332009-12-03 12:59:51 -05002693#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2694
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695static struct cfq_queue *
Tejun Heoabede6d2012-03-19 15:10:57 -07002696cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync, struct cfq_io_cq *cic,
2697 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698{
Tejun Heo0a5a7d02012-03-05 13:15:02 -08002699 struct blkio_cgroup *blkcg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002701 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
2703retry:
Tejun Heo2a7f1242012-03-05 13:15:01 -08002704 rcu_read_lock();
2705
Tejun Heo4f85cb92012-03-05 13:15:28 -08002706 blkcg = bio_blkio_cgroup(bio);
Tejun Heocd1604f2012-03-05 13:15:06 -08002707 cfqg = cfq_lookup_create_cfqg(cfqd, blkcg);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002708 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Jens Axboe6118b702009-06-30 09:34:12 +02002710 /*
2711 * Always try a new alloc if we fell back to the OOM cfqq
2712 * originally, since it should just be a temporary situation.
2713 */
2714 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2715 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 if (new_cfqq) {
2717 cfqq = new_cfqq;
2718 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002719 } else if (gfp_mask & __GFP_WAIT) {
Tejun Heo2a7f1242012-03-05 13:15:01 -08002720 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002722 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002723 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002724 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002726 if (new_cfqq)
2727 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002728 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002729 cfqq = kmem_cache_alloc_node(cfq_pool,
2730 gfp_mask | __GFP_ZERO,
2731 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
Jens Axboe6118b702009-06-30 09:34:12 +02002734 if (cfqq) {
2735 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
Tejun Heoabede6d2012-03-19 15:10:57 -07002736 cfq_init_prio_data(cfqq, cic);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002737 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002738 cfq_log_cfqq(cfqd, cfqq, "alloced");
2739 } else
2740 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 }
2742
2743 if (new_cfqq)
2744 kmem_cache_free(cfq_pool, new_cfqq);
2745
Tejun Heo2a7f1242012-03-05 13:15:01 -08002746 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 return cfqq;
2748}
2749
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002750static struct cfq_queue **
2751cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2752{
Jens Axboefe094d92008-01-31 13:08:54 +01002753 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002754 case IOPRIO_CLASS_RT:
2755 return &cfqd->async_cfqq[0][ioprio];
Tejun Heo598971b2012-03-19 15:10:58 -07002756 case IOPRIO_CLASS_NONE:
2757 ioprio = IOPRIO_NORM;
2758 /* fall through */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002759 case IOPRIO_CLASS_BE:
2760 return &cfqd->async_cfqq[1][ioprio];
2761 case IOPRIO_CLASS_IDLE:
2762 return &cfqd->async_idle_cfqq;
2763 default:
2764 BUG();
2765 }
2766}
2767
Jens Axboe15c31be2007-07-10 13:43:25 +02002768static struct cfq_queue *
Tejun Heoabede6d2012-03-19 15:10:57 -07002769cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct cfq_io_cq *cic,
Tejun Heo4f85cb92012-03-05 13:15:28 -08002770 struct bio *bio, gfp_t gfp_mask)
Jens Axboe15c31be2007-07-10 13:43:25 +02002771{
Tejun Heo598971b2012-03-19 15:10:58 -07002772 const int ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio);
2773 const int ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002774 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002775 struct cfq_queue *cfqq = NULL;
2776
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002777 if (!is_sync) {
2778 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2779 cfqq = *async_cfqq;
2780 }
2781
Jens Axboe6118b702009-06-30 09:34:12 +02002782 if (!cfqq)
Tejun Heoabede6d2012-03-19 15:10:57 -07002783 cfqq = cfq_find_alloc_queue(cfqd, is_sync, cic, bio, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002784
2785 /*
2786 * pin the queue now that it's allocated, scheduler exit will prune it
2787 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002788 if (!is_sync && !(*async_cfqq)) {
Shaohua Li30d7b942011-01-07 08:46:59 +01002789 cfqq->ref++;
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002790 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002791 }
2792
Shaohua Li30d7b942011-01-07 08:46:59 +01002793 cfqq->ref++;
Jens Axboe15c31be2007-07-10 13:43:25 +02002794 return cfqq;
2795}
2796
Jens Axboe22e2c502005-06-27 10:55:12 +02002797static void
Shaohua Li383cd722011-07-12 14:24:35 +02002798__cfq_update_io_thinktime(struct cfq_ttime *ttime, unsigned long slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02002799{
Shaohua Li383cd722011-07-12 14:24:35 +02002800 unsigned long elapsed = jiffies - ttime->last_end_request;
2801 elapsed = min(elapsed, 2UL * slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02002802
Shaohua Li383cd722011-07-12 14:24:35 +02002803 ttime->ttime_samples = (7*ttime->ttime_samples + 256) / 8;
2804 ttime->ttime_total = (7*ttime->ttime_total + 256*elapsed) / 8;
2805 ttime->ttime_mean = (ttime->ttime_total + 128) / ttime->ttime_samples;
2806}
2807
2808static void
2809cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01002810 struct cfq_io_cq *cic)
Shaohua Li383cd722011-07-12 14:24:35 +02002811{
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02002812 if (cfq_cfqq_sync(cfqq)) {
Shaohua Li383cd722011-07-12 14:24:35 +02002813 __cfq_update_io_thinktime(&cic->ttime, cfqd->cfq_slice_idle);
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02002814 __cfq_update_io_thinktime(&cfqq->service_tree->ttime,
2815 cfqd->cfq_slice_idle);
2816 }
Shaohua Li7700fc42011-07-12 14:24:56 +02002817#ifdef CONFIG_CFQ_GROUP_IOSCHED
2818 __cfq_update_io_thinktime(&cfqq->cfqg->ttime, cfqd->cfq_group_idle);
2819#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02002820}
2821
Jens Axboe206dc692006-03-28 13:03:44 +02002822static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002823cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02002824 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02002825{
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01002826 sector_t sdist = 0;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01002827 sector_t n_sec = blk_rq_sectors(rq);
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01002828 if (cfqq->last_request_pos) {
2829 if (cfqq->last_request_pos < blk_rq_pos(rq))
2830 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
2831 else
2832 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
2833 }
Jens Axboe206dc692006-03-28 13:03:44 +02002834
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01002835 cfqq->seek_history <<= 1;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01002836 if (blk_queue_nonrot(cfqd->queue))
2837 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
2838 else
2839 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
Jens Axboe206dc692006-03-28 13:03:44 +02002840}
Jens Axboe22e2c502005-06-27 10:55:12 +02002841
2842/*
2843 * Disable idle window if the process thinks too long or seeks so much that
2844 * it doesn't matter
2845 */
2846static void
2847cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01002848 struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002849{
Jens Axboe7b679132008-05-30 12:23:07 +02002850 int old_idle, enable_idle;
Jens Axboe1be92f22007-04-19 14:32:26 +02002851
Jens Axboe08717142008-01-28 11:38:15 +01002852 /*
2853 * Don't idle for async or idle io prio class
2854 */
2855 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f22007-04-19 14:32:26 +02002856 return;
2857
Jens Axboec265a7f2008-06-26 13:49:33 +02002858 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002859
Corrado Zoccolo76280af2009-11-26 10:02:58 +01002860 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
2861 cfq_mark_cfqq_deep(cfqq);
2862
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02002863 if (cfqq->next_rq && (cfqq->next_rq->cmd_flags & REQ_NOIDLE))
2864 enable_idle = 0;
Tejun Heof6e8d012012-03-05 13:15:26 -08002865 else if (!atomic_read(&cic->icq.ioc->active_ref) ||
Tejun Heoc5869802011-12-14 00:33:41 +01002866 !cfqd->cfq_slice_idle ||
2867 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02002868 enable_idle = 0;
Shaohua Li383cd722011-07-12 14:24:35 +02002869 else if (sample_valid(cic->ttime.ttime_samples)) {
2870 if (cic->ttime.ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02002871 enable_idle = 0;
2872 else
2873 enable_idle = 1;
2874 }
2875
Jens Axboe7b679132008-05-30 12:23:07 +02002876 if (old_idle != enable_idle) {
2877 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
2878 if (enable_idle)
2879 cfq_mark_cfqq_idle_window(cfqq);
2880 else
2881 cfq_clear_cfqq_idle_window(cfqq);
2882 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002883}
2884
Jens Axboe22e2c502005-06-27 10:55:12 +02002885/*
2886 * Check if new_cfqq should preempt the currently active queue. Return 0 for
2887 * no or if we aren't sure, a 1 will cause a preempt.
2888 */
Jens Axboea6151c32009-10-07 20:02:57 +02002889static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02002890cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02002891 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002892{
Jens Axboe6d048f52007-04-25 12:44:27 +02002893 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002894
Jens Axboe6d048f52007-04-25 12:44:27 +02002895 cfqq = cfqd->active_queue;
2896 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02002897 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002898
Jens Axboe6d048f52007-04-25 12:44:27 +02002899 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002900 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002901
2902 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002903 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002904
Jens Axboe22e2c502005-06-27 10:55:12 +02002905 /*
Divyesh Shah875feb62010-01-06 18:58:20 -08002906 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
2907 */
2908 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
2909 return false;
2910
2911 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02002912 * if the new request is sync, but the currently running queue is
2913 * not, let the sync request have priority.
2914 */
Jens Axboe5e705372006-07-13 12:39:25 +02002915 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002916 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002917
Vivek Goyal8682e1f2009-12-03 12:59:50 -05002918 if (new_cfqq->cfqg != cfqq->cfqg)
2919 return false;
2920
2921 if (cfq_slice_used(cfqq))
2922 return true;
2923
2924 /* Allow preemption only if we are idling on sync-noidle tree */
2925 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
2926 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
2927 new_cfqq->service_tree->count == 2 &&
2928 RB_EMPTY_ROOT(&cfqq->sort_list))
2929 return true;
2930
Jens Axboe374f84a2006-07-23 01:42:19 +02002931 /*
Jens Axboeb53d1ed2011-08-19 08:34:48 +02002932 * So both queues are sync. Let the new request get disk time if
2933 * it's a metadata request and the current queue is doing regular IO.
2934 */
Christoph Hellwig65299a32011-08-23 14:50:29 +02002935 if ((rq->cmd_flags & REQ_PRIO) && !cfqq->prio_pending)
Jens Axboeb53d1ed2011-08-19 08:34:48 +02002936 return true;
2937
2938 /*
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002939 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
2940 */
2941 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002942 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002943
Shaohua Lid2d59e12010-11-08 15:01:03 +01002944 /* An idle queue should not be idle now for some reason */
2945 if (RB_EMPTY_ROOT(&cfqq->sort_list) && !cfq_should_idle(cfqd, cfqq))
2946 return true;
2947
Jens Axboe1e3335d2007-02-14 19:59:49 +01002948 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002949 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002950
2951 /*
2952 * if this request is as-good as one we would expect from the
2953 * current cfqq, let it preempt
2954 */
Shaohua Lie9ce3352010-03-19 08:03:04 +01002955 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02002956 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002957
Jens Axboea6151c32009-10-07 20:02:57 +02002958 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002959}
2960
2961/*
2962 * cfqq preempts the active queue. if we allowed preempt with no slice left,
2963 * let it have half of its nominal slice.
2964 */
2965static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2966{
Shaohua Lidf0793a2012-01-19 09:20:09 +01002967 enum wl_type_t old_type = cfqq_type(cfqd->active_queue);
2968
Jens Axboe7b679132008-05-30 12:23:07 +02002969 cfq_log_cfqq(cfqd, cfqq, "preempt");
Shaohua Lidf0793a2012-01-19 09:20:09 +01002970 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02002971
Jens Axboebf572252006-07-19 20:29:12 +02002972 /*
Shaohua Lif8ae6e32011-01-14 08:41:02 +01002973 * workload type is changed, don't save slice, otherwise preempt
2974 * doesn't happen
2975 */
Shaohua Lidf0793a2012-01-19 09:20:09 +01002976 if (old_type != cfqq_type(cfqq))
Shaohua Lif8ae6e32011-01-14 08:41:02 +01002977 cfqq->cfqg->saved_workload_slice = 0;
2978
2979 /*
Jens Axboebf572252006-07-19 20:29:12 +02002980 * Put the new queue at the front of the of the current list,
2981 * so we know that it will be selected next.
2982 */
2983 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02002984
2985 cfq_service_tree_add(cfqd, cfqq, 1);
Justin TerAvesteda5e0c2011-03-22 21:26:49 +01002986
Justin TerAvest62a37f62011-03-23 08:25:44 +01002987 cfqq->slice_end = 0;
2988 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002989}
2990
2991/*
Jens Axboe5e705372006-07-13 12:39:25 +02002992 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02002993 * something we should do about it
2994 */
2995static void
Jens Axboe5e705372006-07-13 12:39:25 +02002996cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
2997 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002998{
Tejun Heoc5869802011-12-14 00:33:41 +01002999 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003000
Aaron Carroll45333d52008-08-26 15:52:36 +02003001 cfqd->rq_queued++;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003002 if (rq->cmd_flags & REQ_PRIO)
3003 cfqq->prio_pending++;
Jens Axboe374f84a2006-07-23 01:42:19 +02003004
Shaohua Li383cd722011-07-12 14:24:35 +02003005 cfq_update_io_thinktime(cfqd, cfqq, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003006 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003007 cfq_update_idle_window(cfqd, cfqq, cic);
3008
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003009 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003010
3011 if (cfqq == cfqd->active_queue) {
3012 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003013 * Remember that we saw a request from this process, but
3014 * don't start queuing just yet. Otherwise we risk seeing lots
3015 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003016 * and merging. If the request is already larger than a single
3017 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003018 * merging is already done. Ditto for a busy system that
3019 * has other work pending, don't risk delaying until the
3020 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003021 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003022 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003023 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3024 cfqd->busy_queues > 1) {
Divyesh Shah812df482010-04-08 21:15:35 -07003025 cfq_del_timer(cfqd, cfqq);
Gui Jianfeng554554f2009-12-10 09:38:39 +01003026 cfq_clear_cfqq_wait_request(cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003027 __blk_run_queue(cfqd->queue);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003028 } else {
Vivek Goyale98ef892010-06-18 10:39:47 -04003029 cfq_blkiocg_update_idle_time_stats(
Tejun Heoc1768262012-03-05 13:15:17 -08003030 cfqg_to_blkg(cfqq->cfqg),
3031 &blkio_policy_cfq);
Vivek Goyalbf7919372009-12-03 12:59:37 -05003032 cfq_mark_cfqq_must_dispatch(cfqq);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003033 }
Jens Axboed6ceb252009-04-14 14:18:16 +02003034 }
Jens Axboe5e705372006-07-13 12:39:25 +02003035 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003036 /*
3037 * not the active queue - expire current slice if it is
3038 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003039 * has some old slice time left and is of higher priority or
3040 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003041 */
3042 cfq_preempt_queue(cfqd, cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003043 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003044 }
3045}
3046
Jens Axboe165125e2007-07-24 09:28:11 +02003047static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003048{
Jens Axboeb4878f22005-10-20 16:42:29 +02003049 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003050 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003051
Jens Axboe7b679132008-05-30 12:23:07 +02003052 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Tejun Heoabede6d2012-03-19 15:10:57 -07003053 cfq_init_prio_data(cfqq, RQ_CIC(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
Jens Axboe30996f42009-10-05 11:03:39 +02003055 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02003056 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003057 cfq_add_rq_rb(rq);
Tejun Heo03814112012-03-05 13:15:14 -08003058 cfq_blkiocg_update_io_add_stats(cfqg_to_blkg(RQ_CFQG(rq)),
Tejun Heoc1768262012-03-05 13:15:17 -08003059 &blkio_policy_cfq,
Tejun Heo03814112012-03-05 13:15:14 -08003060 cfqg_to_blkg(cfqd->serving_group),
3061 rq_data_dir(rq), rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02003062 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063}
3064
Aaron Carroll45333d52008-08-26 15:52:36 +02003065/*
3066 * Update hw_tag based on peak queue depth over 50 samples under
3067 * sufficient load.
3068 */
3069static void cfq_update_hw_tag(struct cfq_data *cfqd)
3070{
Shaohua Li1a1238a2009-10-27 08:46:23 +01003071 struct cfq_queue *cfqq = cfqd->active_queue;
3072
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003073 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
3074 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003075
3076 if (cfqd->hw_tag == 1)
3077 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02003078
3079 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003080 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003081 return;
3082
Shaohua Li1a1238a2009-10-27 08:46:23 +01003083 /*
3084 * If active queue hasn't enough requests and can idle, cfq might not
3085 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3086 * case
3087 */
3088 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3089 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003090 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
Shaohua Li1a1238a2009-10-27 08:46:23 +01003091 return;
3092
Aaron Carroll45333d52008-08-26 15:52:36 +02003093 if (cfqd->hw_tag_samples++ < 50)
3094 return;
3095
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003096 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003097 cfqd->hw_tag = 1;
3098 else
3099 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02003100}
3101
Vivek Goyal7667aa02009-12-08 17:52:58 -05003102static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3103{
Tejun Heoc5869802011-12-14 00:33:41 +01003104 struct cfq_io_cq *cic = cfqd->active_cic;
Vivek Goyal7667aa02009-12-08 17:52:58 -05003105
Justin TerAvest02a8f012011-02-09 14:20:03 +01003106 /* If the queue already has requests, don't wait */
3107 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
3108 return false;
3109
Vivek Goyal7667aa02009-12-08 17:52:58 -05003110 /* If there are other queues in the group, don't wait */
3111 if (cfqq->cfqg->nr_cfqq > 1)
3112 return false;
3113
Shaohua Li7700fc42011-07-12 14:24:56 +02003114 /* the only queue in the group, but think time is big */
3115 if (cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true))
3116 return false;
3117
Vivek Goyal7667aa02009-12-08 17:52:58 -05003118 if (cfq_slice_used(cfqq))
3119 return true;
3120
3121 /* if slice left is less than think time, wait busy */
Shaohua Li383cd722011-07-12 14:24:35 +02003122 if (cic && sample_valid(cic->ttime.ttime_samples)
3123 && (cfqq->slice_end - jiffies < cic->ttime.ttime_mean))
Vivek Goyal7667aa02009-12-08 17:52:58 -05003124 return true;
3125
3126 /*
3127 * If think times is less than a jiffy than ttime_mean=0 and above
3128 * will not be true. It might happen that slice has not expired yet
3129 * but will expire soon (4-5 ns) during select_queue(). To cover the
3130 * case where think time is less than a jiffy, mark the queue wait
3131 * busy if only 1 jiffy is left in the slice.
3132 */
3133 if (cfqq->slice_end - jiffies == 1)
3134 return true;
3135
3136 return false;
3137}
3138
Jens Axboe165125e2007-07-24 09:28:11 +02003139static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140{
Jens Axboe5e705372006-07-13 12:39:25 +02003141 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003142 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02003143 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003144 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Jens Axboeb4878f22005-10-20 16:42:29 +02003146 now = jiffies;
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003147 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
3148 !!(rq->cmd_flags & REQ_NOIDLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Aaron Carroll45333d52008-08-26 15:52:36 +02003150 cfq_update_hw_tag(cfqd);
3151
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003152 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02003153 WARN_ON(!cfqq->dispatched);
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003154 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02003155 cfqq->dispatched--;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003156 (RQ_CFQG(rq))->dispatched--;
Tejun Heo03814112012-03-05 13:15:14 -08003157 cfq_blkiocg_update_completion_stats(cfqg_to_blkg(cfqq->cfqg),
Tejun Heoc1768262012-03-05 13:15:17 -08003158 &blkio_policy_cfq, rq_start_time_ns(rq),
3159 rq_io_start_time_ns(rq), rq_data_dir(rq),
3160 rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003162 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
Jens Axboe3ed9a292007-04-23 08:33:33 +02003163
Vivek Goyal365722b2009-10-03 15:21:27 +02003164 if (sync) {
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003165 struct cfq_rb_root *service_tree;
3166
Shaohua Li383cd722011-07-12 14:24:35 +02003167 RQ_CIC(rq)->ttime.last_end_request = now;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003168
3169 if (cfq_cfqq_on_rr(cfqq))
3170 service_tree = cfqq->service_tree;
3171 else
3172 service_tree = service_tree_for(cfqq->cfqg,
3173 cfqq_prio(cfqq), cfqq_type(cfqq));
3174 service_tree->ttime.last_end_request = now;
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003175 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3176 cfqd->last_delayed_sync = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02003177 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003178
Shaohua Li7700fc42011-07-12 14:24:56 +02003179#ifdef CONFIG_CFQ_GROUP_IOSCHED
3180 cfqq->cfqg->ttime.last_end_request = now;
3181#endif
3182
Jens Axboecaaa5f92006-06-16 11:23:00 +02003183 /*
3184 * If this is the active queue, check if it needs to be expired,
3185 * or if we want to idle in case it has no pending requests.
3186 */
3187 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02003188 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3189
Jens Axboe44f7c162007-01-19 11:51:58 +11003190 if (cfq_cfqq_slice_new(cfqq)) {
3191 cfq_set_prio_slice(cfqd, cfqq);
3192 cfq_clear_cfqq_slice_new(cfqq);
3193 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05003194
3195 /*
Vivek Goyal7667aa02009-12-08 17:52:58 -05003196 * Should we wait for next request to come in before we expire
3197 * the queue.
Vivek Goyalf75edf22009-12-03 12:59:53 -05003198 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05003199 if (cfq_should_wait_busy(cfqd, cfqq)) {
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003200 unsigned long extend_sl = cfqd->cfq_slice_idle;
3201 if (!cfqd->cfq_slice_idle)
3202 extend_sl = cfqd->cfq_group_idle;
3203 cfqq->slice_end = jiffies + extend_sl;
Vivek Goyalf75edf22009-12-03 12:59:53 -05003204 cfq_mark_cfqq_wait_busy(cfqq);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01003205 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
Vivek Goyalf75edf22009-12-03 12:59:53 -05003206 }
3207
Jens Axboea36e71f2009-04-15 12:15:11 +02003208 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003209 * Idling is not enabled on:
3210 * - expired queues
3211 * - idle-priority queues
3212 * - async queues
3213 * - queues with still some requests queued
3214 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02003215 */
Jens Axboe08717142008-01-28 11:38:15 +01003216 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Vivek Goyale5ff0822010-04-26 19:25:11 +02003217 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003218 else if (sync && cfqq_empty &&
3219 !cfq_close_cooperator(cfqd, cfqq)) {
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003220 cfq_arm_slice_timer(cfqd);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003221 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003222 }
Jens Axboe6d048f52007-04-25 12:44:27 +02003223
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003224 if (!cfqd->rq_in_driver)
Jens Axboe23e018a2009-10-05 08:52:35 +02003225 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226}
3227
Jens Axboe89850f72006-07-22 16:48:31 +02003228static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003229{
Jens Axboe1b379d82009-08-11 08:26:11 +02003230 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003231 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003232 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003233 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003234
3235 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003236}
3237
Jens Axboe165125e2007-07-24 09:28:11 +02003238static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003239{
3240 struct cfq_data *cfqd = q->elevator->elevator_data;
3241 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01003242 struct cfq_io_cq *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003243 struct cfq_queue *cfqq;
3244
3245 /*
3246 * don't force setup of a queue from here, as a call to may_queue
3247 * does not necessarily imply that a request actually will be queued.
3248 * so just lookup a possibly existing queue, or return 'may queue'
3249 * if that fails
3250 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003251 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003252 if (!cic)
3253 return ELV_MQUEUE_MAY;
3254
Jens Axboeb0b78f82009-04-08 10:56:08 +02003255 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003256 if (cfqq) {
Tejun Heoabede6d2012-03-19 15:10:57 -07003257 cfq_init_prio_data(cfqq, cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02003258
Jens Axboe89850f72006-07-22 16:48:31 +02003259 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003260 }
3261
3262 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263}
3264
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265/*
3266 * queue lock held here
3267 */
Jens Axboebb37b942006-12-01 10:42:33 +01003268static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269{
Jens Axboe5e705372006-07-13 12:39:25 +02003270 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
Jens Axboe5e705372006-07-13 12:39:25 +02003272 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003273 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
Jens Axboe22e2c502005-06-27 10:55:12 +02003275 BUG_ON(!cfqq->allocated[rw]);
3276 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003278 /* Put down rq reference on cfqg */
Tejun Heo1adaf3d2012-03-05 13:15:15 -08003279 blkg_put(cfqg_to_blkg(RQ_CFQG(rq)));
Tejun Heoa612fdd2011-12-14 00:33:41 +01003280 rq->elv.priv[0] = NULL;
3281 rq->elv.priv[1] = NULL;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003282
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 cfq_put_queue(cfqq);
3284 }
3285}
3286
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003287static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01003288cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_cq *cic,
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003289 struct cfq_queue *cfqq)
3290{
3291 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3292 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003293 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003294 cfq_put_queue(cfqq);
3295 return cic_to_cfqq(cic, 1);
3296}
3297
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003298/*
3299 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3300 * was the last process referring to said cfqq.
3301 */
3302static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01003303split_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq)
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003304{
3305 if (cfqq_process_refs(cfqq) == 1) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003306 cfqq->pid = current->pid;
3307 cfq_clear_cfqq_coop(cfqq);
Shaohua Liae54abe2010-02-05 13:11:45 +01003308 cfq_clear_cfqq_split_coop(cfqq);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003309 return cfqq;
3310 }
3311
3312 cic_set_cfqq(cic, NULL, 1);
Shaohua Lid02a2c02010-05-25 10:16:53 +02003313
3314 cfq_put_cooperator(cfqq);
3315
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003316 cfq_put_queue(cfqq);
3317 return NULL;
3318}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003320 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003322static int
Tejun Heo852c7882012-03-05 13:15:27 -08003323cfq_set_request(struct request_queue *q, struct request *rq, struct bio *bio,
3324 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325{
3326 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heof1f8cc92011-12-14 00:33:42 +01003327 struct cfq_io_cq *cic = icq_to_cic(rq->elv.icq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003329 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003330 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
3332 might_sleep_if(gfp_mask & __GFP_WAIT);
3333
Tejun Heo216284c2011-12-14 00:33:38 +01003334 spin_lock_irq(q->queue_lock);
Tejun Heof1f8cc92011-12-14 00:33:42 +01003335
Tejun Heo598971b2012-03-19 15:10:58 -07003336 check_ioprio_changed(cic, bio);
3337 check_blkcg_changed(cic, bio);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003338new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003339 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003340 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Tejun Heoabede6d2012-03-19 15:10:57 -07003341 cfqq = cfq_get_queue(cfqd, is_sync, cic, bio, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003342 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003343 } else {
3344 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003345 * If the queue was seeky for too long, break it apart.
3346 */
Shaohua Liae54abe2010-02-05 13:11:45 +01003347 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003348 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3349 cfqq = split_cfqq(cic, cfqq);
3350 if (!cfqq)
3351 goto new_queue;
3352 }
3353
3354 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003355 * Check to see if this queue is scheduled to merge with
3356 * another, closely cooperating queue. The merging of
3357 * queues happens here as it must be done in process context.
3358 * The reference on new_cfqq was taken in merge_cfqqs.
3359 */
3360 if (cfqq->new_cfqq)
3361 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363
3364 cfqq->allocated[rw]++;
Jens Axboe5e705372006-07-13 12:39:25 +02003365
Jens Axboe6fae9c22011-03-01 15:04:39 -05003366 cfqq->ref++;
Tejun Heo1adaf3d2012-03-05 13:15:15 -08003367 blkg_get(cfqg_to_blkg(cfqq->cfqg));
Tejun Heoa612fdd2011-12-14 00:33:41 +01003368 rq->elv.priv[0] = cfqq;
Tejun Heo1adaf3d2012-03-05 13:15:15 -08003369 rq->elv.priv[1] = cfqq->cfqg;
Tejun Heo216284c2011-12-14 00:33:38 +01003370 spin_unlock_irq(q->queue_lock);
Jens Axboe5e705372006-07-13 12:39:25 +02003371 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372}
3373
David Howells65f27f32006-11-22 14:55:48 +00003374static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003375{
David Howells65f27f32006-11-22 14:55:48 +00003376 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003377 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003378 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003379
Jens Axboe40bb54d2009-04-15 12:11:10 +02003380 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003381 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003382 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003383}
3384
3385/*
3386 * Timer running if the active_queue is currently idling inside its time slice
3387 */
3388static void cfq_idle_slice_timer(unsigned long data)
3389{
3390 struct cfq_data *cfqd = (struct cfq_data *) data;
3391 struct cfq_queue *cfqq;
3392 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003393 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003394
Jens Axboe7b679132008-05-30 12:23:07 +02003395 cfq_log(cfqd, "idle timer fired");
3396
Jens Axboe22e2c502005-06-27 10:55:12 +02003397 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3398
Jens Axboefe094d92008-01-31 13:08:54 +01003399 cfqq = cfqd->active_queue;
3400 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003401 timed_out = 0;
3402
Jens Axboe22e2c502005-06-27 10:55:12 +02003403 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003404 * We saw a request before the queue expired, let it through
3405 */
3406 if (cfq_cfqq_must_dispatch(cfqq))
3407 goto out_kick;
3408
3409 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003410 * expired
3411 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003412 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003413 goto expire;
3414
3415 /*
3416 * only expire and reinvoke request handler, if there are
3417 * other queues with pending requests
3418 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003419 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003420 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003421
3422 /*
3423 * not expired and it has a request pending, let it dispatch
3424 */
Jens Axboe75e50982009-04-07 08:56:14 +02003425 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003426 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003427
3428 /*
3429 * Queue depth flag is reset only when the idle didn't succeed
3430 */
3431 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003432 }
3433expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02003434 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003435out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003436 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003437out_cont:
3438 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3439}
3440
Jens Axboe3b181522005-06-27 10:56:24 +02003441static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3442{
3443 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003444 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003445}
Jens Axboe22e2c502005-06-27 10:55:12 +02003446
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003447static void cfq_put_async_queues(struct cfq_data *cfqd)
3448{
3449 int i;
3450
3451 for (i = 0; i < IOPRIO_BE_NR; i++) {
3452 if (cfqd->async_cfqq[0][i])
3453 cfq_put_queue(cfqd->async_cfqq[0][i]);
3454 if (cfqd->async_cfqq[1][i])
3455 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003456 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003457
3458 if (cfqd->async_idle_cfqq)
3459 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003460}
3461
Jens Axboeb374d182008-10-31 10:05:07 +01003462static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463{
Jens Axboe22e2c502005-06-27 10:55:12 +02003464 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003465 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003466
Jens Axboe3b181522005-06-27 10:56:24 +02003467 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003468
Al Virod9ff4182006-03-18 13:51:22 -05003469 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003470
Al Virod9ff4182006-03-18 13:51:22 -05003471 if (cfqd->active_queue)
Vivek Goyale5ff0822010-04-26 19:25:11 +02003472 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003473
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003474 cfq_put_async_queues(cfqd);
Tejun Heo03aa2642012-03-05 13:15:19 -08003475
3476 spin_unlock_irq(q->queue_lock);
3477
Al Viroa90d7422006-03-18 12:05:37 -05003478 cfq_shutdown_timer_wq(cfqd);
3479
Tejun Heof51b8022012-03-05 13:15:05 -08003480#ifndef CONFIG_CFQ_GROUP_IOSCHED
3481 kfree(cfqd->root_group);
Vivek Goyal2abae552011-05-23 10:02:19 +02003482#endif
Tejun Heoe8989fa2012-03-05 13:15:20 -08003483 update_root_blkg_pd(q, BLKIO_POLICY_PROP);
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003484 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485}
3486
Tejun Heob2fab5a2012-03-05 13:14:57 -08003487static int cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488{
3489 struct cfq_data *cfqd;
Tejun Heocd1604f2012-03-05 13:15:06 -08003490 struct blkio_group *blkg __maybe_unused;
Tejun Heof51b8022012-03-05 13:15:05 -08003491 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
Christoph Lameter94f60302007-07-17 04:03:29 -07003493 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Tejun Heoa73f7302011-12-14 00:33:37 +01003494 if (!cfqd)
Tejun Heob2fab5a2012-03-05 13:14:57 -08003495 return -ENOMEM;
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003496
Tejun Heof51b8022012-03-05 13:15:05 -08003497 cfqd->queue = q;
3498 q->elevator->elevator_data = cfqd;
3499
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003500 /* Init root service tree */
3501 cfqd->grp_service_tree = CFQ_RB_ROOT;
3502
Tejun Heof51b8022012-03-05 13:15:05 -08003503 /* Init root group and prefer root group over other groups by default */
Vivek Goyal25fb5162009-12-03 12:59:46 -05003504#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heof51b8022012-03-05 13:15:05 -08003505 rcu_read_lock();
3506 spin_lock_irq(q->queue_lock);
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003507
Tejun Heocd1604f2012-03-05 13:15:06 -08003508 blkg = blkg_lookup_create(&blkio_root_cgroup, q, BLKIO_POLICY_PROP,
3509 true);
3510 if (!IS_ERR(blkg))
Tejun Heo03814112012-03-05 13:15:14 -08003511 cfqd->root_group = blkg_to_cfqg(blkg);
Tejun Heof51b8022012-03-05 13:15:05 -08003512
3513 spin_unlock_irq(q->queue_lock);
3514 rcu_read_unlock();
3515#else
3516 cfqd->root_group = kzalloc_node(sizeof(*cfqd->root_group),
3517 GFP_KERNEL, cfqd->queue->node);
3518 if (cfqd->root_group)
3519 cfq_init_cfqg_base(cfqd->root_group);
3520#endif
3521 if (!cfqd->root_group) {
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003522 kfree(cfqd);
Tejun Heob2fab5a2012-03-05 13:14:57 -08003523 return -ENOMEM;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003524 }
3525
Tejun Heof51b8022012-03-05 13:15:05 -08003526 cfqd->root_group->weight = 2*BLKIO_WEIGHT_DEFAULT;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003527
Jens Axboe26a2ac02009-04-23 12:13:27 +02003528 /*
3529 * Not strictly needed (since RB_ROOT just clears the node and we
3530 * zeroed cfqd on alloc), but better be safe in case someone decides
3531 * to add magic to the rb code
3532 */
3533 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3534 cfqd->prio_trees[i] = RB_ROOT;
3535
Jens Axboe6118b702009-06-30 09:34:12 +02003536 /*
3537 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3538 * Grab a permanent reference to it, so that the normal code flow
Tejun Heof51b8022012-03-05 13:15:05 -08003539 * will not attempt to free it. oom_cfqq is linked to root_group
3540 * but shouldn't hold a reference as it'll never be unlinked. Lose
3541 * the reference from linking right away.
Jens Axboe6118b702009-06-30 09:34:12 +02003542 */
3543 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
Shaohua Li30d7b942011-01-07 08:46:59 +01003544 cfqd->oom_cfqq.ref++;
Tejun Heo1adaf3d2012-03-05 13:15:15 -08003545
3546 spin_lock_irq(q->queue_lock);
Tejun Heof51b8022012-03-05 13:15:05 -08003547 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, cfqd->root_group);
Tejun Heo1adaf3d2012-03-05 13:15:15 -08003548 blkg_put(cfqg_to_blkg(cfqd->root_group));
3549 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
Jens Axboe22e2c502005-06-27 10:55:12 +02003551 init_timer(&cfqd->idle_slice_timer);
3552 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3553 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3554
Jens Axboe23e018a2009-10-05 08:52:35 +02003555 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003556
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003558 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3559 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 cfqd->cfq_back_max = cfq_back_max;
3561 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003562 cfqd->cfq_slice[0] = cfq_slice_async;
3563 cfqd->cfq_slice[1] = cfq_slice_sync;
3564 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3565 cfqd->cfq_slice_idle = cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003566 cfqd->cfq_group_idle = cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003567 cfqd->cfq_latency = 1;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003568 cfqd->hw_tag = -1;
Corrado Zoccoloedc71132009-12-09 20:56:04 +01003569 /*
3570 * we optimistically start assuming sync ops weren't delayed in last
3571 * second, in order to have larger depth for async operations.
3572 */
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003573 cfqd->last_delayed_sync = jiffies - HZ;
Tejun Heob2fab5a2012-03-05 13:14:57 -08003574 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575}
3576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577/*
3578 * sysfs parts below -->
3579 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580static ssize_t
3581cfq_var_show(unsigned int var, char *page)
3582{
3583 return sprintf(page, "%d\n", var);
3584}
3585
3586static ssize_t
3587cfq_var_store(unsigned int *var, const char *page, size_t count)
3588{
3589 char *p = (char *) page;
3590
3591 *var = simple_strtoul(p, &p, 10);
3592 return count;
3593}
3594
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003596static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003598 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 unsigned int __data = __VAR; \
3600 if (__CONV) \
3601 __data = jiffies_to_msecs(__data); \
3602 return cfq_var_show(__data, (page)); \
3603}
3604SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003605SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
3606SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05003607SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
3608SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003609SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003610SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003611SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
3612SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
3613SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003614SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615#undef SHOW_FUNCTION
3616
3617#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003618static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003620 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 unsigned int __data; \
3622 int ret = cfq_var_store(&__data, (page), count); \
3623 if (__data < (MIN)) \
3624 __data = (MIN); \
3625 else if (__data > (MAX)) \
3626 __data = (MAX); \
3627 if (__CONV) \
3628 *(__PTR) = msecs_to_jiffies(__data); \
3629 else \
3630 *(__PTR) = __data; \
3631 return ret; \
3632}
3633STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003634STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
3635 UINT_MAX, 1);
3636STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
3637 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05003638STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003639STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
3640 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003641STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003642STORE_FUNCTION(cfq_group_idle_store, &cfqd->cfq_group_idle, 0, UINT_MAX, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003643STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
3644STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01003645STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
3646 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003647STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648#undef STORE_FUNCTION
3649
Al Viroe572ec72006-03-18 22:27:18 -05003650#define CFQ_ATTR(name) \
3651 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02003652
Al Viroe572ec72006-03-18 22:27:18 -05003653static struct elv_fs_entry cfq_attrs[] = {
3654 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05003655 CFQ_ATTR(fifo_expire_sync),
3656 CFQ_ATTR(fifo_expire_async),
3657 CFQ_ATTR(back_seek_max),
3658 CFQ_ATTR(back_seek_penalty),
3659 CFQ_ATTR(slice_sync),
3660 CFQ_ATTR(slice_async),
3661 CFQ_ATTR(slice_async_rq),
3662 CFQ_ATTR(slice_idle),
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003663 CFQ_ATTR(group_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02003664 CFQ_ATTR(low_latency),
Al Viroe572ec72006-03-18 22:27:18 -05003665 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666};
3667
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668static struct elevator_type iosched_cfq = {
3669 .ops = {
3670 .elevator_merge_fn = cfq_merge,
3671 .elevator_merged_fn = cfq_merged_request,
3672 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01003673 .elevator_allow_merge_fn = cfq_allow_merge,
Divyesh Shah812d4022010-04-08 21:14:23 -07003674 .elevator_bio_merged_fn = cfq_bio_merged,
Jens Axboeb4878f22005-10-20 16:42:29 +02003675 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02003677 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 .elevator_deactivate_req_fn = cfq_deactivate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02003680 .elevator_former_req_fn = elv_rb_former_request,
3681 .elevator_latter_req_fn = elv_rb_latter_request,
Tejun Heo9b84cac2011-12-14 00:33:42 +01003682 .elevator_init_icq_fn = cfq_init_icq,
Tejun Heo7e5a8792011-12-14 00:33:42 +01003683 .elevator_exit_icq_fn = cfq_exit_icq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 .elevator_set_req_fn = cfq_set_request,
3685 .elevator_put_req_fn = cfq_put_request,
3686 .elevator_may_queue_fn = cfq_may_queue,
3687 .elevator_init_fn = cfq_init_queue,
3688 .elevator_exit_fn = cfq_exit_queue,
3689 },
Tejun Heo3d3c2372011-12-14 00:33:42 +01003690 .icq_size = sizeof(struct cfq_io_cq),
3691 .icq_align = __alignof__(struct cfq_io_cq),
Al Viro3d1ab402006-03-18 18:35:43 -05003692 .elevator_attrs = cfq_attrs,
Tejun Heo3d3c2372011-12-14 00:33:42 +01003693 .elevator_name = "cfq",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 .elevator_owner = THIS_MODULE,
3695};
3696
Vivek Goyal3e252062009-12-04 10:36:42 -05003697#ifdef CONFIG_CFQ_GROUP_IOSCHED
3698static struct blkio_policy_type blkio_policy_cfq = {
3699 .ops = {
Tejun Heo03814112012-03-05 13:15:14 -08003700 .blkio_init_group_fn = cfq_init_blkio_group,
Vivek Goyal3e252062009-12-04 10:36:42 -05003701 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
3702 },
Vivek Goyal062a6442010-09-15 17:06:33 -04003703 .plid = BLKIO_POLICY_PROP,
Tejun Heo03814112012-03-05 13:15:14 -08003704 .pdata_size = sizeof(struct cfq_group),
Vivek Goyal3e252062009-12-04 10:36:42 -05003705};
Vivek Goyal3e252062009-12-04 10:36:42 -05003706#endif
3707
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708static int __init cfq_init(void)
3709{
Tejun Heo3d3c2372011-12-14 00:33:42 +01003710 int ret;
3711
Jens Axboe22e2c502005-06-27 10:55:12 +02003712 /*
3713 * could be 0 on HZ < 1000 setups
3714 */
3715 if (!cfq_slice_async)
3716 cfq_slice_async = 1;
3717 if (!cfq_slice_idle)
3718 cfq_slice_idle = 1;
3719
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003720#ifdef CONFIG_CFQ_GROUP_IOSCHED
3721 if (!cfq_group_idle)
3722 cfq_group_idle = 1;
3723#else
3724 cfq_group_idle = 0;
3725#endif
Tejun Heo3d3c2372011-12-14 00:33:42 +01003726 cfq_pool = KMEM_CACHE(cfq_queue, 0);
3727 if (!cfq_pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 return -ENOMEM;
3729
Tejun Heo3d3c2372011-12-14 00:33:42 +01003730 ret = elv_register(&iosched_cfq);
3731 if (ret) {
3732 kmem_cache_destroy(cfq_pool);
3733 return ret;
3734 }
Tejun Heo3d3c2372011-12-14 00:33:42 +01003735
Tejun Heob95ada52012-03-05 13:14:55 -08003736#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal3e252062009-12-04 10:36:42 -05003737 blkio_policy_register(&blkio_policy_cfq);
Tejun Heob95ada52012-03-05 13:14:55 -08003738#endif
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01003739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740}
3741
3742static void __exit cfq_exit(void)
3743{
Tejun Heob95ada52012-03-05 13:14:55 -08003744#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal3e252062009-12-04 10:36:42 -05003745 blkio_policy_unregister(&blkio_policy_cfq);
Tejun Heob95ada52012-03-05 13:14:55 -08003746#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 elv_unregister(&iosched_cfq);
Tejun Heo3d3c2372011-12-14 00:33:42 +01003748 kmem_cache_destroy(cfq_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749}
3750
3751module_init(cfq_init);
3752module_exit(cfq_exit);
3753
3754MODULE_AUTHOR("Jens Axboe");
3755MODULE_LICENSE("GPL");
3756MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");