blob: 684592621736f3056afdd3922c316748884e8cdd [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>
Vivek Goyale98ef892010-06-18 10:39:47 -040017#include "cfq.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19/*
20 * tunables
21 */
Jens Axboefe094d92008-01-31 13:08:54 +010022/* max queue in one round of service */
Shaohua Liabc3c742010-03-01 09:20:54 +010023static const int cfq_quantum = 8;
Arjan van de Ven64100092006-01-06 09:46:02 +010024static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
Jens Axboefe094d92008-01-31 13:08:54 +010025/* maximum backwards seek, in KiB */
26static const int cfq_back_max = 16 * 1024;
27/* penalty of a backwards seek */
28static const int cfq_back_penalty = 2;
Arjan van de Ven64100092006-01-06 09:46:02 +010029static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020030static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010031static const int cfq_slice_async_rq = 2;
Jens Axboecaaa5f92006-06-16 11:23:00 +020032static int cfq_slice_idle = HZ / 125;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +010033static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
34static const int cfq_hist_divisor = 4;
Jens Axboe22e2c502005-06-27 10:55:12 +020035
Jens Axboed9e76202007-04-20 14:27:50 +020036/*
Jens Axboe08717142008-01-28 11:38:15 +010037 * offset from end of service tree
Jens Axboed9e76202007-04-20 14:27:50 +020038 */
Jens Axboe08717142008-01-28 11:38:15 +010039#define CFQ_IDLE_DELAY (HZ / 5)
Jens Axboed9e76202007-04-20 14:27:50 +020040
41/*
42 * below this threshold, we consider thinktime immediate
43 */
44#define CFQ_MIN_TT (2)
45
Jens Axboe22e2c502005-06-27 10:55:12 +020046#define CFQ_SLICE_SCALE (5)
Aaron Carroll45333d52008-08-26 15:52:36 +020047#define CFQ_HW_QUEUE_MIN (5)
Vivek Goyal25bc6b02009-12-03 12:59:43 -050048#define CFQ_SERVICE_SHIFT 12
Jens Axboe22e2c502005-06-27 10:55:12 +020049
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010050#define CFQQ_SEEK_THR (sector_t)(8 * 100)
Shaohua Lie9ce3352010-03-19 08:03:04 +010051#define CFQQ_CLOSE_THR (sector_t)(8 * 1024)
Corrado Zoccolo41647e72010-02-27 19:45:40 +010052#define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32)
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010053#define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8)
Shaohua Liae54abe2010-02-05 13:11:45 +010054
Jens Axboefe094d92008-01-31 13:08:54 +010055#define RQ_CIC(rq) \
56 ((struct cfq_io_context *) (rq)->elevator_private)
Jens Axboe7b679132008-05-30 12:23:07 +020057#define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elevator_private2)
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +020058#define RQ_CFQG(rq) (struct cfq_group *) ((rq)->elevator_private3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Christoph Lametere18b8902006-12-06 20:33:20 -080060static struct kmem_cache *cfq_pool;
61static struct kmem_cache *cfq_ioc_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Tejun Heo245b2e72009-06-24 15:13:48 +090063static DEFINE_PER_CPU(unsigned long, cfq_ioc_count);
Al Viro334e94d2006-03-18 15:05:53 -050064static struct completion *ioc_gone;
Jens Axboe9a11b4e2008-05-29 09:32:08 +020065static DEFINE_SPINLOCK(ioc_gone_lock);
Al Viro334e94d2006-03-18 15:05:53 -050066
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +040067static DEFINE_SPINLOCK(cic_index_lock);
68static DEFINE_IDA(cic_index_ida);
69
Jens Axboe22e2c502005-06-27 10:55:12 +020070#define CFQ_PRIO_LISTS IOPRIO_BE_NR
71#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
Jens Axboe22e2c502005-06-27 10:55:12 +020072#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
73
Jens Axboe206dc692006-03-28 13:03:44 +020074#define sample_valid(samples) ((samples) > 80)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050075#define rb_entry_cfqg(node) rb_entry((node), struct cfq_group, rb_node)
Jens Axboe206dc692006-03-28 13:03:44 +020076
Jens Axboe22e2c502005-06-27 10:55:12 +020077/*
Jens Axboecc09e292007-04-26 12:53:50 +020078 * Most of our rbtree usage is for sorting with min extraction, so
79 * if we cache the leftmost node we don't have to walk down the tree
80 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
81 * move this into the elevator for the rq sorting as well.
82 */
83struct cfq_rb_root {
84 struct rb_root rb;
85 struct rb_node *left;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010086 unsigned count;
Richard Kennedy73e9ffd2010-03-01 10:50:20 +010087 unsigned total_weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050088 u64 min_vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -050089 struct rb_node *active;
Jens Axboecc09e292007-04-26 12:53:50 +020090};
Richard Kennedy73e9ffd2010-03-01 10:50:20 +010091#define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, .left = NULL, \
92 .count = 0, .min_vdisktime = 0, }
Jens Axboecc09e292007-04-26 12:53:50 +020093
94/*
Jens Axboe6118b702009-06-30 09:34:12 +020095 * Per process-grouping structure
96 */
97struct cfq_queue {
98 /* reference count */
99 atomic_t ref;
100 /* various state flags, see below */
101 unsigned int flags;
102 /* parent cfq_data */
103 struct cfq_data *cfqd;
104 /* service_tree member */
105 struct rb_node rb_node;
106 /* service_tree key */
107 unsigned long rb_key;
108 /* prio tree member */
109 struct rb_node p_node;
110 /* prio tree root we belong to, if any */
111 struct rb_root *p_root;
112 /* sorted list of pending requests */
113 struct rb_root sort_list;
114 /* if fifo isn't expired, next request to serve */
115 struct request *next_rq;
116 /* requests queued in sort_list */
117 int queued[2];
118 /* currently allocated requests */
119 int allocated[2];
120 /* fifo list of requests in sort_list */
121 struct list_head fifo;
122
Vivek Goyaldae739e2009-12-03 12:59:45 -0500123 /* time when queue got scheduled in to dispatch first request. */
124 unsigned long dispatch_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500125 unsigned int allocated_slice;
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100126 unsigned int slice_dispatch;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500127 /* time when first request from queue completed and slice started. */
128 unsigned long slice_start;
Jens Axboe6118b702009-06-30 09:34:12 +0200129 unsigned long slice_end;
130 long slice_resid;
Jens Axboe6118b702009-06-30 09:34:12 +0200131
132 /* pending metadata requests */
133 int meta_pending;
134 /* number of requests that are on the dispatch list or inside driver */
135 int dispatched;
136
137 /* io prio of this group */
138 unsigned short ioprio, org_ioprio;
139 unsigned short ioprio_class, org_ioprio_class;
140
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100141 pid_t pid;
142
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +0100143 u32 seek_history;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400144 sector_t last_request_pos;
145
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100146 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400147 struct cfq_queue *new_cfqq;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500148 struct cfq_group *cfqg;
Vivek Goyalae30c282009-12-03 12:59:55 -0500149 struct cfq_group *orig_cfqg;
Jens Axboe6118b702009-06-30 09:34:12 +0200150};
151
152/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100153 * First index in the service_trees.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100154 * IDLE is handled separately, so it has negative index
155 */
156enum wl_prio_t {
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100157 BE_WORKLOAD = 0,
Vivek Goyal615f0252009-12-03 12:59:39 -0500158 RT_WORKLOAD = 1,
159 IDLE_WORKLOAD = 2,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100160};
161
162/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100163 * Second index in the service_trees.
164 */
165enum wl_type_t {
166 ASYNC_WORKLOAD = 0,
167 SYNC_NOIDLE_WORKLOAD = 1,
168 SYNC_WORKLOAD = 2
169};
170
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500171/* This is per cgroup per device grouping structure */
172struct cfq_group {
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500173 /* group service_tree member */
174 struct rb_node rb_node;
175
176 /* group service_tree key */
177 u64 vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500178 unsigned int weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500179 bool on_st;
180
181 /* number of cfqq currently on this group */
182 int nr_cfqq;
183
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500184 /* Per group busy queus average. Useful for workload slice calc. */
185 unsigned int busy_queues_avg[2];
Jens Axboe22e2c502005-06-27 10:55:12 +0200186 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100187 * rr lists of queues with requests, onle rr for each priority class.
188 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200189 */
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100190 struct cfq_rb_root service_trees[2][3];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100191 struct cfq_rb_root service_tree_idle;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500192
193 unsigned long saved_workload_slice;
194 enum wl_type_t saved_workload;
195 enum wl_prio_t saved_serving_prio;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500196 struct blkio_group blkg;
197#ifdef CONFIG_CFQ_GROUP_IOSCHED
198 struct hlist_node cfqd_node;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500199 atomic_t ref;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500200#endif
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500201};
202
203/*
204 * Per block device queue structure
205 */
206struct cfq_data {
207 struct request_queue *queue;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500208 /* Root service tree for cfq_groups */
209 struct cfq_rb_root grp_service_tree;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500210 struct cfq_group root_group;
211
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100212 /*
213 * The priority currently being served
214 */
215 enum wl_prio_t serving_prio;
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100216 enum wl_type_t serving_type;
217 unsigned long workload_expires;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500218 struct cfq_group *serving_group;
Jens Axboea36e71f2009-04-15 12:15:11 +0200219
220 /*
221 * Each priority tree is sorted by next_request position. These
222 * trees are used when determining if two or more queues are
223 * interleaving requests (see cfq_close_cooperator).
224 */
225 struct rb_root prio_trees[CFQ_PRIO_LISTS];
226
Jens Axboe22e2c502005-06-27 10:55:12 +0200227 unsigned int busy_queues;
228
Corrado Zoccolo53c583d2010-02-28 19:45:05 +0100229 int rq_in_driver;
230 int rq_in_flight[2];
Aaron Carroll45333d52008-08-26 15:52:36 +0200231
232 /*
233 * queue-depth detection
234 */
235 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200236 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100237 /*
238 * hw_tag can be
239 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
240 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
241 * 0 => no NCQ
242 */
243 int hw_tag_est_depth;
244 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200245
246 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200247 * idle window management
248 */
249 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200250 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200251
252 struct cfq_queue *active_queue;
253 struct cfq_io_context *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200254
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200255 /*
256 * async queue for each priority case
257 */
258 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
259 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200260
Jens Axboe6d048f52007-04-25 12:44:27 +0200261 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /*
264 * tunables, see top of file
265 */
266 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200267 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 unsigned int cfq_back_penalty;
269 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200270 unsigned int cfq_slice[2];
271 unsigned int cfq_slice_async_rq;
272 unsigned int cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200273 unsigned int cfq_latency;
Vivek Goyalae30c282009-12-03 12:59:55 -0500274 unsigned int cfq_group_isolation;
Al Virod9ff4182006-03-18 13:51:22 -0500275
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400276 unsigned int cic_index;
Al Virod9ff4182006-03-18 13:51:22 -0500277 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Jens Axboe6118b702009-06-30 09:34:12 +0200279 /*
280 * Fallback dummy cfqq for extreme OOM conditions
281 */
282 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200283
Corrado Zoccolo573412b2009-12-06 11:48:52 +0100284 unsigned long last_delayed_sync;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500285
286 /* List of cfq groups being managed on this device*/
287 struct hlist_head cfqg_list;
Jens Axboebb729bc2009-12-06 09:54:19 +0100288 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289};
290
Vivek Goyal25fb5162009-12-03 12:59:46 -0500291static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
292
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500293static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
294 enum wl_prio_t prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -0500295 enum wl_type_t type)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100296{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500297 if (!cfqg)
298 return NULL;
299
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100300 if (prio == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500301 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100302
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500303 return &cfqg->service_trees[prio][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100304}
305
Jens Axboe3b181522005-06-27 10:56:24 +0200306enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100307 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
308 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200309 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100310 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100311 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
312 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
313 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100314 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200315 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400316 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Shaohua Liae54abe2010-02-05 13:11:45 +0100317 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100318 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Vivek Goyalf75edf22009-12-03 12:59:53 -0500319 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
Jens Axboe3b181522005-06-27 10:56:24 +0200320};
321
322#define CFQ_CFQQ_FNS(name) \
323static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
324{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100325 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200326} \
327static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
328{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100329 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200330} \
331static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
332{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100333 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200334}
335
336CFQ_CFQQ_FNS(on_rr);
337CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200338CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200339CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200340CFQ_CFQQ_FNS(fifo_expire);
341CFQ_CFQQ_FNS(idle_window);
342CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100343CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200344CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200345CFQ_CFQQ_FNS(coop);
Shaohua Liae54abe2010-02-05 13:11:45 +0100346CFQ_CFQQ_FNS(split_coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100347CFQ_CFQQ_FNS(deep);
Vivek Goyalf75edf22009-12-03 12:59:53 -0500348CFQ_CFQQ_FNS(wait_busy);
Jens Axboe3b181522005-06-27 10:56:24 +0200349#undef CFQ_CFQQ_FNS
350
Vivek Goyalafc24d42010-04-26 19:27:56 +0200351#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal2868ef72009-12-03 12:59:48 -0500352#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
353 blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \
354 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
355 blkg_path(&(cfqq)->cfqg->blkg), ##args);
356
357#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \
358 blk_add_trace_msg((cfqd)->queue, "%s " fmt, \
359 blkg_path(&(cfqg)->blkg), ##args); \
360
361#else
Jens Axboe7b679132008-05-30 12:23:07 +0200362#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
363 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500364#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0);
365#endif
Jens Axboe7b679132008-05-30 12:23:07 +0200366#define cfq_log(cfqd, fmt, args...) \
367 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
368
Vivek Goyal615f0252009-12-03 12:59:39 -0500369/* Traverses through cfq group service trees */
370#define for_each_cfqg_st(cfqg, i, j, st) \
371 for (i = 0; i <= IDLE_WORKLOAD; i++) \
372 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
373 : &cfqg->service_tree_idle; \
374 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
375 (i == IDLE_WORKLOAD && j == 0); \
376 j++, st = i < IDLE_WORKLOAD ? \
377 &cfqg->service_trees[i][j]: NULL) \
378
379
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100380static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
381{
382 if (cfq_class_idle(cfqq))
383 return IDLE_WORKLOAD;
384 if (cfq_class_rt(cfqq))
385 return RT_WORKLOAD;
386 return BE_WORKLOAD;
387}
388
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100389
390static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
391{
392 if (!cfq_cfqq_sync(cfqq))
393 return ASYNC_WORKLOAD;
394 if (!cfq_cfqq_idle_window(cfqq))
395 return SYNC_NOIDLE_WORKLOAD;
396 return SYNC_WORKLOAD;
397}
398
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500399static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
400 struct cfq_data *cfqd,
401 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100402{
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500403 if (wl == IDLE_WORKLOAD)
404 return cfqg->service_tree_idle.count;
405
406 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
407 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
408 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100409}
410
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500411static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
412 struct cfq_group *cfqg)
413{
414 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count
415 + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
416}
417
Jens Axboe165125e2007-07-24 09:28:11 +0200418static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200419static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100420 struct io_context *, gfp_t);
Jens Axboe4ac845a2008-01-24 08:44:49 +0100421static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
Vasily Tarasov91fac312007-04-25 12:29:51 +0200422 struct io_context *);
423
424static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200425 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200426{
Jens Axboea6151c32009-10-07 20:02:57 +0200427 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200428}
429
430static inline void cic_set_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200431 struct cfq_queue *cfqq, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200432{
Jens Axboea6151c32009-10-07 20:02:57 +0200433 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200434}
435
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400436#define CIC_DEAD_KEY 1ul
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400437#define CIC_DEAD_INDEX_SHIFT 1
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400438
439static inline void *cfqd_dead_key(struct cfq_data *cfqd)
440{
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400441 return (void *)(cfqd->cic_index << CIC_DEAD_INDEX_SHIFT | CIC_DEAD_KEY);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400442}
443
444static inline struct cfq_data *cic_to_cfqd(struct cfq_io_context *cic)
445{
446 struct cfq_data *cfqd = cic->key;
447
448 if (unlikely((unsigned long) cfqd & CIC_DEAD_KEY))
449 return NULL;
450
451 return cfqd;
452}
453
Vasily Tarasov91fac312007-04-25 12:29:51 +0200454/*
455 * We regard a request as SYNC, if it's either a read or has the SYNC bit
456 * set (in which case it could also be direct WRITE).
457 */
Jens Axboea6151c32009-10-07 20:02:57 +0200458static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200459{
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200460 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200461}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700464 * scheduler run of queue, if there are requests pending and no one in the
465 * driver that will restart queueing
466 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200467static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700468{
Jens Axboe7b679132008-05-30 12:23:07 +0200469 if (cfqd->busy_queues) {
470 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200471 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200472 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700473}
474
Jens Axboe165125e2007-07-24 09:28:11 +0200475static int cfq_queue_empty(struct request_queue *q)
Andrew Morton99f95e52005-06-27 20:14:05 -0700476{
477 struct cfq_data *cfqd = q->elevator->elevator_data;
478
Vivek Goyalf04a6422009-12-03 12:59:40 -0500479 return !cfqd->rq_queued;
Andrew Morton99f95e52005-06-27 20:14:05 -0700480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100483 * Scale schedule slice based on io priority. Use the sync time slice only
484 * if a queue is marked sync and has sync io queued. A sync queue with async
485 * io only, should not get full sync slice length.
486 */
Jens Axboea6151c32009-10-07 20:02:57 +0200487static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200488 unsigned short prio)
489{
490 const int base_slice = cfqd->cfq_slice[sync];
491
492 WARN_ON(prio >= IOPRIO_BE_NR);
493
494 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
495}
496
Jens Axboe44f7c162007-01-19 11:51:58 +1100497static inline int
498cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
499{
Jens Axboed9e76202007-04-20 14:27:50 +0200500 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100501}
502
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500503static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
504{
505 u64 d = delta << CFQ_SERVICE_SHIFT;
506
507 d = d * BLKIO_WEIGHT_DEFAULT;
508 do_div(d, cfqg->weight);
509 return d;
510}
511
512static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
513{
514 s64 delta = (s64)(vdisktime - min_vdisktime);
515 if (delta > 0)
516 min_vdisktime = vdisktime;
517
518 return min_vdisktime;
519}
520
521static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
522{
523 s64 delta = (s64)(vdisktime - min_vdisktime);
524 if (delta < 0)
525 min_vdisktime = vdisktime;
526
527 return min_vdisktime;
528}
529
530static void update_min_vdisktime(struct cfq_rb_root *st)
531{
532 u64 vdisktime = st->min_vdisktime;
533 struct cfq_group *cfqg;
534
535 if (st->active) {
536 cfqg = rb_entry_cfqg(st->active);
537 vdisktime = cfqg->vdisktime;
538 }
539
540 if (st->left) {
541 cfqg = rb_entry_cfqg(st->left);
542 vdisktime = min_vdisktime(vdisktime, cfqg->vdisktime);
543 }
544
545 st->min_vdisktime = max_vdisktime(st->min_vdisktime, vdisktime);
546}
547
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100548/*
549 * get averaged number of queues of RT/BE priority.
550 * average is updated, with a formula that gives more weight to higher numbers,
551 * to quickly follows sudden increases and decrease slowly
552 */
553
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500554static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
555 struct cfq_group *cfqg, bool rt)
Jens Axboe5869619c2009-10-28 09:27:07 +0100556{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100557 unsigned min_q, max_q;
558 unsigned mult = cfq_hist_divisor - 1;
559 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500560 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100561
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500562 min_q = min(cfqg->busy_queues_avg[rt], busy);
563 max_q = max(cfqg->busy_queues_avg[rt], busy);
564 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100565 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500566 return cfqg->busy_queues_avg[rt];
567}
568
569static inline unsigned
570cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
571{
572 struct cfq_rb_root *st = &cfqd->grp_service_tree;
573
574 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100575}
576
Jens Axboe44f7c162007-01-19 11:51:58 +1100577static inline void
578cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
579{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100580 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
581 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500582 /*
583 * interested queues (we consider only the ones with the same
584 * priority class in the cfq group)
585 */
586 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
587 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100588 unsigned sync_slice = cfqd->cfq_slice[1];
589 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500590 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
591
592 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100593 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
594 /* scale low_slice according to IO priority
595 * and sync vs async */
596 unsigned low_slice =
597 min(slice, base_low_slice * slice / sync_slice);
598 /* the adapted slice value is scaled to fit all iqs
599 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500600 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100601 low_slice);
602 }
603 }
Vivek Goyaldae739e2009-12-03 12:59:45 -0500604 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100605 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500606 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200607 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100608}
609
610/*
611 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
612 * isn't valid until the first request from the dispatch is activated
613 * and the slice time set.
614 */
Jens Axboea6151c32009-10-07 20:02:57 +0200615static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100616{
617 if (cfq_cfqq_slice_new(cfqq))
618 return 0;
619 if (time_before(jiffies, cfqq->slice_end))
620 return 0;
621
622 return 1;
623}
624
625/*
Jens Axboe5e705372006-07-13 12:39:25 +0200626 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200628 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Jens Axboe5e705372006-07-13 12:39:25 +0200630static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100631cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100633 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200635#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
636#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
637 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Jens Axboe5e705372006-07-13 12:39:25 +0200639 if (rq1 == NULL || rq1 == rq2)
640 return rq2;
641 if (rq2 == NULL)
642 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200643
Jens Axboe5e705372006-07-13 12:39:25 +0200644 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
645 return rq1;
646 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
647 return rq2;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200648 if ((rq1->cmd_flags & REQ_META) && !(rq2->cmd_flags & REQ_META))
Jens Axboe374f84a2006-07-23 01:42:19 +0200649 return rq1;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200650 else if ((rq2->cmd_flags & REQ_META) &&
651 !(rq1->cmd_flags & REQ_META))
Jens Axboe374f84a2006-07-23 01:42:19 +0200652 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Tejun Heo83096eb2009-05-07 22:24:39 +0900654 s1 = blk_rq_pos(rq1);
655 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /*
658 * by definition, 1KiB is 2 sectors
659 */
660 back_max = cfqd->cfq_back_max * 2;
661
662 /*
663 * Strict one way elevator _except_ in the case where we allow
664 * short backward seeks which are biased as twice the cost of a
665 * similar forward seek.
666 */
667 if (s1 >= last)
668 d1 = s1 - last;
669 else if (s1 + back_max >= last)
670 d1 = (last - s1) * cfqd->cfq_back_penalty;
671 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200672 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (s2 >= last)
675 d2 = s2 - last;
676 else if (s2 + back_max >= last)
677 d2 = (last - s2) * cfqd->cfq_back_penalty;
678 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200679 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Andreas Mohre8a99052006-03-28 08:59:49 +0200683 /*
684 * By doing switch() on the bit mask "wrap" we avoid having to
685 * check two variables for all permutations: --> faster!
686 */
687 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200688 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200689 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200690 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200691 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200692 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200693 else {
694 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200695 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200696 else
Jens Axboe5e705372006-07-13 12:39:25 +0200697 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200698 }
699
700 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200701 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200702 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200703 return rq2;
704 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200705 default:
706 /*
707 * Since both rqs are wrapped,
708 * start with the one that's further behind head
709 * (--> only *one* back seek required),
710 * since back seek takes more time than forward.
711 */
712 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200713 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 else
Jens Axboe5e705372006-07-13 12:39:25 +0200715 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717}
718
Jens Axboe498d3aa22007-04-26 12:54:48 +0200719/*
720 * The below is leftmost cache rbtree addon
721 */
Jens Axboe08717142008-01-28 11:38:15 +0100722static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200723{
Vivek Goyal615f0252009-12-03 12:59:39 -0500724 /* Service tree is empty */
725 if (!root->count)
726 return NULL;
727
Jens Axboecc09e292007-04-26 12:53:50 +0200728 if (!root->left)
729 root->left = rb_first(&root->rb);
730
Jens Axboe08717142008-01-28 11:38:15 +0100731 if (root->left)
732 return rb_entry(root->left, struct cfq_queue, rb_node);
733
734 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200735}
736
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500737static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
738{
739 if (!root->left)
740 root->left = rb_first(&root->rb);
741
742 if (root->left)
743 return rb_entry_cfqg(root->left);
744
745 return NULL;
746}
747
Jens Axboea36e71f2009-04-15 12:15:11 +0200748static void rb_erase_init(struct rb_node *n, struct rb_root *root)
749{
750 rb_erase(n, root);
751 RB_CLEAR_NODE(n);
752}
753
Jens Axboecc09e292007-04-26 12:53:50 +0200754static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
755{
756 if (root->left == n)
757 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200758 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100759 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200760}
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762/*
763 * would be nice to take fifo expire time into account as well
764 */
Jens Axboe5e705372006-07-13 12:39:25 +0200765static struct request *
766cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
767 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Jens Axboe21183b02006-07-13 12:33:14 +0200769 struct rb_node *rbnext = rb_next(&last->rb_node);
770 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200771 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Jens Axboe21183b02006-07-13 12:33:14 +0200773 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200776 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200779 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200780 else {
781 rbnext = rb_first(&cfqq->sort_list);
782 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200783 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100786 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Jens Axboed9e76202007-04-20 14:27:50 +0200789static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
790 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Jens Axboed9e76202007-04-20 14:27:50 +0200792 /*
793 * just an approximation, should be ok.
794 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500795 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100796 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200797}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500799static inline s64
800cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
801{
802 return cfqg->vdisktime - st->min_vdisktime;
803}
804
805static void
806__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
807{
808 struct rb_node **node = &st->rb.rb_node;
809 struct rb_node *parent = NULL;
810 struct cfq_group *__cfqg;
811 s64 key = cfqg_key(st, cfqg);
812 int left = 1;
813
814 while (*node != NULL) {
815 parent = *node;
816 __cfqg = rb_entry_cfqg(parent);
817
818 if (key < cfqg_key(st, __cfqg))
819 node = &parent->rb_left;
820 else {
821 node = &parent->rb_right;
822 left = 0;
823 }
824 }
825
826 if (left)
827 st->left = &cfqg->rb_node;
828
829 rb_link_node(&cfqg->rb_node, parent, node);
830 rb_insert_color(&cfqg->rb_node, &st->rb);
831}
832
833static void
834cfq_group_service_tree_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
835{
836 struct cfq_rb_root *st = &cfqd->grp_service_tree;
837 struct cfq_group *__cfqg;
838 struct rb_node *n;
839
840 cfqg->nr_cfqq++;
841 if (cfqg->on_st)
842 return;
843
844 /*
845 * Currently put the group at the end. Later implement something
846 * so that groups get lesser vtime based on their weights, so that
847 * if group does not loose all if it was not continously backlogged.
848 */
849 n = rb_last(&st->rb);
850 if (n) {
851 __cfqg = rb_entry_cfqg(n);
852 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
853 } else
854 cfqg->vdisktime = st->min_vdisktime;
855
856 __cfq_group_service_tree_add(st, cfqg);
857 cfqg->on_st = true;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500858 st->total_weight += cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500859}
860
861static void
862cfq_group_service_tree_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
863{
864 struct cfq_rb_root *st = &cfqd->grp_service_tree;
865
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500866 if (st->active == &cfqg->rb_node)
867 st->active = NULL;
868
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500869 BUG_ON(cfqg->nr_cfqq < 1);
870 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500871
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500872 /* If there are other cfq queues under this group, don't delete it */
873 if (cfqg->nr_cfqq)
874 return;
875
Vivek Goyal2868ef72009-12-03 12:59:48 -0500876 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500877 cfqg->on_st = false;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500878 st->total_weight -= cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500879 if (!RB_EMPTY_NODE(&cfqg->rb_node))
880 cfq_rb_erase(&cfqg->rb_node, st);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500881 cfqg->saved_workload_slice = 0;
Vivek Goyale98ef892010-06-18 10:39:47 -0400882 cfq_blkiocg_update_dequeue_stats(&cfqg->blkg, 1);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500883}
884
885static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq)
886{
Vivek Goyalf75edf22009-12-03 12:59:53 -0500887 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500888
889 /*
890 * Queue got expired before even a single request completed or
891 * got expired immediately after first request completion.
892 */
893 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
894 /*
895 * Also charge the seek time incurred to the group, otherwise
896 * if there are mutiple queues in the group, each can dispatch
897 * a single request on seeky media and cause lots of seek time
898 * and group will never know it.
899 */
900 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
901 1);
902 } else {
903 slice_used = jiffies - cfqq->slice_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500904 if (slice_used > cfqq->allocated_slice)
905 slice_used = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500906 }
907
Divyesh Shah9a0785b2010-04-01 15:01:04 -0700908 cfq_log_cfqq(cfqq->cfqd, cfqq, "sl_used=%u", slice_used);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500909 return slice_used;
910}
911
912static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
Vivek Goyale5ff0822010-04-26 19:25:11 +0200913 struct cfq_queue *cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500914{
915 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500916 unsigned int used_sl, charge_sl;
917 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
918 - cfqg->service_tree_idle.count;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500919
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500920 BUG_ON(nr_sync < 0);
921 used_sl = charge_sl = cfq_cfqq_slice_usage(cfqq);
922
923 if (!cfq_cfqq_sync(cfqq) && !nr_sync)
924 charge_sl = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500925
926 /* Can't update vdisktime while group is on service tree */
927 cfq_rb_erase(&cfqg->rb_node, st);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500928 cfqg->vdisktime += cfq_scale_slice(charge_sl, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500929 __cfq_group_service_tree_add(st, cfqg);
930
931 /* This group is being expired. Save the context */
932 if (time_after(cfqd->workload_expires, jiffies)) {
933 cfqg->saved_workload_slice = cfqd->workload_expires
934 - jiffies;
935 cfqg->saved_workload = cfqd->serving_type;
936 cfqg->saved_serving_prio = cfqd->serving_prio;
937 } else
938 cfqg->saved_workload_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -0500939
940 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
941 st->min_vdisktime);
Vivek Goyale98ef892010-06-18 10:39:47 -0400942 cfq_blkiocg_update_timeslice_used(&cfqg->blkg, used_sl);
943 cfq_blkiocg_set_start_empty_time(&cfqg->blkg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500944}
945
Vivek Goyal25fb5162009-12-03 12:59:46 -0500946#ifdef CONFIG_CFQ_GROUP_IOSCHED
947static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg)
948{
949 if (blkg)
950 return container_of(blkg, struct cfq_group, blkg);
951 return NULL;
952}
953
Vivek Goyalf8d461d2009-12-03 12:59:52 -0500954void
955cfq_update_blkio_group_weight(struct blkio_group *blkg, unsigned int weight)
956{
957 cfqg_of_blkg(blkg)->weight = weight;
958}
959
Vivek Goyal25fb5162009-12-03 12:59:46 -0500960static struct cfq_group *
961cfq_find_alloc_cfqg(struct cfq_data *cfqd, struct cgroup *cgroup, int create)
962{
963 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup);
964 struct cfq_group *cfqg = NULL;
965 void *key = cfqd;
966 int i, j;
967 struct cfq_rb_root *st;
Vivek Goyal22084192009-12-03 12:59:49 -0500968 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
969 unsigned int major, minor;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500970
Vivek Goyal25fb5162009-12-03 12:59:46 -0500971 cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key));
Ricky Beniteza74b2ad2010-04-05 18:22:17 +0200972 if (cfqg && !cfqg->blkg.dev && bdi->dev && dev_name(bdi->dev)) {
973 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
974 cfqg->blkg.dev = MKDEV(major, minor);
975 goto done;
976 }
Vivek Goyal25fb5162009-12-03 12:59:46 -0500977 if (cfqg || !create)
978 goto done;
979
980 cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
981 if (!cfqg)
982 goto done;
983
Vivek Goyal25fb5162009-12-03 12:59:46 -0500984 for_each_cfqg_st(cfqg, i, j, st)
985 *st = CFQ_RB_ROOT;
986 RB_CLEAR_NODE(&cfqg->rb_node);
987
Vivek Goyalb1c35762009-12-03 12:59:47 -0500988 /*
989 * Take the initial reference that will be released on destroy
990 * This can be thought of a joint reference by cgroup and
991 * elevator which will be dropped by either elevator exit
992 * or cgroup deletion path depending on who is exiting first.
993 */
994 atomic_set(&cfqg->ref, 1);
995
Vivek Goyal25fb5162009-12-03 12:59:46 -0500996 /* Add group onto cgroup list */
Vivek Goyal22084192009-12-03 12:59:49 -0500997 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyale98ef892010-06-18 10:39:47 -0400998 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg, (void *)cfqd,
Vivek Goyal22084192009-12-03 12:59:49 -0500999 MKDEV(major, minor));
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001000 cfqg->weight = blkcg_get_weight(blkcg, cfqg->blkg.dev);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001001
1002 /* Add group on cfqd list */
1003 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
1004
1005done:
Vivek Goyal25fb5162009-12-03 12:59:46 -05001006 return cfqg;
1007}
1008
1009/*
1010 * Search for the cfq group current task belongs to. If create = 1, then also
1011 * create the cfq group if it does not exist. request_queue lock must be held.
1012 */
1013static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
1014{
1015 struct cgroup *cgroup;
1016 struct cfq_group *cfqg = NULL;
1017
1018 rcu_read_lock();
1019 cgroup = task_cgroup(current, blkio_subsys_id);
1020 cfqg = cfq_find_alloc_cfqg(cfqd, cgroup, create);
1021 if (!cfqg && create)
1022 cfqg = &cfqd->root_group;
1023 rcu_read_unlock();
1024 return cfqg;
1025}
1026
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001027static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1028{
1029 atomic_inc(&cfqg->ref);
1030 return cfqg;
1031}
1032
Vivek Goyal25fb5162009-12-03 12:59:46 -05001033static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1034{
1035 /* Currently, all async queues are mapped to root group */
1036 if (!cfq_cfqq_sync(cfqq))
1037 cfqg = &cfqq->cfqd->root_group;
1038
1039 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001040 /* cfqq reference on cfqg */
1041 atomic_inc(&cfqq->cfqg->ref);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001042}
Vivek Goyalb1c35762009-12-03 12:59:47 -05001043
1044static void cfq_put_cfqg(struct cfq_group *cfqg)
1045{
1046 struct cfq_rb_root *st;
1047 int i, j;
1048
1049 BUG_ON(atomic_read(&cfqg->ref) <= 0);
1050 if (!atomic_dec_and_test(&cfqg->ref))
1051 return;
1052 for_each_cfqg_st(cfqg, i, j, st)
1053 BUG_ON(!RB_EMPTY_ROOT(&st->rb) || st->active != NULL);
1054 kfree(cfqg);
1055}
1056
1057static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1058{
1059 /* Something wrong if we are trying to remove same group twice */
1060 BUG_ON(hlist_unhashed(&cfqg->cfqd_node));
1061
1062 hlist_del_init(&cfqg->cfqd_node);
1063
1064 /*
1065 * Put the reference taken at the time of creation so that when all
1066 * queues are gone, group can be destroyed.
1067 */
1068 cfq_put_cfqg(cfqg);
1069}
1070
1071static void cfq_release_cfq_groups(struct cfq_data *cfqd)
1072{
1073 struct hlist_node *pos, *n;
1074 struct cfq_group *cfqg;
1075
1076 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1077 /*
1078 * If cgroup removal path got to blk_group first and removed
1079 * it from cgroup list, then it will take care of destroying
1080 * cfqg also.
1081 */
Vivek Goyale98ef892010-06-18 10:39:47 -04001082 if (!cfq_blkiocg_del_blkio_group(&cfqg->blkg))
Vivek Goyalb1c35762009-12-03 12:59:47 -05001083 cfq_destroy_cfqg(cfqd, cfqg);
1084 }
1085}
1086
1087/*
1088 * Blk cgroup controller notification saying that blkio_group object is being
1089 * delinked as associated cgroup object is going away. That also means that
1090 * no new IO will come in this group. So get rid of this group as soon as
1091 * any pending IO in the group is finished.
1092 *
1093 * This function is called under rcu_read_lock(). key is the rcu protected
1094 * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu
1095 * read lock.
1096 *
1097 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
1098 * it should not be NULL as even if elevator was exiting, cgroup deltion
1099 * path got to it first.
1100 */
1101void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
1102{
1103 unsigned long flags;
1104 struct cfq_data *cfqd = key;
1105
1106 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1107 cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg));
1108 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1109}
1110
Vivek Goyal25fb5162009-12-03 12:59:46 -05001111#else /* GROUP_IOSCHED */
1112static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
1113{
1114 return &cfqd->root_group;
1115}
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001116
1117static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1118{
Dmitry Monakhov50eaeb32010-04-28 19:50:33 +02001119 return cfqg;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001120}
1121
Vivek Goyal25fb5162009-12-03 12:59:46 -05001122static inline void
1123cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1124 cfqq->cfqg = cfqg;
1125}
1126
Vivek Goyalb1c35762009-12-03 12:59:47 -05001127static void cfq_release_cfq_groups(struct cfq_data *cfqd) {}
1128static inline void cfq_put_cfqg(struct cfq_group *cfqg) {}
1129
Vivek Goyal25fb5162009-12-03 12:59:46 -05001130#endif /* GROUP_IOSCHED */
1131
Jens Axboe498d3aa22007-04-26 12:54:48 +02001132/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001133 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +02001134 * requests waiting to be processed. It is sorted in the order that
1135 * we will service the queues.
1136 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001137static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001138 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02001139{
Jens Axboe08717142008-01-28 11:38:15 +01001140 struct rb_node **p, *parent;
1141 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001142 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001143 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +02001144 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001145 int new_cfqq = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05001146 int group_changed = 0;
1147
1148#ifdef CONFIG_CFQ_GROUP_IOSCHED
1149 if (!cfqd->cfq_group_isolation
1150 && cfqq_type(cfqq) == SYNC_NOIDLE_WORKLOAD
1151 && cfqq->cfqg && cfqq->cfqg != &cfqd->root_group) {
1152 /* Move this cfq to root group */
1153 cfq_log_cfqq(cfqd, cfqq, "moving to root group");
1154 if (!RB_EMPTY_NODE(&cfqq->rb_node))
1155 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
1156 cfqq->orig_cfqg = cfqq->cfqg;
1157 cfqq->cfqg = &cfqd->root_group;
1158 atomic_inc(&cfqd->root_group.ref);
1159 group_changed = 1;
1160 } else if (!cfqd->cfq_group_isolation
1161 && cfqq_type(cfqq) == SYNC_WORKLOAD && cfqq->orig_cfqg) {
1162 /* cfqq is sequential now needs to go to its original group */
1163 BUG_ON(cfqq->cfqg != &cfqd->root_group);
1164 if (!RB_EMPTY_NODE(&cfqq->rb_node))
1165 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
1166 cfq_put_cfqg(cfqq->cfqg);
1167 cfqq->cfqg = cfqq->orig_cfqg;
1168 cfqq->orig_cfqg = NULL;
1169 group_changed = 1;
1170 cfq_log_cfqq(cfqd, cfqq, "moved to origin group");
1171 }
1172#endif
Jens Axboed9e76202007-04-20 14:27:50 +02001173
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001174 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
Vivek Goyal65b32a52009-12-16 17:52:59 -05001175 cfqq_type(cfqq));
Jens Axboe08717142008-01-28 11:38:15 +01001176 if (cfq_class_idle(cfqq)) {
1177 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001178 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +01001179 if (parent && parent != &cfqq->rb_node) {
1180 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1181 rb_key += __cfqq->rb_key;
1182 } else
1183 rb_key += jiffies;
1184 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02001185 /*
1186 * Get our rb key offset. Subtract any residual slice
1187 * value carried from last service. A negative resid
1188 * count indicates slice overrun, and this should position
1189 * the next service time further away in the tree.
1190 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001191 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02001192 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02001193 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001194 } else {
1195 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001196 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001197 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1198 }
Jens Axboed9e76202007-04-20 14:27:50 +02001199
1200 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05001201 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01001202 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001203 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01001204 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001205 if (rb_key == cfqq->rb_key &&
1206 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +02001207 return;
Jens Axboe53b037442006-07-28 09:48:51 +02001208
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001209 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1210 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001211 }
Jens Axboed9e76202007-04-20 14:27:50 +02001212
Jens Axboe498d3aa22007-04-26 12:54:48 +02001213 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01001214 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001215 cfqq->service_tree = service_tree;
1216 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02001217 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +02001218 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +02001219
Jens Axboed9e76202007-04-20 14:27:50 +02001220 parent = *p;
1221 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1222
Jens Axboe0c534e02007-04-18 20:01:57 +02001223 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001224 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02001225 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001226 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +02001227 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001228 else {
Jens Axboe67060e32007-04-18 20:13:32 +02001229 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02001230 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001231 }
Jens Axboe67060e32007-04-18 20:13:32 +02001232
1233 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +02001234 }
1235
Jens Axboecc09e292007-04-26 12:53:50 +02001236 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001237 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02001238
Jens Axboed9e76202007-04-20 14:27:50 +02001239 cfqq->rb_key = rb_key;
1240 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001241 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1242 service_tree->count++;
Vivek Goyalae30c282009-12-03 12:59:55 -05001243 if ((add_front || !new_cfqq) && !group_changed)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001244 return;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001245 cfq_group_service_tree_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
1247
Jens Axboea36e71f2009-04-15 12:15:11 +02001248static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001249cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1250 sector_t sector, struct rb_node **ret_parent,
1251 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02001252{
Jens Axboea36e71f2009-04-15 12:15:11 +02001253 struct rb_node **p, *parent;
1254 struct cfq_queue *cfqq = NULL;
1255
1256 parent = NULL;
1257 p = &root->rb_node;
1258 while (*p) {
1259 struct rb_node **n;
1260
1261 parent = *p;
1262 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1263
1264 /*
1265 * Sort strictly based on sector. Smallest to the left,
1266 * largest to the right.
1267 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001268 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001269 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001270 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001271 n = &(*p)->rb_left;
1272 else
1273 break;
1274 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001275 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001276 }
1277
1278 *ret_parent = parent;
1279 if (rb_link)
1280 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001281 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001282}
1283
1284static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1285{
Jens Axboea36e71f2009-04-15 12:15:11 +02001286 struct rb_node **p, *parent;
1287 struct cfq_queue *__cfqq;
1288
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001289 if (cfqq->p_root) {
1290 rb_erase(&cfqq->p_node, cfqq->p_root);
1291 cfqq->p_root = NULL;
1292 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001293
1294 if (cfq_class_idle(cfqq))
1295 return;
1296 if (!cfqq->next_rq)
1297 return;
1298
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001299 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001300 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1301 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001302 if (!__cfqq) {
1303 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001304 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1305 } else
1306 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001307}
1308
Jens Axboe498d3aa22007-04-26 12:54:48 +02001309/*
1310 * Update cfqq's position in the service tree.
1311 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001312static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001313{
Jens Axboe6d048f52007-04-25 12:44:27 +02001314 /*
1315 * Resorting requires the cfqq to be on the RR list already.
1316 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001317 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001318 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001319 cfq_prio_tree_add(cfqd, cfqq);
1320 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001321}
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323/*
1324 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001325 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 */
Jens Axboefebffd62008-01-28 13:19:43 +01001327static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Jens Axboe7b679132008-05-30 12:23:07 +02001329 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001330 BUG_ON(cfq_cfqq_on_rr(cfqq));
1331 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 cfqd->busy_queues++;
1333
Jens Axboeedd75ff2007-04-19 12:03:34 +02001334 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Jens Axboe498d3aa22007-04-26 12:54:48 +02001337/*
1338 * Called when the cfqq no longer has requests pending, remove it from
1339 * the service tree.
1340 */
Jens Axboefebffd62008-01-28 13:19:43 +01001341static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
Jens Axboe7b679132008-05-30 12:23:07 +02001343 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001344 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1345 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001347 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1348 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1349 cfqq->service_tree = NULL;
1350 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001351 if (cfqq->p_root) {
1352 rb_erase(&cfqq->p_node, cfqq->p_root);
1353 cfqq->p_root = NULL;
1354 }
Jens Axboed9e76202007-04-20 14:27:50 +02001355
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001356 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 BUG_ON(!cfqd->busy_queues);
1358 cfqd->busy_queues--;
1359}
1360
1361/*
1362 * rb tree support functions
1363 */
Jens Axboefebffd62008-01-28 13:19:43 +01001364static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Jens Axboe5e705372006-07-13 12:39:25 +02001366 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001367 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Jens Axboeb4878f22005-10-20 16:42:29 +02001369 BUG_ON(!cfqq->queued[sync]);
1370 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Jens Axboe5e705372006-07-13 12:39:25 +02001372 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Vivek Goyalf04a6422009-12-03 12:59:40 -05001374 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1375 /*
1376 * Queue will be deleted from service tree when we actually
1377 * expire it later. Right now just remove it from prio tree
1378 * as it is empty.
1379 */
1380 if (cfqq->p_root) {
1381 rb_erase(&cfqq->p_node, cfqq->p_root);
1382 cfqq->p_root = NULL;
1383 }
1384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
Jens Axboe5e705372006-07-13 12:39:25 +02001387static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Jens Axboe5e705372006-07-13 12:39:25 +02001389 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboea36e71f2009-04-15 12:15:11 +02001391 struct request *__alias, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Jens Axboe5380a102006-07-13 12:37:56 +02001393 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 /*
1396 * looks a little odd, but the first insert might return an alias.
1397 * if that happens, put the alias on the dispatch list
1398 */
Jens Axboe21183b02006-07-13 12:33:14 +02001399 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +02001400 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001401
1402 if (!cfq_cfqq_on_rr(cfqq))
1403 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001404
1405 /*
1406 * check if this request is a better next-serve candidate
1407 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001408 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001409 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001410
1411 /*
1412 * adjust priority tree position, if ->next_rq changes
1413 */
1414 if (prev != cfqq->next_rq)
1415 cfq_prio_tree_add(cfqd, cfqq);
1416
Jens Axboe5044eed2007-04-25 11:53:48 +02001417 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Jens Axboefebffd62008-01-28 13:19:43 +01001420static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421{
Jens Axboe5380a102006-07-13 12:37:56 +02001422 elv_rb_del(&cfqq->sort_list, rq);
1423 cfqq->queued[rq_is_sync(rq)]--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001424 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1425 rq_data_dir(rq), rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02001426 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04001427 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001428 &cfqq->cfqd->serving_group->blkg, rq_data_dir(rq),
1429 rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
Jens Axboe206dc692006-03-28 13:03:44 +02001432static struct request *
1433cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Jens Axboe206dc692006-03-28 13:03:44 +02001435 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001436 struct cfq_io_context *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001437 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Jens Axboe4ac845a2008-01-24 08:44:49 +01001439 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001440 if (!cic)
1441 return NULL;
1442
1443 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001444 if (cfqq) {
1445 sector_t sector = bio->bi_sector + bio_sectors(bio);
1446
Jens Axboe21183b02006-07-13 12:33:14 +02001447 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return NULL;
1451}
1452
Jens Axboe165125e2007-07-24 09:28:11 +02001453static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001454{
1455 struct cfq_data *cfqd = q->elevator->elevator_data;
1456
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001457 cfqd->rq_in_driver++;
Jens Axboe7b679132008-05-30 12:23:07 +02001458 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001459 cfqd->rq_in_driver);
Jens Axboe25776e32006-06-01 10:12:26 +02001460
Tejun Heo5b936292009-05-07 22:24:38 +09001461 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001462}
1463
Jens Axboe165125e2007-07-24 09:28:11 +02001464static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
Jens Axboe22e2c502005-06-27 10:55:12 +02001466 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001468 WARN_ON(!cfqd->rq_in_driver);
1469 cfqd->rq_in_driver--;
Jens Axboe7b679132008-05-30 12:23:07 +02001470 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001471 cfqd->rq_in_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
1473
Jens Axboeb4878f22005-10-20 16:42:29 +02001474static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Jens Axboe5e705372006-07-13 12:39:25 +02001476 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001477
Jens Axboe5e705372006-07-13 12:39:25 +02001478 if (cfqq->next_rq == rq)
1479 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Jens Axboeb4878f22005-10-20 16:42:29 +02001481 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001482 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001483
Aaron Carroll45333d52008-08-26 15:52:36 +02001484 cfqq->cfqd->rq_queued--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001485 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1486 rq_data_dir(rq), rq_is_sync(rq));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001487 if (rq->cmd_flags & REQ_META) {
Jens Axboe374f84a2006-07-23 01:42:19 +02001488 WARN_ON(!cfqq->meta_pending);
1489 cfqq->meta_pending--;
1490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Jens Axboe165125e2007-07-24 09:28:11 +02001493static int cfq_merge(struct request_queue *q, struct request **req,
1494 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
1496 struct cfq_data *cfqd = q->elevator->elevator_data;
1497 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Jens Axboe206dc692006-03-28 13:03:44 +02001499 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001500 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001501 *req = __rq;
1502 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 }
1504
1505 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
Jens Axboe165125e2007-07-24 09:28:11 +02001508static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001509 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Jens Axboe21183b02006-07-13 12:33:14 +02001511 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001512 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Jens Axboe5e705372006-07-13 12:39:25 +02001514 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
Divyesh Shah812d4022010-04-08 21:14:23 -07001518static void cfq_bio_merged(struct request_queue *q, struct request *req,
1519 struct bio *bio)
1520{
Vivek Goyale98ef892010-06-18 10:39:47 -04001521 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(req))->blkg,
1522 bio_data_dir(bio), cfq_bio_sync(bio));
Divyesh Shah812d4022010-04-08 21:14:23 -07001523}
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525static void
Jens Axboe165125e2007-07-24 09:28:11 +02001526cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 struct request *next)
1528{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001529 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001530 /*
1531 * reposition in fifo if next is older than rq
1532 */
1533 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001534 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001535 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001536 rq_set_fifo_time(rq, rq_fifo_time(next));
1537 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001538
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001539 if (cfqq->next_rq == next)
1540 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001541 cfq_remove_request(next);
Vivek Goyale98ef892010-06-18 10:39:47 -04001542 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(rq))->blkg,
1543 rq_data_dir(next), rq_is_sync(next));
Jens Axboe22e2c502005-06-27 10:55:12 +02001544}
1545
Jens Axboe165125e2007-07-24 09:28:11 +02001546static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001547 struct bio *bio)
1548{
1549 struct cfq_data *cfqd = q->elevator->elevator_data;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001550 struct cfq_io_context *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001551 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001552
1553 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001554 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001555 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001556 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001557 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001558
1559 /*
Jens Axboe719d3402006-12-22 09:38:53 +01001560 * Lookup the cfqq that this bio will be queued with. Allow
1561 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +01001562 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01001563 cic = cfq_cic_lookup(cfqd, current->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001564 if (!cic)
Jens Axboea6151c32009-10-07 20:02:57 +02001565 return false;
Jens Axboe719d3402006-12-22 09:38:53 +01001566
Vasily Tarasov91fac312007-04-25 12:29:51 +02001567 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001568 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001569}
1570
Divyesh Shah812df482010-04-08 21:15:35 -07001571static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1572{
1573 del_timer(&cfqd->idle_slice_timer);
Vivek Goyale98ef892010-06-18 10:39:47 -04001574 cfq_blkiocg_update_idle_time_stats(&cfqq->cfqg->blkg);
Divyesh Shah812df482010-04-08 21:15:35 -07001575}
1576
Jens Axboefebffd62008-01-28 13:19:43 +01001577static void __cfq_set_active_queue(struct cfq_data *cfqd,
1578 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001579{
1580 if (cfqq) {
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001581 cfq_log_cfqq(cfqd, cfqq, "set_active wl_prio:%d wl_type:%d",
1582 cfqd->serving_prio, cfqd->serving_type);
Vivek Goyale98ef892010-06-18 10:39:47 -04001583 cfq_blkiocg_update_avg_queue_size_stats(&cfqq->cfqg->blkg);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001584 cfqq->slice_start = 0;
1585 cfqq->dispatch_start = jiffies;
Vivek Goyalf75edf22009-12-03 12:59:53 -05001586 cfqq->allocated_slice = 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001587 cfqq->slice_end = 0;
Jens Axboe2f5cb732009-04-07 08:51:19 +02001588 cfqq->slice_dispatch = 0;
1589
Jens Axboe2f5cb732009-04-07 08:51:19 +02001590 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboeb0291952009-04-07 11:38:31 +02001591 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001592 cfq_clear_cfqq_must_alloc_slice(cfqq);
1593 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +11001594 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02001595
Divyesh Shah812df482010-04-08 21:15:35 -07001596 cfq_del_timer(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001597 }
1598
1599 cfqd->active_queue = cfqq;
1600}
1601
1602/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001603 * current cfqq expired its slice (or was too idle), select new one
1604 */
1605static void
1606__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Vivek Goyale5ff0822010-04-26 19:25:11 +02001607 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001608{
Jens Axboe7b679132008-05-30 12:23:07 +02001609 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1610
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001611 if (cfq_cfqq_wait_request(cfqq))
Divyesh Shah812df482010-04-08 21:15:35 -07001612 cfq_del_timer(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001613
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001614 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05001615 cfq_clear_cfqq_wait_busy(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001616
1617 /*
Shaohua Liae54abe2010-02-05 13:11:45 +01001618 * If this cfqq is shared between multiple processes, check to
1619 * make sure that those processes are still issuing I/Os within
1620 * the mean seek distance. If not, it may be time to break the
1621 * queues apart again.
1622 */
1623 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
1624 cfq_mark_cfqq_split_coop(cfqq);
1625
1626 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001627 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001628 */
Jens Axboe7b679132008-05-30 12:23:07 +02001629 if (timed_out && !cfq_cfqq_slice_new(cfqq)) {
Jens Axboec5b680f2007-01-19 11:56:49 +11001630 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001631 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1632 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001633
Vivek Goyale5ff0822010-04-26 19:25:11 +02001634 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001635
Vivek Goyalf04a6422009-12-03 12:59:40 -05001636 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1637 cfq_del_cfqq_rr(cfqd, cfqq);
1638
Jens Axboeedd75ff2007-04-19 12:03:34 +02001639 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001640
1641 if (cfqq == cfqd->active_queue)
1642 cfqd->active_queue = NULL;
1643
Vivek Goyaldae739e2009-12-03 12:59:45 -05001644 if (&cfqq->cfqg->rb_node == cfqd->grp_service_tree.active)
1645 cfqd->grp_service_tree.active = NULL;
1646
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001647 if (cfqd->active_cic) {
1648 put_io_context(cfqd->active_cic->ioc);
1649 cfqd->active_cic = NULL;
1650 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001651}
1652
Vivek Goyale5ff0822010-04-26 19:25:11 +02001653static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001654{
1655 struct cfq_queue *cfqq = cfqd->active_queue;
1656
1657 if (cfqq)
Vivek Goyale5ff0822010-04-26 19:25:11 +02001658 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001659}
1660
Jens Axboe498d3aa22007-04-26 12:54:48 +02001661/*
1662 * Get next queue for service. Unless we have a queue preemption,
1663 * we'll simply select the first cfqq in the service tree.
1664 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001665static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001666{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001667 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001668 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -05001669 cfqd->serving_type);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001670
Vivek Goyalf04a6422009-12-03 12:59:40 -05001671 if (!cfqd->rq_queued)
1672 return NULL;
1673
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001674 /* There is nothing to dispatch */
1675 if (!service_tree)
1676 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001677 if (RB_EMPTY_ROOT(&service_tree->rb))
1678 return NULL;
1679 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001680}
1681
Vivek Goyalf04a6422009-12-03 12:59:40 -05001682static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1683{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001684 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05001685 struct cfq_queue *cfqq;
1686 int i, j;
1687 struct cfq_rb_root *st;
1688
1689 if (!cfqd->rq_queued)
1690 return NULL;
1691
Vivek Goyal25fb5162009-12-03 12:59:46 -05001692 cfqg = cfq_get_next_cfqg(cfqd);
1693 if (!cfqg)
1694 return NULL;
1695
Vivek Goyalf04a6422009-12-03 12:59:40 -05001696 for_each_cfqg_st(cfqg, i, j, st)
1697 if ((cfqq = cfq_rb_first(st)) != NULL)
1698 return cfqq;
1699 return NULL;
1700}
1701
Jens Axboe498d3aa22007-04-26 12:54:48 +02001702/*
1703 * Get and set a new active queue for service.
1704 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001705static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1706 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001707{
Jens Axboee00ef792009-11-04 08:54:55 +01001708 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001709 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001710
Jens Axboe22e2c502005-06-27 10:55:12 +02001711 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001712 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001713}
1714
Jens Axboed9e76202007-04-20 14:27:50 +02001715static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1716 struct request *rq)
1717{
Tejun Heo83096eb2009-05-07 22:24:39 +09001718 if (blk_rq_pos(rq) >= cfqd->last_position)
1719 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001720 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001721 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001722}
1723
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001724static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Shaohua Lie9ce3352010-03-19 08:03:04 +01001725 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001726{
Shaohua Lie9ce3352010-03-19 08:03:04 +01001727 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001728}
1729
Jens Axboea36e71f2009-04-15 12:15:11 +02001730static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1731 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001732{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001733 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001734 struct rb_node *parent, *node;
1735 struct cfq_queue *__cfqq;
1736 sector_t sector = cfqd->last_position;
1737
1738 if (RB_EMPTY_ROOT(root))
1739 return NULL;
1740
1741 /*
1742 * First, if we find a request starting at the end of the last
1743 * request, choose it.
1744 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001745 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001746 if (__cfqq)
1747 return __cfqq;
1748
1749 /*
1750 * If the exact sector wasn't found, the parent of the NULL leaf
1751 * will contain the closest sector.
1752 */
1753 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001754 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001755 return __cfqq;
1756
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001757 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001758 node = rb_next(&__cfqq->p_node);
1759 else
1760 node = rb_prev(&__cfqq->p_node);
1761 if (!node)
1762 return NULL;
1763
1764 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001765 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001766 return __cfqq;
1767
1768 return NULL;
1769}
1770
1771/*
1772 * cfqd - obvious
1773 * cur_cfqq - passed in so that we don't decide that the current queue is
1774 * closely cooperating with itself.
1775 *
1776 * So, basically we're assuming that that cur_cfqq has dispatched at least
1777 * one request, and that cfqd->last_position reflects a position on the disk
1778 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1779 * assumption.
1780 */
1781static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001782 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001783{
1784 struct cfq_queue *cfqq;
1785
Divyesh Shah39c01b22010-03-25 15:45:57 +01001786 if (cfq_class_idle(cur_cfqq))
1787 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001788 if (!cfq_cfqq_sync(cur_cfqq))
1789 return NULL;
1790 if (CFQQ_SEEKY(cur_cfqq))
1791 return NULL;
1792
Jens Axboea36e71f2009-04-15 12:15:11 +02001793 /*
Gui Jianfengb9d8f4c2009-12-08 08:54:17 +01001794 * Don't search priority tree if it's the only queue in the group.
1795 */
1796 if (cur_cfqq->cfqg->nr_cfqq == 1)
1797 return NULL;
1798
1799 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001800 * We should notice if some of the queues are cooperating, eg
1801 * working closely on the same area of the disk. In that case,
1802 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001803 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001804 cfqq = cfqq_close(cfqd, cur_cfqq);
1805 if (!cfqq)
1806 return NULL;
1807
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001808 /* If new queue belongs to different cfq_group, don't choose it */
1809 if (cur_cfqq->cfqg != cfqq->cfqg)
1810 return NULL;
1811
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001812 /*
1813 * It only makes sense to merge sync queues.
1814 */
1815 if (!cfq_cfqq_sync(cfqq))
1816 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001817 if (CFQQ_SEEKY(cfqq))
1818 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001819
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001820 /*
1821 * Do not merge queues of different priority classes
1822 */
1823 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1824 return NULL;
1825
Jens Axboea36e71f2009-04-15 12:15:11 +02001826 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001827}
1828
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001829/*
1830 * Determine whether we should enforce idle window for this queue.
1831 */
1832
1833static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1834{
1835 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001836 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001837
Vivek Goyalf04a6422009-12-03 12:59:40 -05001838 BUG_ON(!service_tree);
1839 BUG_ON(!service_tree->count);
1840
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001841 /* We never do for idle class queues. */
1842 if (prio == IDLE_WORKLOAD)
1843 return false;
1844
1845 /* We do for queues that were marked with idle window flag. */
Shaohua Li3c764b72009-12-04 13:12:06 +01001846 if (cfq_cfqq_idle_window(cfqq) &&
1847 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001848 return true;
1849
1850 /*
1851 * Otherwise, we do only if they are the last ones
1852 * in their service tree.
1853 */
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001854 if (service_tree->count == 1 && cfq_cfqq_sync(cfqq))
1855 return 1;
1856 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d",
1857 service_tree->count);
1858 return 0;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001859}
1860
Jens Axboe6d048f52007-04-25 12:44:27 +02001861static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001862{
Jens Axboe17926692007-01-19 11:59:30 +11001863 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +02001864 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001865 unsigned long sl;
1866
Jens Axboea68bbdd2008-09-24 13:03:33 +02001867 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001868 * SSD device without seek penalty, disable idling. But only do so
1869 * for devices that support queuing, otherwise we still have a problem
1870 * with sync vs async workloads.
Jens Axboea68bbdd2008-09-24 13:03:33 +02001871 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001872 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbdd2008-09-24 13:03:33 +02001873 return;
1874
Jens Axboedd67d052006-06-21 09:36:18 +02001875 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02001876 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02001877
1878 /*
1879 * idle is disabled, either manually or by past process history
1880 */
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001881 if (!cfqd->cfq_slice_idle || !cfq_should_idle(cfqd, cfqq))
Jens Axboe6d048f52007-04-25 12:44:27 +02001882 return;
1883
Jens Axboe22e2c502005-06-27 10:55:12 +02001884 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001885 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02001886 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001887 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02001888 return;
1889
1890 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02001891 * task has exited, don't wait
1892 */
Jens Axboe206dc692006-03-28 13:03:44 +02001893 cic = cfqd->active_cic;
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01001894 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02001895 return;
1896
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001897 /*
1898 * If our average think time is larger than the remaining time
1899 * slice, then don't idle. This avoids overrunning the allotted
1900 * time slice.
1901 */
1902 if (sample_valid(cic->ttime_samples) &&
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001903 (cfqq->slice_end - jiffies < cic->ttime_mean)) {
1904 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%d",
1905 cic->ttime_mean);
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001906 return;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001907 }
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001908
Jens Axboe3b181522005-06-27 10:56:24 +02001909 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001910
Jens Axboe6d048f52007-04-25 12:44:27 +02001911 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02001912
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001913 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04001914 cfq_blkiocg_update_set_idle_time_stats(&cfqq->cfqg->blkg);
Jens Axboe9481ffd2009-04-15 12:14:13 +02001915 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916}
1917
Jens Axboe498d3aa22007-04-26 12:54:48 +02001918/*
1919 * Move request from internal lists to the request queue dispatch list.
1920 */
Jens Axboe165125e2007-07-24 09:28:11 +02001921static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Jens Axboe3ed9a292007-04-23 08:33:33 +02001923 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001924 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001925
Jens Axboe7b679132008-05-30 12:23:07 +02001926 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
1927
Jeff Moyer06d21882009-09-11 17:08:59 +02001928 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02001929 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001930 cfqq->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02001931 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02001932
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001933 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
Vivek Goyale98ef892010-06-18 10:39:47 -04001934 cfq_blkiocg_update_dispatch_stats(&cfqq->cfqg->blkg, blk_rq_bytes(rq),
Divyesh Shah84c124d2010-04-09 08:31:19 +02001935 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
1938/*
1939 * return expired entry, or NULL to just start from scratch in rbtree
1940 */
Jens Axboefebffd62008-01-28 13:19:43 +01001941static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
Jens Axboe30996f42009-10-05 11:03:39 +02001943 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Jens Axboe3b181522005-06-27 10:56:24 +02001945 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11001947
1948 cfq_mark_cfqq_fifo_expire(cfqq);
1949
Jens Axboe89850f72006-07-22 16:48:31 +02001950 if (list_empty(&cfqq->fifo))
1951 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Jens Axboe89850f72006-07-22 16:48:31 +02001953 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02001954 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02001955 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Jens Axboe30996f42009-10-05 11:03:39 +02001957 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001958 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
Jens Axboe22e2c502005-06-27 10:55:12 +02001961static inline int
1962cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1963{
1964 const int base_rq = cfqd->cfq_slice_async_rq;
1965
1966 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1967
1968 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
1969}
1970
1971/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001972 * Must be called with the queue_lock held.
1973 */
1974static int cfqq_process_refs(struct cfq_queue *cfqq)
1975{
1976 int process_refs, io_refs;
1977
1978 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
1979 process_refs = atomic_read(&cfqq->ref) - io_refs;
1980 BUG_ON(process_refs < 0);
1981 return process_refs;
1982}
1983
1984static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
1985{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001986 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001987 struct cfq_queue *__cfqq;
1988
Jeff Moyerc10b61f2010-06-17 10:19:11 -04001989 /*
1990 * If there are no process references on the new_cfqq, then it is
1991 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
1992 * chain may have dropped their last reference (not just their
1993 * last process reference).
1994 */
1995 if (!cfqq_process_refs(new_cfqq))
1996 return;
1997
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001998 /* Avoid a circular list and skip interim queue merges */
1999 while ((__cfqq = new_cfqq->new_cfqq)) {
2000 if (__cfqq == cfqq)
2001 return;
2002 new_cfqq = __cfqq;
2003 }
2004
2005 process_refs = cfqq_process_refs(cfqq);
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002006 new_process_refs = cfqq_process_refs(new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002007 /*
2008 * If the process for the cfqq has gone away, there is no
2009 * sense in merging the queues.
2010 */
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002011 if (process_refs == 0 || new_process_refs == 0)
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002012 return;
2013
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002014 /*
2015 * Merge in the direction of the lesser amount of work.
2016 */
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002017 if (new_process_refs >= process_refs) {
2018 cfqq->new_cfqq = new_cfqq;
2019 atomic_add(process_refs, &new_cfqq->ref);
2020 } else {
2021 new_cfqq->new_cfqq = cfqq;
2022 atomic_add(new_process_refs, &cfqq->ref);
2023 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002024}
2025
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002026static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
Vivek Goyal65b32a52009-12-16 17:52:59 -05002027 struct cfq_group *cfqg, enum wl_prio_t prio)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002028{
2029 struct cfq_queue *queue;
2030 int i;
2031 bool key_valid = false;
2032 unsigned long lowest_key = 0;
2033 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2034
Vivek Goyal65b32a52009-12-16 17:52:59 -05002035 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2036 /* select the one with lowest rb_key */
2037 queue = cfq_rb_first(service_tree_for(cfqg, prio, i));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002038 if (queue &&
2039 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2040 lowest_key = queue->rb_key;
2041 cur_best = i;
2042 key_valid = true;
2043 }
2044 }
2045
2046 return cur_best;
2047}
2048
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002049static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002050{
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002051 unsigned slice;
2052 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002053 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002054 unsigned group_slice;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002055
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002056 if (!cfqg) {
2057 cfqd->serving_prio = IDLE_WORKLOAD;
2058 cfqd->workload_expires = jiffies + 1;
2059 return;
2060 }
2061
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002062 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002063 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002064 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002065 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002066 cfqd->serving_prio = BE_WORKLOAD;
2067 else {
2068 cfqd->serving_prio = IDLE_WORKLOAD;
2069 cfqd->workload_expires = jiffies + 1;
2070 return;
2071 }
2072
2073 /*
2074 * For RT and BE, we have to choose also the type
2075 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2076 * expiration time
2077 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002078 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002079 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002080
2081 /*
Vivek Goyal65b32a52009-12-16 17:52:59 -05002082 * check workload expiration, and that we still have other queues ready
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002083 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002084 if (count && !time_after(jiffies, cfqd->workload_expires))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002085 return;
2086
2087 /* otherwise select new workload type */
2088 cfqd->serving_type =
Vivek Goyal65b32a52009-12-16 17:52:59 -05002089 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio);
2090 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002091 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002092
2093 /*
2094 * the workload slice is computed as a fraction of target latency
2095 * proportional to the number of queues in that workload, over
2096 * all the queues in the same priority class
2097 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002098 group_slice = cfq_group_slice(cfqd, cfqg);
2099
2100 slice = group_slice * count /
2101 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2102 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002103
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002104 if (cfqd->serving_type == ASYNC_WORKLOAD) {
2105 unsigned int tmp;
2106
2107 /*
2108 * Async queues are currently system wide. Just taking
2109 * proportion of queues with-in same group will lead to higher
2110 * async ratio system wide as generally root group is going
2111 * to have higher weight. A more accurate thing would be to
2112 * calculate system wide asnc/sync ratio.
2113 */
2114 tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg);
2115 tmp = tmp/cfqd->busy_queues;
2116 slice = min_t(unsigned, slice, tmp);
2117
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002118 /* async workload slice is scaled down according to
2119 * the sync/async slice ratio. */
2120 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002121 } else
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002122 /* sync workload slice is at least 2 * cfq_slice_idle */
2123 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2124
2125 slice = max_t(unsigned, slice, CFQ_MIN_TT);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002126 cfq_log(cfqd, "workload slice:%d", slice);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002127 cfqd->workload_expires = jiffies + slice;
2128}
2129
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002130static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2131{
2132 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002133 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002134
2135 if (RB_EMPTY_ROOT(&st->rb))
2136 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002137 cfqg = cfq_rb_first_group(st);
2138 st->active = &cfqg->rb_node;
2139 update_min_vdisktime(st);
2140 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002141}
2142
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002143static void cfq_choose_cfqg(struct cfq_data *cfqd)
2144{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002145 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2146
2147 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002148
2149 /* Restore the workload type data */
2150 if (cfqg->saved_workload_slice) {
2151 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2152 cfqd->serving_type = cfqg->saved_workload;
2153 cfqd->serving_prio = cfqg->saved_serving_prio;
Gui Jianfeng66ae2912009-12-15 10:08:45 +01002154 } else
2155 cfqd->workload_expires = jiffies - 1;
2156
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002157 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002158}
2159
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002160/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02002161 * Select a queue for service. If we have a current active queue,
2162 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02002163 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002164static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002165{
Jens Axboea36e71f2009-04-15 12:15:11 +02002166 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002167
2168 cfqq = cfqd->active_queue;
2169 if (!cfqq)
2170 goto new_queue;
2171
Vivek Goyalf04a6422009-12-03 12:59:40 -05002172 if (!cfqd->rq_queued)
2173 return NULL;
Vivek Goyalc244bb52009-12-08 17:52:57 -05002174
2175 /*
2176 * We were waiting for group to get backlogged. Expire the queue
2177 */
2178 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2179 goto expire;
2180
Jens Axboe22e2c502005-06-27 10:55:12 +02002181 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002182 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02002183 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05002184 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2185 /*
2186 * If slice had not expired at the completion of last request
2187 * we might not have turned on wait_busy flag. Don't expire
2188 * the queue yet. Allow the group to get backlogged.
2189 *
2190 * The very fact that we have used the slice, that means we
2191 * have been idling all along on this queue and it should be
2192 * ok to wait for this request to complete.
2193 */
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002194 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2195 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2196 cfqq = NULL;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002197 goto keep_queue;
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002198 } else
Vivek Goyal7667aa02009-12-08 17:52:58 -05002199 goto expire;
2200 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002201
2202 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002203 * The active queue has requests and isn't expired, allow it to
2204 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02002205 */
Jens Axboedd67d052006-06-21 09:36:18 +02002206 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002207 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02002208
2209 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02002210 * If another queue has a request waiting within our mean seek
2211 * distance, let it run. The expire code will check for close
2212 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002213 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02002214 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002215 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002216 if (new_cfqq) {
2217 if (!cfqq->new_cfqq)
2218 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02002219 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002220 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002221
2222 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002223 * No requests pending. If the active queue still has requests in
2224 * flight or is idling for a new request, allow either of these
2225 * conditions to happen (or time out) before selecting a new queue.
2226 */
Jens Axboecc197472007-04-20 20:45:39 +02002227 if (timer_pending(&cfqd->idle_slice_timer) ||
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002228 (cfqq->dispatched && cfq_should_idle(cfqd, cfqq))) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02002229 cfqq = NULL;
2230 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002231 }
2232
Jens Axboe3b181522005-06-27 10:56:24 +02002233expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02002234 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02002235new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002236 /*
2237 * Current queue expired. Check if we have to switch to a new
2238 * service tree
2239 */
2240 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002241 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002242
Jens Axboea36e71f2009-04-15 12:15:11 +02002243 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002244keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02002245 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002246}
2247
Jens Axboefebffd62008-01-28 13:19:43 +01002248static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02002249{
2250 int dispatched = 0;
2251
2252 while (cfqq->next_rq) {
2253 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2254 dispatched++;
2255 }
2256
2257 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05002258
2259 /* By default cfqq is not expired if it is empty. Do it explicitly */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002260 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02002261 return dispatched;
2262}
2263
Jens Axboe498d3aa22007-04-26 12:54:48 +02002264/*
2265 * Drain our current requests. Used for barriers and when switching
2266 * io schedulers on-the-fly.
2267 */
Jens Axboed9e76202007-04-20 14:27:50 +02002268static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002269{
Jens Axboe08717142008-01-28 11:38:15 +01002270 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002271 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002272
Divyesh Shah3440c492010-04-09 09:29:57 +02002273 /* Expire the timeslice of the current active queue first */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002274 cfq_slice_expired(cfqd, 0);
Divyesh Shah3440c492010-04-09 09:29:57 +02002275 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
2276 __cfq_set_active_queue(cfqd, cfqq);
Vivek Goyalf04a6422009-12-03 12:59:40 -05002277 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Divyesh Shah3440c492010-04-09 09:29:57 +02002278 }
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002279
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002280 BUG_ON(cfqd->busy_queues);
2281
Jeff Moyer69237152009-06-12 15:29:30 +02002282 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002283 return dispatched;
2284}
2285
Shaohua Liabc3c742010-03-01 09:20:54 +01002286static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
2287 struct cfq_queue *cfqq)
2288{
2289 /* the queue hasn't finished any request, can't estimate */
2290 if (cfq_cfqq_slice_new(cfqq))
2291 return 1;
2292 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
2293 cfqq->slice_end))
2294 return 1;
2295
2296 return 0;
2297}
2298
Jens Axboe0b182d62009-10-06 20:49:37 +02002299static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02002300{
Jens Axboe2f5cb732009-04-07 08:51:19 +02002301 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Jens Axboe2f5cb732009-04-07 08:51:19 +02002303 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02002304 * Drain async requests before we start sync IO
2305 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002306 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02002307 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02002308
2309 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002310 * If this is an async queue and we have sync IO in flight, let it wait
2311 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002312 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002313 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002314
Shaohua Liabc3c742010-03-01 09:20:54 +01002315 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002316 if (cfq_class_idle(cfqq))
2317 max_dispatch = 1;
2318
2319 /*
2320 * Does this cfqq already have too much IO in flight?
2321 */
2322 if (cfqq->dispatched >= max_dispatch) {
2323 /*
2324 * idle queue must always only have a single IO in flight
2325 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02002326 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002327 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02002328
Jens Axboe2f5cb732009-04-07 08:51:19 +02002329 /*
2330 * We have other queues, don't allow more IO from this one
2331 */
Shaohua Liabc3c742010-03-01 09:20:54 +01002332 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002333 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11002334
Jens Axboe2f5cb732009-04-07 08:51:19 +02002335 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01002336 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02002337 */
Shaohua Liabc3c742010-03-01 09:20:54 +01002338 if (cfqd->busy_queues == 1)
2339 max_dispatch = -1;
2340 else
2341 /*
2342 * Normally we start throttling cfqq when cfq_quantum/2
2343 * requests have been dispatched. But we can drive
2344 * deeper queue depths at the beginning of slice
2345 * subjected to upper limit of cfq_quantum.
2346 * */
2347 max_dispatch = cfqd->cfq_quantum;
Jens Axboe8e296752009-10-03 16:26:03 +02002348 }
2349
2350 /*
2351 * Async queues must wait a bit before being allowed dispatch.
2352 * We also ramp up the dispatch depth gradually for async IO,
2353 * based on the last sync IO we serviced
2354 */
Jens Axboe963b72f2009-10-03 19:42:18 +02002355 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Corrado Zoccolo573412b2009-12-06 11:48:52 +01002356 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
Jens Axboe8e296752009-10-03 16:26:03 +02002357 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02002358
Jens Axboe61f0c1d2009-10-03 19:46:03 +02002359 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02002360 if (!depth && !cfqq->dispatched)
2361 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02002362 if (depth < max_dispatch)
2363 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 }
2365
Jens Axboe0b182d62009-10-06 20:49:37 +02002366 /*
2367 * If we're below the current max, allow a dispatch
2368 */
2369 return cfqq->dispatched < max_dispatch;
2370}
2371
2372/*
2373 * Dispatch a request from cfqq, moving them to the request queue
2374 * dispatch list.
2375 */
2376static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2377{
2378 struct request *rq;
2379
2380 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2381
2382 if (!cfq_may_dispatch(cfqd, cfqq))
2383 return false;
2384
2385 /*
2386 * follow expired path, else get first next available
2387 */
2388 rq = cfq_check_fifo(cfqq);
2389 if (!rq)
2390 rq = cfqq->next_rq;
2391
2392 /*
2393 * insert request into driver dispatch list
2394 */
2395 cfq_dispatch_insert(cfqd->queue, rq);
2396
2397 if (!cfqd->active_cic) {
2398 struct cfq_io_context *cic = RQ_CIC(rq);
2399
2400 atomic_long_inc(&cic->ioc->refcount);
2401 cfqd->active_cic = cic;
2402 }
2403
2404 return true;
2405}
2406
2407/*
2408 * Find the cfqq that we need to service and move a request from that to the
2409 * dispatch list
2410 */
2411static int cfq_dispatch_requests(struct request_queue *q, int force)
2412{
2413 struct cfq_data *cfqd = q->elevator->elevator_data;
2414 struct cfq_queue *cfqq;
2415
2416 if (!cfqd->busy_queues)
2417 return 0;
2418
2419 if (unlikely(force))
2420 return cfq_forced_dispatch(cfqd);
2421
2422 cfqq = cfq_select_queue(cfqd);
2423 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002424 return 0;
2425
Jens Axboe2f5cb732009-04-07 08:51:19 +02002426 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002427 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002428 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002429 if (!cfq_dispatch_request(cfqd, cfqq))
2430 return 0;
2431
Jens Axboe2f5cb732009-04-07 08:51:19 +02002432 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002433 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002434
2435 /*
2436 * expire an async queue immediately if it has used up its slice. idle
2437 * queue always expire after 1 dispatch round.
2438 */
2439 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2440 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2441 cfq_class_idle(cfqq))) {
2442 cfqq->slice_end = jiffies + 1;
Vivek Goyale5ff0822010-04-26 19:25:11 +02002443 cfq_slice_expired(cfqd, 0);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002444 }
2445
Shan Weib217a902009-09-01 10:06:42 +02002446 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002447 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
2449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450/*
Jens Axboe5e705372006-07-13 12:39:25 +02002451 * task holds one reference to the queue, dropped when task exits. each rq
2452 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05002454 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 * queue lock must be held here.
2456 */
2457static void cfq_put_queue(struct cfq_queue *cfqq)
2458{
Jens Axboe22e2c502005-06-27 10:55:12 +02002459 struct cfq_data *cfqd = cfqq->cfqd;
Vivek Goyal878eadd2009-12-07 19:37:15 +01002460 struct cfq_group *cfqg, *orig_cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02002461
2462 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
2464 if (!atomic_dec_and_test(&cfqq->ref))
2465 return;
2466
Jens Axboe7b679132008-05-30 12:23:07 +02002467 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002469 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002470 cfqg = cfqq->cfqg;
Vivek Goyal878eadd2009-12-07 19:37:15 +01002471 orig_cfqg = cfqq->orig_cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002473 if (unlikely(cfqd->active_queue == cfqq)) {
Vivek Goyale5ff0822010-04-26 19:25:11 +02002474 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002475 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002476 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002477
Vivek Goyalf04a6422009-12-03 12:59:40 -05002478 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 kmem_cache_free(cfq_pool, cfqq);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002480 cfq_put_cfqg(cfqg);
Vivek Goyal878eadd2009-12-07 19:37:15 +01002481 if (orig_cfqg)
2482 cfq_put_cfqg(orig_cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483}
2484
Jens Axboed6de8be2008-05-28 14:46:59 +02002485/*
2486 * Must always be called with the rcu_read_lock() held
2487 */
Jens Axboe07416d22008-05-07 09:17:12 +02002488static void
2489__call_for_each_cic(struct io_context *ioc,
2490 void (*func)(struct io_context *, struct cfq_io_context *))
2491{
2492 struct cfq_io_context *cic;
2493 struct hlist_node *n;
2494
2495 hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list)
2496 func(ioc, cic);
2497}
2498
Jens Axboe4ac845a2008-01-24 08:44:49 +01002499/*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002500 * Call func for each cic attached to this ioc.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002501 */
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002502static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002503call_for_each_cic(struct io_context *ioc,
2504 void (*func)(struct io_context *, struct cfq_io_context *))
2505{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002506 rcu_read_lock();
Jens Axboe07416d22008-05-07 09:17:12 +02002507 __call_for_each_cic(ioc, func);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002508 rcu_read_unlock();
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002509}
Jens Axboe4ac845a2008-01-24 08:44:49 +01002510
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002511static void cfq_cic_free_rcu(struct rcu_head *head)
2512{
2513 struct cfq_io_context *cic;
2514
2515 cic = container_of(head, struct cfq_io_context, rcu_head);
2516
2517 kmem_cache_free(cfq_ioc_pool, cic);
Tejun Heo245b2e72009-06-24 15:13:48 +09002518 elv_ioc_count_dec(cfq_ioc_count);
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002519
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002520 if (ioc_gone) {
2521 /*
2522 * CFQ scheduler is exiting, grab exit lock and check
2523 * the pending io context count. If it hits zero,
2524 * complete ioc_gone and set it back to NULL
2525 */
2526 spin_lock(&ioc_gone_lock);
Tejun Heo245b2e72009-06-24 15:13:48 +09002527 if (ioc_gone && !elv_ioc_count_read(cfq_ioc_count)) {
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002528 complete(ioc_gone);
2529 ioc_gone = NULL;
2530 }
2531 spin_unlock(&ioc_gone_lock);
2532 }
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002533}
2534
2535static void cfq_cic_free(struct cfq_io_context *cic)
2536{
2537 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002538}
2539
2540static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic)
2541{
2542 unsigned long flags;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002543 unsigned long dead_key = (unsigned long) cic->key;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002544
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002545 BUG_ON(!(dead_key & CIC_DEAD_KEY));
Jens Axboe4ac845a2008-01-24 08:44:49 +01002546
2547 spin_lock_irqsave(&ioc->lock, flags);
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002548 radix_tree_delete(&ioc->radix_root, dead_key >> CIC_DEAD_INDEX_SHIFT);
Jens Axboeffc4e752008-02-19 10:02:29 +01002549 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002550 spin_unlock_irqrestore(&ioc->lock, flags);
2551
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002552 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002553}
2554
Jens Axboed6de8be2008-05-28 14:46:59 +02002555/*
2556 * Must be called with rcu_read_lock() held or preemption otherwise disabled.
2557 * Only two callers of this - ->dtor() which is called with the rcu_read_lock(),
2558 * and ->trim() which is called with the task lock held
2559 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002560static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002562 /*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002563 * ioc->refcount is zero here, or we are called from elv_unregister(),
2564 * so no more cic's are allowed to be linked into this ioc. So it
2565 * should be ok to iterate over the known list, we will see all cic's
2566 * since no new ones are added.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002567 */
Jens Axboe07416d22008-05-07 09:17:12 +02002568 __call_for_each_cic(ioc, cic_free_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569}
2570
Shaohua Lid02a2c02010-05-25 10:16:53 +02002571static void cfq_put_cooperator(struct cfq_queue *cfqq)
Jens Axboe89850f72006-07-22 16:48:31 +02002572{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002573 struct cfq_queue *__cfqq, *next;
2574
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002575 /*
2576 * If this queue was scheduled to merge with another queue, be
2577 * sure to drop the reference taken on that queue (and others in
2578 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2579 */
2580 __cfqq = cfqq->new_cfqq;
2581 while (__cfqq) {
2582 if (__cfqq == cfqq) {
2583 WARN(1, "cfqq->new_cfqq loop detected\n");
2584 break;
2585 }
2586 next = __cfqq->new_cfqq;
2587 cfq_put_queue(__cfqq);
2588 __cfqq = next;
2589 }
Shaohua Lid02a2c02010-05-25 10:16:53 +02002590}
2591
2592static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2593{
2594 if (unlikely(cfqq == cfqd->active_queue)) {
2595 __cfq_slice_expired(cfqd, cfqq, 0);
2596 cfq_schedule_dispatch(cfqd);
2597 }
2598
2599 cfq_put_cooperator(cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002600
Jens Axboe89850f72006-07-22 16:48:31 +02002601 cfq_put_queue(cfqq);
2602}
2603
2604static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
2605 struct cfq_io_context *cic)
2606{
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002607 struct io_context *ioc = cic->ioc;
2608
Jens Axboefc463792006-08-29 09:05:44 +02002609 list_del_init(&cic->queue_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002610
2611 /*
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002612 * Make sure dead mark is seen for dead queues
Jens Axboe4ac845a2008-01-24 08:44:49 +01002613 */
Jens Axboefc463792006-08-29 09:05:44 +02002614 smp_wmb();
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002615 cic->key = cfqd_dead_key(cfqd);
Jens Axboefc463792006-08-29 09:05:44 +02002616
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002617 if (ioc->ioc_data == cic)
2618 rcu_assign_pointer(ioc->ioc_data, NULL);
2619
Jens Axboeff6657c2009-04-08 10:58:57 +02002620 if (cic->cfqq[BLK_RW_ASYNC]) {
2621 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2622 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002623 }
2624
Jens Axboeff6657c2009-04-08 10:58:57 +02002625 if (cic->cfqq[BLK_RW_SYNC]) {
2626 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2627 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002628 }
Jens Axboe89850f72006-07-22 16:48:31 +02002629}
2630
Jens Axboe4ac845a2008-01-24 08:44:49 +01002631static void cfq_exit_single_io_context(struct io_context *ioc,
2632 struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002633{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002634 struct cfq_data *cfqd = cic_to_cfqd(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02002635
Jens Axboe89850f72006-07-22 16:48:31 +02002636 if (cfqd) {
Jens Axboe165125e2007-07-24 09:28:11 +02002637 struct request_queue *q = cfqd->queue;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002638 unsigned long flags;
Jens Axboe22e2c502005-06-27 10:55:12 +02002639
Jens Axboe4ac845a2008-01-24 08:44:49 +01002640 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboe62c1fe92008-12-15 21:19:25 +01002641
2642 /*
2643 * Ensure we get a fresh copy of the ->key to prevent
2644 * race between exiting task and queue
2645 */
2646 smp_read_barrier_depends();
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002647 if (cic->key == cfqd)
Jens Axboe62c1fe92008-12-15 21:19:25 +01002648 __cfq_exit_single_io_context(cfqd, cic);
2649
Jens Axboe4ac845a2008-01-24 08:44:49 +01002650 spin_unlock_irqrestore(q->queue_lock, flags);
Al Viro12a05732006-03-18 13:38:01 -05002651 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002652}
2653
Jens Axboe498d3aa22007-04-26 12:54:48 +02002654/*
2655 * The process that ioc belongs to has exited, we need to clean up
2656 * and put the internal structures we have that belongs to that process.
2657 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002658static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002660 call_for_each_cic(ioc, cfq_exit_single_io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661}
2662
Jens Axboe22e2c502005-06-27 10:55:12 +02002663static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04002664cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
Jens Axboeb5deef92006-07-19 23:39:40 +02002666 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
Christoph Lameter94f60302007-07-17 04:03:29 -07002668 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
2669 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 if (cic) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002671 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02002672 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboeffc4e752008-02-19 10:02:29 +01002673 INIT_HLIST_NODE(&cic->cic_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02002674 cic->dtor = cfq_free_io_context;
2675 cic->exit = cfq_exit_io_context;
Tejun Heo245b2e72009-06-24 15:13:48 +09002676 elv_ioc_count_inc(cfq_ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 }
2678
2679 return cic;
2680}
2681
Jens Axboefd0928d2008-01-24 08:52:45 +01002682static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02002683{
2684 struct task_struct *tsk = current;
2685 int ioprio_class;
2686
Jens Axboe3b181522005-06-27 10:56:24 +02002687 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002688 return;
2689
Jens Axboefd0928d2008-01-24 08:52:45 +01002690 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002691 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002692 default:
2693 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2694 case IOPRIO_CLASS_NONE:
2695 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002696 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002697 */
2698 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002699 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002700 break;
2701 case IOPRIO_CLASS_RT:
2702 cfqq->ioprio = task_ioprio(ioc);
2703 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2704 break;
2705 case IOPRIO_CLASS_BE:
2706 cfqq->ioprio = task_ioprio(ioc);
2707 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2708 break;
2709 case IOPRIO_CLASS_IDLE:
2710 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2711 cfqq->ioprio = 7;
2712 cfq_clear_cfqq_idle_window(cfqq);
2713 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002714 }
2715
2716 /*
2717 * keep track of original prio settings in case we have to temporarily
2718 * elevate the priority of this queue
2719 */
2720 cfqq->org_ioprio = cfqq->ioprio;
2721 cfqq->org_ioprio_class = cfqq->ioprio_class;
Jens Axboe3b181522005-06-27 10:56:24 +02002722 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002723}
2724
Jens Axboefebffd62008-01-28 13:19:43 +01002725static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002726{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002727 struct cfq_data *cfqd = cic_to_cfqd(cic);
Al Viro478a82b2006-03-18 13:25:24 -05002728 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01002729 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02002730
Jens Axboecaaa5f92006-06-16 11:23:00 +02002731 if (unlikely(!cfqd))
2732 return;
2733
Jens Axboec1b707d2006-10-30 19:54:23 +01002734 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002735
Jens Axboeff6657c2009-04-08 10:58:57 +02002736 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002737 if (cfqq) {
2738 struct cfq_queue *new_cfqq;
Jens Axboeff6657c2009-04-08 10:58:57 +02002739 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc,
2740 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002741 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002742 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002743 cfq_put_queue(cfqq);
2744 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002745 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002746
Jens Axboeff6657c2009-04-08 10:58:57 +02002747 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002748 if (cfqq)
2749 cfq_mark_cfqq_prio_changed(cfqq);
2750
Jens Axboec1b707d2006-10-30 19:54:23 +01002751 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02002752}
2753
Jens Axboefc463792006-08-29 09:05:44 +02002754static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002756 call_for_each_cic(ioc, changed_ioprio);
Jens Axboefc463792006-08-29 09:05:44 +02002757 ioc->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758}
2759
Jens Axboed5036d72009-06-26 10:44:34 +02002760static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002761 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002762{
2763 RB_CLEAR_NODE(&cfqq->rb_node);
2764 RB_CLEAR_NODE(&cfqq->p_node);
2765 INIT_LIST_HEAD(&cfqq->fifo);
2766
2767 atomic_set(&cfqq->ref, 0);
2768 cfqq->cfqd = cfqd;
2769
2770 cfq_mark_cfqq_prio_changed(cfqq);
2771
2772 if (is_sync) {
2773 if (!cfq_class_idle(cfqq))
2774 cfq_mark_cfqq_idle_window(cfqq);
2775 cfq_mark_cfqq_sync(cfqq);
2776 }
2777 cfqq->pid = pid;
2778}
2779
Vivek Goyal246103332009-12-03 12:59:51 -05002780#ifdef CONFIG_CFQ_GROUP_IOSCHED
2781static void changed_cgroup(struct io_context *ioc, struct cfq_io_context *cic)
2782{
2783 struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002784 struct cfq_data *cfqd = cic_to_cfqd(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05002785 unsigned long flags;
2786 struct request_queue *q;
2787
2788 if (unlikely(!cfqd))
2789 return;
2790
2791 q = cfqd->queue;
2792
2793 spin_lock_irqsave(q->queue_lock, flags);
2794
2795 if (sync_cfqq) {
2796 /*
2797 * Drop reference to sync queue. A new sync queue will be
2798 * assigned in new group upon arrival of a fresh request.
2799 */
2800 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2801 cic_set_cfqq(cic, NULL, 1);
2802 cfq_put_queue(sync_cfqq);
2803 }
2804
2805 spin_unlock_irqrestore(q->queue_lock, flags);
2806}
2807
2808static void cfq_ioc_set_cgroup(struct io_context *ioc)
2809{
2810 call_for_each_cic(ioc, changed_cgroup);
2811 ioc->cgroup_changed = 0;
2812}
2813#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002816cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01002817 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vasily Tarasov91fac312007-04-25 12:29:51 +02002820 struct cfq_io_context *cic;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002821 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
2823retry:
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002824 cfqg = cfq_get_cfqg(cfqd, 1);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002825 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002826 /* cic always exists here */
2827 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Jens Axboe6118b702009-06-30 09:34:12 +02002829 /*
2830 * Always try a new alloc if we fell back to the OOM cfqq
2831 * originally, since it should just be a temporary situation.
2832 */
2833 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2834 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 if (new_cfqq) {
2836 cfqq = new_cfqq;
2837 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002838 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002840 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002841 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002842 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002844 if (new_cfqq)
2845 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002846 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002847 cfqq = kmem_cache_alloc_node(cfq_pool,
2848 gfp_mask | __GFP_ZERO,
2849 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Jens Axboe6118b702009-06-30 09:34:12 +02002852 if (cfqq) {
2853 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2854 cfq_init_prio_data(cfqq, ioc);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002855 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002856 cfq_log_cfqq(cfqd, cfqq, "alloced");
2857 } else
2858 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 }
2860
2861 if (new_cfqq)
2862 kmem_cache_free(cfq_pool, new_cfqq);
2863
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 return cfqq;
2865}
2866
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002867static struct cfq_queue **
2868cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2869{
Jens Axboefe094d92008-01-31 13:08:54 +01002870 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002871 case IOPRIO_CLASS_RT:
2872 return &cfqd->async_cfqq[0][ioprio];
2873 case IOPRIO_CLASS_BE:
2874 return &cfqd->async_cfqq[1][ioprio];
2875 case IOPRIO_CLASS_IDLE:
2876 return &cfqd->async_idle_cfqq;
2877 default:
2878 BUG();
2879 }
2880}
2881
Jens Axboe15c31be2007-07-10 13:43:25 +02002882static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002883cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02002884 gfp_t gfp_mask)
2885{
Jens Axboefd0928d2008-01-24 08:52:45 +01002886 const int ioprio = task_ioprio(ioc);
2887 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002888 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002889 struct cfq_queue *cfqq = NULL;
2890
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002891 if (!is_sync) {
2892 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2893 cfqq = *async_cfqq;
2894 }
2895
Jens Axboe6118b702009-06-30 09:34:12 +02002896 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01002897 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002898
2899 /*
2900 * pin the queue now that it's allocated, scheduler exit will prune it
2901 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002902 if (!is_sync && !(*async_cfqq)) {
Jens Axboe15c31be2007-07-10 13:43:25 +02002903 atomic_inc(&cfqq->ref);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002904 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002905 }
2906
2907 atomic_inc(&cfqq->ref);
2908 return cfqq;
2909}
2910
Jens Axboe498d3aa22007-04-26 12:54:48 +02002911/*
2912 * We drop cfq io contexts lazily, so we may find a dead one.
2913 */
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002914static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002915cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc,
2916 struct cfq_io_context *cic)
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002917{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002918 unsigned long flags;
2919
Jens Axboefc463792006-08-29 09:05:44 +02002920 WARN_ON(!list_empty(&cic->queue_list));
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002921 BUG_ON(cic->key != cfqd_dead_key(cfqd));
Jens Axboe597bc482007-04-24 21:23:53 +02002922
Jens Axboe4ac845a2008-01-24 08:44:49 +01002923 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe597bc482007-04-24 21:23:53 +02002924
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002925 BUG_ON(ioc->ioc_data == cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002926
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002927 radix_tree_delete(&ioc->radix_root, cfqd->cic_index);
Jens Axboeffc4e752008-02-19 10:02:29 +01002928 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002929 spin_unlock_irqrestore(&ioc->lock, flags);
2930
2931 cfq_cic_free(cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002932}
2933
Jens Axboee2d74ac2006-03-28 08:59:01 +02002934static struct cfq_io_context *
Jens Axboe4ac845a2008-01-24 08:44:49 +01002935cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002936{
Jens Axboee2d74ac2006-03-28 08:59:01 +02002937 struct cfq_io_context *cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002938 unsigned long flags;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002939
Vasily Tarasov91fac312007-04-25 12:29:51 +02002940 if (unlikely(!ioc))
2941 return NULL;
2942
Jens Axboed6de8be2008-05-28 14:46:59 +02002943 rcu_read_lock();
2944
Jens Axboe597bc482007-04-24 21:23:53 +02002945 /*
2946 * we maintain a last-hit cache, to avoid browsing over the tree
2947 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01002948 cic = rcu_dereference(ioc->ioc_data);
Jens Axboed6de8be2008-05-28 14:46:59 +02002949 if (cic && cic->key == cfqd) {
2950 rcu_read_unlock();
Jens Axboe597bc482007-04-24 21:23:53 +02002951 return cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002952 }
Jens Axboe597bc482007-04-24 21:23:53 +02002953
Jens Axboe4ac845a2008-01-24 08:44:49 +01002954 do {
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002955 cic = radix_tree_lookup(&ioc->radix_root, cfqd->cic_index);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002956 rcu_read_unlock();
2957 if (!cic)
2958 break;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002959 if (unlikely(cic->key != cfqd)) {
Jens Axboe4ac845a2008-01-24 08:44:49 +01002960 cfq_drop_dead_cic(cfqd, ioc, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002961 rcu_read_lock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01002962 continue;
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002963 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002964
Jens Axboed6de8be2008-05-28 14:46:59 +02002965 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002966 rcu_assign_pointer(ioc->ioc_data, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002967 spin_unlock_irqrestore(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002968 break;
2969 } while (1);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002970
Jens Axboe4ac845a2008-01-24 08:44:49 +01002971 return cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002972}
2973
Jens Axboe4ac845a2008-01-24 08:44:49 +01002974/*
2975 * Add cic into ioc, using cfqd as the search key. This enables us to lookup
2976 * the process specific cfq io context when entered from the block layer.
2977 * Also adds the cic to a per-cfqd list, used when this queue is removed.
2978 */
Jens Axboefebffd62008-01-28 13:19:43 +01002979static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
2980 struct cfq_io_context *cic, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002981{
Jens Axboe0261d682006-10-30 19:07:48 +01002982 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002983 int ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002984
Jens Axboe4ac845a2008-01-24 08:44:49 +01002985 ret = radix_tree_preload(gfp_mask);
2986 if (!ret) {
2987 cic->ioc = ioc;
2988 cic->key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002989
Jens Axboe4ac845a2008-01-24 08:44:49 +01002990 spin_lock_irqsave(&ioc->lock, flags);
2991 ret = radix_tree_insert(&ioc->radix_root,
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002992 cfqd->cic_index, cic);
Jens Axboeffc4e752008-02-19 10:02:29 +01002993 if (!ret)
2994 hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002995 spin_unlock_irqrestore(&ioc->lock, flags);
2996
2997 radix_tree_preload_end();
2998
2999 if (!ret) {
3000 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3001 list_add(&cic->queue_list, &cfqd->cic_list);
3002 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02003003 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003004 }
3005
Jens Axboe4ac845a2008-01-24 08:44:49 +01003006 if (ret)
3007 printk(KERN_ERR "cfq: cic link failed!\n");
Jens Axboefc463792006-08-29 09:05:44 +02003008
Jens Axboe4ac845a2008-01-24 08:44:49 +01003009 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003010}
3011
Jens Axboe22e2c502005-06-27 10:55:12 +02003012/*
3013 * Setup general io context and cfq io context. There can be several cfq
3014 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02003015 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02003016 */
3017static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02003018cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
Jens Axboe22e2c502005-06-27 10:55:12 +02003020 struct io_context *ioc = NULL;
3021 struct cfq_io_context *cic;
3022
3023 might_sleep_if(gfp_mask & __GFP_WAIT);
3024
Jens Axboeb5deef92006-07-19 23:39:40 +02003025 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02003026 if (!ioc)
3027 return NULL;
3028
Jens Axboe4ac845a2008-01-24 08:44:49 +01003029 cic = cfq_cic_lookup(cfqd, ioc);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003030 if (cic)
3031 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02003032
Jens Axboee2d74ac2006-03-28 08:59:01 +02003033 cic = cfq_alloc_io_context(cfqd, gfp_mask);
3034 if (cic == NULL)
3035 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02003036
Jens Axboe4ac845a2008-01-24 08:44:49 +01003037 if (cfq_cic_link(cfqd, ioc, cic, gfp_mask))
3038 goto err_free;
3039
Jens Axboe22e2c502005-06-27 10:55:12 +02003040out:
Jens Axboefc463792006-08-29 09:05:44 +02003041 smp_read_barrier_depends();
3042 if (unlikely(ioc->ioprio_changed))
3043 cfq_ioc_set_ioprio(ioc);
3044
Vivek Goyal246103332009-12-03 12:59:51 -05003045#ifdef CONFIG_CFQ_GROUP_IOSCHED
3046 if (unlikely(ioc->cgroup_changed))
3047 cfq_ioc_set_cgroup(ioc);
3048#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02003049 return cic;
Jens Axboe4ac845a2008-01-24 08:44:49 +01003050err_free:
3051 cfq_cic_free(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02003052err:
3053 put_io_context(ioc);
3054 return NULL;
3055}
3056
3057static void
3058cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
3059{
Jens Axboeaaf12282007-01-19 11:30:16 +11003060 unsigned long elapsed = jiffies - cic->last_end_request;
3061 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02003062
3063 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
3064 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
3065 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
3066}
3067
Jens Axboe206dc692006-03-28 13:03:44 +02003068static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003069cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02003070 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02003071{
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003072 sector_t sdist = 0;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003073 sector_t n_sec = blk_rq_sectors(rq);
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003074 if (cfqq->last_request_pos) {
3075 if (cfqq->last_request_pos < blk_rq_pos(rq))
3076 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
3077 else
3078 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
3079 }
Jens Axboe206dc692006-03-28 13:03:44 +02003080
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003081 cfqq->seek_history <<= 1;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003082 if (blk_queue_nonrot(cfqd->queue))
3083 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
3084 else
3085 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
Jens Axboe206dc692006-03-28 13:03:44 +02003086}
Jens Axboe22e2c502005-06-27 10:55:12 +02003087
3088/*
3089 * Disable idle window if the process thinks too long or seeks so much that
3090 * it doesn't matter
3091 */
3092static void
3093cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3094 struct cfq_io_context *cic)
3095{
Jens Axboe7b679132008-05-30 12:23:07 +02003096 int old_idle, enable_idle;
Jens Axboe1be92f22007-04-19 14:32:26 +02003097
Jens Axboe08717142008-01-28 11:38:15 +01003098 /*
3099 * Don't idle for async or idle io prio class
3100 */
3101 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f22007-04-19 14:32:26 +02003102 return;
3103
Jens Axboec265a7f2008-06-26 13:49:33 +02003104 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003105
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003106 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3107 cfq_mark_cfqq_deep(cfqq);
3108
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003109 if (cfqq->next_rq && (cfqq->next_rq->cmd_flags & REQ_NOIDLE))
3110 enable_idle = 0;
3111 else if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003112 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02003113 enable_idle = 0;
3114 else if (sample_valid(cic->ttime_samples)) {
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003115 if (cic->ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003116 enable_idle = 0;
3117 else
3118 enable_idle = 1;
3119 }
3120
Jens Axboe7b679132008-05-30 12:23:07 +02003121 if (old_idle != enable_idle) {
3122 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3123 if (enable_idle)
3124 cfq_mark_cfqq_idle_window(cfqq);
3125 else
3126 cfq_clear_cfqq_idle_window(cfqq);
3127 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003128}
3129
Jens Axboe22e2c502005-06-27 10:55:12 +02003130/*
3131 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3132 * no or if we aren't sure, a 1 will cause a preempt.
3133 */
Jens Axboea6151c32009-10-07 20:02:57 +02003134static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02003135cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02003136 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003137{
Jens Axboe6d048f52007-04-25 12:44:27 +02003138 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003139
Jens Axboe6d048f52007-04-25 12:44:27 +02003140 cfqq = cfqd->active_queue;
3141 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02003142 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003143
Jens Axboe6d048f52007-04-25 12:44:27 +02003144 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003145 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003146
3147 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003148 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003149
Jens Axboe22e2c502005-06-27 10:55:12 +02003150 /*
Divyesh Shah875feb62010-01-06 18:58:20 -08003151 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3152 */
3153 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3154 return false;
3155
3156 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02003157 * if the new request is sync, but the currently running queue is
3158 * not, let the sync request have priority.
3159 */
Jens Axboe5e705372006-07-13 12:39:25 +02003160 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003161 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003162
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003163 if (new_cfqq->cfqg != cfqq->cfqg)
3164 return false;
3165
3166 if (cfq_slice_used(cfqq))
3167 return true;
3168
3169 /* Allow preemption only if we are idling on sync-noidle tree */
3170 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
3171 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3172 new_cfqq->service_tree->count == 2 &&
3173 RB_EMPTY_ROOT(&cfqq->sort_list))
3174 return true;
3175
Jens Axboe374f84a2006-07-23 01:42:19 +02003176 /*
3177 * So both queues are sync. Let the new request get disk time if
3178 * it's a metadata request and the current queue is doing regular IO.
3179 */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003180 if ((rq->cmd_flags & REQ_META) && !cfqq->meta_pending)
Jens Axboee6ec4fe2009-11-03 20:21:35 +01003181 return true;
Jens Axboe22e2c502005-06-27 10:55:12 +02003182
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003183 /*
3184 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3185 */
3186 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003187 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003188
Jens Axboe1e3335d2007-02-14 19:59:49 +01003189 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003190 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003191
3192 /*
3193 * if this request is as-good as one we would expect from the
3194 * current cfqq, let it preempt
3195 */
Shaohua Lie9ce3352010-03-19 08:03:04 +01003196 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02003197 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003198
Jens Axboea6151c32009-10-07 20:02:57 +02003199 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003200}
3201
3202/*
3203 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3204 * let it have half of its nominal slice.
3205 */
3206static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3207{
Jens Axboe7b679132008-05-30 12:23:07 +02003208 cfq_log_cfqq(cfqd, cfqq, "preempt");
Vivek Goyale5ff0822010-04-26 19:25:11 +02003209 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003210
Jens Axboebf572252006-07-19 20:29:12 +02003211 /*
3212 * Put the new queue at the front of the of the current list,
3213 * so we know that it will be selected next.
3214 */
3215 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02003216
3217 cfq_service_tree_add(cfqd, cfqq, 1);
Jens Axboebf572252006-07-19 20:29:12 +02003218
Jens Axboe44f7c162007-01-19 11:51:58 +11003219 cfqq->slice_end = 0;
3220 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003221}
3222
3223/*
Jens Axboe5e705372006-07-13 12:39:25 +02003224 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02003225 * something we should do about it
3226 */
3227static void
Jens Axboe5e705372006-07-13 12:39:25 +02003228cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3229 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003230{
Jens Axboe5e705372006-07-13 12:39:25 +02003231 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003232
Aaron Carroll45333d52008-08-26 15:52:36 +02003233 cfqd->rq_queued++;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003234 if (rq->cmd_flags & REQ_META)
Jens Axboe374f84a2006-07-23 01:42:19 +02003235 cfqq->meta_pending++;
3236
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003237 cfq_update_io_thinktime(cfqd, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003238 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003239 cfq_update_idle_window(cfqd, cfqq, cic);
3240
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003241 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003242
3243 if (cfqq == cfqd->active_queue) {
3244 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003245 * Remember that we saw a request from this process, but
3246 * don't start queuing just yet. Otherwise we risk seeing lots
3247 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003248 * and merging. If the request is already larger than a single
3249 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003250 * merging is already done. Ditto for a busy system that
3251 * has other work pending, don't risk delaying until the
3252 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003253 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003254 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003255 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3256 cfqd->busy_queues > 1) {
Divyesh Shah812df482010-04-08 21:15:35 -07003257 cfq_del_timer(cfqd, cfqq);
Gui Jianfeng554554f2009-12-10 09:38:39 +01003258 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalbf7919372009-12-03 12:59:37 -05003259 __blk_run_queue(cfqd->queue);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003260 } else {
Vivek Goyale98ef892010-06-18 10:39:47 -04003261 cfq_blkiocg_update_idle_time_stats(
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003262 &cfqq->cfqg->blkg);
Vivek Goyalbf7919372009-12-03 12:59:37 -05003263 cfq_mark_cfqq_must_dispatch(cfqq);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003264 }
Jens Axboed6ceb252009-04-14 14:18:16 +02003265 }
Jens Axboe5e705372006-07-13 12:39:25 +02003266 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003267 /*
3268 * not the active queue - expire current slice if it is
3269 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003270 * has some old slice time left and is of higher priority or
3271 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003272 */
3273 cfq_preempt_queue(cfqd, cfqq);
Tejun Heoa7f55792009-04-23 11:05:17 +09003274 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003275 }
3276}
3277
Jens Axboe165125e2007-07-24 09:28:11 +02003278static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003279{
Jens Axboeb4878f22005-10-20 16:42:29 +02003280 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003281 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003282
Jens Axboe7b679132008-05-30 12:23:07 +02003283 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Jens Axboefd0928d2008-01-24 08:52:45 +01003284 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
Jens Axboe30996f42009-10-05 11:03:39 +02003286 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02003287 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003288 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04003289 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -07003290 &cfqd->serving_group->blkg, rq_data_dir(rq),
3291 rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02003292 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293}
3294
Aaron Carroll45333d52008-08-26 15:52:36 +02003295/*
3296 * Update hw_tag based on peak queue depth over 50 samples under
3297 * sufficient load.
3298 */
3299static void cfq_update_hw_tag(struct cfq_data *cfqd)
3300{
Shaohua Li1a1238a2009-10-27 08:46:23 +01003301 struct cfq_queue *cfqq = cfqd->active_queue;
3302
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003303 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
3304 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003305
3306 if (cfqd->hw_tag == 1)
3307 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02003308
3309 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003310 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003311 return;
3312
Shaohua Li1a1238a2009-10-27 08:46:23 +01003313 /*
3314 * If active queue hasn't enough requests and can idle, cfq might not
3315 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3316 * case
3317 */
3318 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3319 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003320 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
Shaohua Li1a1238a2009-10-27 08:46:23 +01003321 return;
3322
Aaron Carroll45333d52008-08-26 15:52:36 +02003323 if (cfqd->hw_tag_samples++ < 50)
3324 return;
3325
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003326 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003327 cfqd->hw_tag = 1;
3328 else
3329 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02003330}
3331
Vivek Goyal7667aa02009-12-08 17:52:58 -05003332static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3333{
3334 struct cfq_io_context *cic = cfqd->active_cic;
3335
3336 /* If there are other queues in the group, don't wait */
3337 if (cfqq->cfqg->nr_cfqq > 1)
3338 return false;
3339
3340 if (cfq_slice_used(cfqq))
3341 return true;
3342
3343 /* if slice left is less than think time, wait busy */
3344 if (cic && sample_valid(cic->ttime_samples)
3345 && (cfqq->slice_end - jiffies < cic->ttime_mean))
3346 return true;
3347
3348 /*
3349 * If think times is less than a jiffy than ttime_mean=0 and above
3350 * will not be true. It might happen that slice has not expired yet
3351 * but will expire soon (4-5 ns) during select_queue(). To cover the
3352 * case where think time is less than a jiffy, mark the queue wait
3353 * busy if only 1 jiffy is left in the slice.
3354 */
3355 if (cfqq->slice_end - jiffies == 1)
3356 return true;
3357
3358 return false;
3359}
3360
Jens Axboe165125e2007-07-24 09:28:11 +02003361static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362{
Jens Axboe5e705372006-07-13 12:39:25 +02003363 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003364 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02003365 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003366 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
Jens Axboeb4878f22005-10-20 16:42:29 +02003368 now = jiffies;
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003369 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
3370 !!(rq->cmd_flags & REQ_NOIDLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Aaron Carroll45333d52008-08-26 15:52:36 +02003372 cfq_update_hw_tag(cfqd);
3373
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003374 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02003375 WARN_ON(!cfqq->dispatched);
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003376 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02003377 cfqq->dispatched--;
Vivek Goyale98ef892010-06-18 10:39:47 -04003378 cfq_blkiocg_update_completion_stats(&cfqq->cfqg->blkg,
3379 rq_start_time_ns(rq), rq_io_start_time_ns(rq),
3380 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003382 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
Jens Axboe3ed9a292007-04-23 08:33:33 +02003383
Vivek Goyal365722b2009-10-03 15:21:27 +02003384 if (sync) {
Jens Axboe5e705372006-07-13 12:39:25 +02003385 RQ_CIC(rq)->last_end_request = now;
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003386 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3387 cfqd->last_delayed_sync = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02003388 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003389
3390 /*
3391 * If this is the active queue, check if it needs to be expired,
3392 * or if we want to idle in case it has no pending requests.
3393 */
3394 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02003395 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3396
Jens Axboe44f7c162007-01-19 11:51:58 +11003397 if (cfq_cfqq_slice_new(cfqq)) {
3398 cfq_set_prio_slice(cfqd, cfqq);
3399 cfq_clear_cfqq_slice_new(cfqq);
3400 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05003401
3402 /*
Vivek Goyal7667aa02009-12-08 17:52:58 -05003403 * Should we wait for next request to come in before we expire
3404 * the queue.
Vivek Goyalf75edf22009-12-03 12:59:53 -05003405 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05003406 if (cfq_should_wait_busy(cfqd, cfqq)) {
Vivek Goyalf75edf22009-12-03 12:59:53 -05003407 cfqq->slice_end = jiffies + cfqd->cfq_slice_idle;
3408 cfq_mark_cfqq_wait_busy(cfqq);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01003409 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
Vivek Goyalf75edf22009-12-03 12:59:53 -05003410 }
3411
Jens Axboea36e71f2009-04-15 12:15:11 +02003412 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003413 * Idling is not enabled on:
3414 * - expired queues
3415 * - idle-priority queues
3416 * - async queues
3417 * - queues with still some requests queued
3418 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02003419 */
Jens Axboe08717142008-01-28 11:38:15 +01003420 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Vivek Goyale5ff0822010-04-26 19:25:11 +02003421 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003422 else if (sync && cfqq_empty &&
3423 !cfq_close_cooperator(cfqd, cfqq)) {
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003424 cfq_arm_slice_timer(cfqd);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003425 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003426 }
Jens Axboe6d048f52007-04-25 12:44:27 +02003427
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003428 if (!cfqd->rq_in_driver)
Jens Axboe23e018a2009-10-05 08:52:35 +02003429 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430}
3431
Jens Axboe22e2c502005-06-27 10:55:12 +02003432/*
3433 * we temporarily boost lower priority queues if they are holding fs exclusive
3434 * resources. they are boosted to normal prio (CLASS_BE/4)
3435 */
3436static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437{
Jens Axboe22e2c502005-06-27 10:55:12 +02003438 if (has_fs_excl()) {
3439 /*
3440 * boost idle prio on transactions that would lock out other
3441 * users of the filesystem
3442 */
3443 if (cfq_class_idle(cfqq))
3444 cfqq->ioprio_class = IOPRIO_CLASS_BE;
3445 if (cfqq->ioprio > IOPRIO_NORM)
3446 cfqq->ioprio = IOPRIO_NORM;
3447 } else {
3448 /*
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003449 * unboost the queue (if needed)
Jens Axboe22e2c502005-06-27 10:55:12 +02003450 */
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003451 cfqq->ioprio_class = cfqq->org_ioprio_class;
3452 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003454}
3455
Jens Axboe89850f72006-07-22 16:48:31 +02003456static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003457{
Jens Axboe1b379d82009-08-11 08:26:11 +02003458 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003459 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003460 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003461 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003462
3463 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003464}
3465
Jens Axboe165125e2007-07-24 09:28:11 +02003466static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003467{
3468 struct cfq_data *cfqd = q->elevator->elevator_data;
3469 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02003470 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003471 struct cfq_queue *cfqq;
3472
3473 /*
3474 * don't force setup of a queue from here, as a call to may_queue
3475 * does not necessarily imply that a request actually will be queued.
3476 * so just lookup a possibly existing queue, or return 'may queue'
3477 * if that fails
3478 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003479 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003480 if (!cic)
3481 return ELV_MQUEUE_MAY;
3482
Jens Axboeb0b78f82009-04-08 10:56:08 +02003483 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003484 if (cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003485 cfq_init_prio_data(cfqq, cic->ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02003486 cfq_prio_boost(cfqq);
3487
Jens Axboe89850f72006-07-22 16:48:31 +02003488 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003489 }
3490
3491 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492}
3493
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494/*
3495 * queue lock held here
3496 */
Jens Axboebb37b942006-12-01 10:42:33 +01003497static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498{
Jens Axboe5e705372006-07-13 12:39:25 +02003499 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
Jens Axboe5e705372006-07-13 12:39:25 +02003501 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003502 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503
Jens Axboe22e2c502005-06-27 10:55:12 +02003504 BUG_ON(!cfqq->allocated[rw]);
3505 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
Jens Axboe5e705372006-07-13 12:39:25 +02003507 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02003510 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003512 /* Put down rq reference on cfqg */
3513 cfq_put_cfqg(RQ_CFQG(rq));
3514 rq->elevator_private3 = NULL;
3515
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 cfq_put_queue(cfqq);
3517 }
3518}
3519
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003520static struct cfq_queue *
3521cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic,
3522 struct cfq_queue *cfqq)
3523{
3524 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3525 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003526 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003527 cfq_put_queue(cfqq);
3528 return cic_to_cfqq(cic, 1);
3529}
3530
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003531/*
3532 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3533 * was the last process referring to said cfqq.
3534 */
3535static struct cfq_queue *
3536split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq)
3537{
3538 if (cfqq_process_refs(cfqq) == 1) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003539 cfqq->pid = current->pid;
3540 cfq_clear_cfqq_coop(cfqq);
Shaohua Liae54abe2010-02-05 13:11:45 +01003541 cfq_clear_cfqq_split_coop(cfqq);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003542 return cfqq;
3543 }
3544
3545 cic_set_cfqq(cic, NULL, 1);
Shaohua Lid02a2c02010-05-25 10:16:53 +02003546
3547 cfq_put_cooperator(cfqq);
3548
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003549 cfq_put_queue(cfqq);
3550 return NULL;
3551}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003553 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003555static int
Jens Axboe165125e2007-07-24 09:28:11 +02003556cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557{
3558 struct cfq_data *cfqd = q->elevator->elevator_data;
3559 struct cfq_io_context *cic;
3560 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003561 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003562 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 unsigned long flags;
3564
3565 might_sleep_if(gfp_mask & __GFP_WAIT);
3566
Jens Axboee2d74ac2006-03-28 08:59:01 +02003567 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02003568
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 spin_lock_irqsave(q->queue_lock, flags);
3570
Jens Axboe22e2c502005-06-27 10:55:12 +02003571 if (!cic)
3572 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003574new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003575 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003576 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003577 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003578 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003579 } else {
3580 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003581 * If the queue was seeky for too long, break it apart.
3582 */
Shaohua Liae54abe2010-02-05 13:11:45 +01003583 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003584 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3585 cfqq = split_cfqq(cic, cfqq);
3586 if (!cfqq)
3587 goto new_queue;
3588 }
3589
3590 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003591 * Check to see if this queue is scheduled to merge with
3592 * another, closely cooperating queue. The merging of
3593 * queues happens here as it must be done in process context.
3594 * The reference on new_cfqq was taken in merge_cfqqs.
3595 */
3596 if (cfqq->new_cfqq)
3597 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
3600 cfqq->allocated[rw]++;
Jens Axboe22e2c502005-06-27 10:55:12 +02003601 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02003602
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 spin_unlock_irqrestore(q->queue_lock, flags);
3604
Jens Axboe5e705372006-07-13 12:39:25 +02003605 rq->elevator_private = cic;
3606 rq->elevator_private2 = cfqq;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003607 rq->elevator_private3 = cfq_ref_get_cfqg(cfqq->cfqg);
Jens Axboe5e705372006-07-13 12:39:25 +02003608 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02003609
Jens Axboe22e2c502005-06-27 10:55:12 +02003610queue_fail:
3611 if (cic)
3612 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02003613
Jens Axboe23e018a2009-10-05 08:52:35 +02003614 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 spin_unlock_irqrestore(q->queue_lock, flags);
Jens Axboe7b679132008-05-30 12:23:07 +02003616 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 return 1;
3618}
3619
David Howells65f27f32006-11-22 14:55:48 +00003620static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003621{
David Howells65f27f32006-11-22 14:55:48 +00003622 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003623 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003624 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003625
Jens Axboe40bb54d2009-04-15 12:11:10 +02003626 spin_lock_irq(q->queue_lock);
Tejun Heoa7f55792009-04-23 11:05:17 +09003627 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003628 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003629}
3630
3631/*
3632 * Timer running if the active_queue is currently idling inside its time slice
3633 */
3634static void cfq_idle_slice_timer(unsigned long data)
3635{
3636 struct cfq_data *cfqd = (struct cfq_data *) data;
3637 struct cfq_queue *cfqq;
3638 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003639 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003640
Jens Axboe7b679132008-05-30 12:23:07 +02003641 cfq_log(cfqd, "idle timer fired");
3642
Jens Axboe22e2c502005-06-27 10:55:12 +02003643 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3644
Jens Axboefe094d92008-01-31 13:08:54 +01003645 cfqq = cfqd->active_queue;
3646 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003647 timed_out = 0;
3648
Jens Axboe22e2c502005-06-27 10:55:12 +02003649 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003650 * We saw a request before the queue expired, let it through
3651 */
3652 if (cfq_cfqq_must_dispatch(cfqq))
3653 goto out_kick;
3654
3655 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003656 * expired
3657 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003658 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003659 goto expire;
3660
3661 /*
3662 * only expire and reinvoke request handler, if there are
3663 * other queues with pending requests
3664 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003665 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003666 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003667
3668 /*
3669 * not expired and it has a request pending, let it dispatch
3670 */
Jens Axboe75e50982009-04-07 08:56:14 +02003671 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003672 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003673
3674 /*
3675 * Queue depth flag is reset only when the idle didn't succeed
3676 */
3677 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003678 }
3679expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02003680 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003681out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003682 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003683out_cont:
3684 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3685}
3686
Jens Axboe3b181522005-06-27 10:56:24 +02003687static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3688{
3689 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003690 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003691}
Jens Axboe22e2c502005-06-27 10:55:12 +02003692
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003693static void cfq_put_async_queues(struct cfq_data *cfqd)
3694{
3695 int i;
3696
3697 for (i = 0; i < IOPRIO_BE_NR; i++) {
3698 if (cfqd->async_cfqq[0][i])
3699 cfq_put_queue(cfqd->async_cfqq[0][i]);
3700 if (cfqd->async_cfqq[1][i])
3701 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003702 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003703
3704 if (cfqd->async_idle_cfqq)
3705 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003706}
3707
Jens Axboebb729bc2009-12-06 09:54:19 +01003708static void cfq_cfqd_free(struct rcu_head *head)
3709{
3710 kfree(container_of(head, struct cfq_data, rcu));
3711}
3712
Jens Axboeb374d182008-10-31 10:05:07 +01003713static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714{
Jens Axboe22e2c502005-06-27 10:55:12 +02003715 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003716 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003717
Jens Axboe3b181522005-06-27 10:56:24 +02003718 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003719
Al Virod9ff4182006-03-18 13:51:22 -05003720 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003721
Al Virod9ff4182006-03-18 13:51:22 -05003722 if (cfqd->active_queue)
Vivek Goyale5ff0822010-04-26 19:25:11 +02003723 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003724
3725 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05003726 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
3727 struct cfq_io_context,
3728 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02003729
3730 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05003731 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003732
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003733 cfq_put_async_queues(cfqd);
Vivek Goyalb1c35762009-12-03 12:59:47 -05003734 cfq_release_cfq_groups(cfqd);
Vivek Goyale98ef892010-06-18 10:39:47 -04003735 cfq_blkiocg_del_blkio_group(&cfqd->root_group.blkg);
Jens Axboe15c31be2007-07-10 13:43:25 +02003736
Al Virod9ff4182006-03-18 13:51:22 -05003737 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05003738
3739 cfq_shutdown_timer_wq(cfqd);
3740
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003741 spin_lock(&cic_index_lock);
3742 ida_remove(&cic_index_ida, cfqd->cic_index);
3743 spin_unlock(&cic_index_lock);
3744
Vivek Goyalb1c35762009-12-03 12:59:47 -05003745 /* Wait for cfqg->blkg->key accessors to exit their grace periods. */
Jens Axboebb729bc2009-12-06 09:54:19 +01003746 call_rcu(&cfqd->rcu, cfq_cfqd_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747}
3748
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003749static int cfq_alloc_cic_index(void)
3750{
3751 int index, error;
3752
3753 do {
3754 if (!ida_pre_get(&cic_index_ida, GFP_KERNEL))
3755 return -ENOMEM;
3756
3757 spin_lock(&cic_index_lock);
3758 error = ida_get_new(&cic_index_ida, &index);
3759 spin_unlock(&cic_index_lock);
3760 if (error && error != -EAGAIN)
3761 return error;
3762 } while (error);
3763
3764 return index;
3765}
3766
Jens Axboe165125e2007-07-24 09:28:11 +02003767static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768{
3769 struct cfq_data *cfqd;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003770 int i, j;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003771 struct cfq_group *cfqg;
Vivek Goyal615f0252009-12-03 12:59:39 -05003772 struct cfq_rb_root *st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003774 i = cfq_alloc_cic_index();
3775 if (i < 0)
3776 return NULL;
3777
Christoph Lameter94f60302007-07-17 04:03:29 -07003778 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02003780 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003782 cfqd->cic_index = i;
3783
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003784 /* Init root service tree */
3785 cfqd->grp_service_tree = CFQ_RB_ROOT;
3786
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003787 /* Init root group */
3788 cfqg = &cfqd->root_group;
Vivek Goyal615f0252009-12-03 12:59:39 -05003789 for_each_cfqg_st(cfqg, i, j, st)
3790 *st = CFQ_RB_ROOT;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003791 RB_CLEAR_NODE(&cfqg->rb_node);
Jens Axboe26a2ac02009-04-23 12:13:27 +02003792
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003793 /* Give preference to root group over other groups */
3794 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3795
Vivek Goyal25fb5162009-12-03 12:59:46 -05003796#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyalb1c35762009-12-03 12:59:47 -05003797 /*
3798 * Take a reference to root group which we never drop. This is just
3799 * to make sure that cfq_put_cfqg() does not try to kfree root group
3800 */
3801 atomic_set(&cfqg->ref, 1);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003802 rcu_read_lock();
Vivek Goyale98ef892010-06-18 10:39:47 -04003803 cfq_blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg,
3804 (void *)cfqd, 0);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003805 rcu_read_unlock();
Vivek Goyal25fb5162009-12-03 12:59:46 -05003806#endif
Jens Axboe26a2ac02009-04-23 12:13:27 +02003807 /*
3808 * Not strictly needed (since RB_ROOT just clears the node and we
3809 * zeroed cfqd on alloc), but better be safe in case someone decides
3810 * to add magic to the rb code
3811 */
3812 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3813 cfqd->prio_trees[i] = RB_ROOT;
3814
Jens Axboe6118b702009-06-30 09:34:12 +02003815 /*
3816 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3817 * Grab a permanent reference to it, so that the normal code flow
3818 * will not attempt to free it.
3819 */
3820 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
3821 atomic_inc(&cfqd->oom_cfqq.ref);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003822 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
Jens Axboe6118b702009-06-30 09:34:12 +02003823
Al Virod9ff4182006-03-18 13:51:22 -05003824 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
Jens Axboe22e2c502005-06-27 10:55:12 +02003828 init_timer(&cfqd->idle_slice_timer);
3829 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3830 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3831
Jens Axboe23e018a2009-10-05 08:52:35 +02003832 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003833
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003835 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3836 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 cfqd->cfq_back_max = cfq_back_max;
3838 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003839 cfqd->cfq_slice[0] = cfq_slice_async;
3840 cfqd->cfq_slice[1] = cfq_slice_sync;
3841 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3842 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003843 cfqd->cfq_latency = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05003844 cfqd->cfq_group_isolation = 0;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003845 cfqd->hw_tag = -1;
Corrado Zoccoloedc71132009-12-09 20:56:04 +01003846 /*
3847 * we optimistically start assuming sync ops weren't delayed in last
3848 * second, in order to have larger depth for async operations.
3849 */
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003850 cfqd->last_delayed_sync = jiffies - HZ;
Jens Axboebc1c1162006-06-08 08:49:06 +02003851 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852}
3853
3854static void cfq_slab_kill(void)
3855{
Jens Axboed6de8be2008-05-28 14:46:59 +02003856 /*
3857 * Caller already ensured that pending RCU callbacks are completed,
3858 * so we should have no busy allocations at this point.
3859 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 if (cfq_pool)
3861 kmem_cache_destroy(cfq_pool);
3862 if (cfq_ioc_pool)
3863 kmem_cache_destroy(cfq_ioc_pool);
3864}
3865
3866static int __init cfq_slab_setup(void)
3867{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003868 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 if (!cfq_pool)
3870 goto fail;
3871
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02003872 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 if (!cfq_ioc_pool)
3874 goto fail;
3875
3876 return 0;
3877fail:
3878 cfq_slab_kill();
3879 return -ENOMEM;
3880}
3881
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882/*
3883 * sysfs parts below -->
3884 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885static ssize_t
3886cfq_var_show(unsigned int var, char *page)
3887{
3888 return sprintf(page, "%d\n", var);
3889}
3890
3891static ssize_t
3892cfq_var_store(unsigned int *var, const char *page, size_t count)
3893{
3894 char *p = (char *) page;
3895
3896 *var = simple_strtoul(p, &p, 10);
3897 return count;
3898}
3899
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003901static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003903 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 unsigned int __data = __VAR; \
3905 if (__CONV) \
3906 __data = jiffies_to_msecs(__data); \
3907 return cfq_var_show(__data, (page)); \
3908}
3909SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003910SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
3911SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05003912SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
3913SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003914SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
3915SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
3916SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
3917SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003918SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Vivek Goyalae30c282009-12-03 12:59:55 -05003919SHOW_FUNCTION(cfq_group_isolation_show, cfqd->cfq_group_isolation, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920#undef SHOW_FUNCTION
3921
3922#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003923static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003925 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 unsigned int __data; \
3927 int ret = cfq_var_store(&__data, (page), count); \
3928 if (__data < (MIN)) \
3929 __data = (MIN); \
3930 else if (__data > (MAX)) \
3931 __data = (MAX); \
3932 if (__CONV) \
3933 *(__PTR) = msecs_to_jiffies(__data); \
3934 else \
3935 *(__PTR) = __data; \
3936 return ret; \
3937}
3938STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003939STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
3940 UINT_MAX, 1);
3941STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
3942 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05003943STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003944STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
3945 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003946STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
3947STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
3948STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01003949STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
3950 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003951STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Vivek Goyalae30c282009-12-03 12:59:55 -05003952STORE_FUNCTION(cfq_group_isolation_store, &cfqd->cfq_group_isolation, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953#undef STORE_FUNCTION
3954
Al Viroe572ec72006-03-18 22:27:18 -05003955#define CFQ_ATTR(name) \
3956 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02003957
Al Viroe572ec72006-03-18 22:27:18 -05003958static struct elv_fs_entry cfq_attrs[] = {
3959 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05003960 CFQ_ATTR(fifo_expire_sync),
3961 CFQ_ATTR(fifo_expire_async),
3962 CFQ_ATTR(back_seek_max),
3963 CFQ_ATTR(back_seek_penalty),
3964 CFQ_ATTR(slice_sync),
3965 CFQ_ATTR(slice_async),
3966 CFQ_ATTR(slice_async_rq),
3967 CFQ_ATTR(slice_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02003968 CFQ_ATTR(low_latency),
Vivek Goyalae30c282009-12-03 12:59:55 -05003969 CFQ_ATTR(group_isolation),
Al Viroe572ec72006-03-18 22:27:18 -05003970 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971};
3972
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973static struct elevator_type iosched_cfq = {
3974 .ops = {
3975 .elevator_merge_fn = cfq_merge,
3976 .elevator_merged_fn = cfq_merged_request,
3977 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01003978 .elevator_allow_merge_fn = cfq_allow_merge,
Divyesh Shah812d4022010-04-08 21:14:23 -07003979 .elevator_bio_merged_fn = cfq_bio_merged,
Jens Axboeb4878f22005-10-20 16:42:29 +02003980 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02003982 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 .elevator_deactivate_req_fn = cfq_deactivate_request,
3984 .elevator_queue_empty_fn = cfq_queue_empty,
3985 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02003986 .elevator_former_req_fn = elv_rb_former_request,
3987 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 .elevator_set_req_fn = cfq_set_request,
3989 .elevator_put_req_fn = cfq_put_request,
3990 .elevator_may_queue_fn = cfq_may_queue,
3991 .elevator_init_fn = cfq_init_queue,
3992 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02003993 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 },
Al Viro3d1ab402006-03-18 18:35:43 -05003995 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 .elevator_name = "cfq",
3997 .elevator_owner = THIS_MODULE,
3998};
3999
Vivek Goyal3e252062009-12-04 10:36:42 -05004000#ifdef CONFIG_CFQ_GROUP_IOSCHED
4001static struct blkio_policy_type blkio_policy_cfq = {
4002 .ops = {
4003 .blkio_unlink_group_fn = cfq_unlink_blkio_group,
4004 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
4005 },
Vivek Goyal062a6442010-09-15 17:06:33 -04004006 .plid = BLKIO_POLICY_PROP,
Vivek Goyal3e252062009-12-04 10:36:42 -05004007};
4008#else
4009static struct blkio_policy_type blkio_policy_cfq;
4010#endif
4011
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012static int __init cfq_init(void)
4013{
Jens Axboe22e2c502005-06-27 10:55:12 +02004014 /*
4015 * could be 0 on HZ < 1000 setups
4016 */
4017 if (!cfq_slice_async)
4018 cfq_slice_async = 1;
4019 if (!cfq_slice_idle)
4020 cfq_slice_idle = 1;
4021
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 if (cfq_slab_setup())
4023 return -ENOMEM;
4024
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004025 elv_register(&iosched_cfq);
Vivek Goyal3e252062009-12-04 10:36:42 -05004026 blkio_policy_register(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004028 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029}
4030
4031static void __exit cfq_exit(void)
4032{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07004033 DECLARE_COMPLETION_ONSTACK(all_gone);
Vivek Goyal3e252062009-12-04 10:36:42 -05004034 blkio_policy_unregister(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05004036 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02004037 /* ioc_gone's update must be visible before reading ioc_count */
4038 smp_wmb();
Jens Axboed6de8be2008-05-28 14:46:59 +02004039
4040 /*
4041 * this also protects us from entering cfq_slab_kill() with
4042 * pending RCU callbacks
4043 */
Tejun Heo245b2e72009-06-24 15:13:48 +09004044 if (elv_ioc_count_read(cfq_ioc_count))
Jens Axboe9a11b4e2008-05-29 09:32:08 +02004045 wait_for_completion(&all_gone);
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04004046 ida_destroy(&cic_index_ida);
Christoph Hellwig83521d32005-10-30 15:01:39 -08004047 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048}
4049
4050module_init(cfq_init);
4051module_exit(cfq_exit);
4052
4053MODULE_AUTHOR("Jens Axboe");
4054MODULE_LICENSE("GPL");
4055MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");