blob: ae7791a8ded90af4a63c0ee259300e3060ed4c20 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * CFQ, or complete fairness queueing, disk scheduler.
3 *
4 * Based on ideas from a previously unfinished io
5 * scheduler (round robin per-process disk scheduling) and Andrea Arcangeli.
6 *
Jens Axboe0fe23472006-09-04 15:41:16 +02007 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Al Viro1cc9be62006-03-18 12:29:52 -050011#include <linux/blkdev.h>
12#include <linux/elevator.h>
Randy Dunlapad5ebd22009-11-11 13:47:45 +010013#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/rbtree.h>
Jens Axboe22e2c502005-06-27 10:55:12 +020015#include <linux/ioprio.h>
Jens Axboe7b679132008-05-30 12:23:07 +020016#include <linux/blktrace_api.h>
Tejun Heo6e736be2011-12-14 00:33:38 +010017#include "blk.h"
Vivek Goyale98ef892010-06-18 10:39:47 -040018#include "cfq.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/*
21 * tunables
22 */
Jens Axboefe094d92008-01-31 13:08:54 +010023/* max queue in one round of service */
Shaohua Liabc3c742010-03-01 09:20:54 +010024static const int cfq_quantum = 8;
Arjan van de Ven64100092006-01-06 09:46:02 +010025static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
Jens Axboefe094d92008-01-31 13:08:54 +010026/* maximum backwards seek, in KiB */
27static const int cfq_back_max = 16 * 1024;
28/* penalty of a backwards seek */
29static const int cfq_back_penalty = 2;
Arjan van de Ven64100092006-01-06 09:46:02 +010030static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020031static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010032static const int cfq_slice_async_rq = 2;
Jens Axboecaaa5f92006-06-16 11:23:00 +020033static int cfq_slice_idle = HZ / 125;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +020034static int cfq_group_idle = HZ / 125;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +010035static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
36static const int cfq_hist_divisor = 4;
Jens Axboe22e2c502005-06-27 10:55:12 +020037
Jens Axboed9e76202007-04-20 14:27:50 +020038/*
Jens Axboe08717142008-01-28 11:38:15 +010039 * offset from end of service tree
Jens Axboed9e76202007-04-20 14:27:50 +020040 */
Jens Axboe08717142008-01-28 11:38:15 +010041#define CFQ_IDLE_DELAY (HZ / 5)
Jens Axboed9e76202007-04-20 14:27:50 +020042
43/*
44 * below this threshold, we consider thinktime immediate
45 */
46#define CFQ_MIN_TT (2)
47
Jens Axboe22e2c502005-06-27 10:55:12 +020048#define CFQ_SLICE_SCALE (5)
Aaron Carroll45333d52008-08-26 15:52:36 +020049#define CFQ_HW_QUEUE_MIN (5)
Vivek Goyal25bc6b02009-12-03 12:59:43 -050050#define CFQ_SERVICE_SHIFT 12
Jens Axboe22e2c502005-06-27 10:55:12 +020051
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010052#define CFQQ_SEEK_THR (sector_t)(8 * 100)
Shaohua Lie9ce3352010-03-19 08:03:04 +010053#define CFQQ_CLOSE_THR (sector_t)(8 * 1024)
Corrado Zoccolo41647e72010-02-27 19:45:40 +010054#define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32)
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010055#define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8)
Shaohua Liae54abe2010-02-05 13:11:45 +010056
Jens Axboefe094d92008-01-31 13:08:54 +010057#define RQ_CIC(rq) \
Mike Snitzerc1867942011-02-11 11:08:00 +010058 ((struct cfq_io_context *) (rq)->elevator_private[0])
59#define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elevator_private[1])
60#define RQ_CFQG(rq) (struct cfq_group *) ((rq)->elevator_private[2])
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Christoph Lametere18b8902006-12-06 20:33:20 -080062static struct kmem_cache *cfq_pool;
63static struct kmem_cache *cfq_ioc_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
Jens Axboe22e2c502005-06-27 10:55:12 +020072/*
Jens Axboecc09e292007-04-26 12:53:50 +020073 * Most of our rbtree usage is for sorting with min extraction, so
74 * if we cache the leftmost node we don't have to walk down the tree
75 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
76 * move this into the elevator for the rq sorting as well.
77 */
78struct cfq_rb_root {
79 struct rb_root rb;
80 struct rb_node *left;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010081 unsigned count;
Richard Kennedy73e9ffd2010-03-01 10:50:20 +010082 unsigned total_weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050083 u64 min_vdisktime;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020084 struct cfq_ttime ttime;
Jens Axboecc09e292007-04-26 12:53:50 +020085};
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020086#define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, \
87 .ttime = {.last_end_request = jiffies,},}
Jens Axboecc09e292007-04-26 12:53:50 +020088
89/*
Jens Axboe6118b702009-06-30 09:34:12 +020090 * Per process-grouping structure
91 */
92struct cfq_queue {
93 /* reference count */
Shaohua Li30d7b942011-01-07 08:46:59 +010094 int ref;
Jens Axboe6118b702009-06-30 09:34:12 +020095 /* various state flags, see below */
96 unsigned int flags;
97 /* parent cfq_data */
98 struct cfq_data *cfqd;
99 /* service_tree member */
100 struct rb_node rb_node;
101 /* service_tree key */
102 unsigned long rb_key;
103 /* prio tree member */
104 struct rb_node p_node;
105 /* prio tree root we belong to, if any */
106 struct rb_root *p_root;
107 /* sorted list of pending requests */
108 struct rb_root sort_list;
109 /* if fifo isn't expired, next request to serve */
110 struct request *next_rq;
111 /* requests queued in sort_list */
112 int queued[2];
113 /* currently allocated requests */
114 int allocated[2];
115 /* fifo list of requests in sort_list */
116 struct list_head fifo;
117
Vivek Goyaldae739e2009-12-03 12:59:45 -0500118 /* time when queue got scheduled in to dispatch first request. */
119 unsigned long dispatch_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500120 unsigned int allocated_slice;
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100121 unsigned int slice_dispatch;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500122 /* time when first request from queue completed and slice started. */
123 unsigned long slice_start;
Jens Axboe6118b702009-06-30 09:34:12 +0200124 unsigned long slice_end;
125 long slice_resid;
Jens Axboe6118b702009-06-30 09:34:12 +0200126
Christoph Hellwig65299a32011-08-23 14:50:29 +0200127 /* pending priority requests */
128 int prio_pending;
Jens Axboe6118b702009-06-30 09:34:12 +0200129 /* number of requests that are on the dispatch list or inside driver */
130 int dispatched;
131
132 /* io prio of this group */
133 unsigned short ioprio, org_ioprio;
Justin TerAvest4aede842011-07-12 08:31:45 +0200134 unsigned short ioprio_class;
Jens Axboe6118b702009-06-30 09:34:12 +0200135
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100136 pid_t pid;
137
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +0100138 u32 seek_history;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400139 sector_t last_request_pos;
140
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100141 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400142 struct cfq_queue *new_cfqq;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500143 struct cfq_group *cfqg;
Vivek Goyalc4e78932010-08-23 12:25:03 +0200144 /* Number of sectors dispatched from queue in single dispatch round */
145 unsigned long nr_sectors;
Jens Axboe6118b702009-06-30 09:34:12 +0200146};
147
148/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100149 * First index in the service_trees.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100150 * IDLE is handled separately, so it has negative index
151 */
152enum wl_prio_t {
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100153 BE_WORKLOAD = 0,
Vivek Goyal615f0252009-12-03 12:59:39 -0500154 RT_WORKLOAD = 1,
155 IDLE_WORKLOAD = 2,
Vivek Goyalb4627322010-10-22 09:48:43 +0200156 CFQ_PRIO_NR,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100157};
158
159/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100160 * Second index in the service_trees.
161 */
162enum wl_type_t {
163 ASYNC_WORKLOAD = 0,
164 SYNC_NOIDLE_WORKLOAD = 1,
165 SYNC_WORKLOAD = 2
166};
167
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500168/* This is per cgroup per device grouping structure */
169struct cfq_group {
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500170 /* group service_tree member */
171 struct rb_node rb_node;
172
173 /* group service_tree key */
174 u64 vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500175 unsigned int weight;
Justin TerAvest8184f932011-03-17 16:12:36 +0100176 unsigned int new_weight;
177 bool needs_update;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500178
179 /* number of cfqq currently on this group */
180 int nr_cfqq;
181
Jens Axboe22e2c502005-06-27 10:55:12 +0200182 /*
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200183 * Per group busy queues average. Useful for workload slice calc. We
Vivek Goyalb4627322010-10-22 09:48:43 +0200184 * create the array for each prio class but at run time it is used
185 * only for RT and BE class and slot for IDLE class remains unused.
186 * This is primarily done to avoid confusion and a gcc warning.
187 */
188 unsigned int busy_queues_avg[CFQ_PRIO_NR];
189 /*
190 * rr lists of queues with requests. We maintain service trees for
191 * RT and BE classes. These trees are subdivided in subclasses
192 * of SYNC, SYNC_NOIDLE and ASYNC based on workload type. For IDLE
193 * class there is no subclassification and all the cfq queues go on
194 * a single tree service_tree_idle.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100195 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200196 */
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100197 struct cfq_rb_root service_trees[2][3];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100198 struct cfq_rb_root service_tree_idle;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500199
200 unsigned long saved_workload_slice;
201 enum wl_type_t saved_workload;
202 enum wl_prio_t saved_serving_prio;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500203 struct blkio_group blkg;
204#ifdef CONFIG_CFQ_GROUP_IOSCHED
205 struct hlist_node cfqd_node;
Shaohua Li329a6782011-01-07 08:48:28 +0100206 int ref;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500207#endif
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200208 /* number of requests that are on the dispatch list or inside driver */
209 int dispatched;
Shaohua Li7700fc42011-07-12 14:24:56 +0200210 struct cfq_ttime ttime;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500211};
212
213/*
214 * Per block device queue structure
215 */
216struct cfq_data {
217 struct request_queue *queue;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500218 /* Root service tree for cfq_groups */
219 struct cfq_rb_root grp_service_tree;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500220 struct cfq_group root_group;
221
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100222 /*
223 * The priority currently being served
224 */
225 enum wl_prio_t serving_prio;
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100226 enum wl_type_t serving_type;
227 unsigned long workload_expires;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500228 struct cfq_group *serving_group;
Jens Axboea36e71f2009-04-15 12:15:11 +0200229
230 /*
231 * Each priority tree is sorted by next_request position. These
232 * trees are used when determining if two or more queues are
233 * interleaving requests (see cfq_close_cooperator).
234 */
235 struct rb_root prio_trees[CFQ_PRIO_LISTS];
236
Jens Axboe22e2c502005-06-27 10:55:12 +0200237 unsigned int busy_queues;
Shaohua Lief8a41d2011-03-07 09:26:29 +0100238 unsigned int busy_sync_queues;
Jens Axboe22e2c502005-06-27 10:55:12 +0200239
Corrado Zoccolo53c583d2010-02-28 19:45:05 +0100240 int rq_in_driver;
241 int rq_in_flight[2];
Aaron Carroll45333d52008-08-26 15:52:36 +0200242
243 /*
244 * queue-depth detection
245 */
246 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200247 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100248 /*
249 * hw_tag can be
250 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
251 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
252 * 0 => no NCQ
253 */
254 int hw_tag_est_depth;
255 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200256
257 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200258 * idle window management
259 */
260 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200261 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200262
263 struct cfq_queue *active_queue;
264 struct cfq_io_context *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200265
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200266 /*
267 * async queue for each priority case
268 */
269 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
270 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200271
Jens Axboe6d048f52007-04-25 12:44:27 +0200272 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /*
275 * tunables, see top of file
276 */
277 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200278 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 unsigned int cfq_back_penalty;
280 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200281 unsigned int cfq_slice[2];
282 unsigned int cfq_slice_async_rq;
283 unsigned int cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200284 unsigned int cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200285 unsigned int cfq_latency;
Al Virod9ff4182006-03-18 13:51:22 -0500286
287 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Jens Axboe6118b702009-06-30 09:34:12 +0200289 /*
290 * Fallback dummy cfqq for extreme OOM conditions
291 */
292 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200293
Corrado Zoccolo573412b2009-12-06 11:48:52 +0100294 unsigned long last_delayed_sync;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500295
296 /* List of cfq groups being managed on this device*/
297 struct hlist_head cfqg_list;
Vivek Goyal56edf7d2011-05-19 15:38:22 -0400298
299 /* Number of groups which are on blkcg->blkg_list */
300 unsigned int nr_blkcg_linked_grps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
Vivek Goyal25fb5162009-12-03 12:59:46 -0500303static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
304
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500305static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
306 enum wl_prio_t prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -0500307 enum wl_type_t type)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100308{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500309 if (!cfqg)
310 return NULL;
311
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100312 if (prio == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500313 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100314
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500315 return &cfqg->service_trees[prio][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100316}
317
Jens Axboe3b181522005-06-27 10:56:24 +0200318enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100319 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
320 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200321 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100322 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100323 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
324 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
325 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100326 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200327 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400328 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Shaohua Liae54abe2010-02-05 13:11:45 +0100329 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100330 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Vivek Goyalf75edf22009-12-03 12:59:53 -0500331 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
Jens Axboe3b181522005-06-27 10:56:24 +0200332};
333
334#define CFQ_CFQQ_FNS(name) \
335static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
336{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100337 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200338} \
339static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
340{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100341 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200342} \
343static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
344{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100345 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200346}
347
348CFQ_CFQQ_FNS(on_rr);
349CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200350CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200351CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200352CFQ_CFQQ_FNS(fifo_expire);
353CFQ_CFQQ_FNS(idle_window);
354CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100355CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200356CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200357CFQ_CFQQ_FNS(coop);
Shaohua Liae54abe2010-02-05 13:11:45 +0100358CFQ_CFQQ_FNS(split_coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100359CFQ_CFQQ_FNS(deep);
Vivek Goyalf75edf22009-12-03 12:59:53 -0500360CFQ_CFQQ_FNS(wait_busy);
Jens Axboe3b181522005-06-27 10:56:24 +0200361#undef CFQ_CFQQ_FNS
362
Vivek Goyalafc24d42010-04-26 19:27:56 +0200363#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal2868ef72009-12-03 12:59:48 -0500364#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
365 blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \
366 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200367 blkg_path(&(cfqq)->cfqg->blkg), ##args)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500368
369#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \
370 blk_add_trace_msg((cfqd)->queue, "%s " fmt, \
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200371 blkg_path(&(cfqg)->blkg), ##args) \
Vivek Goyal2868ef72009-12-03 12:59:48 -0500372
373#else
Jens Axboe7b679132008-05-30 12:23:07 +0200374#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
375 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200376#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500377#endif
Jens Axboe7b679132008-05-30 12:23:07 +0200378#define cfq_log(cfqd, fmt, args...) \
379 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
380
Vivek Goyal615f0252009-12-03 12:59:39 -0500381/* Traverses through cfq group service trees */
382#define for_each_cfqg_st(cfqg, i, j, st) \
383 for (i = 0; i <= IDLE_WORKLOAD; i++) \
384 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
385 : &cfqg->service_tree_idle; \
386 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
387 (i == IDLE_WORKLOAD && j == 0); \
388 j++, st = i < IDLE_WORKLOAD ? \
389 &cfqg->service_trees[i][j]: NULL) \
390
Shaohua Lif5f2b6c2011-07-12 14:24:55 +0200391static inline bool cfq_io_thinktime_big(struct cfq_data *cfqd,
392 struct cfq_ttime *ttime, bool group_idle)
393{
394 unsigned long slice;
395 if (!sample_valid(ttime->ttime_samples))
396 return false;
397 if (group_idle)
398 slice = cfqd->cfq_group_idle;
399 else
400 slice = cfqd->cfq_slice_idle;
401 return ttime->ttime_mean > slice;
402}
Vivek Goyal615f0252009-12-03 12:59:39 -0500403
Vivek Goyal02b35082010-08-23 12:23:53 +0200404static inline bool iops_mode(struct cfq_data *cfqd)
405{
406 /*
407 * If we are not idling on queues and it is a NCQ drive, parallel
408 * execution of requests is on and measuring time is not possible
409 * in most of the cases until and unless we drive shallower queue
410 * depths and that becomes a performance bottleneck. In such cases
411 * switch to start providing fairness in terms of number of IOs.
412 */
413 if (!cfqd->cfq_slice_idle && cfqd->hw_tag)
414 return true;
415 else
416 return false;
417}
418
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100419static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
420{
421 if (cfq_class_idle(cfqq))
422 return IDLE_WORKLOAD;
423 if (cfq_class_rt(cfqq))
424 return RT_WORKLOAD;
425 return BE_WORKLOAD;
426}
427
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100428
429static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
430{
431 if (!cfq_cfqq_sync(cfqq))
432 return ASYNC_WORKLOAD;
433 if (!cfq_cfqq_idle_window(cfqq))
434 return SYNC_NOIDLE_WORKLOAD;
435 return SYNC_WORKLOAD;
436}
437
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500438static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
439 struct cfq_data *cfqd,
440 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100441{
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500442 if (wl == IDLE_WORKLOAD)
443 return cfqg->service_tree_idle.count;
444
445 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
446 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
447 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100448}
449
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500450static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
451 struct cfq_group *cfqg)
452{
453 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count
454 + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
455}
456
Jens Axboe165125e2007-07-24 09:28:11 +0200457static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200458static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100459 struct io_context *, gfp_t);
Jens Axboe4ac845a2008-01-24 08:44:49 +0100460static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
Vasily Tarasov91fac312007-04-25 12:29:51 +0200461 struct io_context *);
462
463static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200464 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200465{
Jens Axboea6151c32009-10-07 20:02:57 +0200466 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200467}
468
469static inline void cic_set_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200470 struct cfq_queue *cfqq, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200471{
Jens Axboea6151c32009-10-07 20:02:57 +0200472 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200473}
474
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400475#define CIC_DEAD_KEY 1ul
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400476#define CIC_DEAD_INDEX_SHIFT 1
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400477
478static inline void *cfqd_dead_key(struct cfq_data *cfqd)
479{
Tejun Heoa73f7302011-12-14 00:33:37 +0100480 return (void *)(cfqd->queue->id << CIC_DEAD_INDEX_SHIFT | CIC_DEAD_KEY);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400481}
482
483static inline struct cfq_data *cic_to_cfqd(struct cfq_io_context *cic)
484{
485 struct cfq_data *cfqd = cic->key;
486
487 if (unlikely((unsigned long) cfqd & CIC_DEAD_KEY))
488 return NULL;
489
490 return cfqd;
491}
492
Vasily Tarasov91fac312007-04-25 12:29:51 +0200493/*
494 * We regard a request as SYNC, if it's either a read or has the SYNC bit
495 * set (in which case it could also be direct WRITE).
496 */
Jens Axboea6151c32009-10-07 20:02:57 +0200497static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200498{
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200499 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200500}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700503 * scheduler run of queue, if there are requests pending and no one in the
504 * driver that will restart queueing
505 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200506static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700507{
Jens Axboe7b679132008-05-30 12:23:07 +0200508 if (cfqd->busy_queues) {
509 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200510 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200511 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700512}
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100515 * Scale schedule slice based on io priority. Use the sync time slice only
516 * if a queue is marked sync and has sync io queued. A sync queue with async
517 * io only, should not get full sync slice length.
518 */
Jens Axboea6151c32009-10-07 20:02:57 +0200519static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200520 unsigned short prio)
521{
522 const int base_slice = cfqd->cfq_slice[sync];
523
524 WARN_ON(prio >= IOPRIO_BE_NR);
525
526 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
527}
528
Jens Axboe44f7c162007-01-19 11:51:58 +1100529static inline int
530cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
531{
Jens Axboed9e76202007-04-20 14:27:50 +0200532 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100533}
534
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500535static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
536{
537 u64 d = delta << CFQ_SERVICE_SHIFT;
538
539 d = d * BLKIO_WEIGHT_DEFAULT;
540 do_div(d, cfqg->weight);
541 return d;
542}
543
544static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
545{
546 s64 delta = (s64)(vdisktime - min_vdisktime);
547 if (delta > 0)
548 min_vdisktime = vdisktime;
549
550 return min_vdisktime;
551}
552
553static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
554{
555 s64 delta = (s64)(vdisktime - min_vdisktime);
556 if (delta < 0)
557 min_vdisktime = vdisktime;
558
559 return min_vdisktime;
560}
561
562static void update_min_vdisktime(struct cfq_rb_root *st)
563{
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500564 struct cfq_group *cfqg;
565
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500566 if (st->left) {
567 cfqg = rb_entry_cfqg(st->left);
Gui Jianfenga6032712011-03-07 09:28:09 +0100568 st->min_vdisktime = max_vdisktime(st->min_vdisktime,
569 cfqg->vdisktime);
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500570 }
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500571}
572
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100573/*
574 * get averaged number of queues of RT/BE priority.
575 * average is updated, with a formula that gives more weight to higher numbers,
576 * to quickly follows sudden increases and decrease slowly
577 */
578
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500579static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
580 struct cfq_group *cfqg, bool rt)
Jens Axboe5869619c2009-10-28 09:27:07 +0100581{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100582 unsigned min_q, max_q;
583 unsigned mult = cfq_hist_divisor - 1;
584 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500585 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100586
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500587 min_q = min(cfqg->busy_queues_avg[rt], busy);
588 max_q = max(cfqg->busy_queues_avg[rt], busy);
589 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100590 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500591 return cfqg->busy_queues_avg[rt];
592}
593
594static inline unsigned
595cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
596{
597 struct cfq_rb_root *st = &cfqd->grp_service_tree;
598
599 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100600}
601
Shaohua Lic553f8e2011-01-14 08:41:03 +0100602static inline unsigned
Vivek Goyalba5bd522011-01-19 08:25:02 -0700603cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100604{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100605 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
606 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500607 /*
608 * interested queues (we consider only the ones with the same
609 * priority class in the cfq group)
610 */
611 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
612 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100613 unsigned sync_slice = cfqd->cfq_slice[1];
614 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500615 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
616
617 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100618 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
619 /* scale low_slice according to IO priority
620 * and sync vs async */
621 unsigned low_slice =
622 min(slice, base_low_slice * slice / sync_slice);
623 /* the adapted slice value is scaled to fit all iqs
624 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500625 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100626 low_slice);
627 }
628 }
Shaohua Lic553f8e2011-01-14 08:41:03 +0100629 return slice;
630}
631
632static inline void
633cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
634{
Vivek Goyalba5bd522011-01-19 08:25:02 -0700635 unsigned slice = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +0100636
Vivek Goyaldae739e2009-12-03 12:59:45 -0500637 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100638 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500639 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200640 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100641}
642
643/*
644 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
645 * isn't valid until the first request from the dispatch is activated
646 * and the slice time set.
647 */
Jens Axboea6151c32009-10-07 20:02:57 +0200648static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100649{
650 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +0100651 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100652 if (time_before(jiffies, cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +0100653 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100654
Shaohua Lic1e44752010-11-08 15:01:02 +0100655 return true;
Jens Axboe44f7c162007-01-19 11:51:58 +1100656}
657
658/*
Jens Axboe5e705372006-07-13 12:39:25 +0200659 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200661 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 */
Jens Axboe5e705372006-07-13 12:39:25 +0200663static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100664cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100666 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200668#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
669#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
670 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Jens Axboe5e705372006-07-13 12:39:25 +0200672 if (rq1 == NULL || rq1 == rq2)
673 return rq2;
674 if (rq2 == NULL)
675 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200676
Namhyung Kim229836b2011-05-24 10:23:21 +0200677 if (rq_is_sync(rq1) != rq_is_sync(rq2))
678 return rq_is_sync(rq1) ? rq1 : rq2;
679
Christoph Hellwig65299a32011-08-23 14:50:29 +0200680 if ((rq1->cmd_flags ^ rq2->cmd_flags) & REQ_PRIO)
681 return rq1->cmd_flags & REQ_PRIO ? rq1 : rq2;
Jens Axboeb53d1ed2011-08-19 08:34:48 +0200682
Tejun Heo83096eb2009-05-07 22:24:39 +0900683 s1 = blk_rq_pos(rq1);
684 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /*
687 * by definition, 1KiB is 2 sectors
688 */
689 back_max = cfqd->cfq_back_max * 2;
690
691 /*
692 * Strict one way elevator _except_ in the case where we allow
693 * short backward seeks which are biased as twice the cost of a
694 * similar forward seek.
695 */
696 if (s1 >= last)
697 d1 = s1 - last;
698 else if (s1 + back_max >= last)
699 d1 = (last - s1) * cfqd->cfq_back_penalty;
700 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200701 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 if (s2 >= last)
704 d2 = s2 - last;
705 else if (s2 + back_max >= last)
706 d2 = (last - s2) * cfqd->cfq_back_penalty;
707 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200708 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Andreas Mohre8a99052006-03-28 08:59:49 +0200712 /*
713 * By doing switch() on the bit mask "wrap" we avoid having to
714 * check two variables for all permutations: --> faster!
715 */
716 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200717 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200718 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200719 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200720 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200721 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200722 else {
723 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200724 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200725 else
Jens Axboe5e705372006-07-13 12:39:25 +0200726 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200727 }
728
729 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200730 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200731 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200732 return rq2;
733 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200734 default:
735 /*
736 * Since both rqs are wrapped,
737 * start with the one that's further behind head
738 * (--> only *one* back seek required),
739 * since back seek takes more time than forward.
740 */
741 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200742 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 else
Jens Axboe5e705372006-07-13 12:39:25 +0200744 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746}
747
Jens Axboe498d3aa22007-04-26 12:54:48 +0200748/*
749 * The below is leftmost cache rbtree addon
750 */
Jens Axboe08717142008-01-28 11:38:15 +0100751static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200752{
Vivek Goyal615f0252009-12-03 12:59:39 -0500753 /* Service tree is empty */
754 if (!root->count)
755 return NULL;
756
Jens Axboecc09e292007-04-26 12:53:50 +0200757 if (!root->left)
758 root->left = rb_first(&root->rb);
759
Jens Axboe08717142008-01-28 11:38:15 +0100760 if (root->left)
761 return rb_entry(root->left, struct cfq_queue, rb_node);
762
763 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200764}
765
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500766static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
767{
768 if (!root->left)
769 root->left = rb_first(&root->rb);
770
771 if (root->left)
772 return rb_entry_cfqg(root->left);
773
774 return NULL;
775}
776
Jens Axboea36e71f2009-04-15 12:15:11 +0200777static void rb_erase_init(struct rb_node *n, struct rb_root *root)
778{
779 rb_erase(n, root);
780 RB_CLEAR_NODE(n);
781}
782
Jens Axboecc09e292007-04-26 12:53:50 +0200783static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
784{
785 if (root->left == n)
786 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200787 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100788 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791/*
792 * would be nice to take fifo expire time into account as well
793 */
Jens Axboe5e705372006-07-13 12:39:25 +0200794static struct request *
795cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
796 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Jens Axboe21183b02006-07-13 12:33:14 +0200798 struct rb_node *rbnext = rb_next(&last->rb_node);
799 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200800 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Jens Axboe21183b02006-07-13 12:33:14 +0200802 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200805 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200808 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200809 else {
810 rbnext = rb_first(&cfqq->sort_list);
811 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200812 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100815 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Jens Axboed9e76202007-04-20 14:27:50 +0200818static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
819 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Jens Axboed9e76202007-04-20 14:27:50 +0200821 /*
822 * just an approximation, should be ok.
823 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500824 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100825 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200826}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500828static inline s64
829cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
830{
831 return cfqg->vdisktime - st->min_vdisktime;
832}
833
834static void
835__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
836{
837 struct rb_node **node = &st->rb.rb_node;
838 struct rb_node *parent = NULL;
839 struct cfq_group *__cfqg;
840 s64 key = cfqg_key(st, cfqg);
841 int left = 1;
842
843 while (*node != NULL) {
844 parent = *node;
845 __cfqg = rb_entry_cfqg(parent);
846
847 if (key < cfqg_key(st, __cfqg))
848 node = &parent->rb_left;
849 else {
850 node = &parent->rb_right;
851 left = 0;
852 }
853 }
854
855 if (left)
856 st->left = &cfqg->rb_node;
857
858 rb_link_node(&cfqg->rb_node, parent, node);
859 rb_insert_color(&cfqg->rb_node, &st->rb);
860}
861
862static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100863cfq_update_group_weight(struct cfq_group *cfqg)
864{
865 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
866 if (cfqg->needs_update) {
867 cfqg->weight = cfqg->new_weight;
868 cfqg->needs_update = false;
869 }
870}
871
872static void
873cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
874{
875 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
876
877 cfq_update_group_weight(cfqg);
878 __cfq_group_service_tree_add(st, cfqg);
879 st->total_weight += cfqg->weight;
880}
881
882static void
883cfq_group_notify_queue_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500884{
885 struct cfq_rb_root *st = &cfqd->grp_service_tree;
886 struct cfq_group *__cfqg;
887 struct rb_node *n;
888
889 cfqg->nr_cfqq++;
Gui Jianfeng760701b2010-11-30 20:52:47 +0100890 if (!RB_EMPTY_NODE(&cfqg->rb_node))
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500891 return;
892
893 /*
894 * Currently put the group at the end. Later implement something
895 * so that groups get lesser vtime based on their weights, so that
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300896 * if group does not loose all if it was not continuously backlogged.
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500897 */
898 n = rb_last(&st->rb);
899 if (n) {
900 __cfqg = rb_entry_cfqg(n);
901 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
902 } else
903 cfqg->vdisktime = st->min_vdisktime;
Justin TerAvest8184f932011-03-17 16:12:36 +0100904 cfq_group_service_tree_add(st, cfqg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500905}
906
907static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100908cfq_group_service_tree_del(struct cfq_rb_root *st, struct cfq_group *cfqg)
909{
910 st->total_weight -= cfqg->weight;
911 if (!RB_EMPTY_NODE(&cfqg->rb_node))
912 cfq_rb_erase(&cfqg->rb_node, st);
913}
914
915static void
916cfq_group_notify_queue_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500917{
918 struct cfq_rb_root *st = &cfqd->grp_service_tree;
919
920 BUG_ON(cfqg->nr_cfqq < 1);
921 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500922
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500923 /* If there are other cfq queues under this group, don't delete it */
924 if (cfqg->nr_cfqq)
925 return;
926
Vivek Goyal2868ef72009-12-03 12:59:48 -0500927 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Justin TerAvest8184f932011-03-17 16:12:36 +0100928 cfq_group_service_tree_del(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500929 cfqg->saved_workload_slice = 0;
Vivek Goyale98ef892010-06-18 10:39:47 -0400930 cfq_blkiocg_update_dequeue_stats(&cfqg->blkg, 1);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500931}
932
Justin TerAvest167400d2011-03-12 16:54:00 +0100933static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq,
934 unsigned int *unaccounted_time)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500935{
Vivek Goyalf75edf22009-12-03 12:59:53 -0500936 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500937
938 /*
939 * Queue got expired before even a single request completed or
940 * got expired immediately after first request completion.
941 */
942 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
943 /*
944 * Also charge the seek time incurred to the group, otherwise
945 * if there are mutiple queues in the group, each can dispatch
946 * a single request on seeky media and cause lots of seek time
947 * and group will never know it.
948 */
949 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
950 1);
951 } else {
952 slice_used = jiffies - cfqq->slice_start;
Justin TerAvest167400d2011-03-12 16:54:00 +0100953 if (slice_used > cfqq->allocated_slice) {
954 *unaccounted_time = slice_used - cfqq->allocated_slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500955 slice_used = cfqq->allocated_slice;
Justin TerAvest167400d2011-03-12 16:54:00 +0100956 }
957 if (time_after(cfqq->slice_start, cfqq->dispatch_start))
958 *unaccounted_time += cfqq->slice_start -
959 cfqq->dispatch_start;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500960 }
961
Vivek Goyaldae739e2009-12-03 12:59:45 -0500962 return slice_used;
963}
964
965static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
Vivek Goyale5ff0822010-04-26 19:25:11 +0200966 struct cfq_queue *cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500967{
968 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Justin TerAvest167400d2011-03-12 16:54:00 +0100969 unsigned int used_sl, charge, unaccounted_sl = 0;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500970 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
971 - cfqg->service_tree_idle.count;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500972
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500973 BUG_ON(nr_sync < 0);
Justin TerAvest167400d2011-03-12 16:54:00 +0100974 used_sl = charge = cfq_cfqq_slice_usage(cfqq, &unaccounted_sl);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500975
Vivek Goyal02b35082010-08-23 12:23:53 +0200976 if (iops_mode(cfqd))
977 charge = cfqq->slice_dispatch;
978 else if (!cfq_cfqq_sync(cfqq) && !nr_sync)
979 charge = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500980
981 /* Can't update vdisktime while group is on service tree */
Justin TerAvest8184f932011-03-17 16:12:36 +0100982 cfq_group_service_tree_del(st, cfqg);
Vivek Goyal02b35082010-08-23 12:23:53 +0200983 cfqg->vdisktime += cfq_scale_slice(charge, cfqg);
Justin TerAvest8184f932011-03-17 16:12:36 +0100984 /* If a new weight was requested, update now, off tree */
985 cfq_group_service_tree_add(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500986
987 /* This group is being expired. Save the context */
988 if (time_after(cfqd->workload_expires, jiffies)) {
989 cfqg->saved_workload_slice = cfqd->workload_expires
990 - jiffies;
991 cfqg->saved_workload = cfqd->serving_type;
992 cfqg->saved_serving_prio = cfqd->serving_prio;
993 } else
994 cfqg->saved_workload_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -0500995
996 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
997 st->min_vdisktime);
Joe Perchesfd16d262011-06-13 10:42:49 +0200998 cfq_log_cfqq(cfqq->cfqd, cfqq,
999 "sl_used=%u disp=%u charge=%u iops=%u sect=%lu",
1000 used_sl, cfqq->slice_dispatch, charge,
1001 iops_mode(cfqd), cfqq->nr_sectors);
Justin TerAvest167400d2011-03-12 16:54:00 +01001002 cfq_blkiocg_update_timeslice_used(&cfqg->blkg, used_sl,
1003 unaccounted_sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04001004 cfq_blkiocg_set_start_empty_time(&cfqg->blkg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001005}
1006
Vivek Goyal25fb5162009-12-03 12:59:46 -05001007#ifdef CONFIG_CFQ_GROUP_IOSCHED
1008static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg)
1009{
1010 if (blkg)
1011 return container_of(blkg, struct cfq_group, blkg);
1012 return NULL;
1013}
1014
Paul Bolle8aea4542011-06-06 05:07:54 +02001015static void cfq_update_blkio_group_weight(void *key, struct blkio_group *blkg,
1016 unsigned int weight)
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001017{
Justin TerAvest8184f932011-03-17 16:12:36 +01001018 struct cfq_group *cfqg = cfqg_of_blkg(blkg);
1019 cfqg->new_weight = weight;
1020 cfqg->needs_update = true;
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001021}
1022
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001023static void cfq_init_add_cfqg_lists(struct cfq_data *cfqd,
1024 struct cfq_group *cfqg, struct blkio_cgroup *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001025{
Vivek Goyal22084192009-12-03 12:59:49 -05001026 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
1027 unsigned int major, minor;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001028
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001029 /*
1030 * Add group onto cgroup list. It might happen that bdi->dev is
1031 * not initialized yet. Initialize this new group without major
1032 * and minor info and this info will be filled in once a new thread
1033 * comes for IO.
1034 */
1035 if (bdi->dev) {
Ricky Beniteza74b2ad2010-04-05 18:22:17 +02001036 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001037 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg,
1038 (void *)cfqd, MKDEV(major, minor));
1039 } else
1040 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg,
1041 (void *)cfqd, 0);
1042
1043 cfqd->nr_blkcg_linked_grps++;
1044 cfqg->weight = blkcg_get_weight(blkcg, cfqg->blkg.dev);
1045
1046 /* Add group on cfqd list */
1047 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
1048}
1049
1050/*
1051 * Should be called from sleepable context. No request queue lock as per
1052 * cpu stats are allocated dynamically and alloc_percpu needs to be called
1053 * from sleepable context.
1054 */
1055static struct cfq_group * cfq_alloc_cfqg(struct cfq_data *cfqd)
1056{
1057 struct cfq_group *cfqg = NULL;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001058 int i, j, ret;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001059 struct cfq_rb_root *st;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001060
1061 cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
1062 if (!cfqg)
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001063 return NULL;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001064
Vivek Goyal25fb5162009-12-03 12:59:46 -05001065 for_each_cfqg_st(cfqg, i, j, st)
1066 *st = CFQ_RB_ROOT;
1067 RB_CLEAR_NODE(&cfqg->rb_node);
1068
Shaohua Li7700fc42011-07-12 14:24:56 +02001069 cfqg->ttime.last_end_request = jiffies;
1070
Vivek Goyalb1c35762009-12-03 12:59:47 -05001071 /*
1072 * Take the initial reference that will be released on destroy
1073 * This can be thought of a joint reference by cgroup and
1074 * elevator which will be dropped by either elevator exit
1075 * or cgroup deletion path depending on who is exiting first.
1076 */
Shaohua Li329a6782011-01-07 08:48:28 +01001077 cfqg->ref = 1;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001078
1079 ret = blkio_alloc_blkg_stats(&cfqg->blkg);
1080 if (ret) {
1081 kfree(cfqg);
1082 return NULL;
1083 }
1084
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001085 return cfqg;
1086}
1087
1088static struct cfq_group *
1089cfq_find_cfqg(struct cfq_data *cfqd, struct blkio_cgroup *blkcg)
1090{
1091 struct cfq_group *cfqg = NULL;
1092 void *key = cfqd;
1093 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
1094 unsigned int major, minor;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001095
Vivek Goyal180be2a2010-09-14 08:47:11 +02001096 /*
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001097 * This is the common case when there are no blkio cgroups.
1098 * Avoid lookup in this case
Vivek Goyal180be2a2010-09-14 08:47:11 +02001099 */
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001100 if (blkcg == &blkio_root_cgroup)
1101 cfqg = &cfqd->root_group;
1102 else
1103 cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key));
1104
1105 if (cfqg && !cfqg->blkg.dev && bdi->dev && dev_name(bdi->dev)) {
Vivek Goyal180be2a2010-09-14 08:47:11 +02001106 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001107 cfqg->blkg.dev = MKDEV(major, minor);
1108 }
Vivek Goyal180be2a2010-09-14 08:47:11 +02001109
Vivek Goyal25fb5162009-12-03 12:59:46 -05001110 return cfqg;
1111}
1112
1113/*
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001114 * Search for the cfq group current task belongs to. request_queue lock must
1115 * be held.
Vivek Goyal25fb5162009-12-03 12:59:46 -05001116 */
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001117static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001118{
Vivek Goyal70087dc2011-05-16 15:24:08 +02001119 struct blkio_cgroup *blkcg;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001120 struct cfq_group *cfqg = NULL, *__cfqg = NULL;
1121 struct request_queue *q = cfqd->queue;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001122
1123 rcu_read_lock();
Vivek Goyal70087dc2011-05-16 15:24:08 +02001124 blkcg = task_blkio_cgroup(current);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001125 cfqg = cfq_find_cfqg(cfqd, blkcg);
1126 if (cfqg) {
1127 rcu_read_unlock();
1128 return cfqg;
1129 }
1130
1131 /*
1132 * Need to allocate a group. Allocation of group also needs allocation
1133 * of per cpu stats which in-turn takes a mutex() and can block. Hence
1134 * we need to drop rcu lock and queue_lock before we call alloc.
1135 *
1136 * Not taking any queue reference here and assuming that queue is
1137 * around by the time we return. CFQ queue allocation code does
1138 * the same. It might be racy though.
1139 */
1140
1141 rcu_read_unlock();
1142 spin_unlock_irq(q->queue_lock);
1143
1144 cfqg = cfq_alloc_cfqg(cfqd);
1145
1146 spin_lock_irq(q->queue_lock);
1147
1148 rcu_read_lock();
1149 blkcg = task_blkio_cgroup(current);
1150
1151 /*
1152 * If some other thread already allocated the group while we were
1153 * not holding queue lock, free up the group
1154 */
1155 __cfqg = cfq_find_cfqg(cfqd, blkcg);
1156
1157 if (__cfqg) {
1158 kfree(cfqg);
1159 rcu_read_unlock();
1160 return __cfqg;
1161 }
1162
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001163 if (!cfqg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001164 cfqg = &cfqd->root_group;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001165
1166 cfq_init_add_cfqg_lists(cfqd, cfqg, blkcg);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001167 rcu_read_unlock();
1168 return cfqg;
1169}
1170
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001171static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1172{
Shaohua Li329a6782011-01-07 08:48:28 +01001173 cfqg->ref++;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001174 return cfqg;
1175}
1176
Vivek Goyal25fb5162009-12-03 12:59:46 -05001177static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1178{
1179 /* Currently, all async queues are mapped to root group */
1180 if (!cfq_cfqq_sync(cfqq))
1181 cfqg = &cfqq->cfqd->root_group;
1182
1183 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001184 /* cfqq reference on cfqg */
Shaohua Li329a6782011-01-07 08:48:28 +01001185 cfqq->cfqg->ref++;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001186}
Vivek Goyalb1c35762009-12-03 12:59:47 -05001187
1188static void cfq_put_cfqg(struct cfq_group *cfqg)
1189{
1190 struct cfq_rb_root *st;
1191 int i, j;
1192
Shaohua Li329a6782011-01-07 08:48:28 +01001193 BUG_ON(cfqg->ref <= 0);
1194 cfqg->ref--;
1195 if (cfqg->ref)
Vivek Goyalb1c35762009-12-03 12:59:47 -05001196 return;
1197 for_each_cfqg_st(cfqg, i, j, st)
Gui Jianfengb54ce602010-11-30 20:52:46 +01001198 BUG_ON(!RB_EMPTY_ROOT(&st->rb));
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001199 free_percpu(cfqg->blkg.stats_cpu);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001200 kfree(cfqg);
1201}
1202
1203static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1204{
1205 /* Something wrong if we are trying to remove same group twice */
1206 BUG_ON(hlist_unhashed(&cfqg->cfqd_node));
1207
1208 hlist_del_init(&cfqg->cfqd_node);
1209
Vivek Goyala5395b82011-08-02 09:24:09 +02001210 BUG_ON(cfqd->nr_blkcg_linked_grps <= 0);
1211 cfqd->nr_blkcg_linked_grps--;
1212
Vivek Goyalb1c35762009-12-03 12:59:47 -05001213 /*
1214 * Put the reference taken at the time of creation so that when all
1215 * queues are gone, group can be destroyed.
1216 */
1217 cfq_put_cfqg(cfqg);
1218}
1219
1220static void cfq_release_cfq_groups(struct cfq_data *cfqd)
1221{
1222 struct hlist_node *pos, *n;
1223 struct cfq_group *cfqg;
1224
1225 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1226 /*
1227 * If cgroup removal path got to blk_group first and removed
1228 * it from cgroup list, then it will take care of destroying
1229 * cfqg also.
1230 */
Vivek Goyale98ef892010-06-18 10:39:47 -04001231 if (!cfq_blkiocg_del_blkio_group(&cfqg->blkg))
Vivek Goyalb1c35762009-12-03 12:59:47 -05001232 cfq_destroy_cfqg(cfqd, cfqg);
1233 }
1234}
1235
1236/*
1237 * Blk cgroup controller notification saying that blkio_group object is being
1238 * delinked as associated cgroup object is going away. That also means that
1239 * no new IO will come in this group. So get rid of this group as soon as
1240 * any pending IO in the group is finished.
1241 *
1242 * This function is called under rcu_read_lock(). key is the rcu protected
1243 * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu
1244 * read lock.
1245 *
1246 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
1247 * it should not be NULL as even if elevator was exiting, cgroup deltion
1248 * path got to it first.
1249 */
Paul Bolle8aea4542011-06-06 05:07:54 +02001250static void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
Vivek Goyalb1c35762009-12-03 12:59:47 -05001251{
1252 unsigned long flags;
1253 struct cfq_data *cfqd = key;
1254
1255 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1256 cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg));
1257 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1258}
1259
Vivek Goyal25fb5162009-12-03 12:59:46 -05001260#else /* GROUP_IOSCHED */
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001261static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001262{
1263 return &cfqd->root_group;
1264}
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001265
1266static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1267{
Dmitry Monakhov50eaeb32010-04-28 19:50:33 +02001268 return cfqg;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001269}
1270
Vivek Goyal25fb5162009-12-03 12:59:46 -05001271static inline void
1272cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1273 cfqq->cfqg = cfqg;
1274}
1275
Vivek Goyalb1c35762009-12-03 12:59:47 -05001276static void cfq_release_cfq_groups(struct cfq_data *cfqd) {}
1277static inline void cfq_put_cfqg(struct cfq_group *cfqg) {}
1278
Vivek Goyal25fb5162009-12-03 12:59:46 -05001279#endif /* GROUP_IOSCHED */
1280
Jens Axboe498d3aa22007-04-26 12:54:48 +02001281/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001282 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +02001283 * requests waiting to be processed. It is sorted in the order that
1284 * we will service the queues.
1285 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001286static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001287 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02001288{
Jens Axboe08717142008-01-28 11:38:15 +01001289 struct rb_node **p, *parent;
1290 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001291 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001292 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +02001293 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001294 int new_cfqq = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05001295
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001296 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
Vivek Goyal65b32a52009-12-16 17:52:59 -05001297 cfqq_type(cfqq));
Jens Axboe08717142008-01-28 11:38:15 +01001298 if (cfq_class_idle(cfqq)) {
1299 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001300 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +01001301 if (parent && parent != &cfqq->rb_node) {
1302 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1303 rb_key += __cfqq->rb_key;
1304 } else
1305 rb_key += jiffies;
1306 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02001307 /*
1308 * Get our rb key offset. Subtract any residual slice
1309 * value carried from last service. A negative resid
1310 * count indicates slice overrun, and this should position
1311 * the next service time further away in the tree.
1312 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001313 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02001314 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02001315 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001316 } else {
1317 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001318 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001319 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1320 }
Jens Axboed9e76202007-04-20 14:27:50 +02001321
1322 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05001323 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01001324 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001325 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01001326 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001327 if (rb_key == cfqq->rb_key &&
1328 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +02001329 return;
Jens Axboe53b037442006-07-28 09:48:51 +02001330
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001331 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1332 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001333 }
Jens Axboed9e76202007-04-20 14:27:50 +02001334
Jens Axboe498d3aa22007-04-26 12:54:48 +02001335 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01001336 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001337 cfqq->service_tree = service_tree;
1338 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02001339 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +02001340 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +02001341
Jens Axboed9e76202007-04-20 14:27:50 +02001342 parent = *p;
1343 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1344
Jens Axboe0c534e02007-04-18 20:01:57 +02001345 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001346 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02001347 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001348 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +02001349 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001350 else {
Jens Axboe67060e32007-04-18 20:13:32 +02001351 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02001352 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001353 }
Jens Axboe67060e32007-04-18 20:13:32 +02001354
1355 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +02001356 }
1357
Jens Axboecc09e292007-04-26 12:53:50 +02001358 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001359 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02001360
Jens Axboed9e76202007-04-20 14:27:50 +02001361 cfqq->rb_key = rb_key;
1362 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001363 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1364 service_tree->count++;
Namhyung Kim20359f22011-05-24 10:23:22 +02001365 if (add_front || !new_cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001366 return;
Justin TerAvest8184f932011-03-17 16:12:36 +01001367 cfq_group_notify_queue_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Jens Axboea36e71f2009-04-15 12:15:11 +02001370static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001371cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1372 sector_t sector, struct rb_node **ret_parent,
1373 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02001374{
Jens Axboea36e71f2009-04-15 12:15:11 +02001375 struct rb_node **p, *parent;
1376 struct cfq_queue *cfqq = NULL;
1377
1378 parent = NULL;
1379 p = &root->rb_node;
1380 while (*p) {
1381 struct rb_node **n;
1382
1383 parent = *p;
1384 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1385
1386 /*
1387 * Sort strictly based on sector. Smallest to the left,
1388 * largest to the right.
1389 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001390 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001391 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001392 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001393 n = &(*p)->rb_left;
1394 else
1395 break;
1396 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001397 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001398 }
1399
1400 *ret_parent = parent;
1401 if (rb_link)
1402 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001403 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001404}
1405
1406static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1407{
Jens Axboea36e71f2009-04-15 12:15:11 +02001408 struct rb_node **p, *parent;
1409 struct cfq_queue *__cfqq;
1410
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001411 if (cfqq->p_root) {
1412 rb_erase(&cfqq->p_node, cfqq->p_root);
1413 cfqq->p_root = NULL;
1414 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001415
1416 if (cfq_class_idle(cfqq))
1417 return;
1418 if (!cfqq->next_rq)
1419 return;
1420
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001421 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001422 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1423 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001424 if (!__cfqq) {
1425 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001426 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1427 } else
1428 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001429}
1430
Jens Axboe498d3aa22007-04-26 12:54:48 +02001431/*
1432 * Update cfqq's position in the service tree.
1433 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001434static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001435{
Jens Axboe6d048f52007-04-25 12:44:27 +02001436 /*
1437 * Resorting requires the cfqq to be on the RR list already.
1438 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001439 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001440 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001441 cfq_prio_tree_add(cfqd, cfqq);
1442 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001443}
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445/*
1446 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001447 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 */
Jens Axboefebffd62008-01-28 13:19:43 +01001449static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Jens Axboe7b679132008-05-30 12:23:07 +02001451 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001452 BUG_ON(cfq_cfqq_on_rr(cfqq));
1453 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 cfqd->busy_queues++;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001455 if (cfq_cfqq_sync(cfqq))
1456 cfqd->busy_sync_queues++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Jens Axboeedd75ff2007-04-19 12:03:34 +02001458 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
Jens Axboe498d3aa22007-04-26 12:54:48 +02001461/*
1462 * Called when the cfqq no longer has requests pending, remove it from
1463 * the service tree.
1464 */
Jens Axboefebffd62008-01-28 13:19:43 +01001465static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
Jens Axboe7b679132008-05-30 12:23:07 +02001467 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001468 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1469 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001471 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1472 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1473 cfqq->service_tree = NULL;
1474 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001475 if (cfqq->p_root) {
1476 rb_erase(&cfqq->p_node, cfqq->p_root);
1477 cfqq->p_root = NULL;
1478 }
Jens Axboed9e76202007-04-20 14:27:50 +02001479
Justin TerAvest8184f932011-03-17 16:12:36 +01001480 cfq_group_notify_queue_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 BUG_ON(!cfqd->busy_queues);
1482 cfqd->busy_queues--;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001483 if (cfq_cfqq_sync(cfqq))
1484 cfqd->busy_sync_queues--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
1487/*
1488 * rb tree support functions
1489 */
Jens Axboefebffd62008-01-28 13:19:43 +01001490static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Jens Axboe5e705372006-07-13 12:39:25 +02001492 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001493 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Jens Axboeb4878f22005-10-20 16:42:29 +02001495 BUG_ON(!cfqq->queued[sync]);
1496 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Jens Axboe5e705372006-07-13 12:39:25 +02001498 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Vivek Goyalf04a6422009-12-03 12:59:40 -05001500 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1501 /*
1502 * Queue will be deleted from service tree when we actually
1503 * expire it later. Right now just remove it from prio tree
1504 * as it is empty.
1505 */
1506 if (cfqq->p_root) {
1507 rb_erase(&cfqq->p_node, cfqq->p_root);
1508 cfqq->p_root = NULL;
1509 }
1510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
1512
Jens Axboe5e705372006-07-13 12:39:25 +02001513static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Jens Axboe5e705372006-07-13 12:39:25 +02001515 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 struct cfq_data *cfqd = cfqq->cfqd;
Jeff Moyer796d5112011-06-02 21:19:05 +02001517 struct request *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Jens Axboe5380a102006-07-13 12:37:56 +02001519 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Jeff Moyer796d5112011-06-02 21:19:05 +02001521 elv_rb_add(&cfqq->sort_list, rq);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001522
1523 if (!cfq_cfqq_on_rr(cfqq))
1524 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001525
1526 /*
1527 * check if this request is a better next-serve candidate
1528 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001529 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001530 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001531
1532 /*
1533 * adjust priority tree position, if ->next_rq changes
1534 */
1535 if (prev != cfqq->next_rq)
1536 cfq_prio_tree_add(cfqd, cfqq);
1537
Jens Axboe5044eed2007-04-25 11:53:48 +02001538 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Jens Axboefebffd62008-01-28 13:19:43 +01001541static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Jens Axboe5380a102006-07-13 12:37:56 +02001543 elv_rb_del(&cfqq->sort_list, rq);
1544 cfqq->queued[rq_is_sync(rq)]--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001545 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1546 rq_data_dir(rq), rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02001547 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04001548 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001549 &cfqq->cfqd->serving_group->blkg, rq_data_dir(rq),
1550 rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
1552
Jens Axboe206dc692006-03-28 13:03:44 +02001553static struct request *
1554cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Jens Axboe206dc692006-03-28 13:03:44 +02001556 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001557 struct cfq_io_context *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001558 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Jens Axboe4ac845a2008-01-24 08:44:49 +01001560 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001561 if (!cic)
1562 return NULL;
1563
1564 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001565 if (cfqq) {
1566 sector_t sector = bio->bi_sector + bio_sectors(bio);
1567
Jens Axboe21183b02006-07-13 12:33:14 +02001568 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return NULL;
1572}
1573
Jens Axboe165125e2007-07-24 09:28:11 +02001574static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001575{
1576 struct cfq_data *cfqd = q->elevator->elevator_data;
1577
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001578 cfqd->rq_in_driver++;
Jens Axboe7b679132008-05-30 12:23:07 +02001579 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001580 cfqd->rq_in_driver);
Jens Axboe25776e32006-06-01 10:12:26 +02001581
Tejun Heo5b936292009-05-07 22:24:38 +09001582 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001583}
1584
Jens Axboe165125e2007-07-24 09:28:11 +02001585static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Jens Axboe22e2c502005-06-27 10:55:12 +02001587 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001589 WARN_ON(!cfqd->rq_in_driver);
1590 cfqd->rq_in_driver--;
Jens Axboe7b679132008-05-30 12:23:07 +02001591 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001592 cfqd->rq_in_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
Jens Axboeb4878f22005-10-20 16:42:29 +02001595static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Jens Axboe5e705372006-07-13 12:39:25 +02001597 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001598
Jens Axboe5e705372006-07-13 12:39:25 +02001599 if (cfqq->next_rq == rq)
1600 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Jens Axboeb4878f22005-10-20 16:42:29 +02001602 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001603 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001604
Aaron Carroll45333d52008-08-26 15:52:36 +02001605 cfqq->cfqd->rq_queued--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001606 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1607 rq_data_dir(rq), rq_is_sync(rq));
Christoph Hellwig65299a32011-08-23 14:50:29 +02001608 if (rq->cmd_flags & REQ_PRIO) {
1609 WARN_ON(!cfqq->prio_pending);
1610 cfqq->prio_pending--;
Jens Axboeb53d1ed2011-08-19 08:34:48 +02001611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
Jens Axboe165125e2007-07-24 09:28:11 +02001614static int cfq_merge(struct request_queue *q, struct request **req,
1615 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
1617 struct cfq_data *cfqd = q->elevator->elevator_data;
1618 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Jens Axboe206dc692006-03-28 13:03:44 +02001620 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001621 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001622 *req = __rq;
1623 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 }
1625
1626 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628
Jens Axboe165125e2007-07-24 09:28:11 +02001629static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001630 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Jens Axboe21183b02006-07-13 12:33:14 +02001632 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001633 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Jens Axboe5e705372006-07-13 12:39:25 +02001635 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637}
1638
Divyesh Shah812d4022010-04-08 21:14:23 -07001639static void cfq_bio_merged(struct request_queue *q, struct request *req,
1640 struct bio *bio)
1641{
Vivek Goyale98ef892010-06-18 10:39:47 -04001642 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(req))->blkg,
1643 bio_data_dir(bio), cfq_bio_sync(bio));
Divyesh Shah812d4022010-04-08 21:14:23 -07001644}
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646static void
Jens Axboe165125e2007-07-24 09:28:11 +02001647cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 struct request *next)
1649{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001650 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001651 /*
1652 * reposition in fifo if next is older than rq
1653 */
1654 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001655 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001656 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001657 rq_set_fifo_time(rq, rq_fifo_time(next));
1658 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001659
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001660 if (cfqq->next_rq == next)
1661 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001662 cfq_remove_request(next);
Vivek Goyale98ef892010-06-18 10:39:47 -04001663 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(rq))->blkg,
1664 rq_data_dir(next), rq_is_sync(next));
Jens Axboe22e2c502005-06-27 10:55:12 +02001665}
1666
Jens Axboe165125e2007-07-24 09:28:11 +02001667static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001668 struct bio *bio)
1669{
1670 struct cfq_data *cfqd = q->elevator->elevator_data;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001671 struct cfq_io_context *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001672 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001673
1674 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001675 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001676 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001677 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001678 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001679
1680 /*
Tejun Heof1a4f4d2011-12-14 00:33:39 +01001681 * Lookup the cfqq that this bio will be queued with and allow
1682 * merge only if rq is queued there. This function can be called
1683 * from plug merge without queue_lock. In such cases, ioc of @rq
1684 * and %current are guaranteed to be equal. Avoid lookup which
1685 * requires queue_lock by using @rq's cic.
Jens Axboeda775262006-12-20 11:04:12 +01001686 */
Tejun Heof1a4f4d2011-12-14 00:33:39 +01001687 if (current->io_context == RQ_CIC(rq)->ioc) {
1688 cic = RQ_CIC(rq);
1689 } else {
1690 cic = cfq_cic_lookup(cfqd, current->io_context);
1691 if (!cic)
1692 return false;
1693 }
Jens Axboe719d3402006-12-22 09:38:53 +01001694
Vasily Tarasov91fac312007-04-25 12:29:51 +02001695 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001696 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001697}
1698
Divyesh Shah812df482010-04-08 21:15:35 -07001699static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1700{
1701 del_timer(&cfqd->idle_slice_timer);
Vivek Goyale98ef892010-06-18 10:39:47 -04001702 cfq_blkiocg_update_idle_time_stats(&cfqq->cfqg->blkg);
Divyesh Shah812df482010-04-08 21:15:35 -07001703}
1704
Jens Axboefebffd62008-01-28 13:19:43 +01001705static void __cfq_set_active_queue(struct cfq_data *cfqd,
1706 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001707{
1708 if (cfqq) {
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001709 cfq_log_cfqq(cfqd, cfqq, "set_active wl_prio:%d wl_type:%d",
1710 cfqd->serving_prio, cfqd->serving_type);
Justin TerAvest62a37f62011-03-23 08:25:44 +01001711 cfq_blkiocg_update_avg_queue_size_stats(&cfqq->cfqg->blkg);
1712 cfqq->slice_start = 0;
1713 cfqq->dispatch_start = jiffies;
1714 cfqq->allocated_slice = 0;
1715 cfqq->slice_end = 0;
1716 cfqq->slice_dispatch = 0;
1717 cfqq->nr_sectors = 0;
1718
1719 cfq_clear_cfqq_wait_request(cfqq);
1720 cfq_clear_cfqq_must_dispatch(cfqq);
1721 cfq_clear_cfqq_must_alloc_slice(cfqq);
1722 cfq_clear_cfqq_fifo_expire(cfqq);
1723 cfq_mark_cfqq_slice_new(cfqq);
1724
1725 cfq_del_timer(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001726 }
1727
1728 cfqd->active_queue = cfqq;
1729}
1730
1731/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001732 * current cfqq expired its slice (or was too idle), select new one
1733 */
1734static void
1735__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Vivek Goyale5ff0822010-04-26 19:25:11 +02001736 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001737{
Jens Axboe7b679132008-05-30 12:23:07 +02001738 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1739
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001740 if (cfq_cfqq_wait_request(cfqq))
Divyesh Shah812df482010-04-08 21:15:35 -07001741 cfq_del_timer(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001742
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001743 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05001744 cfq_clear_cfqq_wait_busy(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001745
1746 /*
Shaohua Liae54abe2010-02-05 13:11:45 +01001747 * If this cfqq is shared between multiple processes, check to
1748 * make sure that those processes are still issuing I/Os within
1749 * the mean seek distance. If not, it may be time to break the
1750 * queues apart again.
1751 */
1752 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
1753 cfq_mark_cfqq_split_coop(cfqq);
1754
1755 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001756 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001757 */
Shaohua Lic553f8e2011-01-14 08:41:03 +01001758 if (timed_out) {
1759 if (cfq_cfqq_slice_new(cfqq))
Vivek Goyalba5bd522011-01-19 08:25:02 -07001760 cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +01001761 else
1762 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001763 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1764 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001765
Vivek Goyale5ff0822010-04-26 19:25:11 +02001766 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001767
Vivek Goyalf04a6422009-12-03 12:59:40 -05001768 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1769 cfq_del_cfqq_rr(cfqd, cfqq);
1770
Jens Axboeedd75ff2007-04-19 12:03:34 +02001771 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001772
1773 if (cfqq == cfqd->active_queue)
1774 cfqd->active_queue = NULL;
1775
1776 if (cfqd->active_cic) {
Tejun Heob2efa052011-12-14 00:33:39 +01001777 put_io_context(cfqd->active_cic->ioc, cfqd->queue);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001778 cfqd->active_cic = NULL;
1779 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001780}
1781
Vivek Goyale5ff0822010-04-26 19:25:11 +02001782static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001783{
1784 struct cfq_queue *cfqq = cfqd->active_queue;
1785
1786 if (cfqq)
Vivek Goyale5ff0822010-04-26 19:25:11 +02001787 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001788}
1789
Jens Axboe498d3aa22007-04-26 12:54:48 +02001790/*
1791 * Get next queue for service. Unless we have a queue preemption,
1792 * we'll simply select the first cfqq in the service tree.
1793 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001794static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001795{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001796 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001797 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -05001798 cfqd->serving_type);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001799
Vivek Goyalf04a6422009-12-03 12:59:40 -05001800 if (!cfqd->rq_queued)
1801 return NULL;
1802
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001803 /* There is nothing to dispatch */
1804 if (!service_tree)
1805 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001806 if (RB_EMPTY_ROOT(&service_tree->rb))
1807 return NULL;
1808 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001809}
1810
Vivek Goyalf04a6422009-12-03 12:59:40 -05001811static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1812{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001813 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05001814 struct cfq_queue *cfqq;
1815 int i, j;
1816 struct cfq_rb_root *st;
1817
1818 if (!cfqd->rq_queued)
1819 return NULL;
1820
Vivek Goyal25fb5162009-12-03 12:59:46 -05001821 cfqg = cfq_get_next_cfqg(cfqd);
1822 if (!cfqg)
1823 return NULL;
1824
Vivek Goyalf04a6422009-12-03 12:59:40 -05001825 for_each_cfqg_st(cfqg, i, j, st)
1826 if ((cfqq = cfq_rb_first(st)) != NULL)
1827 return cfqq;
1828 return NULL;
1829}
1830
Jens Axboe498d3aa22007-04-26 12:54:48 +02001831/*
1832 * Get and set a new active queue for service.
1833 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001834static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1835 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001836{
Jens Axboee00ef792009-11-04 08:54:55 +01001837 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001838 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001839
Jens Axboe22e2c502005-06-27 10:55:12 +02001840 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001841 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001842}
1843
Jens Axboed9e76202007-04-20 14:27:50 +02001844static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1845 struct request *rq)
1846{
Tejun Heo83096eb2009-05-07 22:24:39 +09001847 if (blk_rq_pos(rq) >= cfqd->last_position)
1848 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001849 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001850 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001851}
1852
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001853static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Shaohua Lie9ce3352010-03-19 08:03:04 +01001854 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001855{
Shaohua Lie9ce3352010-03-19 08:03:04 +01001856 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001857}
1858
Jens Axboea36e71f2009-04-15 12:15:11 +02001859static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1860 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001861{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001862 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001863 struct rb_node *parent, *node;
1864 struct cfq_queue *__cfqq;
1865 sector_t sector = cfqd->last_position;
1866
1867 if (RB_EMPTY_ROOT(root))
1868 return NULL;
1869
1870 /*
1871 * First, if we find a request starting at the end of the last
1872 * request, choose it.
1873 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001874 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001875 if (__cfqq)
1876 return __cfqq;
1877
1878 /*
1879 * If the exact sector wasn't found, the parent of the NULL leaf
1880 * will contain the closest sector.
1881 */
1882 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001883 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001884 return __cfqq;
1885
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001886 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001887 node = rb_next(&__cfqq->p_node);
1888 else
1889 node = rb_prev(&__cfqq->p_node);
1890 if (!node)
1891 return NULL;
1892
1893 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001894 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001895 return __cfqq;
1896
1897 return NULL;
1898}
1899
1900/*
1901 * cfqd - obvious
1902 * cur_cfqq - passed in so that we don't decide that the current queue is
1903 * closely cooperating with itself.
1904 *
1905 * So, basically we're assuming that that cur_cfqq has dispatched at least
1906 * one request, and that cfqd->last_position reflects a position on the disk
1907 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1908 * assumption.
1909 */
1910static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001911 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001912{
1913 struct cfq_queue *cfqq;
1914
Divyesh Shah39c01b22010-03-25 15:45:57 +01001915 if (cfq_class_idle(cur_cfqq))
1916 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001917 if (!cfq_cfqq_sync(cur_cfqq))
1918 return NULL;
1919 if (CFQQ_SEEKY(cur_cfqq))
1920 return NULL;
1921
Jens Axboea36e71f2009-04-15 12:15:11 +02001922 /*
Gui Jianfengb9d8f4c2009-12-08 08:54:17 +01001923 * Don't search priority tree if it's the only queue in the group.
1924 */
1925 if (cur_cfqq->cfqg->nr_cfqq == 1)
1926 return NULL;
1927
1928 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001929 * We should notice if some of the queues are cooperating, eg
1930 * working closely on the same area of the disk. In that case,
1931 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001932 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001933 cfqq = cfqq_close(cfqd, cur_cfqq);
1934 if (!cfqq)
1935 return NULL;
1936
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001937 /* If new queue belongs to different cfq_group, don't choose it */
1938 if (cur_cfqq->cfqg != cfqq->cfqg)
1939 return NULL;
1940
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001941 /*
1942 * It only makes sense to merge sync queues.
1943 */
1944 if (!cfq_cfqq_sync(cfqq))
1945 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001946 if (CFQQ_SEEKY(cfqq))
1947 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001948
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001949 /*
1950 * Do not merge queues of different priority classes
1951 */
1952 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1953 return NULL;
1954
Jens Axboea36e71f2009-04-15 12:15:11 +02001955 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001956}
1957
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001958/*
1959 * Determine whether we should enforce idle window for this queue.
1960 */
1961
1962static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1963{
1964 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001965 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001966
Vivek Goyalf04a6422009-12-03 12:59:40 -05001967 BUG_ON(!service_tree);
1968 BUG_ON(!service_tree->count);
1969
Vivek Goyalb6508c12010-08-23 12:23:33 +02001970 if (!cfqd->cfq_slice_idle)
1971 return false;
1972
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001973 /* We never do for idle class queues. */
1974 if (prio == IDLE_WORKLOAD)
1975 return false;
1976
1977 /* We do for queues that were marked with idle window flag. */
Shaohua Li3c764b72009-12-04 13:12:06 +01001978 if (cfq_cfqq_idle_window(cfqq) &&
1979 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001980 return true;
1981
1982 /*
1983 * Otherwise, we do only if they are the last ones
1984 * in their service tree.
1985 */
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02001986 if (service_tree->count == 1 && cfq_cfqq_sync(cfqq) &&
1987 !cfq_io_thinktime_big(cfqd, &service_tree->ttime, false))
Shaohua Lic1e44752010-11-08 15:01:02 +01001988 return true;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001989 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d",
1990 service_tree->count);
Shaohua Lic1e44752010-11-08 15:01:02 +01001991 return false;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001992}
1993
Jens Axboe6d048f52007-04-25 12:44:27 +02001994static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001995{
Jens Axboe17926692007-01-19 11:59:30 +11001996 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +02001997 struct cfq_io_context *cic;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001998 unsigned long sl, group_idle = 0;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001999
Jens Axboea68bbddba2008-09-24 13:03:33 +02002000 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002001 * SSD device without seek penalty, disable idling. But only do so
2002 * for devices that support queuing, otherwise we still have a problem
2003 * with sync vs async workloads.
Jens Axboea68bbddba2008-09-24 13:03:33 +02002004 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002005 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbddba2008-09-24 13:03:33 +02002006 return;
2007
Jens Axboedd67d052006-06-21 09:36:18 +02002008 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02002009 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02002010
2011 /*
2012 * idle is disabled, either manually or by past process history
2013 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002014 if (!cfq_should_idle(cfqd, cfqq)) {
2015 /* no queue idling. Check for group idling */
2016 if (cfqd->cfq_group_idle)
2017 group_idle = cfqd->cfq_group_idle;
2018 else
2019 return;
2020 }
Jens Axboe6d048f52007-04-25 12:44:27 +02002021
Jens Axboe22e2c502005-06-27 10:55:12 +02002022 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002023 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02002024 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002025 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02002026 return;
2027
2028 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02002029 * task has exited, don't wait
2030 */
Jens Axboe206dc692006-03-28 13:03:44 +02002031 cic = cfqd->active_cic;
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01002032 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02002033 return;
2034
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002035 /*
2036 * If our average think time is larger than the remaining time
2037 * slice, then don't idle. This avoids overrunning the allotted
2038 * time slice.
2039 */
Shaohua Li383cd722011-07-12 14:24:35 +02002040 if (sample_valid(cic->ttime.ttime_samples) &&
2041 (cfqq->slice_end - jiffies < cic->ttime.ttime_mean)) {
Joe Perchesfd16d262011-06-13 10:42:49 +02002042 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%lu",
Shaohua Li383cd722011-07-12 14:24:35 +02002043 cic->ttime.ttime_mean);
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002044 return;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002045 }
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002046
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002047 /* There are other queues in the group, don't do group idle */
2048 if (group_idle && cfqq->cfqg->nr_cfqq > 1)
2049 return;
2050
Jens Axboe3b181522005-06-27 10:56:24 +02002051 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002052
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002053 if (group_idle)
2054 sl = cfqd->cfq_group_idle;
2055 else
2056 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02002057
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002058 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04002059 cfq_blkiocg_update_set_idle_time_stats(&cfqq->cfqg->blkg);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002060 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu group_idle: %d", sl,
2061 group_idle ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Jens Axboe498d3aa22007-04-26 12:54:48 +02002064/*
2065 * Move request from internal lists to the request queue dispatch list.
2066 */
Jens Axboe165125e2007-07-24 09:28:11 +02002067static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
Jens Axboe3ed9a292007-04-23 08:33:33 +02002069 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02002070 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002071
Jens Axboe7b679132008-05-30 12:23:07 +02002072 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
2073
Jeff Moyer06d21882009-09-11 17:08:59 +02002074 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02002075 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002076 cfqq->dispatched++;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002077 (RQ_CFQG(rq))->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02002078 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02002079
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002080 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
Vivek Goyalc4e78932010-08-23 12:25:03 +02002081 cfqq->nr_sectors += blk_rq_sectors(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04002082 cfq_blkiocg_update_dispatch_stats(&cfqq->cfqg->blkg, blk_rq_bytes(rq),
Divyesh Shah84c124d2010-04-09 08:31:19 +02002083 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
2086/*
2087 * return expired entry, or NULL to just start from scratch in rbtree
2088 */
Jens Axboefebffd62008-01-28 13:19:43 +01002089static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
Jens Axboe30996f42009-10-05 11:03:39 +02002091 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Jens Axboe3b181522005-06-27 10:56:24 +02002093 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11002095
2096 cfq_mark_cfqq_fifo_expire(cfqq);
2097
Jens Axboe89850f72006-07-22 16:48:31 +02002098 if (list_empty(&cfqq->fifo))
2099 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Jens Axboe89850f72006-07-22 16:48:31 +02002101 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02002102 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02002103 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Jens Axboe30996f42009-10-05 11:03:39 +02002105 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002106 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Jens Axboe22e2c502005-06-27 10:55:12 +02002109static inline int
2110cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2111{
2112 const int base_rq = cfqd->cfq_slice_async_rq;
2113
2114 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
2115
Namhyung Kimb9f8ce02011-05-24 10:23:21 +02002116 return 2 * base_rq * (IOPRIO_BE_NR - cfqq->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002117}
2118
2119/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002120 * Must be called with the queue_lock held.
2121 */
2122static int cfqq_process_refs(struct cfq_queue *cfqq)
2123{
2124 int process_refs, io_refs;
2125
2126 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
Shaohua Li30d7b942011-01-07 08:46:59 +01002127 process_refs = cfqq->ref - io_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002128 BUG_ON(process_refs < 0);
2129 return process_refs;
2130}
2131
2132static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
2133{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002134 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002135 struct cfq_queue *__cfqq;
2136
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002137 /*
2138 * If there are no process references on the new_cfqq, then it is
2139 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
2140 * chain may have dropped their last reference (not just their
2141 * last process reference).
2142 */
2143 if (!cfqq_process_refs(new_cfqq))
2144 return;
2145
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002146 /* Avoid a circular list and skip interim queue merges */
2147 while ((__cfqq = new_cfqq->new_cfqq)) {
2148 if (__cfqq == cfqq)
2149 return;
2150 new_cfqq = __cfqq;
2151 }
2152
2153 process_refs = cfqq_process_refs(cfqq);
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002154 new_process_refs = cfqq_process_refs(new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002155 /*
2156 * If the process for the cfqq has gone away, there is no
2157 * sense in merging the queues.
2158 */
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002159 if (process_refs == 0 || new_process_refs == 0)
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002160 return;
2161
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002162 /*
2163 * Merge in the direction of the lesser amount of work.
2164 */
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002165 if (new_process_refs >= process_refs) {
2166 cfqq->new_cfqq = new_cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002167 new_cfqq->ref += process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002168 } else {
2169 new_cfqq->new_cfqq = cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002170 cfqq->ref += new_process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002171 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002172}
2173
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002174static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
Vivek Goyal65b32a52009-12-16 17:52:59 -05002175 struct cfq_group *cfqg, enum wl_prio_t prio)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002176{
2177 struct cfq_queue *queue;
2178 int i;
2179 bool key_valid = false;
2180 unsigned long lowest_key = 0;
2181 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2182
Vivek Goyal65b32a52009-12-16 17:52:59 -05002183 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2184 /* select the one with lowest rb_key */
2185 queue = cfq_rb_first(service_tree_for(cfqg, prio, i));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002186 if (queue &&
2187 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2188 lowest_key = queue->rb_key;
2189 cur_best = i;
2190 key_valid = true;
2191 }
2192 }
2193
2194 return cur_best;
2195}
2196
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002197static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002198{
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002199 unsigned slice;
2200 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002201 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002202 unsigned group_slice;
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002203 enum wl_prio_t original_prio = cfqd->serving_prio;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002204
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002205 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002206 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002207 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002208 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002209 cfqd->serving_prio = BE_WORKLOAD;
2210 else {
2211 cfqd->serving_prio = IDLE_WORKLOAD;
2212 cfqd->workload_expires = jiffies + 1;
2213 return;
2214 }
2215
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002216 if (original_prio != cfqd->serving_prio)
2217 goto new_workload;
2218
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002219 /*
2220 * For RT and BE, we have to choose also the type
2221 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2222 * expiration time
2223 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002224 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002225 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002226
2227 /*
Vivek Goyal65b32a52009-12-16 17:52:59 -05002228 * check workload expiration, and that we still have other queues ready
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002229 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002230 if (count && !time_after(jiffies, cfqd->workload_expires))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002231 return;
2232
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002233new_workload:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002234 /* otherwise select new workload type */
2235 cfqd->serving_type =
Vivek Goyal65b32a52009-12-16 17:52:59 -05002236 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio);
2237 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002238 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002239
2240 /*
2241 * the workload slice is computed as a fraction of target latency
2242 * proportional to the number of queues in that workload, over
2243 * all the queues in the same priority class
2244 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002245 group_slice = cfq_group_slice(cfqd, cfqg);
2246
2247 slice = group_slice * count /
2248 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2249 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002250
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002251 if (cfqd->serving_type == ASYNC_WORKLOAD) {
2252 unsigned int tmp;
2253
2254 /*
2255 * Async queues are currently system wide. Just taking
2256 * proportion of queues with-in same group will lead to higher
2257 * async ratio system wide as generally root group is going
2258 * to have higher weight. A more accurate thing would be to
2259 * calculate system wide asnc/sync ratio.
2260 */
2261 tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg);
2262 tmp = tmp/cfqd->busy_queues;
2263 slice = min_t(unsigned, slice, tmp);
2264
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002265 /* async workload slice is scaled down according to
2266 * the sync/async slice ratio. */
2267 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002268 } else
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002269 /* sync workload slice is at least 2 * cfq_slice_idle */
2270 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2271
2272 slice = max_t(unsigned, slice, CFQ_MIN_TT);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002273 cfq_log(cfqd, "workload slice:%d", slice);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002274 cfqd->workload_expires = jiffies + slice;
2275}
2276
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002277static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2278{
2279 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002280 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002281
2282 if (RB_EMPTY_ROOT(&st->rb))
2283 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002284 cfqg = cfq_rb_first_group(st);
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002285 update_min_vdisktime(st);
2286 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002287}
2288
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002289static void cfq_choose_cfqg(struct cfq_data *cfqd)
2290{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002291 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2292
2293 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002294
2295 /* Restore the workload type data */
2296 if (cfqg->saved_workload_slice) {
2297 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2298 cfqd->serving_type = cfqg->saved_workload;
2299 cfqd->serving_prio = cfqg->saved_serving_prio;
Gui Jianfeng66ae2912009-12-15 10:08:45 +01002300 } else
2301 cfqd->workload_expires = jiffies - 1;
2302
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002303 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002304}
2305
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002306/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02002307 * Select a queue for service. If we have a current active queue,
2308 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02002309 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002310static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002311{
Jens Axboea36e71f2009-04-15 12:15:11 +02002312 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002313
2314 cfqq = cfqd->active_queue;
2315 if (!cfqq)
2316 goto new_queue;
2317
Vivek Goyalf04a6422009-12-03 12:59:40 -05002318 if (!cfqd->rq_queued)
2319 return NULL;
Vivek Goyalc244bb52009-12-08 17:52:57 -05002320
2321 /*
2322 * We were waiting for group to get backlogged. Expire the queue
2323 */
2324 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2325 goto expire;
2326
Jens Axboe22e2c502005-06-27 10:55:12 +02002327 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002328 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02002329 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05002330 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2331 /*
2332 * If slice had not expired at the completion of last request
2333 * we might not have turned on wait_busy flag. Don't expire
2334 * the queue yet. Allow the group to get backlogged.
2335 *
2336 * The very fact that we have used the slice, that means we
2337 * have been idling all along on this queue and it should be
2338 * ok to wait for this request to complete.
2339 */
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002340 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2341 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2342 cfqq = NULL;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002343 goto keep_queue;
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002344 } else
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002345 goto check_group_idle;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002346 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002347
2348 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002349 * The active queue has requests and isn't expired, allow it to
2350 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02002351 */
Jens Axboedd67d052006-06-21 09:36:18 +02002352 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002353 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02002354
2355 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02002356 * If another queue has a request waiting within our mean seek
2357 * distance, let it run. The expire code will check for close
2358 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002359 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02002360 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002361 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002362 if (new_cfqq) {
2363 if (!cfqq->new_cfqq)
2364 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02002365 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002366 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002367
2368 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002369 * No requests pending. If the active queue still has requests in
2370 * flight or is idling for a new request, allow either of these
2371 * conditions to happen (or time out) before selecting a new queue.
2372 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002373 if (timer_pending(&cfqd->idle_slice_timer)) {
2374 cfqq = NULL;
2375 goto keep_queue;
2376 }
2377
Shaohua Li8e1ac662010-11-08 15:01:04 +01002378 /*
2379 * This is a deep seek queue, but the device is much faster than
2380 * the queue can deliver, don't idle
2381 **/
2382 if (CFQQ_SEEKY(cfqq) && cfq_cfqq_idle_window(cfqq) &&
2383 (cfq_cfqq_slice_new(cfqq) ||
2384 (cfqq->slice_end - jiffies > jiffies - cfqq->slice_start))) {
2385 cfq_clear_cfqq_deep(cfqq);
2386 cfq_clear_cfqq_idle_window(cfqq);
2387 }
2388
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002389 if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2390 cfqq = NULL;
2391 goto keep_queue;
2392 }
2393
2394 /*
2395 * If group idle is enabled and there are requests dispatched from
2396 * this group, wait for requests to complete.
2397 */
2398check_group_idle:
Shaohua Li7700fc42011-07-12 14:24:56 +02002399 if (cfqd->cfq_group_idle && cfqq->cfqg->nr_cfqq == 1 &&
2400 cfqq->cfqg->dispatched &&
2401 !cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02002402 cfqq = NULL;
2403 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002404 }
2405
Jens Axboe3b181522005-06-27 10:56:24 +02002406expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02002407 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02002408new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002409 /*
2410 * Current queue expired. Check if we have to switch to a new
2411 * service tree
2412 */
2413 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002414 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002415
Jens Axboea36e71f2009-04-15 12:15:11 +02002416 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002417keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02002418 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002419}
2420
Jens Axboefebffd62008-01-28 13:19:43 +01002421static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02002422{
2423 int dispatched = 0;
2424
2425 while (cfqq->next_rq) {
2426 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2427 dispatched++;
2428 }
2429
2430 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05002431
2432 /* By default cfqq is not expired if it is empty. Do it explicitly */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002433 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02002434 return dispatched;
2435}
2436
Jens Axboe498d3aa22007-04-26 12:54:48 +02002437/*
2438 * Drain our current requests. Used for barriers and when switching
2439 * io schedulers on-the-fly.
2440 */
Jens Axboed9e76202007-04-20 14:27:50 +02002441static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002442{
Jens Axboe08717142008-01-28 11:38:15 +01002443 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002444 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002445
Divyesh Shah3440c492010-04-09 09:29:57 +02002446 /* Expire the timeslice of the current active queue first */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002447 cfq_slice_expired(cfqd, 0);
Divyesh Shah3440c492010-04-09 09:29:57 +02002448 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
2449 __cfq_set_active_queue(cfqd, cfqq);
Vivek Goyalf04a6422009-12-03 12:59:40 -05002450 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Divyesh Shah3440c492010-04-09 09:29:57 +02002451 }
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002452
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002453 BUG_ON(cfqd->busy_queues);
2454
Jeff Moyer6923715a2009-06-12 15:29:30 +02002455 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002456 return dispatched;
2457}
2458
Shaohua Liabc3c742010-03-01 09:20:54 +01002459static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
2460 struct cfq_queue *cfqq)
2461{
2462 /* the queue hasn't finished any request, can't estimate */
2463 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +01002464 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002465 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
2466 cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +01002467 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002468
Shaohua Lic1e44752010-11-08 15:01:02 +01002469 return false;
Shaohua Liabc3c742010-03-01 09:20:54 +01002470}
2471
Jens Axboe0b182d62009-10-06 20:49:37 +02002472static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02002473{
Jens Axboe2f5cb732009-04-07 08:51:19 +02002474 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Jens Axboe2f5cb732009-04-07 08:51:19 +02002476 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02002477 * Drain async requests before we start sync IO
2478 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002479 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02002480 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02002481
2482 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002483 * If this is an async queue and we have sync IO in flight, let it wait
2484 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002485 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002486 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002487
Shaohua Liabc3c742010-03-01 09:20:54 +01002488 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002489 if (cfq_class_idle(cfqq))
2490 max_dispatch = 1;
2491
2492 /*
2493 * Does this cfqq already have too much IO in flight?
2494 */
2495 if (cfqq->dispatched >= max_dispatch) {
Shaohua Lief8a41d2011-03-07 09:26:29 +01002496 bool promote_sync = false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002497 /*
2498 * idle queue must always only have a single IO in flight
2499 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02002500 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002501 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02002502
Jens Axboe2f5cb732009-04-07 08:51:19 +02002503 /*
Li, Shaohuac4ade942011-03-23 08:30:34 +01002504 * If there is only one sync queue
2505 * we can ignore async queue here and give the sync
Shaohua Lief8a41d2011-03-07 09:26:29 +01002506 * queue no dispatch limit. The reason is a sync queue can
2507 * preempt async queue, limiting the sync queue doesn't make
2508 * sense. This is useful for aiostress test.
2509 */
Li, Shaohuac4ade942011-03-23 08:30:34 +01002510 if (cfq_cfqq_sync(cfqq) && cfqd->busy_sync_queues == 1)
2511 promote_sync = true;
Shaohua Lief8a41d2011-03-07 09:26:29 +01002512
2513 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002514 * We have other queues, don't allow more IO from this one
2515 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002516 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq) &&
2517 !promote_sync)
Jens Axboe0b182d62009-10-06 20:49:37 +02002518 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11002519
Jens Axboe2f5cb732009-04-07 08:51:19 +02002520 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01002521 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02002522 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002523 if (cfqd->busy_queues == 1 || promote_sync)
Shaohua Liabc3c742010-03-01 09:20:54 +01002524 max_dispatch = -1;
2525 else
2526 /*
2527 * Normally we start throttling cfqq when cfq_quantum/2
2528 * requests have been dispatched. But we can drive
2529 * deeper queue depths at the beginning of slice
2530 * subjected to upper limit of cfq_quantum.
2531 * */
2532 max_dispatch = cfqd->cfq_quantum;
Jens Axboe8e296752009-10-03 16:26:03 +02002533 }
2534
2535 /*
2536 * Async queues must wait a bit before being allowed dispatch.
2537 * We also ramp up the dispatch depth gradually for async IO,
2538 * based on the last sync IO we serviced
2539 */
Jens Axboe963b72f2009-10-03 19:42:18 +02002540 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Corrado Zoccolo573412b2009-12-06 11:48:52 +01002541 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
Jens Axboe8e296752009-10-03 16:26:03 +02002542 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02002543
Jens Axboe61f0c1d2009-10-03 19:46:03 +02002544 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02002545 if (!depth && !cfqq->dispatched)
2546 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02002547 if (depth < max_dispatch)
2548 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 }
2550
Jens Axboe0b182d62009-10-06 20:49:37 +02002551 /*
2552 * If we're below the current max, allow a dispatch
2553 */
2554 return cfqq->dispatched < max_dispatch;
2555}
2556
2557/*
2558 * Dispatch a request from cfqq, moving them to the request queue
2559 * dispatch list.
2560 */
2561static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2562{
2563 struct request *rq;
2564
2565 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2566
2567 if (!cfq_may_dispatch(cfqd, cfqq))
2568 return false;
2569
2570 /*
2571 * follow expired path, else get first next available
2572 */
2573 rq = cfq_check_fifo(cfqq);
2574 if (!rq)
2575 rq = cfqq->next_rq;
2576
2577 /*
2578 * insert request into driver dispatch list
2579 */
2580 cfq_dispatch_insert(cfqd->queue, rq);
2581
2582 if (!cfqd->active_cic) {
2583 struct cfq_io_context *cic = RQ_CIC(rq);
2584
2585 atomic_long_inc(&cic->ioc->refcount);
2586 cfqd->active_cic = cic;
2587 }
2588
2589 return true;
2590}
2591
2592/*
2593 * Find the cfqq that we need to service and move a request from that to the
2594 * dispatch list
2595 */
2596static int cfq_dispatch_requests(struct request_queue *q, int force)
2597{
2598 struct cfq_data *cfqd = q->elevator->elevator_data;
2599 struct cfq_queue *cfqq;
2600
2601 if (!cfqd->busy_queues)
2602 return 0;
2603
2604 if (unlikely(force))
2605 return cfq_forced_dispatch(cfqd);
2606
2607 cfqq = cfq_select_queue(cfqd);
2608 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002609 return 0;
2610
Jens Axboe2f5cb732009-04-07 08:51:19 +02002611 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002612 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002613 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002614 if (!cfq_dispatch_request(cfqd, cfqq))
2615 return 0;
2616
Jens Axboe2f5cb732009-04-07 08:51:19 +02002617 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002618 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002619
2620 /*
2621 * expire an async queue immediately if it has used up its slice. idle
2622 * queue always expire after 1 dispatch round.
2623 */
2624 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2625 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2626 cfq_class_idle(cfqq))) {
2627 cfqq->slice_end = jiffies + 1;
Vivek Goyale5ff0822010-04-26 19:25:11 +02002628 cfq_slice_expired(cfqd, 0);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002629 }
2630
Shan Weib217a902009-09-01 10:06:42 +02002631 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002632 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633}
2634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635/*
Jens Axboe5e705372006-07-13 12:39:25 +02002636 * task holds one reference to the queue, dropped when task exits. each rq
2637 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05002639 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 * queue lock must be held here.
2641 */
2642static void cfq_put_queue(struct cfq_queue *cfqq)
2643{
Jens Axboe22e2c502005-06-27 10:55:12 +02002644 struct cfq_data *cfqd = cfqq->cfqd;
Justin TerAvest0bbfeb82011-03-01 15:05:08 -05002645 struct cfq_group *cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02002646
Shaohua Li30d7b942011-01-07 08:46:59 +01002647 BUG_ON(cfqq->ref <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Shaohua Li30d7b942011-01-07 08:46:59 +01002649 cfqq->ref--;
2650 if (cfqq->ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 return;
2652
Jens Axboe7b679132008-05-30 12:23:07 +02002653 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002655 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002656 cfqg = cfqq->cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002658 if (unlikely(cfqd->active_queue == cfqq)) {
Vivek Goyale5ff0822010-04-26 19:25:11 +02002659 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002660 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002661 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002662
Vivek Goyalf04a6422009-12-03 12:59:40 -05002663 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 kmem_cache_free(cfq_pool, cfqq);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002665 cfq_put_cfqg(cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666}
2667
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002668static void cfq_cic_free_rcu(struct rcu_head *head)
2669{
Tejun Heob50b6362011-12-14 00:33:39 +01002670 kmem_cache_free(cfq_ioc_pool,
2671 container_of(head, struct cfq_io_context, rcu_head));
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002672}
2673
2674static void cfq_cic_free(struct cfq_io_context *cic)
2675{
2676 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002677}
2678
Tejun Heo283287a2011-12-14 00:33:38 +01002679static void cfq_release_cic(struct cfq_io_context *cic)
Jens Axboe4ac845a2008-01-24 08:44:49 +01002680{
Tejun Heo283287a2011-12-14 00:33:38 +01002681 struct io_context *ioc = cic->ioc;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002682 unsigned long dead_key = (unsigned long) cic->key;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002683
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002684 BUG_ON(!(dead_key & CIC_DEAD_KEY));
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002685 radix_tree_delete(&ioc->radix_root, dead_key >> CIC_DEAD_INDEX_SHIFT);
Tejun Heob50b6362011-12-14 00:33:39 +01002686 hlist_del(&cic->cic_list);
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002687 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002688}
2689
Shaohua Lid02a2c02010-05-25 10:16:53 +02002690static void cfq_put_cooperator(struct cfq_queue *cfqq)
Jens Axboe89850f72006-07-22 16:48:31 +02002691{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002692 struct cfq_queue *__cfqq, *next;
2693
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002694 /*
2695 * If this queue was scheduled to merge with another queue, be
2696 * sure to drop the reference taken on that queue (and others in
2697 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2698 */
2699 __cfqq = cfqq->new_cfqq;
2700 while (__cfqq) {
2701 if (__cfqq == cfqq) {
2702 WARN(1, "cfqq->new_cfqq loop detected\n");
2703 break;
2704 }
2705 next = __cfqq->new_cfqq;
2706 cfq_put_queue(__cfqq);
2707 __cfqq = next;
2708 }
Shaohua Lid02a2c02010-05-25 10:16:53 +02002709}
2710
2711static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2712{
2713 if (unlikely(cfqq == cfqd->active_queue)) {
2714 __cfq_slice_expired(cfqd, cfqq, 0);
2715 cfq_schedule_dispatch(cfqd);
2716 }
2717
2718 cfq_put_cooperator(cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002719
Jens Axboe89850f72006-07-22 16:48:31 +02002720 cfq_put_queue(cfqq);
2721}
2722
Tejun Heo283287a2011-12-14 00:33:38 +01002723static void cfq_exit_cic(struct cfq_io_context *cic)
Jens Axboe89850f72006-07-22 16:48:31 +02002724{
Tejun Heo283287a2011-12-14 00:33:38 +01002725 struct cfq_data *cfqd = cic_to_cfqd(cic);
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002726 struct io_context *ioc = cic->ioc;
2727
Jens Axboefc463792006-08-29 09:05:44 +02002728 list_del_init(&cic->queue_list);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002729 cic->key = cfqd_dead_key(cfqd);
Jens Axboefc463792006-08-29 09:05:44 +02002730
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002731 /*
2732 * Both setting lookup hint to and clearing it from @cic are done
2733 * under queue_lock. If it's not pointing to @cic now, it never
2734 * will. Hint assignment itself can race safely.
2735 */
2736 if (rcu_dereference_raw(ioc->ioc_data) == cic)
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002737 rcu_assign_pointer(ioc->ioc_data, NULL);
2738
Jens Axboeff6657c2009-04-08 10:58:57 +02002739 if (cic->cfqq[BLK_RW_ASYNC]) {
2740 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2741 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002742 }
2743
Jens Axboeff6657c2009-04-08 10:58:57 +02002744 if (cic->cfqq[BLK_RW_SYNC]) {
2745 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2746 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002747 }
Jens Axboe89850f72006-07-22 16:48:31 +02002748}
2749
Jens Axboe22e2c502005-06-27 10:55:12 +02002750static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04002751cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752{
Jens Axboeb5deef92006-07-19 23:39:40 +02002753 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Christoph Lameter94f60302007-07-17 04:03:29 -07002755 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
2756 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 if (cic) {
Shaohua Li383cd722011-07-12 14:24:35 +02002758 cic->ttime.last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02002759 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboeffc4e752008-02-19 10:02:29 +01002760 INIT_HLIST_NODE(&cic->cic_list);
Tejun Heob2efa052011-12-14 00:33:39 +01002761 cic->exit = cfq_exit_cic;
2762 cic->release = cfq_release_cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 }
2764
2765 return cic;
2766}
2767
Jens Axboefd0928d2008-01-24 08:52:45 +01002768static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02002769{
2770 struct task_struct *tsk = current;
2771 int ioprio_class;
2772
Jens Axboe3b181522005-06-27 10:56:24 +02002773 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002774 return;
2775
Jens Axboefd0928d2008-01-24 08:52:45 +01002776 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002777 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002778 default:
2779 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2780 case IOPRIO_CLASS_NONE:
2781 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002782 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002783 */
2784 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002785 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002786 break;
2787 case IOPRIO_CLASS_RT:
2788 cfqq->ioprio = task_ioprio(ioc);
2789 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2790 break;
2791 case IOPRIO_CLASS_BE:
2792 cfqq->ioprio = task_ioprio(ioc);
2793 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2794 break;
2795 case IOPRIO_CLASS_IDLE:
2796 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2797 cfqq->ioprio = 7;
2798 cfq_clear_cfqq_idle_window(cfqq);
2799 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002800 }
2801
2802 /*
2803 * keep track of original prio settings in case we have to temporarily
2804 * elevate the priority of this queue
2805 */
2806 cfqq->org_ioprio = cfqq->ioprio;
Jens Axboe3b181522005-06-27 10:56:24 +02002807 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002808}
2809
Tejun Heodc869002011-12-14 00:33:38 +01002810static void changed_ioprio(struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002811{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002812 struct cfq_data *cfqd = cic_to_cfqd(cic);
Al Viro478a82b2006-03-18 13:25:24 -05002813 struct cfq_queue *cfqq;
Jens Axboe35e60772006-06-14 09:10:45 +02002814
Jens Axboecaaa5f92006-06-16 11:23:00 +02002815 if (unlikely(!cfqd))
2816 return;
2817
Jens Axboeff6657c2009-04-08 10:58:57 +02002818 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002819 if (cfqq) {
2820 struct cfq_queue *new_cfqq;
Jens Axboeff6657c2009-04-08 10:58:57 +02002821 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc,
2822 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002823 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002824 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002825 cfq_put_queue(cfqq);
2826 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002827 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002828
Jens Axboeff6657c2009-04-08 10:58:57 +02002829 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002830 if (cfqq)
2831 cfq_mark_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002832}
2833
Jens Axboed5036d72009-06-26 10:44:34 +02002834static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002835 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002836{
2837 RB_CLEAR_NODE(&cfqq->rb_node);
2838 RB_CLEAR_NODE(&cfqq->p_node);
2839 INIT_LIST_HEAD(&cfqq->fifo);
2840
Shaohua Li30d7b942011-01-07 08:46:59 +01002841 cfqq->ref = 0;
Jens Axboed5036d72009-06-26 10:44:34 +02002842 cfqq->cfqd = cfqd;
2843
2844 cfq_mark_cfqq_prio_changed(cfqq);
2845
2846 if (is_sync) {
2847 if (!cfq_class_idle(cfqq))
2848 cfq_mark_cfqq_idle_window(cfqq);
2849 cfq_mark_cfqq_sync(cfqq);
2850 }
2851 cfqq->pid = pid;
2852}
2853
Vivek Goyal246103332009-12-03 12:59:51 -05002854#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heodc869002011-12-14 00:33:38 +01002855static void changed_cgroup(struct cfq_io_context *cic)
Vivek Goyal246103332009-12-03 12:59:51 -05002856{
2857 struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002858 struct cfq_data *cfqd = cic_to_cfqd(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05002859 struct request_queue *q;
2860
2861 if (unlikely(!cfqd))
2862 return;
2863
2864 q = cfqd->queue;
2865
Vivek Goyal246103332009-12-03 12:59:51 -05002866 if (sync_cfqq) {
2867 /*
2868 * Drop reference to sync queue. A new sync queue will be
2869 * assigned in new group upon arrival of a fresh request.
2870 */
2871 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2872 cic_set_cfqq(cic, NULL, 1);
2873 cfq_put_queue(sync_cfqq);
2874 }
Vivek Goyal246103332009-12-03 12:59:51 -05002875}
Vivek Goyal246103332009-12-03 12:59:51 -05002876#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002879cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01002880 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vasily Tarasov91fac312007-04-25 12:29:51 +02002883 struct cfq_io_context *cic;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002884 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
2886retry:
Vivek Goyal3e59cf92011-05-19 15:38:21 -04002887 cfqg = cfq_get_cfqg(cfqd);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002888 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002889 /* cic always exists here */
2890 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Jens Axboe6118b702009-06-30 09:34:12 +02002892 /*
2893 * Always try a new alloc if we fell back to the OOM cfqq
2894 * originally, since it should just be a temporary situation.
2895 */
2896 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2897 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 if (new_cfqq) {
2899 cfqq = new_cfqq;
2900 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002901 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002903 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002904 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002905 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002907 if (new_cfqq)
2908 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002909 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002910 cfqq = kmem_cache_alloc_node(cfq_pool,
2911 gfp_mask | __GFP_ZERO,
2912 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Jens Axboe6118b702009-06-30 09:34:12 +02002915 if (cfqq) {
2916 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2917 cfq_init_prio_data(cfqq, ioc);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002918 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002919 cfq_log_cfqq(cfqd, cfqq, "alloced");
2920 } else
2921 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 }
2923
2924 if (new_cfqq)
2925 kmem_cache_free(cfq_pool, new_cfqq);
2926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 return cfqq;
2928}
2929
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002930static struct cfq_queue **
2931cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2932{
Jens Axboefe094d92008-01-31 13:08:54 +01002933 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002934 case IOPRIO_CLASS_RT:
2935 return &cfqd->async_cfqq[0][ioprio];
2936 case IOPRIO_CLASS_BE:
2937 return &cfqd->async_cfqq[1][ioprio];
2938 case IOPRIO_CLASS_IDLE:
2939 return &cfqd->async_idle_cfqq;
2940 default:
2941 BUG();
2942 }
2943}
2944
Jens Axboe15c31be2007-07-10 13:43:25 +02002945static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002946cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02002947 gfp_t gfp_mask)
2948{
Jens Axboefd0928d2008-01-24 08:52:45 +01002949 const int ioprio = task_ioprio(ioc);
2950 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002951 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002952 struct cfq_queue *cfqq = NULL;
2953
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002954 if (!is_sync) {
2955 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2956 cfqq = *async_cfqq;
2957 }
2958
Jens Axboe6118b702009-06-30 09:34:12 +02002959 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01002960 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002961
2962 /*
2963 * pin the queue now that it's allocated, scheduler exit will prune it
2964 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002965 if (!is_sync && !(*async_cfqq)) {
Shaohua Li30d7b942011-01-07 08:46:59 +01002966 cfqq->ref++;
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002967 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002968 }
2969
Shaohua Li30d7b942011-01-07 08:46:59 +01002970 cfqq->ref++;
Jens Axboe15c31be2007-07-10 13:43:25 +02002971 return cfqq;
2972}
2973
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002974/**
2975 * cfq_cic_lookup - lookup cfq_io_context
2976 * @cfqd: the associated cfq_data
2977 * @ioc: the associated io_context
2978 *
2979 * Look up cfq_io_context associated with @cfqd - @ioc pair. Must be
2980 * called with queue_lock held.
2981 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002982static struct cfq_io_context *
Jens Axboe4ac845a2008-01-24 08:44:49 +01002983cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002984{
Jens Axboee2d74ac2006-03-28 08:59:01 +02002985 struct cfq_io_context *cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002986
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002987 lockdep_assert_held(cfqd->queue->queue_lock);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002988 if (unlikely(!ioc))
2989 return NULL;
2990
Jens Axboe597bc482007-04-24 21:23:53 +02002991 /*
Tejun Heob9a19202011-12-14 00:33:39 +01002992 * cic's are indexed from @ioc using radix tree and hint pointer,
2993 * both of which are protected with RCU. All removals are done
2994 * holding both q and ioc locks, and we're holding q lock - if we
2995 * find a cic which points to us, it's guaranteed to be valid.
Jens Axboe597bc482007-04-24 21:23:53 +02002996 */
Tejun Heob9a19202011-12-14 00:33:39 +01002997 rcu_read_lock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01002998 cic = rcu_dereference(ioc->ioc_data);
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002999 if (cic && cic->key == cfqd)
3000 goto out;
Jens Axboe597bc482007-04-24 21:23:53 +02003001
Tejun Heob9a19202011-12-14 00:33:39 +01003002 cic = radix_tree_lookup(&ioc->radix_root, cfqd->queue->id);
3003 if (cic && cic->key == cfqd)
3004 rcu_assign_pointer(ioc->ioc_data, cic); /* allowed to race */
3005 else
3006 cic = NULL;
Tejun Heof1a4f4d2011-12-14 00:33:39 +01003007out:
3008 rcu_read_unlock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01003009 return cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003010}
3011
Tejun Heo216284c2011-12-14 00:33:38 +01003012/**
3013 * cfq_create_cic - create and link a cfq_io_context
3014 * @cfqd: cfqd of interest
3015 * @gfp_mask: allocation mask
3016 *
3017 * Make sure cfq_io_context linking %current->io_context and @cfqd exists.
3018 * If ioc and/or cic doesn't exist, they will be created using @gfp_mask.
Jens Axboe4ac845a2008-01-24 08:44:49 +01003019 */
Tejun Heo216284c2011-12-14 00:33:38 +01003020static int cfq_create_cic(struct cfq_data *cfqd, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02003021{
Tejun Heo216284c2011-12-14 00:33:38 +01003022 struct request_queue *q = cfqd->queue;
3023 struct cfq_io_context *cic = NULL;
3024 struct io_context *ioc;
3025 int ret = -ENOMEM;
3026
3027 might_sleep_if(gfp_mask & __GFP_WAIT);
3028
3029 /* allocate stuff */
3030 ioc = current_io_context(gfp_mask, q->node);
3031 if (!ioc)
3032 goto out;
3033
3034 cic = cfq_alloc_io_context(cfqd, gfp_mask);
3035 if (!cic)
3036 goto out;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003037
Jens Axboe4ac845a2008-01-24 08:44:49 +01003038 ret = radix_tree_preload(gfp_mask);
Tejun Heo283287a2011-12-14 00:33:38 +01003039 if (ret)
3040 goto out;
3041
3042 cic->ioc = ioc;
3043 cic->key = cfqd;
3044 cic->q = cfqd->queue;
3045
Tejun Heo216284c2011-12-14 00:33:38 +01003046 /* lock both q and ioc and try to link @cic */
3047 spin_lock_irq(q->queue_lock);
3048 spin_lock(&ioc->lock);
3049
3050 ret = radix_tree_insert(&ioc->radix_root, q->id, cic);
3051 if (likely(!ret)) {
Tejun Heob50b6362011-12-14 00:33:39 +01003052 hlist_add_head(&cic->cic_list, &ioc->cic_list);
Tejun Heo216284c2011-12-14 00:33:38 +01003053 list_add(&cic->queue_list, &cfqd->cic_list);
3054 cic = NULL;
3055 } else if (ret == -EEXIST) {
3056 /* someone else already did it */
3057 ret = 0;
3058 }
3059
3060 spin_unlock(&ioc->lock);
3061 spin_unlock_irq(q->queue_lock);
Tejun Heo283287a2011-12-14 00:33:38 +01003062
3063 radix_tree_preload_end();
Tejun Heo283287a2011-12-14 00:33:38 +01003064out:
Jens Axboe4ac845a2008-01-24 08:44:49 +01003065 if (ret)
3066 printk(KERN_ERR "cfq: cic link failed!\n");
Tejun Heo216284c2011-12-14 00:33:38 +01003067 if (cic)
3068 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01003069 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003070}
3071
Tejun Heo216284c2011-12-14 00:33:38 +01003072/**
3073 * cfq_get_io_context - acquire cfq_io_context and bump refcnt on io_context
3074 * @cfqd: cfqd to setup cic for
3075 * @gfp_mask: allocation mask
3076 *
3077 * Return cfq_io_context associating @cfqd and %current->io_context and
3078 * bump refcnt on io_context. If ioc or cic doesn't exist, they're created
3079 * using @gfp_mask.
3080 *
3081 * Must be called under queue_lock which may be released and re-acquired.
3082 * This function also may sleep depending on @gfp_mask.
Jens Axboe22e2c502005-06-27 10:55:12 +02003083 */
3084static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02003085cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
Tejun Heo216284c2011-12-14 00:33:38 +01003087 struct request_queue *q = cfqd->queue;
Tejun Heo6e736be2011-12-14 00:33:38 +01003088 struct cfq_io_context *cic = NULL;
Tejun Heo216284c2011-12-14 00:33:38 +01003089 struct io_context *ioc;
3090 int err;
Jens Axboe22e2c502005-06-27 10:55:12 +02003091
Tejun Heo216284c2011-12-14 00:33:38 +01003092 lockdep_assert_held(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003093
Tejun Heo216284c2011-12-14 00:33:38 +01003094 while (true) {
3095 /* fast path */
3096 ioc = current->io_context;
3097 if (likely(ioc)) {
3098 cic = cfq_cic_lookup(cfqd, ioc);
3099 if (likely(cic))
3100 break;
3101 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003102
Tejun Heo216284c2011-12-14 00:33:38 +01003103 /* slow path - unlock, create missing ones and retry */
3104 spin_unlock_irq(q->queue_lock);
3105 err = cfq_create_cic(cfqd, gfp_mask);
3106 spin_lock_irq(q->queue_lock);
3107 if (err)
3108 return NULL;
3109 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003110
Tejun Heo216284c2011-12-14 00:33:38 +01003111 /* bump @ioc's refcnt and handle changed notifications */
Tejun Heo6e736be2011-12-14 00:33:38 +01003112 get_io_context(ioc);
3113
Tejun Heodc869002011-12-14 00:33:38 +01003114 if (unlikely(cic->changed)) {
3115 if (test_and_clear_bit(CIC_IOPRIO_CHANGED, &cic->changed))
3116 changed_ioprio(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05003117#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heodc869002011-12-14 00:33:38 +01003118 if (test_and_clear_bit(CIC_CGROUP_CHANGED, &cic->changed))
3119 changed_cgroup(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05003120#endif
Tejun Heodc869002011-12-14 00:33:38 +01003121 }
3122
Jens Axboe22e2c502005-06-27 10:55:12 +02003123 return cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003124}
3125
3126static void
Shaohua Li383cd722011-07-12 14:24:35 +02003127__cfq_update_io_thinktime(struct cfq_ttime *ttime, unsigned long slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003128{
Shaohua Li383cd722011-07-12 14:24:35 +02003129 unsigned long elapsed = jiffies - ttime->last_end_request;
3130 elapsed = min(elapsed, 2UL * slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02003131
Shaohua Li383cd722011-07-12 14:24:35 +02003132 ttime->ttime_samples = (7*ttime->ttime_samples + 256) / 8;
3133 ttime->ttime_total = (7*ttime->ttime_total + 256*elapsed) / 8;
3134 ttime->ttime_mean = (ttime->ttime_total + 128) / ttime->ttime_samples;
3135}
3136
3137static void
3138cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3139 struct cfq_io_context *cic)
3140{
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003141 if (cfq_cfqq_sync(cfqq)) {
Shaohua Li383cd722011-07-12 14:24:35 +02003142 __cfq_update_io_thinktime(&cic->ttime, cfqd->cfq_slice_idle);
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003143 __cfq_update_io_thinktime(&cfqq->service_tree->ttime,
3144 cfqd->cfq_slice_idle);
3145 }
Shaohua Li7700fc42011-07-12 14:24:56 +02003146#ifdef CONFIG_CFQ_GROUP_IOSCHED
3147 __cfq_update_io_thinktime(&cfqq->cfqg->ttime, cfqd->cfq_group_idle);
3148#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02003149}
3150
Jens Axboe206dc692006-03-28 13:03:44 +02003151static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003152cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02003153 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02003154{
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003155 sector_t sdist = 0;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003156 sector_t n_sec = blk_rq_sectors(rq);
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003157 if (cfqq->last_request_pos) {
3158 if (cfqq->last_request_pos < blk_rq_pos(rq))
3159 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
3160 else
3161 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
3162 }
Jens Axboe206dc692006-03-28 13:03:44 +02003163
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003164 cfqq->seek_history <<= 1;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003165 if (blk_queue_nonrot(cfqd->queue))
3166 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
3167 else
3168 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
Jens Axboe206dc692006-03-28 13:03:44 +02003169}
Jens Axboe22e2c502005-06-27 10:55:12 +02003170
3171/*
3172 * Disable idle window if the process thinks too long or seeks so much that
3173 * it doesn't matter
3174 */
3175static void
3176cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3177 struct cfq_io_context *cic)
3178{
Jens Axboe7b679132008-05-30 12:23:07 +02003179 int old_idle, enable_idle;
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003180
Jens Axboe08717142008-01-28 11:38:15 +01003181 /*
3182 * Don't idle for async or idle io prio class
3183 */
3184 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003185 return;
3186
Jens Axboec265a7f2008-06-26 13:49:33 +02003187 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003188
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003189 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3190 cfq_mark_cfqq_deep(cfqq);
3191
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003192 if (cfqq->next_rq && (cfqq->next_rq->cmd_flags & REQ_NOIDLE))
3193 enable_idle = 0;
3194 else if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003195 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02003196 enable_idle = 0;
Shaohua Li383cd722011-07-12 14:24:35 +02003197 else if (sample_valid(cic->ttime.ttime_samples)) {
3198 if (cic->ttime.ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003199 enable_idle = 0;
3200 else
3201 enable_idle = 1;
3202 }
3203
Jens Axboe7b679132008-05-30 12:23:07 +02003204 if (old_idle != enable_idle) {
3205 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3206 if (enable_idle)
3207 cfq_mark_cfqq_idle_window(cfqq);
3208 else
3209 cfq_clear_cfqq_idle_window(cfqq);
3210 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003211}
3212
Jens Axboe22e2c502005-06-27 10:55:12 +02003213/*
3214 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3215 * no or if we aren't sure, a 1 will cause a preempt.
3216 */
Jens Axboea6151c32009-10-07 20:02:57 +02003217static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02003218cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02003219 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003220{
Jens Axboe6d048f52007-04-25 12:44:27 +02003221 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003222
Jens Axboe6d048f52007-04-25 12:44:27 +02003223 cfqq = cfqd->active_queue;
3224 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02003225 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003226
Jens Axboe6d048f52007-04-25 12:44:27 +02003227 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003228 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003229
3230 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003231 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003232
Jens Axboe22e2c502005-06-27 10:55:12 +02003233 /*
Divyesh Shah875feb62010-01-06 18:58:20 -08003234 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3235 */
3236 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3237 return false;
3238
3239 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02003240 * if the new request is sync, but the currently running queue is
3241 * not, let the sync request have priority.
3242 */
Jens Axboe5e705372006-07-13 12:39:25 +02003243 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003244 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003245
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003246 if (new_cfqq->cfqg != cfqq->cfqg)
3247 return false;
3248
3249 if (cfq_slice_used(cfqq))
3250 return true;
3251
3252 /* Allow preemption only if we are idling on sync-noidle tree */
3253 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
3254 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3255 new_cfqq->service_tree->count == 2 &&
3256 RB_EMPTY_ROOT(&cfqq->sort_list))
3257 return true;
3258
Jens Axboe374f84a2006-07-23 01:42:19 +02003259 /*
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003260 * So both queues are sync. Let the new request get disk time if
3261 * it's a metadata request and the current queue is doing regular IO.
3262 */
Christoph Hellwig65299a32011-08-23 14:50:29 +02003263 if ((rq->cmd_flags & REQ_PRIO) && !cfqq->prio_pending)
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003264 return true;
3265
3266 /*
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003267 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3268 */
3269 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003270 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003271
Shaohua Lid2d59e12010-11-08 15:01:03 +01003272 /* An idle queue should not be idle now for some reason */
3273 if (RB_EMPTY_ROOT(&cfqq->sort_list) && !cfq_should_idle(cfqd, cfqq))
3274 return true;
3275
Jens Axboe1e3335d2007-02-14 19:59:49 +01003276 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003277 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003278
3279 /*
3280 * if this request is as-good as one we would expect from the
3281 * current cfqq, let it preempt
3282 */
Shaohua Lie9ce3352010-03-19 08:03:04 +01003283 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02003284 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003285
Jens Axboea6151c32009-10-07 20:02:57 +02003286 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003287}
3288
3289/*
3290 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3291 * let it have half of its nominal slice.
3292 */
3293static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3294{
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003295 struct cfq_queue *old_cfqq = cfqd->active_queue;
3296
Jens Axboe7b679132008-05-30 12:23:07 +02003297 cfq_log_cfqq(cfqd, cfqq, "preempt");
Vivek Goyale5ff0822010-04-26 19:25:11 +02003298 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003299
Jens Axboebf572252006-07-19 20:29:12 +02003300 /*
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003301 * workload type is changed, don't save slice, otherwise preempt
3302 * doesn't happen
3303 */
3304 if (cfqq_type(old_cfqq) != cfqq_type(cfqq))
3305 cfqq->cfqg->saved_workload_slice = 0;
3306
3307 /*
Jens Axboebf572252006-07-19 20:29:12 +02003308 * Put the new queue at the front of the of the current list,
3309 * so we know that it will be selected next.
3310 */
3311 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02003312
3313 cfq_service_tree_add(cfqd, cfqq, 1);
Justin TerAvesteda5e0c2011-03-22 21:26:49 +01003314
Justin TerAvest62a37f62011-03-23 08:25:44 +01003315 cfqq->slice_end = 0;
3316 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003317}
3318
3319/*
Jens Axboe5e705372006-07-13 12:39:25 +02003320 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02003321 * something we should do about it
3322 */
3323static void
Jens Axboe5e705372006-07-13 12:39:25 +02003324cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3325 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003326{
Jens Axboe5e705372006-07-13 12:39:25 +02003327 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003328
Aaron Carroll45333d52008-08-26 15:52:36 +02003329 cfqd->rq_queued++;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003330 if (rq->cmd_flags & REQ_PRIO)
3331 cfqq->prio_pending++;
Jens Axboe374f84a2006-07-23 01:42:19 +02003332
Shaohua Li383cd722011-07-12 14:24:35 +02003333 cfq_update_io_thinktime(cfqd, cfqq, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003334 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003335 cfq_update_idle_window(cfqd, cfqq, cic);
3336
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003337 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003338
3339 if (cfqq == cfqd->active_queue) {
3340 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003341 * Remember that we saw a request from this process, but
3342 * don't start queuing just yet. Otherwise we risk seeing lots
3343 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003344 * and merging. If the request is already larger than a single
3345 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003346 * merging is already done. Ditto for a busy system that
3347 * has other work pending, don't risk delaying until the
3348 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003349 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003350 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003351 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3352 cfqd->busy_queues > 1) {
Divyesh Shah812df482010-04-08 21:15:35 -07003353 cfq_del_timer(cfqd, cfqq);
Gui Jianfeng554554f2009-12-10 09:38:39 +01003354 cfq_clear_cfqq_wait_request(cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003355 __blk_run_queue(cfqd->queue);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003356 } else {
Vivek Goyale98ef892010-06-18 10:39:47 -04003357 cfq_blkiocg_update_idle_time_stats(
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003358 &cfqq->cfqg->blkg);
Vivek Goyalbf7919372009-12-03 12:59:37 -05003359 cfq_mark_cfqq_must_dispatch(cfqq);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003360 }
Jens Axboed6ceb252009-04-14 14:18:16 +02003361 }
Jens Axboe5e705372006-07-13 12:39:25 +02003362 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003363 /*
3364 * not the active queue - expire current slice if it is
3365 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003366 * has some old slice time left and is of higher priority or
3367 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003368 */
3369 cfq_preempt_queue(cfqd, cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003370 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003371 }
3372}
3373
Jens Axboe165125e2007-07-24 09:28:11 +02003374static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003375{
Jens Axboeb4878f22005-10-20 16:42:29 +02003376 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003377 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003378
Jens Axboe7b679132008-05-30 12:23:07 +02003379 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Jens Axboefd0928d2008-01-24 08:52:45 +01003380 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Jens Axboe30996f42009-10-05 11:03:39 +02003382 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02003383 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003384 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04003385 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -07003386 &cfqd->serving_group->blkg, rq_data_dir(rq),
3387 rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02003388 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389}
3390
Aaron Carroll45333d52008-08-26 15:52:36 +02003391/*
3392 * Update hw_tag based on peak queue depth over 50 samples under
3393 * sufficient load.
3394 */
3395static void cfq_update_hw_tag(struct cfq_data *cfqd)
3396{
Shaohua Li1a1238a2009-10-27 08:46:23 +01003397 struct cfq_queue *cfqq = cfqd->active_queue;
3398
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003399 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
3400 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003401
3402 if (cfqd->hw_tag == 1)
3403 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02003404
3405 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003406 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003407 return;
3408
Shaohua Li1a1238a2009-10-27 08:46:23 +01003409 /*
3410 * If active queue hasn't enough requests and can idle, cfq might not
3411 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3412 * case
3413 */
3414 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3415 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003416 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
Shaohua Li1a1238a2009-10-27 08:46:23 +01003417 return;
3418
Aaron Carroll45333d52008-08-26 15:52:36 +02003419 if (cfqd->hw_tag_samples++ < 50)
3420 return;
3421
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003422 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003423 cfqd->hw_tag = 1;
3424 else
3425 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02003426}
3427
Vivek Goyal7667aa02009-12-08 17:52:58 -05003428static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3429{
3430 struct cfq_io_context *cic = cfqd->active_cic;
3431
Justin TerAvest02a8f012011-02-09 14:20:03 +01003432 /* If the queue already has requests, don't wait */
3433 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
3434 return false;
3435
Vivek Goyal7667aa02009-12-08 17:52:58 -05003436 /* If there are other queues in the group, don't wait */
3437 if (cfqq->cfqg->nr_cfqq > 1)
3438 return false;
3439
Shaohua Li7700fc42011-07-12 14:24:56 +02003440 /* the only queue in the group, but think time is big */
3441 if (cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true))
3442 return false;
3443
Vivek Goyal7667aa02009-12-08 17:52:58 -05003444 if (cfq_slice_used(cfqq))
3445 return true;
3446
3447 /* if slice left is less than think time, wait busy */
Shaohua Li383cd722011-07-12 14:24:35 +02003448 if (cic && sample_valid(cic->ttime.ttime_samples)
3449 && (cfqq->slice_end - jiffies < cic->ttime.ttime_mean))
Vivek Goyal7667aa02009-12-08 17:52:58 -05003450 return true;
3451
3452 /*
3453 * If think times is less than a jiffy than ttime_mean=0 and above
3454 * will not be true. It might happen that slice has not expired yet
3455 * but will expire soon (4-5 ns) during select_queue(). To cover the
3456 * case where think time is less than a jiffy, mark the queue wait
3457 * busy if only 1 jiffy is left in the slice.
3458 */
3459 if (cfqq->slice_end - jiffies == 1)
3460 return true;
3461
3462 return false;
3463}
3464
Jens Axboe165125e2007-07-24 09:28:11 +02003465static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466{
Jens Axboe5e705372006-07-13 12:39:25 +02003467 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003468 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02003469 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003470 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Jens Axboeb4878f22005-10-20 16:42:29 +02003472 now = jiffies;
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003473 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
3474 !!(rq->cmd_flags & REQ_NOIDLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475
Aaron Carroll45333d52008-08-26 15:52:36 +02003476 cfq_update_hw_tag(cfqd);
3477
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003478 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02003479 WARN_ON(!cfqq->dispatched);
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003480 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02003481 cfqq->dispatched--;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003482 (RQ_CFQG(rq))->dispatched--;
Vivek Goyale98ef892010-06-18 10:39:47 -04003483 cfq_blkiocg_update_completion_stats(&cfqq->cfqg->blkg,
3484 rq_start_time_ns(rq), rq_io_start_time_ns(rq),
3485 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003487 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
Jens Axboe3ed9a292007-04-23 08:33:33 +02003488
Vivek Goyal365722b2009-10-03 15:21:27 +02003489 if (sync) {
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003490 struct cfq_rb_root *service_tree;
3491
Shaohua Li383cd722011-07-12 14:24:35 +02003492 RQ_CIC(rq)->ttime.last_end_request = now;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003493
3494 if (cfq_cfqq_on_rr(cfqq))
3495 service_tree = cfqq->service_tree;
3496 else
3497 service_tree = service_tree_for(cfqq->cfqg,
3498 cfqq_prio(cfqq), cfqq_type(cfqq));
3499 service_tree->ttime.last_end_request = now;
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003500 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3501 cfqd->last_delayed_sync = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02003502 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003503
Shaohua Li7700fc42011-07-12 14:24:56 +02003504#ifdef CONFIG_CFQ_GROUP_IOSCHED
3505 cfqq->cfqg->ttime.last_end_request = now;
3506#endif
3507
Jens Axboecaaa5f92006-06-16 11:23:00 +02003508 /*
3509 * If this is the active queue, check if it needs to be expired,
3510 * or if we want to idle in case it has no pending requests.
3511 */
3512 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02003513 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3514
Jens Axboe44f7c162007-01-19 11:51:58 +11003515 if (cfq_cfqq_slice_new(cfqq)) {
3516 cfq_set_prio_slice(cfqd, cfqq);
3517 cfq_clear_cfqq_slice_new(cfqq);
3518 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05003519
3520 /*
Vivek Goyal7667aa02009-12-08 17:52:58 -05003521 * Should we wait for next request to come in before we expire
3522 * the queue.
Vivek Goyalf75edf22009-12-03 12:59:53 -05003523 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05003524 if (cfq_should_wait_busy(cfqd, cfqq)) {
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003525 unsigned long extend_sl = cfqd->cfq_slice_idle;
3526 if (!cfqd->cfq_slice_idle)
3527 extend_sl = cfqd->cfq_group_idle;
3528 cfqq->slice_end = jiffies + extend_sl;
Vivek Goyalf75edf22009-12-03 12:59:53 -05003529 cfq_mark_cfqq_wait_busy(cfqq);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01003530 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
Vivek Goyalf75edf22009-12-03 12:59:53 -05003531 }
3532
Jens Axboea36e71f2009-04-15 12:15:11 +02003533 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003534 * Idling is not enabled on:
3535 * - expired queues
3536 * - idle-priority queues
3537 * - async queues
3538 * - queues with still some requests queued
3539 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02003540 */
Jens Axboe08717142008-01-28 11:38:15 +01003541 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Vivek Goyale5ff0822010-04-26 19:25:11 +02003542 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003543 else if (sync && cfqq_empty &&
3544 !cfq_close_cooperator(cfqd, cfqq)) {
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003545 cfq_arm_slice_timer(cfqd);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003546 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003547 }
Jens Axboe6d048f52007-04-25 12:44:27 +02003548
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003549 if (!cfqd->rq_in_driver)
Jens Axboe23e018a2009-10-05 08:52:35 +02003550 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551}
3552
Jens Axboe89850f72006-07-22 16:48:31 +02003553static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003554{
Jens Axboe1b379d82009-08-11 08:26:11 +02003555 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003556 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003557 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003558 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003559
3560 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003561}
3562
Jens Axboe165125e2007-07-24 09:28:11 +02003563static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003564{
3565 struct cfq_data *cfqd = q->elevator->elevator_data;
3566 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02003567 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003568 struct cfq_queue *cfqq;
3569
3570 /*
3571 * don't force setup of a queue from here, as a call to may_queue
3572 * does not necessarily imply that a request actually will be queued.
3573 * so just lookup a possibly existing queue, or return 'may queue'
3574 * if that fails
3575 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003576 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003577 if (!cic)
3578 return ELV_MQUEUE_MAY;
3579
Jens Axboeb0b78f82009-04-08 10:56:08 +02003580 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003581 if (cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003582 cfq_init_prio_data(cfqq, cic->ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02003583
Jens Axboe89850f72006-07-22 16:48:31 +02003584 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003585 }
3586
3587 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588}
3589
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590/*
3591 * queue lock held here
3592 */
Jens Axboebb37b942006-12-01 10:42:33 +01003593static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594{
Jens Axboe5e705372006-07-13 12:39:25 +02003595 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
Jens Axboe5e705372006-07-13 12:39:25 +02003597 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003598 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
Jens Axboe22e2c502005-06-27 10:55:12 +02003600 BUG_ON(!cfqq->allocated[rw]);
3601 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602
Tejun Heob2efa052011-12-14 00:33:39 +01003603 put_io_context(RQ_CIC(rq)->ioc, cfqq->cfqd->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604
Mike Snitzerc1867942011-02-11 11:08:00 +01003605 rq->elevator_private[0] = NULL;
3606 rq->elevator_private[1] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003608 /* Put down rq reference on cfqg */
3609 cfq_put_cfqg(RQ_CFQG(rq));
Mike Snitzerc1867942011-02-11 11:08:00 +01003610 rq->elevator_private[2] = NULL;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003611
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 cfq_put_queue(cfqq);
3613 }
3614}
3615
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003616static struct cfq_queue *
3617cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic,
3618 struct cfq_queue *cfqq)
3619{
3620 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3621 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003622 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003623 cfq_put_queue(cfqq);
3624 return cic_to_cfqq(cic, 1);
3625}
3626
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003627/*
3628 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3629 * was the last process referring to said cfqq.
3630 */
3631static struct cfq_queue *
3632split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq)
3633{
3634 if (cfqq_process_refs(cfqq) == 1) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003635 cfqq->pid = current->pid;
3636 cfq_clear_cfqq_coop(cfqq);
Shaohua Liae54abe2010-02-05 13:11:45 +01003637 cfq_clear_cfqq_split_coop(cfqq);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003638 return cfqq;
3639 }
3640
3641 cic_set_cfqq(cic, NULL, 1);
Shaohua Lid02a2c02010-05-25 10:16:53 +02003642
3643 cfq_put_cooperator(cfqq);
3644
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003645 cfq_put_queue(cfqq);
3646 return NULL;
3647}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003649 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003651static int
Jens Axboe165125e2007-07-24 09:28:11 +02003652cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653{
3654 struct cfq_data *cfqd = q->elevator->elevator_data;
3655 struct cfq_io_context *cic;
3656 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003657 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003658 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
3660 might_sleep_if(gfp_mask & __GFP_WAIT);
3661
Tejun Heo216284c2011-12-14 00:33:38 +01003662 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003663 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02003664 if (!cic)
3665 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003667new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003668 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003669 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003670 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003671 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003672 } else {
3673 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003674 * If the queue was seeky for too long, break it apart.
3675 */
Shaohua Liae54abe2010-02-05 13:11:45 +01003676 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003677 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3678 cfqq = split_cfqq(cic, cfqq);
3679 if (!cfqq)
3680 goto new_queue;
3681 }
3682
3683 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003684 * Check to see if this queue is scheduled to merge with
3685 * another, closely cooperating queue. The merging of
3686 * queues happens here as it must be done in process context.
3687 * The reference on new_cfqq was taken in merge_cfqqs.
3688 */
3689 if (cfqq->new_cfqq)
3690 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
3693 cfqq->allocated[rw]++;
Jens Axboe5e705372006-07-13 12:39:25 +02003694
Jens Axboe6fae9c22011-03-01 15:04:39 -05003695 cfqq->ref++;
Mike Snitzerc1867942011-02-11 11:08:00 +01003696 rq->elevator_private[0] = cic;
3697 rq->elevator_private[1] = cfqq;
3698 rq->elevator_private[2] = cfq_ref_get_cfqg(cfqq->cfqg);
Tejun Heo216284c2011-12-14 00:33:38 +01003699 spin_unlock_irq(q->queue_lock);
Jens Axboe5e705372006-07-13 12:39:25 +02003700 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02003701
Jens Axboe22e2c502005-06-27 10:55:12 +02003702queue_fail:
Jens Axboe23e018a2009-10-05 08:52:35 +02003703 cfq_schedule_dispatch(cfqd);
Tejun Heo216284c2011-12-14 00:33:38 +01003704 spin_unlock_irq(q->queue_lock);
Jens Axboe7b679132008-05-30 12:23:07 +02003705 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 return 1;
3707}
3708
David Howells65f27f32006-11-22 14:55:48 +00003709static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003710{
David Howells65f27f32006-11-22 14:55:48 +00003711 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003712 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003713 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003714
Jens Axboe40bb54d2009-04-15 12:11:10 +02003715 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003716 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003717 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003718}
3719
3720/*
3721 * Timer running if the active_queue is currently idling inside its time slice
3722 */
3723static void cfq_idle_slice_timer(unsigned long data)
3724{
3725 struct cfq_data *cfqd = (struct cfq_data *) data;
3726 struct cfq_queue *cfqq;
3727 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003728 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003729
Jens Axboe7b679132008-05-30 12:23:07 +02003730 cfq_log(cfqd, "idle timer fired");
3731
Jens Axboe22e2c502005-06-27 10:55:12 +02003732 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3733
Jens Axboefe094d92008-01-31 13:08:54 +01003734 cfqq = cfqd->active_queue;
3735 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003736 timed_out = 0;
3737
Jens Axboe22e2c502005-06-27 10:55:12 +02003738 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003739 * We saw a request before the queue expired, let it through
3740 */
3741 if (cfq_cfqq_must_dispatch(cfqq))
3742 goto out_kick;
3743
3744 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003745 * expired
3746 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003747 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003748 goto expire;
3749
3750 /*
3751 * only expire and reinvoke request handler, if there are
3752 * other queues with pending requests
3753 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003754 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003755 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003756
3757 /*
3758 * not expired and it has a request pending, let it dispatch
3759 */
Jens Axboe75e50982009-04-07 08:56:14 +02003760 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003761 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003762
3763 /*
3764 * Queue depth flag is reset only when the idle didn't succeed
3765 */
3766 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003767 }
3768expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02003769 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003770out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003771 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003772out_cont:
3773 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3774}
3775
Jens Axboe3b181522005-06-27 10:56:24 +02003776static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3777{
3778 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003779 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003780}
Jens Axboe22e2c502005-06-27 10:55:12 +02003781
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003782static void cfq_put_async_queues(struct cfq_data *cfqd)
3783{
3784 int i;
3785
3786 for (i = 0; i < IOPRIO_BE_NR; i++) {
3787 if (cfqd->async_cfqq[0][i])
3788 cfq_put_queue(cfqd->async_cfqq[0][i]);
3789 if (cfqd->async_cfqq[1][i])
3790 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003791 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003792
3793 if (cfqd->async_idle_cfqq)
3794 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003795}
3796
Jens Axboeb374d182008-10-31 10:05:07 +01003797static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798{
Jens Axboe22e2c502005-06-27 10:55:12 +02003799 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003800 struct request_queue *q = cfqd->queue;
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003801 bool wait = false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003802
Jens Axboe3b181522005-06-27 10:56:24 +02003803 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003804
Al Virod9ff4182006-03-18 13:51:22 -05003805 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003806
Al Virod9ff4182006-03-18 13:51:22 -05003807 if (cfqd->active_queue)
Vivek Goyale5ff0822010-04-26 19:25:11 +02003808 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003809
3810 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05003811 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
3812 struct cfq_io_context,
3813 queue_list);
Tejun Heob2efa052011-12-14 00:33:39 +01003814 struct io_context *ioc = cic->ioc;
Jens Axboe89850f72006-07-22 16:48:31 +02003815
Tejun Heob2efa052011-12-14 00:33:39 +01003816 spin_lock(&ioc->lock);
Tejun Heo283287a2011-12-14 00:33:38 +01003817 cfq_exit_cic(cic);
Tejun Heob2efa052011-12-14 00:33:39 +01003818 cfq_release_cic(cic);
3819 spin_unlock(&ioc->lock);
Al Virod9ff4182006-03-18 13:51:22 -05003820 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003821
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003822 cfq_put_async_queues(cfqd);
Vivek Goyalb1c35762009-12-03 12:59:47 -05003823 cfq_release_cfq_groups(cfqd);
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003824
3825 /*
3826 * If there are groups which we could not unlink from blkcg list,
3827 * wait for a rcu period for them to be freed.
3828 */
3829 if (cfqd->nr_blkcg_linked_grps)
3830 wait = true;
Jens Axboe15c31be2007-07-10 13:43:25 +02003831
Al Virod9ff4182006-03-18 13:51:22 -05003832 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05003833
3834 cfq_shutdown_timer_wq(cfqd);
3835
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003836 /*
3837 * Wait for cfqg->blkg->key accessors to exit their grace periods.
3838 * Do this wait only if there are other unlinked groups out
3839 * there. This can happen if cgroup deletion path claimed the
3840 * responsibility of cleaning up a group before queue cleanup code
3841 * get to the group.
3842 *
3843 * Do not call synchronize_rcu() unconditionally as there are drivers
3844 * which create/delete request queue hundreds of times during scan/boot
3845 * and synchronize_rcu() can take significant time and slow down boot.
3846 */
3847 if (wait)
3848 synchronize_rcu();
Vivek Goyal2abae552011-05-23 10:02:19 +02003849
3850#ifdef CONFIG_CFQ_GROUP_IOSCHED
3851 /* Free up per cpu stats for root group */
3852 free_percpu(cfqd->root_group.blkg.stats_cpu);
3853#endif
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003854 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855}
3856
Jens Axboe165125e2007-07-24 09:28:11 +02003857static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858{
3859 struct cfq_data *cfqd;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003860 int i, j;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003861 struct cfq_group *cfqg;
Vivek Goyal615f0252009-12-03 12:59:39 -05003862 struct cfq_rb_root *st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Christoph Lameter94f60302007-07-17 04:03:29 -07003864 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Tejun Heoa73f7302011-12-14 00:33:37 +01003865 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02003866 return NULL;
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003867
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003868 /* Init root service tree */
3869 cfqd->grp_service_tree = CFQ_RB_ROOT;
3870
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003871 /* Init root group */
3872 cfqg = &cfqd->root_group;
Vivek Goyal615f0252009-12-03 12:59:39 -05003873 for_each_cfqg_st(cfqg, i, j, st)
3874 *st = CFQ_RB_ROOT;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003875 RB_CLEAR_NODE(&cfqg->rb_node);
Jens Axboe26a2ac02009-04-23 12:13:27 +02003876
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003877 /* Give preference to root group over other groups */
3878 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3879
Vivek Goyal25fb5162009-12-03 12:59:46 -05003880#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyalb1c35762009-12-03 12:59:47 -05003881 /*
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003882 * Set root group reference to 2. One reference will be dropped when
3883 * all groups on cfqd->cfqg_list are being deleted during queue exit.
3884 * Other reference will remain there as we don't want to delete this
3885 * group as it is statically allocated and gets destroyed when
3886 * throtl_data goes away.
Vivek Goyalb1c35762009-12-03 12:59:47 -05003887 */
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003888 cfqg->ref = 2;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003889
3890 if (blkio_alloc_blkg_stats(&cfqg->blkg)) {
3891 kfree(cfqg);
3892 kfree(cfqd);
3893 return NULL;
3894 }
3895
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003896 rcu_read_lock();
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003897
Vivek Goyale98ef892010-06-18 10:39:47 -04003898 cfq_blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg,
3899 (void *)cfqd, 0);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003900 rcu_read_unlock();
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003901 cfqd->nr_blkcg_linked_grps++;
3902
3903 /* Add group on cfqd->cfqg_list */
3904 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
Vivek Goyal25fb5162009-12-03 12:59:46 -05003905#endif
Jens Axboe26a2ac02009-04-23 12:13:27 +02003906 /*
3907 * Not strictly needed (since RB_ROOT just clears the node and we
3908 * zeroed cfqd on alloc), but better be safe in case someone decides
3909 * to add magic to the rb code
3910 */
3911 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3912 cfqd->prio_trees[i] = RB_ROOT;
3913
Jens Axboe6118b702009-06-30 09:34:12 +02003914 /*
3915 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3916 * Grab a permanent reference to it, so that the normal code flow
3917 * will not attempt to free it.
3918 */
3919 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
Shaohua Li30d7b942011-01-07 08:46:59 +01003920 cfqd->oom_cfqq.ref++;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003921 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
Jens Axboe6118b702009-06-30 09:34:12 +02003922
Al Virod9ff4182006-03-18 13:51:22 -05003923 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Jens Axboe22e2c502005-06-27 10:55:12 +02003927 init_timer(&cfqd->idle_slice_timer);
3928 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3929 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3930
Jens Axboe23e018a2009-10-05 08:52:35 +02003931 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003932
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003934 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3935 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 cfqd->cfq_back_max = cfq_back_max;
3937 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003938 cfqd->cfq_slice[0] = cfq_slice_async;
3939 cfqd->cfq_slice[1] = cfq_slice_sync;
3940 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3941 cfqd->cfq_slice_idle = cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003942 cfqd->cfq_group_idle = cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003943 cfqd->cfq_latency = 1;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003944 cfqd->hw_tag = -1;
Corrado Zoccoloedc71132009-12-09 20:56:04 +01003945 /*
3946 * we optimistically start assuming sync ops weren't delayed in last
3947 * second, in order to have larger depth for async operations.
3948 */
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003949 cfqd->last_delayed_sync = jiffies - HZ;
Jens Axboebc1c1162006-06-08 08:49:06 +02003950 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951}
3952
3953static void cfq_slab_kill(void)
3954{
Jens Axboed6de8be2008-05-28 14:46:59 +02003955 /*
3956 * Caller already ensured that pending RCU callbacks are completed,
3957 * so we should have no busy allocations at this point.
3958 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 if (cfq_pool)
3960 kmem_cache_destroy(cfq_pool);
3961 if (cfq_ioc_pool)
3962 kmem_cache_destroy(cfq_ioc_pool);
3963}
3964
3965static int __init cfq_slab_setup(void)
3966{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003967 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 if (!cfq_pool)
3969 goto fail;
3970
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02003971 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 if (!cfq_ioc_pool)
3973 goto fail;
3974
3975 return 0;
3976fail:
3977 cfq_slab_kill();
3978 return -ENOMEM;
3979}
3980
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981/*
3982 * sysfs parts below -->
3983 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984static ssize_t
3985cfq_var_show(unsigned int var, char *page)
3986{
3987 return sprintf(page, "%d\n", var);
3988}
3989
3990static ssize_t
3991cfq_var_store(unsigned int *var, const char *page, size_t count)
3992{
3993 char *p = (char *) page;
3994
3995 *var = simple_strtoul(p, &p, 10);
3996 return count;
3997}
3998
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01004000static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001{ \
Al Viro3d1ab402006-03-18 18:35:43 -05004002 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 unsigned int __data = __VAR; \
4004 if (__CONV) \
4005 __data = jiffies_to_msecs(__data); \
4006 return cfq_var_show(__data, (page)); \
4007}
4008SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004009SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
4010SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05004011SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
4012SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004013SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004014SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02004015SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
4016SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
4017SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02004018SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019#undef SHOW_FUNCTION
4020
4021#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01004022static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023{ \
Al Viro3d1ab402006-03-18 18:35:43 -05004024 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 unsigned int __data; \
4026 int ret = cfq_var_store(&__data, (page), count); \
4027 if (__data < (MIN)) \
4028 __data = (MIN); \
4029 else if (__data > (MAX)) \
4030 __data = (MAX); \
4031 if (__CONV) \
4032 *(__PTR) = msecs_to_jiffies(__data); \
4033 else \
4034 *(__PTR) = __data; \
4035 return ret; \
4036}
4037STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004038STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
4039 UINT_MAX, 1);
4040STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
4041 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05004042STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004043STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
4044 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004045STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004046STORE_FUNCTION(cfq_group_idle_store, &cfqd->cfq_group_idle, 0, UINT_MAX, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02004047STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
4048STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01004049STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
4050 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02004051STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052#undef STORE_FUNCTION
4053
Al Viroe572ec72006-03-18 22:27:18 -05004054#define CFQ_ATTR(name) \
4055 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02004056
Al Viroe572ec72006-03-18 22:27:18 -05004057static struct elv_fs_entry cfq_attrs[] = {
4058 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05004059 CFQ_ATTR(fifo_expire_sync),
4060 CFQ_ATTR(fifo_expire_async),
4061 CFQ_ATTR(back_seek_max),
4062 CFQ_ATTR(back_seek_penalty),
4063 CFQ_ATTR(slice_sync),
4064 CFQ_ATTR(slice_async),
4065 CFQ_ATTR(slice_async_rq),
4066 CFQ_ATTR(slice_idle),
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004067 CFQ_ATTR(group_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02004068 CFQ_ATTR(low_latency),
Al Viroe572ec72006-03-18 22:27:18 -05004069 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070};
4071
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072static struct elevator_type iosched_cfq = {
4073 .ops = {
4074 .elevator_merge_fn = cfq_merge,
4075 .elevator_merged_fn = cfq_merged_request,
4076 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01004077 .elevator_allow_merge_fn = cfq_allow_merge,
Divyesh Shah812d4022010-04-08 21:14:23 -07004078 .elevator_bio_merged_fn = cfq_bio_merged,
Jens Axboeb4878f22005-10-20 16:42:29 +02004079 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02004081 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 .elevator_deactivate_req_fn = cfq_deactivate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02004084 .elevator_former_req_fn = elv_rb_former_request,
4085 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 .elevator_set_req_fn = cfq_set_request,
4087 .elevator_put_req_fn = cfq_put_request,
4088 .elevator_may_queue_fn = cfq_may_queue,
4089 .elevator_init_fn = cfq_init_queue,
4090 .elevator_exit_fn = cfq_exit_queue,
4091 },
Al Viro3d1ab402006-03-18 18:35:43 -05004092 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 .elevator_name = "cfq",
4094 .elevator_owner = THIS_MODULE,
4095};
4096
Vivek Goyal3e252062009-12-04 10:36:42 -05004097#ifdef CONFIG_CFQ_GROUP_IOSCHED
4098static struct blkio_policy_type blkio_policy_cfq = {
4099 .ops = {
4100 .blkio_unlink_group_fn = cfq_unlink_blkio_group,
4101 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
4102 },
Vivek Goyal062a6442010-09-15 17:06:33 -04004103 .plid = BLKIO_POLICY_PROP,
Vivek Goyal3e252062009-12-04 10:36:42 -05004104};
4105#else
4106static struct blkio_policy_type blkio_policy_cfq;
4107#endif
4108
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109static int __init cfq_init(void)
4110{
Jens Axboe22e2c502005-06-27 10:55:12 +02004111 /*
4112 * could be 0 on HZ < 1000 setups
4113 */
4114 if (!cfq_slice_async)
4115 cfq_slice_async = 1;
4116 if (!cfq_slice_idle)
4117 cfq_slice_idle = 1;
4118
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004119#ifdef CONFIG_CFQ_GROUP_IOSCHED
4120 if (!cfq_group_idle)
4121 cfq_group_idle = 1;
4122#else
4123 cfq_group_idle = 0;
4124#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 if (cfq_slab_setup())
4126 return -ENOMEM;
4127
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004128 elv_register(&iosched_cfq);
Vivek Goyal3e252062009-12-04 10:36:42 -05004129 blkio_policy_register(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004131 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132}
4133
4134static void __exit cfq_exit(void)
4135{
Vivek Goyal3e252062009-12-04 10:36:42 -05004136 blkio_policy_unregister(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 elv_unregister(&iosched_cfq);
Tejun Heob50b6362011-12-14 00:33:39 +01004138 rcu_barrier(); /* make sure all cic RCU frees are complete */
Christoph Hellwig83521d32005-10-30 15:01:39 -08004139 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140}
4141
4142module_init(cfq_init);
4143module_exit(cfq_exit);
4144
4145MODULE_AUTHOR("Jens Axboe");
4146MODULE_LICENSE("GPL");
4147MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");