blob: 3fc6be110c1d7a20bbdc08ae8a76e7507882ac26 [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;
Corrado Zoccolo8e550632009-11-26 10:02:58 +0100219 bool noidle_tree_requires_idle;
Jens Axboea36e71f2009-04-15 12:15:11 +0200220
221 /*
222 * Each priority tree is sorted by next_request position. These
223 * trees are used when determining if two or more queues are
224 * interleaving requests (see cfq_close_cooperator).
225 */
226 struct rb_root prio_trees[CFQ_PRIO_LISTS];
227
Jens Axboe22e2c502005-06-27 10:55:12 +0200228 unsigned int busy_queues;
229
Corrado Zoccolo53c583d2010-02-28 19:45:05 +0100230 int rq_in_driver;
231 int rq_in_flight[2];
Aaron Carroll45333d52008-08-26 15:52:36 +0200232
233 /*
234 * queue-depth detection
235 */
236 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200237 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100238 /*
239 * hw_tag can be
240 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
241 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
242 * 0 => no NCQ
243 */
244 int hw_tag_est_depth;
245 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200246
247 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200248 * idle window management
249 */
250 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200251 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200252
253 struct cfq_queue *active_queue;
254 struct cfq_io_context *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200255
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200256 /*
257 * async queue for each priority case
258 */
259 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
260 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200261
Jens Axboe6d048f52007-04-25 12:44:27 +0200262 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /*
265 * tunables, see top of file
266 */
267 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200268 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 unsigned int cfq_back_penalty;
270 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200271 unsigned int cfq_slice[2];
272 unsigned int cfq_slice_async_rq;
273 unsigned int cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200274 unsigned int cfq_latency;
Vivek Goyalae30c282009-12-03 12:59:55 -0500275 unsigned int cfq_group_isolation;
Al Virod9ff4182006-03-18 13:51:22 -0500276
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400277 unsigned int cic_index;
Al Virod9ff4182006-03-18 13:51:22 -0500278 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Jens Axboe6118b702009-06-30 09:34:12 +0200280 /*
281 * Fallback dummy cfqq for extreme OOM conditions
282 */
283 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200284
Corrado Zoccolo573412b2009-12-06 11:48:52 +0100285 unsigned long last_delayed_sync;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500286
287 /* List of cfq groups being managed on this device*/
288 struct hlist_head cfqg_list;
Jens Axboebb729bc2009-12-06 09:54:19 +0100289 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290};
291
Vivek Goyal25fb5162009-12-03 12:59:46 -0500292static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
293
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500294static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
295 enum wl_prio_t prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -0500296 enum wl_type_t type)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100297{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500298 if (!cfqg)
299 return NULL;
300
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100301 if (prio == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500302 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100303
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500304 return &cfqg->service_trees[prio][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100305}
306
Jens Axboe3b181522005-06-27 10:56:24 +0200307enum cfqq_state_flags {
Jens Axboeb0b8d742007-01-19 11:35:30 +1100308 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
309 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200310 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d742007-01-19 11:35:30 +1100311 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d742007-01-19 11:35:30 +1100312 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
313 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
314 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100315 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200316 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400317 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Shaohua Liae54abe2010-02-05 13:11:45 +0100318 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100319 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Vivek Goyalf75edf22009-12-03 12:59:53 -0500320 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
Jens Axboe3b181522005-06-27 10:56:24 +0200321};
322
323#define CFQ_CFQQ_FNS(name) \
324static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
325{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100326 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200327} \
328static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
329{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100330 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200331} \
332static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
333{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100334 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200335}
336
337CFQ_CFQQ_FNS(on_rr);
338CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200339CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200340CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200341CFQ_CFQQ_FNS(fifo_expire);
342CFQ_CFQQ_FNS(idle_window);
343CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100344CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200345CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200346CFQ_CFQQ_FNS(coop);
Shaohua Liae54abe2010-02-05 13:11:45 +0100347CFQ_CFQQ_FNS(split_coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100348CFQ_CFQQ_FNS(deep);
Vivek Goyalf75edf22009-12-03 12:59:53 -0500349CFQ_CFQQ_FNS(wait_busy);
Jens Axboe3b181522005-06-27 10:56:24 +0200350#undef CFQ_CFQQ_FNS
351
Vivek Goyalafc24d42010-04-26 19:27:56 +0200352#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal2868ef72009-12-03 12:59:48 -0500353#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
354 blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \
355 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
356 blkg_path(&(cfqq)->cfqg->blkg), ##args);
357
358#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \
359 blk_add_trace_msg((cfqd)->queue, "%s " fmt, \
360 blkg_path(&(cfqg)->blkg), ##args); \
361
362#else
Jens Axboe7b679132008-05-30 12:23:07 +0200363#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
364 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500365#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0);
366#endif
Jens Axboe7b679132008-05-30 12:23:07 +0200367#define cfq_log(cfqd, fmt, args...) \
368 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
369
Vivek Goyal615f0252009-12-03 12:59:39 -0500370/* Traverses through cfq group service trees */
371#define for_each_cfqg_st(cfqg, i, j, st) \
372 for (i = 0; i <= IDLE_WORKLOAD; i++) \
373 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
374 : &cfqg->service_tree_idle; \
375 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
376 (i == IDLE_WORKLOAD && j == 0); \
377 j++, st = i < IDLE_WORKLOAD ? \
378 &cfqg->service_trees[i][j]: NULL) \
379
380
Vivek Goyal02b35082010-08-23 12:23:53 +0200381static inline bool iops_mode(struct cfq_data *cfqd)
382{
383 /*
384 * If we are not idling on queues and it is a NCQ drive, parallel
385 * execution of requests is on and measuring time is not possible
386 * in most of the cases until and unless we drive shallower queue
387 * depths and that becomes a performance bottleneck. In such cases
388 * switch to start providing fairness in terms of number of IOs.
389 */
390 if (!cfqd->cfq_slice_idle && cfqd->hw_tag)
391 return true;
392 else
393 return false;
394}
395
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100396static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
397{
398 if (cfq_class_idle(cfqq))
399 return IDLE_WORKLOAD;
400 if (cfq_class_rt(cfqq))
401 return RT_WORKLOAD;
402 return BE_WORKLOAD;
403}
404
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100405
406static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
407{
408 if (!cfq_cfqq_sync(cfqq))
409 return ASYNC_WORKLOAD;
410 if (!cfq_cfqq_idle_window(cfqq))
411 return SYNC_NOIDLE_WORKLOAD;
412 return SYNC_WORKLOAD;
413}
414
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500415static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
416 struct cfq_data *cfqd,
417 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100418{
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500419 if (wl == IDLE_WORKLOAD)
420 return cfqg->service_tree_idle.count;
421
422 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
423 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
424 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100425}
426
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500427static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
428 struct cfq_group *cfqg)
429{
430 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count
431 + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
432}
433
Jens Axboe165125e2007-07-24 09:28:11 +0200434static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200435static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100436 struct io_context *, gfp_t);
Jens Axboe4ac845a2008-01-24 08:44:49 +0100437static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
Vasily Tarasov91fac312007-04-25 12:29:51 +0200438 struct io_context *);
439
440static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200441 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200442{
Jens Axboea6151c32009-10-07 20:02:57 +0200443 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200444}
445
446static inline void cic_set_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200447 struct cfq_queue *cfqq, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200448{
Jens Axboea6151c32009-10-07 20:02:57 +0200449 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200450}
451
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400452#define CIC_DEAD_KEY 1ul
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400453#define CIC_DEAD_INDEX_SHIFT 1
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400454
455static inline void *cfqd_dead_key(struct cfq_data *cfqd)
456{
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400457 return (void *)(cfqd->cic_index << CIC_DEAD_INDEX_SHIFT | CIC_DEAD_KEY);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400458}
459
460static inline struct cfq_data *cic_to_cfqd(struct cfq_io_context *cic)
461{
462 struct cfq_data *cfqd = cic->key;
463
464 if (unlikely((unsigned long) cfqd & CIC_DEAD_KEY))
465 return NULL;
466
467 return cfqd;
468}
469
Vasily Tarasov91fac312007-04-25 12:29:51 +0200470/*
471 * We regard a request as SYNC, if it's either a read or has the SYNC bit
472 * set (in which case it could also be direct WRITE).
473 */
Jens Axboea6151c32009-10-07 20:02:57 +0200474static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200475{
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200476 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200477}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700480 * scheduler run of queue, if there are requests pending and no one in the
481 * driver that will restart queueing
482 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200483static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700484{
Jens Axboe7b679132008-05-30 12:23:07 +0200485 if (cfqd->busy_queues) {
486 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200487 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200488 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700489}
490
Jens Axboe165125e2007-07-24 09:28:11 +0200491static int cfq_queue_empty(struct request_queue *q)
Andrew Morton99f95e52005-06-27 20:14:05 -0700492{
493 struct cfq_data *cfqd = q->elevator->elevator_data;
494
Vivek Goyalf04a6422009-12-03 12:59:40 -0500495 return !cfqd->rq_queued;
Andrew Morton99f95e52005-06-27 20:14:05 -0700496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100499 * Scale schedule slice based on io priority. Use the sync time slice only
500 * if a queue is marked sync and has sync io queued. A sync queue with async
501 * io only, should not get full sync slice length.
502 */
Jens Axboea6151c32009-10-07 20:02:57 +0200503static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200504 unsigned short prio)
505{
506 const int base_slice = cfqd->cfq_slice[sync];
507
508 WARN_ON(prio >= IOPRIO_BE_NR);
509
510 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
511}
512
Jens Axboe44f7c162007-01-19 11:51:58 +1100513static inline int
514cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
515{
Jens Axboed9e76202007-04-20 14:27:50 +0200516 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100517}
518
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500519static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
520{
521 u64 d = delta << CFQ_SERVICE_SHIFT;
522
523 d = d * BLKIO_WEIGHT_DEFAULT;
524 do_div(d, cfqg->weight);
525 return d;
526}
527
528static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
529{
530 s64 delta = (s64)(vdisktime - min_vdisktime);
531 if (delta > 0)
532 min_vdisktime = vdisktime;
533
534 return min_vdisktime;
535}
536
537static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
538{
539 s64 delta = (s64)(vdisktime - min_vdisktime);
540 if (delta < 0)
541 min_vdisktime = vdisktime;
542
543 return min_vdisktime;
544}
545
546static void update_min_vdisktime(struct cfq_rb_root *st)
547{
548 u64 vdisktime = st->min_vdisktime;
549 struct cfq_group *cfqg;
550
551 if (st->active) {
552 cfqg = rb_entry_cfqg(st->active);
553 vdisktime = cfqg->vdisktime;
554 }
555
556 if (st->left) {
557 cfqg = rb_entry_cfqg(st->left);
558 vdisktime = min_vdisktime(vdisktime, cfqg->vdisktime);
559 }
560
561 st->min_vdisktime = max_vdisktime(st->min_vdisktime, vdisktime);
562}
563
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100564/*
565 * get averaged number of queues of RT/BE priority.
566 * average is updated, with a formula that gives more weight to higher numbers,
567 * to quickly follows sudden increases and decrease slowly
568 */
569
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500570static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
571 struct cfq_group *cfqg, bool rt)
Jens Axboe58696192009-10-28 09:27:07 +0100572{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100573 unsigned min_q, max_q;
574 unsigned mult = cfq_hist_divisor - 1;
575 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500576 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100577
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500578 min_q = min(cfqg->busy_queues_avg[rt], busy);
579 max_q = max(cfqg->busy_queues_avg[rt], busy);
580 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100581 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500582 return cfqg->busy_queues_avg[rt];
583}
584
585static inline unsigned
586cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
587{
588 struct cfq_rb_root *st = &cfqd->grp_service_tree;
589
590 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100591}
592
Jens Axboe44f7c162007-01-19 11:51:58 +1100593static inline void
594cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
595{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100596 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
597 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500598 /*
599 * interested queues (we consider only the ones with the same
600 * priority class in the cfq group)
601 */
602 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
603 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100604 unsigned sync_slice = cfqd->cfq_slice[1];
605 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500606 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
607
608 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100609 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
610 /* scale low_slice according to IO priority
611 * and sync vs async */
612 unsigned low_slice =
613 min(slice, base_low_slice * slice / sync_slice);
614 /* the adapted slice value is scaled to fit all iqs
615 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500616 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100617 low_slice);
618 }
619 }
Vivek Goyaldae739e2009-12-03 12:59:45 -0500620 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100621 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500622 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200623 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100624}
625
626/*
627 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
628 * isn't valid until the first request from the dispatch is activated
629 * and the slice time set.
630 */
Jens Axboea6151c32009-10-07 20:02:57 +0200631static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100632{
633 if (cfq_cfqq_slice_new(cfqq))
634 return 0;
635 if (time_before(jiffies, cfqq->slice_end))
636 return 0;
637
638 return 1;
639}
640
641/*
Jens Axboe5e705372006-07-13 12:39:25 +0200642 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200644 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 */
Jens Axboe5e705372006-07-13 12:39:25 +0200646static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100647cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100649 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200651#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
652#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
653 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Jens Axboe5e705372006-07-13 12:39:25 +0200655 if (rq1 == NULL || rq1 == rq2)
656 return rq2;
657 if (rq2 == NULL)
658 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200659
Jens Axboe5e705372006-07-13 12:39:25 +0200660 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
661 return rq1;
662 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
663 return rq2;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200664 if ((rq1->cmd_flags & REQ_META) && !(rq2->cmd_flags & REQ_META))
Jens Axboe374f84a2006-07-23 01:42:19 +0200665 return rq1;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200666 else if ((rq2->cmd_flags & REQ_META) &&
667 !(rq1->cmd_flags & REQ_META))
Jens Axboe374f84a2006-07-23 01:42:19 +0200668 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Tejun Heo83096eb2009-05-07 22:24:39 +0900670 s1 = blk_rq_pos(rq1);
671 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /*
674 * by definition, 1KiB is 2 sectors
675 */
676 back_max = cfqd->cfq_back_max * 2;
677
678 /*
679 * Strict one way elevator _except_ in the case where we allow
680 * short backward seeks which are biased as twice the cost of a
681 * similar forward seek.
682 */
683 if (s1 >= last)
684 d1 = s1 - last;
685 else if (s1 + back_max >= last)
686 d1 = (last - s1) * cfqd->cfq_back_penalty;
687 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200688 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 if (s2 >= last)
691 d2 = s2 - last;
692 else if (s2 + back_max >= last)
693 d2 = (last - s2) * cfqd->cfq_back_penalty;
694 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200695 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Andreas Mohre8a99052006-03-28 08:59:49 +0200699 /*
700 * By doing switch() on the bit mask "wrap" we avoid having to
701 * check two variables for all permutations: --> faster!
702 */
703 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200704 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200705 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200706 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200707 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200708 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200709 else {
710 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200711 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200712 else
Jens Axboe5e705372006-07-13 12:39:25 +0200713 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200714 }
715
716 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200717 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200718 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200719 return rq2;
720 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200721 default:
722 /*
723 * Since both rqs are wrapped,
724 * start with the one that's further behind head
725 * (--> only *one* back seek required),
726 * since back seek takes more time than forward.
727 */
728 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200729 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 else
Jens Axboe5e705372006-07-13 12:39:25 +0200731 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733}
734
Jens Axboe498d3aa2007-04-26 12:54:48 +0200735/*
736 * The below is leftmost cache rbtree addon
737 */
Jens Axboe08717142008-01-28 11:38:15 +0100738static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200739{
Vivek Goyal615f0252009-12-03 12:59:39 -0500740 /* Service tree is empty */
741 if (!root->count)
742 return NULL;
743
Jens Axboecc09e292007-04-26 12:53:50 +0200744 if (!root->left)
745 root->left = rb_first(&root->rb);
746
Jens Axboe08717142008-01-28 11:38:15 +0100747 if (root->left)
748 return rb_entry(root->left, struct cfq_queue, rb_node);
749
750 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200751}
752
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500753static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
754{
755 if (!root->left)
756 root->left = rb_first(&root->rb);
757
758 if (root->left)
759 return rb_entry_cfqg(root->left);
760
761 return NULL;
762}
763
Jens Axboea36e71f2009-04-15 12:15:11 +0200764static void rb_erase_init(struct rb_node *n, struct rb_root *root)
765{
766 rb_erase(n, root);
767 RB_CLEAR_NODE(n);
768}
769
Jens Axboecc09e292007-04-26 12:53:50 +0200770static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
771{
772 if (root->left == n)
773 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200774 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100775 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200776}
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778/*
779 * would be nice to take fifo expire time into account as well
780 */
Jens Axboe5e705372006-07-13 12:39:25 +0200781static struct request *
782cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
783 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Jens Axboe21183b02006-07-13 12:33:14 +0200785 struct rb_node *rbnext = rb_next(&last->rb_node);
786 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200787 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Jens Axboe21183b02006-07-13 12:33:14 +0200789 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200792 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200795 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200796 else {
797 rbnext = rb_first(&cfqq->sort_list);
798 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200799 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100802 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
Jens Axboed9e76202007-04-20 14:27:50 +0200805static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
806 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Jens Axboed9e76202007-04-20 14:27:50 +0200808 /*
809 * just an approximation, should be ok.
810 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500811 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100812 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200813}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500815static inline s64
816cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
817{
818 return cfqg->vdisktime - st->min_vdisktime;
819}
820
821static void
822__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
823{
824 struct rb_node **node = &st->rb.rb_node;
825 struct rb_node *parent = NULL;
826 struct cfq_group *__cfqg;
827 s64 key = cfqg_key(st, cfqg);
828 int left = 1;
829
830 while (*node != NULL) {
831 parent = *node;
832 __cfqg = rb_entry_cfqg(parent);
833
834 if (key < cfqg_key(st, __cfqg))
835 node = &parent->rb_left;
836 else {
837 node = &parent->rb_right;
838 left = 0;
839 }
840 }
841
842 if (left)
843 st->left = &cfqg->rb_node;
844
845 rb_link_node(&cfqg->rb_node, parent, node);
846 rb_insert_color(&cfqg->rb_node, &st->rb);
847}
848
849static void
850cfq_group_service_tree_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
851{
852 struct cfq_rb_root *st = &cfqd->grp_service_tree;
853 struct cfq_group *__cfqg;
854 struct rb_node *n;
855
856 cfqg->nr_cfqq++;
857 if (cfqg->on_st)
858 return;
859
860 /*
861 * Currently put the group at the end. Later implement something
862 * so that groups get lesser vtime based on their weights, so that
863 * if group does not loose all if it was not continously backlogged.
864 */
865 n = rb_last(&st->rb);
866 if (n) {
867 __cfqg = rb_entry_cfqg(n);
868 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
869 } else
870 cfqg->vdisktime = st->min_vdisktime;
871
872 __cfq_group_service_tree_add(st, cfqg);
873 cfqg->on_st = true;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500874 st->total_weight += cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500875}
876
877static void
878cfq_group_service_tree_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
879{
880 struct cfq_rb_root *st = &cfqd->grp_service_tree;
881
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500882 if (st->active == &cfqg->rb_node)
883 st->active = NULL;
884
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500885 BUG_ON(cfqg->nr_cfqq < 1);
886 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500887
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500888 /* If there are other cfq queues under this group, don't delete it */
889 if (cfqg->nr_cfqq)
890 return;
891
Vivek Goyal2868ef72009-12-03 12:59:48 -0500892 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500893 cfqg->on_st = false;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500894 st->total_weight -= cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500895 if (!RB_EMPTY_NODE(&cfqg->rb_node))
896 cfq_rb_erase(&cfqg->rb_node, st);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500897 cfqg->saved_workload_slice = 0;
Vivek Goyale98ef892010-06-18 10:39:47 -0400898 cfq_blkiocg_update_dequeue_stats(&cfqg->blkg, 1);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500899}
900
901static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq)
902{
Vivek Goyalf75edf22009-12-03 12:59:53 -0500903 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500904
905 /*
906 * Queue got expired before even a single request completed or
907 * got expired immediately after first request completion.
908 */
909 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
910 /*
911 * Also charge the seek time incurred to the group, otherwise
912 * if there are mutiple queues in the group, each can dispatch
913 * a single request on seeky media and cause lots of seek time
914 * and group will never know it.
915 */
916 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
917 1);
918 } else {
919 slice_used = jiffies - cfqq->slice_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500920 if (slice_used > cfqq->allocated_slice)
921 slice_used = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500922 }
923
Vivek Goyaldae739e2009-12-03 12:59:45 -0500924 return slice_used;
925}
926
927static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
Vivek Goyale5ff0822010-04-26 19:25:11 +0200928 struct cfq_queue *cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500929{
930 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal02b35082010-08-23 12:23:53 +0200931 unsigned int used_sl, charge;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500932 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
933 - cfqg->service_tree_idle.count;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500934
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500935 BUG_ON(nr_sync < 0);
Vivek Goyal02b35082010-08-23 12:23:53 +0200936 used_sl = charge = cfq_cfqq_slice_usage(cfqq);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500937
Vivek Goyal02b35082010-08-23 12:23:53 +0200938 if (iops_mode(cfqd))
939 charge = cfqq->slice_dispatch;
940 else if (!cfq_cfqq_sync(cfqq) && !nr_sync)
941 charge = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500942
943 /* Can't update vdisktime while group is on service tree */
944 cfq_rb_erase(&cfqg->rb_node, st);
Vivek Goyal02b35082010-08-23 12:23:53 +0200945 cfqg->vdisktime += cfq_scale_slice(charge, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500946 __cfq_group_service_tree_add(st, cfqg);
947
948 /* This group is being expired. Save the context */
949 if (time_after(cfqd->workload_expires, jiffies)) {
950 cfqg->saved_workload_slice = cfqd->workload_expires
951 - jiffies;
952 cfqg->saved_workload = cfqd->serving_type;
953 cfqg->saved_serving_prio = cfqd->serving_prio;
954 } else
955 cfqg->saved_workload_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -0500956
957 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
958 st->min_vdisktime);
Vivek Goyal02b35082010-08-23 12:23:53 +0200959 cfq_log_cfqq(cfqq->cfqd, cfqq, "sl_used=%u disp=%u charge=%u iops=%u",
960 used_sl, cfqq->slice_dispatch, charge, iops_mode(cfqd));
Vivek Goyale98ef892010-06-18 10:39:47 -0400961 cfq_blkiocg_update_timeslice_used(&cfqg->blkg, used_sl);
962 cfq_blkiocg_set_start_empty_time(&cfqg->blkg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500963}
964
Vivek Goyal25fb5162009-12-03 12:59:46 -0500965#ifdef CONFIG_CFQ_GROUP_IOSCHED
966static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg)
967{
968 if (blkg)
969 return container_of(blkg, struct cfq_group, blkg);
970 return NULL;
971}
972
Vivek Goyalf8d461d2009-12-03 12:59:52 -0500973void
974cfq_update_blkio_group_weight(struct blkio_group *blkg, unsigned int weight)
975{
976 cfqg_of_blkg(blkg)->weight = weight;
977}
978
Vivek Goyal25fb5162009-12-03 12:59:46 -0500979static struct cfq_group *
980cfq_find_alloc_cfqg(struct cfq_data *cfqd, struct cgroup *cgroup, int create)
981{
982 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup);
983 struct cfq_group *cfqg = NULL;
984 void *key = cfqd;
985 int i, j;
986 struct cfq_rb_root *st;
Vivek Goyal22084192009-12-03 12:59:49 -0500987 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
988 unsigned int major, minor;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500989
Vivek Goyal25fb5162009-12-03 12:59:46 -0500990 cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key));
Ricky Beniteza74b2ad2010-04-05 18:22:17 +0200991 if (cfqg && !cfqg->blkg.dev && bdi->dev && dev_name(bdi->dev)) {
992 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
993 cfqg->blkg.dev = MKDEV(major, minor);
994 goto done;
995 }
Vivek Goyal25fb5162009-12-03 12:59:46 -0500996 if (cfqg || !create)
997 goto done;
998
999 cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
1000 if (!cfqg)
1001 goto done;
1002
Vivek Goyal25fb5162009-12-03 12:59:46 -05001003 for_each_cfqg_st(cfqg, i, j, st)
1004 *st = CFQ_RB_ROOT;
1005 RB_CLEAR_NODE(&cfqg->rb_node);
1006
Vivek Goyalb1c35762009-12-03 12:59:47 -05001007 /*
1008 * Take the initial reference that will be released on destroy
1009 * This can be thought of a joint reference by cgroup and
1010 * elevator which will be dropped by either elevator exit
1011 * or cgroup deletion path depending on who is exiting first.
1012 */
1013 atomic_set(&cfqg->ref, 1);
1014
Vivek Goyal25fb5162009-12-03 12:59:46 -05001015 /* Add group onto cgroup list */
Vivek Goyal22084192009-12-03 12:59:49 -05001016 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyale98ef892010-06-18 10:39:47 -04001017 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg, (void *)cfqd,
Vivek Goyal22084192009-12-03 12:59:49 -05001018 MKDEV(major, minor));
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001019 cfqg->weight = blkcg_get_weight(blkcg, cfqg->blkg.dev);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001020
1021 /* Add group on cfqd list */
1022 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
1023
1024done:
Vivek Goyal25fb5162009-12-03 12:59:46 -05001025 return cfqg;
1026}
1027
1028/*
1029 * Search for the cfq group current task belongs to. If create = 1, then also
1030 * create the cfq group if it does not exist. request_queue lock must be held.
1031 */
1032static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
1033{
1034 struct cgroup *cgroup;
1035 struct cfq_group *cfqg = NULL;
1036
1037 rcu_read_lock();
1038 cgroup = task_cgroup(current, blkio_subsys_id);
1039 cfqg = cfq_find_alloc_cfqg(cfqd, cgroup, create);
1040 if (!cfqg && create)
1041 cfqg = &cfqd->root_group;
1042 rcu_read_unlock();
1043 return cfqg;
1044}
1045
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001046static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1047{
1048 atomic_inc(&cfqg->ref);
1049 return cfqg;
1050}
1051
Vivek Goyal25fb5162009-12-03 12:59:46 -05001052static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1053{
1054 /* Currently, all async queues are mapped to root group */
1055 if (!cfq_cfqq_sync(cfqq))
1056 cfqg = &cfqq->cfqd->root_group;
1057
1058 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001059 /* cfqq reference on cfqg */
1060 atomic_inc(&cfqq->cfqg->ref);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001061}
Vivek Goyalb1c35762009-12-03 12:59:47 -05001062
1063static void cfq_put_cfqg(struct cfq_group *cfqg)
1064{
1065 struct cfq_rb_root *st;
1066 int i, j;
1067
1068 BUG_ON(atomic_read(&cfqg->ref) <= 0);
1069 if (!atomic_dec_and_test(&cfqg->ref))
1070 return;
1071 for_each_cfqg_st(cfqg, i, j, st)
1072 BUG_ON(!RB_EMPTY_ROOT(&st->rb) || st->active != NULL);
1073 kfree(cfqg);
1074}
1075
1076static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1077{
1078 /* Something wrong if we are trying to remove same group twice */
1079 BUG_ON(hlist_unhashed(&cfqg->cfqd_node));
1080
1081 hlist_del_init(&cfqg->cfqd_node);
1082
1083 /*
1084 * Put the reference taken at the time of creation so that when all
1085 * queues are gone, group can be destroyed.
1086 */
1087 cfq_put_cfqg(cfqg);
1088}
1089
1090static void cfq_release_cfq_groups(struct cfq_data *cfqd)
1091{
1092 struct hlist_node *pos, *n;
1093 struct cfq_group *cfqg;
1094
1095 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1096 /*
1097 * If cgroup removal path got to blk_group first and removed
1098 * it from cgroup list, then it will take care of destroying
1099 * cfqg also.
1100 */
Vivek Goyale98ef892010-06-18 10:39:47 -04001101 if (!cfq_blkiocg_del_blkio_group(&cfqg->blkg))
Vivek Goyalb1c35762009-12-03 12:59:47 -05001102 cfq_destroy_cfqg(cfqd, cfqg);
1103 }
1104}
1105
1106/*
1107 * Blk cgroup controller notification saying that blkio_group object is being
1108 * delinked as associated cgroup object is going away. That also means that
1109 * no new IO will come in this group. So get rid of this group as soon as
1110 * any pending IO in the group is finished.
1111 *
1112 * This function is called under rcu_read_lock(). key is the rcu protected
1113 * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu
1114 * read lock.
1115 *
1116 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
1117 * it should not be NULL as even if elevator was exiting, cgroup deltion
1118 * path got to it first.
1119 */
1120void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
1121{
1122 unsigned long flags;
1123 struct cfq_data *cfqd = key;
1124
1125 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1126 cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg));
1127 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1128}
1129
Vivek Goyal25fb5162009-12-03 12:59:46 -05001130#else /* GROUP_IOSCHED */
1131static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
1132{
1133 return &cfqd->root_group;
1134}
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001135
1136static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1137{
Dmitry Monakhov50eaeb32010-04-28 19:50:33 +02001138 return cfqg;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001139}
1140
Vivek Goyal25fb5162009-12-03 12:59:46 -05001141static inline void
1142cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1143 cfqq->cfqg = cfqg;
1144}
1145
Vivek Goyalb1c35762009-12-03 12:59:47 -05001146static void cfq_release_cfq_groups(struct cfq_data *cfqd) {}
1147static inline void cfq_put_cfqg(struct cfq_group *cfqg) {}
1148
Vivek Goyal25fb5162009-12-03 12:59:46 -05001149#endif /* GROUP_IOSCHED */
1150
Jens Axboe498d3aa2007-04-26 12:54:48 +02001151/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001152 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa2007-04-26 12:54:48 +02001153 * requests waiting to be processed. It is sorted in the order that
1154 * we will service the queues.
1155 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001156static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001157 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02001158{
Jens Axboe08717142008-01-28 11:38:15 +01001159 struct rb_node **p, *parent;
1160 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001161 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001162 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa2007-04-26 12:54:48 +02001163 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001164 int new_cfqq = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05001165 int group_changed = 0;
1166
1167#ifdef CONFIG_CFQ_GROUP_IOSCHED
1168 if (!cfqd->cfq_group_isolation
1169 && cfqq_type(cfqq) == SYNC_NOIDLE_WORKLOAD
1170 && cfqq->cfqg && cfqq->cfqg != &cfqd->root_group) {
1171 /* Move this cfq to root group */
1172 cfq_log_cfqq(cfqd, cfqq, "moving to root group");
1173 if (!RB_EMPTY_NODE(&cfqq->rb_node))
1174 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
1175 cfqq->orig_cfqg = cfqq->cfqg;
1176 cfqq->cfqg = &cfqd->root_group;
1177 atomic_inc(&cfqd->root_group.ref);
1178 group_changed = 1;
1179 } else if (!cfqd->cfq_group_isolation
1180 && cfqq_type(cfqq) == SYNC_WORKLOAD && cfqq->orig_cfqg) {
1181 /* cfqq is sequential now needs to go to its original group */
1182 BUG_ON(cfqq->cfqg != &cfqd->root_group);
1183 if (!RB_EMPTY_NODE(&cfqq->rb_node))
1184 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
1185 cfq_put_cfqg(cfqq->cfqg);
1186 cfqq->cfqg = cfqq->orig_cfqg;
1187 cfqq->orig_cfqg = NULL;
1188 group_changed = 1;
1189 cfq_log_cfqq(cfqd, cfqq, "moved to origin group");
1190 }
1191#endif
Jens Axboed9e76202007-04-20 14:27:50 +02001192
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001193 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
Vivek Goyal65b32a52009-12-16 17:52:59 -05001194 cfqq_type(cfqq));
Jens Axboe08717142008-01-28 11:38:15 +01001195 if (cfq_class_idle(cfqq)) {
1196 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001197 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +01001198 if (parent && parent != &cfqq->rb_node) {
1199 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1200 rb_key += __cfqq->rb_key;
1201 } else
1202 rb_key += jiffies;
1203 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02001204 /*
1205 * Get our rb key offset. Subtract any residual slice
1206 * value carried from last service. A negative resid
1207 * count indicates slice overrun, and this should position
1208 * the next service time further away in the tree.
1209 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001210 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02001211 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02001212 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001213 } else {
1214 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001215 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001216 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1217 }
Jens Axboed9e76202007-04-20 14:27:50 +02001218
1219 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05001220 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01001221 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001222 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01001223 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001224 if (rb_key == cfqq->rb_key &&
1225 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +02001226 return;
Jens Axboe53b03742006-07-28 09:48:51 +02001227
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001228 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1229 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001230 }
Jens Axboed9e76202007-04-20 14:27:50 +02001231
Jens Axboe498d3aa2007-04-26 12:54:48 +02001232 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01001233 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001234 cfqq->service_tree = service_tree;
1235 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02001236 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +02001237 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +02001238
Jens Axboed9e76202007-04-20 14:27:50 +02001239 parent = *p;
1240 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1241
Jens Axboe0c534e02007-04-18 20:01:57 +02001242 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001243 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02001244 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001245 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +02001246 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001247 else {
Jens Axboe67060e32007-04-18 20:13:32 +02001248 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02001249 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001250 }
Jens Axboe67060e32007-04-18 20:13:32 +02001251
1252 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +02001253 }
1254
Jens Axboecc09e292007-04-26 12:53:50 +02001255 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001256 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02001257
Jens Axboed9e76202007-04-20 14:27:50 +02001258 cfqq->rb_key = rb_key;
1259 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001260 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1261 service_tree->count++;
Vivek Goyalae30c282009-12-03 12:59:55 -05001262 if ((add_front || !new_cfqq) && !group_changed)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001263 return;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001264 cfq_group_service_tree_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Jens Axboea36e71f2009-04-15 12:15:11 +02001267static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001268cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1269 sector_t sector, struct rb_node **ret_parent,
1270 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02001271{
Jens Axboea36e71f2009-04-15 12:15:11 +02001272 struct rb_node **p, *parent;
1273 struct cfq_queue *cfqq = NULL;
1274
1275 parent = NULL;
1276 p = &root->rb_node;
1277 while (*p) {
1278 struct rb_node **n;
1279
1280 parent = *p;
1281 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1282
1283 /*
1284 * Sort strictly based on sector. Smallest to the left,
1285 * largest to the right.
1286 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001287 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001288 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001289 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001290 n = &(*p)->rb_left;
1291 else
1292 break;
1293 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001294 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001295 }
1296
1297 *ret_parent = parent;
1298 if (rb_link)
1299 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001300 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001301}
1302
1303static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1304{
Jens Axboea36e71f2009-04-15 12:15:11 +02001305 struct rb_node **p, *parent;
1306 struct cfq_queue *__cfqq;
1307
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001308 if (cfqq->p_root) {
1309 rb_erase(&cfqq->p_node, cfqq->p_root);
1310 cfqq->p_root = NULL;
1311 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001312
1313 if (cfq_class_idle(cfqq))
1314 return;
1315 if (!cfqq->next_rq)
1316 return;
1317
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001318 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001319 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1320 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001321 if (!__cfqq) {
1322 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001323 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1324 } else
1325 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001326}
1327
Jens Axboe498d3aa2007-04-26 12:54:48 +02001328/*
1329 * Update cfqq's position in the service tree.
1330 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001331static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001332{
Jens Axboe6d048f52007-04-25 12:44:27 +02001333 /*
1334 * Resorting requires the cfqq to be on the RR list already.
1335 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001336 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001337 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001338 cfq_prio_tree_add(cfqd, cfqq);
1339 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342/*
1343 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001344 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 */
Jens Axboefebffd62008-01-28 13:19:43 +01001346static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Jens Axboe7b679132008-05-30 12:23:07 +02001348 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001349 BUG_ON(cfq_cfqq_on_rr(cfqq));
1350 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 cfqd->busy_queues++;
1352
Jens Axboeedd75ff2007-04-19 12:03:34 +02001353 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
Jens Axboe498d3aa2007-04-26 12:54:48 +02001356/*
1357 * Called when the cfqq no longer has requests pending, remove it from
1358 * the service tree.
1359 */
Jens Axboefebffd62008-01-28 13:19:43 +01001360static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Jens Axboe7b679132008-05-30 12:23:07 +02001362 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001363 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1364 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001366 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1367 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1368 cfqq->service_tree = NULL;
1369 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001370 if (cfqq->p_root) {
1371 rb_erase(&cfqq->p_node, cfqq->p_root);
1372 cfqq->p_root = NULL;
1373 }
Jens Axboed9e76202007-04-20 14:27:50 +02001374
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001375 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 BUG_ON(!cfqd->busy_queues);
1377 cfqd->busy_queues--;
1378}
1379
1380/*
1381 * rb tree support functions
1382 */
Jens Axboefebffd62008-01-28 13:19:43 +01001383static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
Jens Axboe5e705372006-07-13 12:39:25 +02001385 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001386 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Jens Axboeb4878f22005-10-20 16:42:29 +02001388 BUG_ON(!cfqq->queued[sync]);
1389 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Jens Axboe5e705372006-07-13 12:39:25 +02001391 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Vivek Goyalf04a6422009-12-03 12:59:40 -05001393 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1394 /*
1395 * Queue will be deleted from service tree when we actually
1396 * expire it later. Right now just remove it from prio tree
1397 * as it is empty.
1398 */
1399 if (cfqq->p_root) {
1400 rb_erase(&cfqq->p_node, cfqq->p_root);
1401 cfqq->p_root = NULL;
1402 }
1403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
Jens Axboe5e705372006-07-13 12:39:25 +02001406static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
Jens Axboe5e705372006-07-13 12:39:25 +02001408 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboea36e71f2009-04-15 12:15:11 +02001410 struct request *__alias, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Jens Axboe5380a102006-07-13 12:37:56 +02001412 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 /*
1415 * looks a little odd, but the first insert might return an alias.
1416 * if that happens, put the alias on the dispatch list
1417 */
Jens Axboe21183b02006-07-13 12:33:14 +02001418 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +02001419 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001420
1421 if (!cfq_cfqq_on_rr(cfqq))
1422 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001423
1424 /*
1425 * check if this request is a better next-serve candidate
1426 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001427 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001428 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001429
1430 /*
1431 * adjust priority tree position, if ->next_rq changes
1432 */
1433 if (prev != cfqq->next_rq)
1434 cfq_prio_tree_add(cfqd, cfqq);
1435
Jens Axboe5044eed2007-04-25 11:53:48 +02001436 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438
Jens Axboefebffd62008-01-28 13:19:43 +01001439static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
Jens Axboe5380a102006-07-13 12:37:56 +02001441 elv_rb_del(&cfqq->sort_list, rq);
1442 cfqq->queued[rq_is_sync(rq)]--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001443 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1444 rq_data_dir(rq), rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02001445 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04001446 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001447 &cfqq->cfqd->serving_group->blkg, rq_data_dir(rq),
1448 rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
Jens Axboe206dc692006-03-28 13:03:44 +02001451static struct request *
1452cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
Jens Axboe206dc692006-03-28 13:03:44 +02001454 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001455 struct cfq_io_context *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001456 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Jens Axboe4ac845a2008-01-24 08:44:49 +01001458 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001459 if (!cic)
1460 return NULL;
1461
1462 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001463 if (cfqq) {
1464 sector_t sector = bio->bi_sector + bio_sectors(bio);
1465
Jens Axboe21183b02006-07-13 12:33:14 +02001466 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return NULL;
1470}
1471
Jens Axboe165125e2007-07-24 09:28:11 +02001472static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001473{
1474 struct cfq_data *cfqd = q->elevator->elevator_data;
1475
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001476 cfqd->rq_in_driver++;
Jens Axboe7b679132008-05-30 12:23:07 +02001477 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001478 cfqd->rq_in_driver);
Jens Axboe25776e32006-06-01 10:12:26 +02001479
Tejun Heo5b936292009-05-07 22:24:38 +09001480 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001481}
1482
Jens Axboe165125e2007-07-24 09:28:11 +02001483static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
Jens Axboe22e2c502005-06-27 10:55:12 +02001485 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001487 WARN_ON(!cfqd->rq_in_driver);
1488 cfqd->rq_in_driver--;
Jens Axboe7b679132008-05-30 12:23:07 +02001489 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001490 cfqd->rq_in_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Jens Axboeb4878f22005-10-20 16:42:29 +02001493static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Jens Axboe5e705372006-07-13 12:39:25 +02001495 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001496
Jens Axboe5e705372006-07-13 12:39:25 +02001497 if (cfqq->next_rq == rq)
1498 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Jens Axboeb4878f22005-10-20 16:42:29 +02001500 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001501 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001502
Aaron Carroll45333d52008-08-26 15:52:36 +02001503 cfqq->cfqd->rq_queued--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001504 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1505 rq_data_dir(rq), rq_is_sync(rq));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001506 if (rq->cmd_flags & REQ_META) {
Jens Axboe374f84a2006-07-23 01:42:19 +02001507 WARN_ON(!cfqq->meta_pending);
1508 cfqq->meta_pending--;
1509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
Jens Axboe165125e2007-07-24 09:28:11 +02001512static int cfq_merge(struct request_queue *q, struct request **req,
1513 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
1515 struct cfq_data *cfqd = q->elevator->elevator_data;
1516 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Jens Axboe206dc692006-03-28 13:03:44 +02001518 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001519 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001520 *req = __rq;
1521 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523
1524 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
Jens Axboe165125e2007-07-24 09:28:11 +02001527static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001528 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
Jens Axboe21183b02006-07-13 12:33:14 +02001530 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001531 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Jens Axboe5e705372006-07-13 12:39:25 +02001533 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
1536
Divyesh Shah812d4022010-04-08 21:14:23 -07001537static void cfq_bio_merged(struct request_queue *q, struct request *req,
1538 struct bio *bio)
1539{
Vivek Goyale98ef892010-06-18 10:39:47 -04001540 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(req))->blkg,
1541 bio_data_dir(bio), cfq_bio_sync(bio));
Divyesh Shah812d4022010-04-08 21:14:23 -07001542}
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544static void
Jens Axboe165125e2007-07-24 09:28:11 +02001545cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 struct request *next)
1547{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001548 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001549 /*
1550 * reposition in fifo if next is older than rq
1551 */
1552 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001553 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001554 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001555 rq_set_fifo_time(rq, rq_fifo_time(next));
1556 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001557
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001558 if (cfqq->next_rq == next)
1559 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001560 cfq_remove_request(next);
Vivek Goyale98ef892010-06-18 10:39:47 -04001561 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(rq))->blkg,
1562 rq_data_dir(next), rq_is_sync(next));
Jens Axboe22e2c502005-06-27 10:55:12 +02001563}
1564
Jens Axboe165125e2007-07-24 09:28:11 +02001565static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001566 struct bio *bio)
1567{
1568 struct cfq_data *cfqd = q->elevator->elevator_data;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001569 struct cfq_io_context *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001570 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001571
1572 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001573 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001574 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001575 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001576 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001577
1578 /*
Jens Axboe719d3402006-12-22 09:38:53 +01001579 * Lookup the cfqq that this bio will be queued with. Allow
1580 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +01001581 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01001582 cic = cfq_cic_lookup(cfqd, current->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001583 if (!cic)
Jens Axboea6151c32009-10-07 20:02:57 +02001584 return false;
Jens Axboe719d3402006-12-22 09:38:53 +01001585
Vasily Tarasov91fac312007-04-25 12:29:51 +02001586 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001587 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001588}
1589
Divyesh Shah812df482010-04-08 21:15:35 -07001590static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1591{
1592 del_timer(&cfqd->idle_slice_timer);
Vivek Goyale98ef892010-06-18 10:39:47 -04001593 cfq_blkiocg_update_idle_time_stats(&cfqq->cfqg->blkg);
Divyesh Shah812df482010-04-08 21:15:35 -07001594}
1595
Jens Axboefebffd62008-01-28 13:19:43 +01001596static void __cfq_set_active_queue(struct cfq_data *cfqd,
1597 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001598{
1599 if (cfqq) {
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001600 cfq_log_cfqq(cfqd, cfqq, "set_active wl_prio:%d wl_type:%d",
1601 cfqd->serving_prio, cfqd->serving_type);
Vivek Goyale98ef892010-06-18 10:39:47 -04001602 cfq_blkiocg_update_avg_queue_size_stats(&cfqq->cfqg->blkg);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001603 cfqq->slice_start = 0;
1604 cfqq->dispatch_start = jiffies;
Vivek Goyalf75edf22009-12-03 12:59:53 -05001605 cfqq->allocated_slice = 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001606 cfqq->slice_end = 0;
Jens Axboe2f5cb732009-04-07 08:51:19 +02001607 cfqq->slice_dispatch = 0;
1608
Jens Axboe2f5cb732009-04-07 08:51:19 +02001609 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboeb0291952009-04-07 11:38:31 +02001610 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001611 cfq_clear_cfqq_must_alloc_slice(cfqq);
1612 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +11001613 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02001614
Divyesh Shah812df482010-04-08 21:15:35 -07001615 cfq_del_timer(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001616 }
1617
1618 cfqd->active_queue = cfqq;
1619}
1620
1621/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001622 * current cfqq expired its slice (or was too idle), select new one
1623 */
1624static void
1625__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Vivek Goyale5ff0822010-04-26 19:25:11 +02001626 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001627{
Jens Axboe7b679132008-05-30 12:23:07 +02001628 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1629
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001630 if (cfq_cfqq_wait_request(cfqq))
Divyesh Shah812df482010-04-08 21:15:35 -07001631 cfq_del_timer(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001632
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001633 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05001634 cfq_clear_cfqq_wait_busy(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001635
1636 /*
Shaohua Liae54abe2010-02-05 13:11:45 +01001637 * If this cfqq is shared between multiple processes, check to
1638 * make sure that those processes are still issuing I/Os within
1639 * the mean seek distance. If not, it may be time to break the
1640 * queues apart again.
1641 */
1642 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
1643 cfq_mark_cfqq_split_coop(cfqq);
1644
1645 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001646 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001647 */
Jens Axboe7b679132008-05-30 12:23:07 +02001648 if (timed_out && !cfq_cfqq_slice_new(cfqq)) {
Jens Axboec5b680f2007-01-19 11:56:49 +11001649 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001650 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1651 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001652
Vivek Goyale5ff0822010-04-26 19:25:11 +02001653 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001654
Vivek Goyalf04a6422009-12-03 12:59:40 -05001655 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1656 cfq_del_cfqq_rr(cfqd, cfqq);
1657
Jens Axboeedd75ff2007-04-19 12:03:34 +02001658 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001659
1660 if (cfqq == cfqd->active_queue)
1661 cfqd->active_queue = NULL;
1662
Vivek Goyaldae739e2009-12-03 12:59:45 -05001663 if (&cfqq->cfqg->rb_node == cfqd->grp_service_tree.active)
1664 cfqd->grp_service_tree.active = NULL;
1665
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001666 if (cfqd->active_cic) {
1667 put_io_context(cfqd->active_cic->ioc);
1668 cfqd->active_cic = NULL;
1669 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001670}
1671
Vivek Goyale5ff0822010-04-26 19:25:11 +02001672static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001673{
1674 struct cfq_queue *cfqq = cfqd->active_queue;
1675
1676 if (cfqq)
Vivek Goyale5ff0822010-04-26 19:25:11 +02001677 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001678}
1679
Jens Axboe498d3aa2007-04-26 12:54:48 +02001680/*
1681 * Get next queue for service. Unless we have a queue preemption,
1682 * we'll simply select the first cfqq in the service tree.
1683 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001684static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001685{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001686 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001687 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -05001688 cfqd->serving_type);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001689
Vivek Goyalf04a6422009-12-03 12:59:40 -05001690 if (!cfqd->rq_queued)
1691 return NULL;
1692
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001693 /* There is nothing to dispatch */
1694 if (!service_tree)
1695 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001696 if (RB_EMPTY_ROOT(&service_tree->rb))
1697 return NULL;
1698 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001699}
1700
Vivek Goyalf04a6422009-12-03 12:59:40 -05001701static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1702{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001703 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05001704 struct cfq_queue *cfqq;
1705 int i, j;
1706 struct cfq_rb_root *st;
1707
1708 if (!cfqd->rq_queued)
1709 return NULL;
1710
Vivek Goyal25fb5162009-12-03 12:59:46 -05001711 cfqg = cfq_get_next_cfqg(cfqd);
1712 if (!cfqg)
1713 return NULL;
1714
Vivek Goyalf04a6422009-12-03 12:59:40 -05001715 for_each_cfqg_st(cfqg, i, j, st)
1716 if ((cfqq = cfq_rb_first(st)) != NULL)
1717 return cfqq;
1718 return NULL;
1719}
1720
Jens Axboe498d3aa2007-04-26 12:54:48 +02001721/*
1722 * Get and set a new active queue for service.
1723 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001724static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1725 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001726{
Jens Axboee00ef792009-11-04 08:54:55 +01001727 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001728 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001729
Jens Axboe22e2c502005-06-27 10:55:12 +02001730 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001731 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001732}
1733
Jens Axboed9e76202007-04-20 14:27:50 +02001734static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1735 struct request *rq)
1736{
Tejun Heo83096eb2009-05-07 22:24:39 +09001737 if (blk_rq_pos(rq) >= cfqd->last_position)
1738 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001739 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001740 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001741}
1742
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001743static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Shaohua Lie9ce3352010-03-19 08:03:04 +01001744 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001745{
Shaohua Lie9ce3352010-03-19 08:03:04 +01001746 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001747}
1748
Jens Axboea36e71f2009-04-15 12:15:11 +02001749static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1750 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001751{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001752 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001753 struct rb_node *parent, *node;
1754 struct cfq_queue *__cfqq;
1755 sector_t sector = cfqd->last_position;
1756
1757 if (RB_EMPTY_ROOT(root))
1758 return NULL;
1759
1760 /*
1761 * First, if we find a request starting at the end of the last
1762 * request, choose it.
1763 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001764 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001765 if (__cfqq)
1766 return __cfqq;
1767
1768 /*
1769 * If the exact sector wasn't found, the parent of the NULL leaf
1770 * will contain the closest sector.
1771 */
1772 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001773 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001774 return __cfqq;
1775
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001776 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001777 node = rb_next(&__cfqq->p_node);
1778 else
1779 node = rb_prev(&__cfqq->p_node);
1780 if (!node)
1781 return NULL;
1782
1783 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001784 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001785 return __cfqq;
1786
1787 return NULL;
1788}
1789
1790/*
1791 * cfqd - obvious
1792 * cur_cfqq - passed in so that we don't decide that the current queue is
1793 * closely cooperating with itself.
1794 *
1795 * So, basically we're assuming that that cur_cfqq has dispatched at least
1796 * one request, and that cfqd->last_position reflects a position on the disk
1797 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1798 * assumption.
1799 */
1800static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001801 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001802{
1803 struct cfq_queue *cfqq;
1804
Divyesh Shah39c01b22010-03-25 15:45:57 +01001805 if (cfq_class_idle(cur_cfqq))
1806 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001807 if (!cfq_cfqq_sync(cur_cfqq))
1808 return NULL;
1809 if (CFQQ_SEEKY(cur_cfqq))
1810 return NULL;
1811
Jens Axboea36e71f2009-04-15 12:15:11 +02001812 /*
Gui Jianfengb9d8f4c2009-12-08 08:54:17 +01001813 * Don't search priority tree if it's the only queue in the group.
1814 */
1815 if (cur_cfqq->cfqg->nr_cfqq == 1)
1816 return NULL;
1817
1818 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001819 * We should notice if some of the queues are cooperating, eg
1820 * working closely on the same area of the disk. In that case,
1821 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001822 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001823 cfqq = cfqq_close(cfqd, cur_cfqq);
1824 if (!cfqq)
1825 return NULL;
1826
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001827 /* If new queue belongs to different cfq_group, don't choose it */
1828 if (cur_cfqq->cfqg != cfqq->cfqg)
1829 return NULL;
1830
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001831 /*
1832 * It only makes sense to merge sync queues.
1833 */
1834 if (!cfq_cfqq_sync(cfqq))
1835 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001836 if (CFQQ_SEEKY(cfqq))
1837 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001838
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001839 /*
1840 * Do not merge queues of different priority classes
1841 */
1842 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1843 return NULL;
1844
Jens Axboea36e71f2009-04-15 12:15:11 +02001845 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001846}
1847
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001848/*
1849 * Determine whether we should enforce idle window for this queue.
1850 */
1851
1852static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1853{
1854 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001855 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001856
Vivek Goyalf04a6422009-12-03 12:59:40 -05001857 BUG_ON(!service_tree);
1858 BUG_ON(!service_tree->count);
1859
Vivek Goyalb6508c12010-08-23 12:23:33 +02001860 if (!cfqd->cfq_slice_idle)
1861 return false;
1862
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001863 /* We never do for idle class queues. */
1864 if (prio == IDLE_WORKLOAD)
1865 return false;
1866
1867 /* We do for queues that were marked with idle window flag. */
Shaohua Li3c764b72009-12-04 13:12:06 +01001868 if (cfq_cfqq_idle_window(cfqq) &&
1869 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001870 return true;
1871
1872 /*
1873 * Otherwise, we do only if they are the last ones
1874 * in their service tree.
1875 */
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001876 if (service_tree->count == 1 && cfq_cfqq_sync(cfqq))
1877 return 1;
1878 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d",
1879 service_tree->count);
1880 return 0;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001881}
1882
Jens Axboe6d048f52007-04-25 12:44:27 +02001883static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001884{
Jens Axboe17926692007-01-19 11:59:30 +11001885 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +02001886 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001887 unsigned long sl;
1888
Jens Axboea68bbdd2008-09-24 13:03:33 +02001889 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001890 * SSD device without seek penalty, disable idling. But only do so
1891 * for devices that support queuing, otherwise we still have a problem
1892 * with sync vs async workloads.
Jens Axboea68bbdd2008-09-24 13:03:33 +02001893 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001894 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbdd2008-09-24 13:03:33 +02001895 return;
1896
Jens Axboedd67d052006-06-21 09:36:18 +02001897 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02001898 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02001899
1900 /*
1901 * idle is disabled, either manually or by past process history
1902 */
Vivek Goyalb6508c12010-08-23 12:23:33 +02001903 if (!cfq_should_idle(cfqd, cfqq))
Jens Axboe6d048f52007-04-25 12:44:27 +02001904 return;
1905
Jens Axboe22e2c502005-06-27 10:55:12 +02001906 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001907 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02001908 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001909 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02001910 return;
1911
1912 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02001913 * task has exited, don't wait
1914 */
Jens Axboe206dc692006-03-28 13:03:44 +02001915 cic = cfqd->active_cic;
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01001916 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02001917 return;
1918
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001919 /*
1920 * If our average think time is larger than the remaining time
1921 * slice, then don't idle. This avoids overrunning the allotted
1922 * time slice.
1923 */
1924 if (sample_valid(cic->ttime_samples) &&
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001925 (cfqq->slice_end - jiffies < cic->ttime_mean)) {
1926 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%d",
1927 cic->ttime_mean);
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001928 return;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001929 }
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001930
Jens Axboe3b181522005-06-27 10:56:24 +02001931 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001932
Jens Axboe6d048f52007-04-25 12:44:27 +02001933 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02001934
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001935 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04001936 cfq_blkiocg_update_set_idle_time_stats(&cfqq->cfqg->blkg);
Jens Axboe9481ffd2009-04-15 12:14:13 +02001937 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
Jens Axboe498d3aa2007-04-26 12:54:48 +02001940/*
1941 * Move request from internal lists to the request queue dispatch list.
1942 */
Jens Axboe165125e2007-07-24 09:28:11 +02001943static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
Jens Axboe3ed9a292007-04-23 08:33:33 +02001945 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001946 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001947
Jens Axboe7b679132008-05-30 12:23:07 +02001948 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
1949
Jeff Moyer06d21882009-09-11 17:08:59 +02001950 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02001951 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001952 cfqq->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02001953 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02001954
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001955 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
Vivek Goyale98ef892010-06-18 10:39:47 -04001956 cfq_blkiocg_update_dispatch_stats(&cfqq->cfqg->blkg, blk_rq_bytes(rq),
Divyesh Shah84c124d2010-04-09 08:31:19 +02001957 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
1960/*
1961 * return expired entry, or NULL to just start from scratch in rbtree
1962 */
Jens Axboefebffd62008-01-28 13:19:43 +01001963static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
Jens Axboe30996f42009-10-05 11:03:39 +02001965 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Jens Axboe3b181522005-06-27 10:56:24 +02001967 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11001969
1970 cfq_mark_cfqq_fifo_expire(cfqq);
1971
Jens Axboe89850f72006-07-22 16:48:31 +02001972 if (list_empty(&cfqq->fifo))
1973 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Jens Axboe89850f72006-07-22 16:48:31 +02001975 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02001976 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02001977 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Jens Axboe30996f42009-10-05 11:03:39 +02001979 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001980 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981}
1982
Jens Axboe22e2c502005-06-27 10:55:12 +02001983static inline int
1984cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1985{
1986 const int base_rq = cfqd->cfq_slice_async_rq;
1987
1988 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1989
1990 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
1991}
1992
1993/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001994 * Must be called with the queue_lock held.
1995 */
1996static int cfqq_process_refs(struct cfq_queue *cfqq)
1997{
1998 int process_refs, io_refs;
1999
2000 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
2001 process_refs = atomic_read(&cfqq->ref) - io_refs;
2002 BUG_ON(process_refs < 0);
2003 return process_refs;
2004}
2005
2006static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
2007{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002008 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002009 struct cfq_queue *__cfqq;
2010
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002011 /*
2012 * If there are no process references on the new_cfqq, then it is
2013 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
2014 * chain may have dropped their last reference (not just their
2015 * last process reference).
2016 */
2017 if (!cfqq_process_refs(new_cfqq))
2018 return;
2019
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002020 /* Avoid a circular list and skip interim queue merges */
2021 while ((__cfqq = new_cfqq->new_cfqq)) {
2022 if (__cfqq == cfqq)
2023 return;
2024 new_cfqq = __cfqq;
2025 }
2026
2027 process_refs = cfqq_process_refs(cfqq);
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002028 new_process_refs = cfqq_process_refs(new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002029 /*
2030 * If the process for the cfqq has gone away, there is no
2031 * sense in merging the queues.
2032 */
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002033 if (process_refs == 0 || new_process_refs == 0)
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002034 return;
2035
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002036 /*
2037 * Merge in the direction of the lesser amount of work.
2038 */
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002039 if (new_process_refs >= process_refs) {
2040 cfqq->new_cfqq = new_cfqq;
2041 atomic_add(process_refs, &new_cfqq->ref);
2042 } else {
2043 new_cfqq->new_cfqq = cfqq;
2044 atomic_add(new_process_refs, &cfqq->ref);
2045 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002046}
2047
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002048static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
Vivek Goyal65b32a52009-12-16 17:52:59 -05002049 struct cfq_group *cfqg, enum wl_prio_t prio)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002050{
2051 struct cfq_queue *queue;
2052 int i;
2053 bool key_valid = false;
2054 unsigned long lowest_key = 0;
2055 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2056
Vivek Goyal65b32a52009-12-16 17:52:59 -05002057 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2058 /* select the one with lowest rb_key */
2059 queue = cfq_rb_first(service_tree_for(cfqg, prio, i));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002060 if (queue &&
2061 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2062 lowest_key = queue->rb_key;
2063 cur_best = i;
2064 key_valid = true;
2065 }
2066 }
2067
2068 return cur_best;
2069}
2070
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002071static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002072{
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002073 unsigned slice;
2074 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002075 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002076 unsigned group_slice;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002077
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002078 if (!cfqg) {
2079 cfqd->serving_prio = IDLE_WORKLOAD;
2080 cfqd->workload_expires = jiffies + 1;
2081 return;
2082 }
2083
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002084 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002085 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002086 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002087 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002088 cfqd->serving_prio = BE_WORKLOAD;
2089 else {
2090 cfqd->serving_prio = IDLE_WORKLOAD;
2091 cfqd->workload_expires = jiffies + 1;
2092 return;
2093 }
2094
2095 /*
2096 * For RT and BE, we have to choose also the type
2097 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2098 * expiration time
2099 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002100 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002101 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002102
2103 /*
Vivek Goyal65b32a52009-12-16 17:52:59 -05002104 * check workload expiration, and that we still have other queues ready
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002105 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002106 if (count && !time_after(jiffies, cfqd->workload_expires))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002107 return;
2108
2109 /* otherwise select new workload type */
2110 cfqd->serving_type =
Vivek Goyal65b32a52009-12-16 17:52:59 -05002111 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio);
2112 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002113 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002114
2115 /*
2116 * the workload slice is computed as a fraction of target latency
2117 * proportional to the number of queues in that workload, over
2118 * all the queues in the same priority class
2119 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002120 group_slice = cfq_group_slice(cfqd, cfqg);
2121
2122 slice = group_slice * count /
2123 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2124 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002125
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002126 if (cfqd->serving_type == ASYNC_WORKLOAD) {
2127 unsigned int tmp;
2128
2129 /*
2130 * Async queues are currently system wide. Just taking
2131 * proportion of queues with-in same group will lead to higher
2132 * async ratio system wide as generally root group is going
2133 * to have higher weight. A more accurate thing would be to
2134 * calculate system wide asnc/sync ratio.
2135 */
2136 tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg);
2137 tmp = tmp/cfqd->busy_queues;
2138 slice = min_t(unsigned, slice, tmp);
2139
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002140 /* async workload slice is scaled down according to
2141 * the sync/async slice ratio. */
2142 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002143 } else
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002144 /* sync workload slice is at least 2 * cfq_slice_idle */
2145 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2146
2147 slice = max_t(unsigned, slice, CFQ_MIN_TT);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002148 cfq_log(cfqd, "workload slice:%d", slice);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002149 cfqd->workload_expires = jiffies + slice;
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002150 cfqd->noidle_tree_requires_idle = false;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002151}
2152
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002153static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2154{
2155 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002156 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002157
2158 if (RB_EMPTY_ROOT(&st->rb))
2159 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002160 cfqg = cfq_rb_first_group(st);
2161 st->active = &cfqg->rb_node;
2162 update_min_vdisktime(st);
2163 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002164}
2165
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002166static void cfq_choose_cfqg(struct cfq_data *cfqd)
2167{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002168 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2169
2170 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002171
2172 /* Restore the workload type data */
2173 if (cfqg->saved_workload_slice) {
2174 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2175 cfqd->serving_type = cfqg->saved_workload;
2176 cfqd->serving_prio = cfqg->saved_serving_prio;
Gui Jianfeng66ae2912009-12-15 10:08:45 +01002177 } else
2178 cfqd->workload_expires = jiffies - 1;
2179
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002180 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002181}
2182
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002183/*
Jens Axboe498d3aa2007-04-26 12:54:48 +02002184 * Select a queue for service. If we have a current active queue,
2185 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02002186 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002187static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002188{
Jens Axboea36e71f2009-04-15 12:15:11 +02002189 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002190
2191 cfqq = cfqd->active_queue;
2192 if (!cfqq)
2193 goto new_queue;
2194
Vivek Goyalf04a6422009-12-03 12:59:40 -05002195 if (!cfqd->rq_queued)
2196 return NULL;
Vivek Goyalc244bb52009-12-08 17:52:57 -05002197
2198 /*
2199 * We were waiting for group to get backlogged. Expire the queue
2200 */
2201 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2202 goto expire;
2203
Jens Axboe22e2c502005-06-27 10:55:12 +02002204 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002205 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02002206 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05002207 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2208 /*
2209 * If slice had not expired at the completion of last request
2210 * we might not have turned on wait_busy flag. Don't expire
2211 * the queue yet. Allow the group to get backlogged.
2212 *
2213 * The very fact that we have used the slice, that means we
2214 * have been idling all along on this queue and it should be
2215 * ok to wait for this request to complete.
2216 */
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002217 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2218 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2219 cfqq = NULL;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002220 goto keep_queue;
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002221 } else
Vivek Goyal7667aa02009-12-08 17:52:58 -05002222 goto expire;
2223 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002224
2225 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002226 * The active queue has requests and isn't expired, allow it to
2227 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02002228 */
Jens Axboedd67d052006-06-21 09:36:18 +02002229 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002230 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02002231
2232 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02002233 * If another queue has a request waiting within our mean seek
2234 * distance, let it run. The expire code will check for close
2235 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002236 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02002237 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002238 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002239 if (new_cfqq) {
2240 if (!cfqq->new_cfqq)
2241 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02002242 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002243 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002244
2245 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002246 * No requests pending. If the active queue still has requests in
2247 * flight or is idling for a new request, allow either of these
2248 * conditions to happen (or time out) before selecting a new queue.
2249 */
Jens Axboecc197472007-04-20 20:45:39 +02002250 if (timer_pending(&cfqd->idle_slice_timer) ||
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002251 (cfqq->dispatched && cfq_should_idle(cfqd, cfqq))) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02002252 cfqq = NULL;
2253 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002254 }
2255
Jens Axboe3b181522005-06-27 10:56:24 +02002256expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02002257 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02002258new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002259 /*
2260 * Current queue expired. Check if we have to switch to a new
2261 * service tree
2262 */
2263 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002264 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002265
Jens Axboea36e71f2009-04-15 12:15:11 +02002266 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002267keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02002268 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002269}
2270
Jens Axboefebffd62008-01-28 13:19:43 +01002271static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02002272{
2273 int dispatched = 0;
2274
2275 while (cfqq->next_rq) {
2276 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2277 dispatched++;
2278 }
2279
2280 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05002281
2282 /* By default cfqq is not expired if it is empty. Do it explicitly */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002283 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02002284 return dispatched;
2285}
2286
Jens Axboe498d3aa2007-04-26 12:54:48 +02002287/*
2288 * Drain our current requests. Used for barriers and when switching
2289 * io schedulers on-the-fly.
2290 */
Jens Axboed9e76202007-04-20 14:27:50 +02002291static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002292{
Jens Axboe08717142008-01-28 11:38:15 +01002293 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002294 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002295
Divyesh Shah3440c492010-04-09 09:29:57 +02002296 /* Expire the timeslice of the current active queue first */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002297 cfq_slice_expired(cfqd, 0);
Divyesh Shah3440c492010-04-09 09:29:57 +02002298 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
2299 __cfq_set_active_queue(cfqd, cfqq);
Vivek Goyalf04a6422009-12-03 12:59:40 -05002300 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Divyesh Shah3440c492010-04-09 09:29:57 +02002301 }
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002302
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002303 BUG_ON(cfqd->busy_queues);
2304
Jeff Moyer69237152009-06-12 15:29:30 +02002305 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002306 return dispatched;
2307}
2308
Shaohua Liabc3c742010-03-01 09:20:54 +01002309static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
2310 struct cfq_queue *cfqq)
2311{
2312 /* the queue hasn't finished any request, can't estimate */
2313 if (cfq_cfqq_slice_new(cfqq))
2314 return 1;
2315 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
2316 cfqq->slice_end))
2317 return 1;
2318
2319 return 0;
2320}
2321
Jens Axboe0b182d62009-10-06 20:49:37 +02002322static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02002323{
Jens Axboe2f5cb732009-04-07 08:51:19 +02002324 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Jens Axboe2f5cb732009-04-07 08:51:19 +02002326 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02002327 * Drain async requests before we start sync IO
2328 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002329 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02002330 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02002331
2332 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002333 * If this is an async queue and we have sync IO in flight, let it wait
2334 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002335 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002336 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002337
Shaohua Liabc3c742010-03-01 09:20:54 +01002338 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002339 if (cfq_class_idle(cfqq))
2340 max_dispatch = 1;
2341
2342 /*
2343 * Does this cfqq already have too much IO in flight?
2344 */
2345 if (cfqq->dispatched >= max_dispatch) {
2346 /*
2347 * idle queue must always only have a single IO in flight
2348 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02002349 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002350 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02002351
Jens Axboe2f5cb732009-04-07 08:51:19 +02002352 /*
2353 * We have other queues, don't allow more IO from this one
2354 */
Shaohua Liabc3c742010-03-01 09:20:54 +01002355 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002356 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11002357
Jens Axboe2f5cb732009-04-07 08:51:19 +02002358 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01002359 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02002360 */
Shaohua Liabc3c742010-03-01 09:20:54 +01002361 if (cfqd->busy_queues == 1)
2362 max_dispatch = -1;
2363 else
2364 /*
2365 * Normally we start throttling cfqq when cfq_quantum/2
2366 * requests have been dispatched. But we can drive
2367 * deeper queue depths at the beginning of slice
2368 * subjected to upper limit of cfq_quantum.
2369 * */
2370 max_dispatch = cfqd->cfq_quantum;
Jens Axboe8e296752009-10-03 16:26:03 +02002371 }
2372
2373 /*
2374 * Async queues must wait a bit before being allowed dispatch.
2375 * We also ramp up the dispatch depth gradually for async IO,
2376 * based on the last sync IO we serviced
2377 */
Jens Axboe963b72f2009-10-03 19:42:18 +02002378 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Corrado Zoccolo573412b2009-12-06 11:48:52 +01002379 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
Jens Axboe8e296752009-10-03 16:26:03 +02002380 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02002381
Jens Axboe61f0c1d2009-10-03 19:46:03 +02002382 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02002383 if (!depth && !cfqq->dispatched)
2384 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02002385 if (depth < max_dispatch)
2386 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 }
2388
Jens Axboe0b182d62009-10-06 20:49:37 +02002389 /*
2390 * If we're below the current max, allow a dispatch
2391 */
2392 return cfqq->dispatched < max_dispatch;
2393}
2394
2395/*
2396 * Dispatch a request from cfqq, moving them to the request queue
2397 * dispatch list.
2398 */
2399static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2400{
2401 struct request *rq;
2402
2403 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2404
2405 if (!cfq_may_dispatch(cfqd, cfqq))
2406 return false;
2407
2408 /*
2409 * follow expired path, else get first next available
2410 */
2411 rq = cfq_check_fifo(cfqq);
2412 if (!rq)
2413 rq = cfqq->next_rq;
2414
2415 /*
2416 * insert request into driver dispatch list
2417 */
2418 cfq_dispatch_insert(cfqd->queue, rq);
2419
2420 if (!cfqd->active_cic) {
2421 struct cfq_io_context *cic = RQ_CIC(rq);
2422
2423 atomic_long_inc(&cic->ioc->refcount);
2424 cfqd->active_cic = cic;
2425 }
2426
2427 return true;
2428}
2429
2430/*
2431 * Find the cfqq that we need to service and move a request from that to the
2432 * dispatch list
2433 */
2434static int cfq_dispatch_requests(struct request_queue *q, int force)
2435{
2436 struct cfq_data *cfqd = q->elevator->elevator_data;
2437 struct cfq_queue *cfqq;
2438
2439 if (!cfqd->busy_queues)
2440 return 0;
2441
2442 if (unlikely(force))
2443 return cfq_forced_dispatch(cfqd);
2444
2445 cfqq = cfq_select_queue(cfqd);
2446 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002447 return 0;
2448
Jens Axboe2f5cb732009-04-07 08:51:19 +02002449 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002450 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002451 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002452 if (!cfq_dispatch_request(cfqd, cfqq))
2453 return 0;
2454
Jens Axboe2f5cb732009-04-07 08:51:19 +02002455 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002456 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002457
2458 /*
2459 * expire an async queue immediately if it has used up its slice. idle
2460 * queue always expire after 1 dispatch round.
2461 */
2462 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2463 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2464 cfq_class_idle(cfqq))) {
2465 cfqq->slice_end = jiffies + 1;
Vivek Goyale5ff0822010-04-26 19:25:11 +02002466 cfq_slice_expired(cfqd, 0);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002467 }
2468
Shan Weib217a902009-09-01 10:06:42 +02002469 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002470 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473/*
Jens Axboe5e705372006-07-13 12:39:25 +02002474 * task holds one reference to the queue, dropped when task exits. each rq
2475 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05002477 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 * queue lock must be held here.
2479 */
2480static void cfq_put_queue(struct cfq_queue *cfqq)
2481{
Jens Axboe22e2c502005-06-27 10:55:12 +02002482 struct cfq_data *cfqd = cfqq->cfqd;
Vivek Goyal878eadd2009-12-07 19:37:15 +01002483 struct cfq_group *cfqg, *orig_cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02002484
2485 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487 if (!atomic_dec_and_test(&cfqq->ref))
2488 return;
2489
Jens Axboe7b679132008-05-30 12:23:07 +02002490 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002492 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002493 cfqg = cfqq->cfqg;
Vivek Goyal878eadd2009-12-07 19:37:15 +01002494 orig_cfqg = cfqq->orig_cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002496 if (unlikely(cfqd->active_queue == cfqq)) {
Vivek Goyale5ff0822010-04-26 19:25:11 +02002497 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002498 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002499 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002500
Vivek Goyalf04a6422009-12-03 12:59:40 -05002501 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 kmem_cache_free(cfq_pool, cfqq);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002503 cfq_put_cfqg(cfqg);
Vivek Goyal878eadd2009-12-07 19:37:15 +01002504 if (orig_cfqg)
2505 cfq_put_cfqg(orig_cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
2507
Jens Axboed6de8be2008-05-28 14:46:59 +02002508/*
2509 * Must always be called with the rcu_read_lock() held
2510 */
Jens Axboe07416d22008-05-07 09:17:12 +02002511static void
2512__call_for_each_cic(struct io_context *ioc,
2513 void (*func)(struct io_context *, struct cfq_io_context *))
2514{
2515 struct cfq_io_context *cic;
2516 struct hlist_node *n;
2517
2518 hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list)
2519 func(ioc, cic);
2520}
2521
Jens Axboe4ac845a2008-01-24 08:44:49 +01002522/*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002523 * Call func for each cic attached to this ioc.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002524 */
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002525static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002526call_for_each_cic(struct io_context *ioc,
2527 void (*func)(struct io_context *, struct cfq_io_context *))
2528{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002529 rcu_read_lock();
Jens Axboe07416d22008-05-07 09:17:12 +02002530 __call_for_each_cic(ioc, func);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002531 rcu_read_unlock();
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002532}
Jens Axboe4ac845a2008-01-24 08:44:49 +01002533
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002534static void cfq_cic_free_rcu(struct rcu_head *head)
2535{
2536 struct cfq_io_context *cic;
2537
2538 cic = container_of(head, struct cfq_io_context, rcu_head);
2539
2540 kmem_cache_free(cfq_ioc_pool, cic);
Tejun Heo245b2e72009-06-24 15:13:48 +09002541 elv_ioc_count_dec(cfq_ioc_count);
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002542
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002543 if (ioc_gone) {
2544 /*
2545 * CFQ scheduler is exiting, grab exit lock and check
2546 * the pending io context count. If it hits zero,
2547 * complete ioc_gone and set it back to NULL
2548 */
2549 spin_lock(&ioc_gone_lock);
Tejun Heo245b2e72009-06-24 15:13:48 +09002550 if (ioc_gone && !elv_ioc_count_read(cfq_ioc_count)) {
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002551 complete(ioc_gone);
2552 ioc_gone = NULL;
2553 }
2554 spin_unlock(&ioc_gone_lock);
2555 }
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002556}
2557
2558static void cfq_cic_free(struct cfq_io_context *cic)
2559{
2560 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002561}
2562
2563static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic)
2564{
2565 unsigned long flags;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002566 unsigned long dead_key = (unsigned long) cic->key;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002567
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002568 BUG_ON(!(dead_key & CIC_DEAD_KEY));
Jens Axboe4ac845a2008-01-24 08:44:49 +01002569
2570 spin_lock_irqsave(&ioc->lock, flags);
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002571 radix_tree_delete(&ioc->radix_root, dead_key >> CIC_DEAD_INDEX_SHIFT);
Jens Axboeffc4e752008-02-19 10:02:29 +01002572 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002573 spin_unlock_irqrestore(&ioc->lock, flags);
2574
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002575 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002576}
2577
Jens Axboed6de8be2008-05-28 14:46:59 +02002578/*
2579 * Must be called with rcu_read_lock() held or preemption otherwise disabled.
2580 * Only two callers of this - ->dtor() which is called with the rcu_read_lock(),
2581 * and ->trim() which is called with the task lock held
2582 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002583static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002585 /*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002586 * ioc->refcount is zero here, or we are called from elv_unregister(),
2587 * so no more cic's are allowed to be linked into this ioc. So it
2588 * should be ok to iterate over the known list, we will see all cic's
2589 * since no new ones are added.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002590 */
Jens Axboe07416d22008-05-07 09:17:12 +02002591 __call_for_each_cic(ioc, cic_free_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
2593
Shaohua Lid02a2c02010-05-25 10:16:53 +02002594static void cfq_put_cooperator(struct cfq_queue *cfqq)
Jens Axboe89850f72006-07-22 16:48:31 +02002595{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002596 struct cfq_queue *__cfqq, *next;
2597
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002598 /*
2599 * If this queue was scheduled to merge with another queue, be
2600 * sure to drop the reference taken on that queue (and others in
2601 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2602 */
2603 __cfqq = cfqq->new_cfqq;
2604 while (__cfqq) {
2605 if (__cfqq == cfqq) {
2606 WARN(1, "cfqq->new_cfqq loop detected\n");
2607 break;
2608 }
2609 next = __cfqq->new_cfqq;
2610 cfq_put_queue(__cfqq);
2611 __cfqq = next;
2612 }
Shaohua Lid02a2c02010-05-25 10:16:53 +02002613}
2614
2615static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2616{
2617 if (unlikely(cfqq == cfqd->active_queue)) {
2618 __cfq_slice_expired(cfqd, cfqq, 0);
2619 cfq_schedule_dispatch(cfqd);
2620 }
2621
2622 cfq_put_cooperator(cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002623
Jens Axboe89850f72006-07-22 16:48:31 +02002624 cfq_put_queue(cfqq);
2625}
2626
2627static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
2628 struct cfq_io_context *cic)
2629{
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002630 struct io_context *ioc = cic->ioc;
2631
Jens Axboefc463792006-08-29 09:05:44 +02002632 list_del_init(&cic->queue_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002633
2634 /*
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002635 * Make sure dead mark is seen for dead queues
Jens Axboe4ac845a2008-01-24 08:44:49 +01002636 */
Jens Axboefc463792006-08-29 09:05:44 +02002637 smp_wmb();
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002638 cic->key = cfqd_dead_key(cfqd);
Jens Axboefc463792006-08-29 09:05:44 +02002639
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002640 if (ioc->ioc_data == cic)
2641 rcu_assign_pointer(ioc->ioc_data, NULL);
2642
Jens Axboeff6657c2009-04-08 10:58:57 +02002643 if (cic->cfqq[BLK_RW_ASYNC]) {
2644 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2645 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002646 }
2647
Jens Axboeff6657c2009-04-08 10:58:57 +02002648 if (cic->cfqq[BLK_RW_SYNC]) {
2649 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2650 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002651 }
Jens Axboe89850f72006-07-22 16:48:31 +02002652}
2653
Jens Axboe4ac845a2008-01-24 08:44:49 +01002654static void cfq_exit_single_io_context(struct io_context *ioc,
2655 struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002656{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002657 struct cfq_data *cfqd = cic_to_cfqd(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02002658
Jens Axboe89850f72006-07-22 16:48:31 +02002659 if (cfqd) {
Jens Axboe165125e2007-07-24 09:28:11 +02002660 struct request_queue *q = cfqd->queue;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002661 unsigned long flags;
Jens Axboe22e2c502005-06-27 10:55:12 +02002662
Jens Axboe4ac845a2008-01-24 08:44:49 +01002663 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboe62c1fe92008-12-15 21:19:25 +01002664
2665 /*
2666 * Ensure we get a fresh copy of the ->key to prevent
2667 * race between exiting task and queue
2668 */
2669 smp_read_barrier_depends();
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002670 if (cic->key == cfqd)
Jens Axboe62c1fe92008-12-15 21:19:25 +01002671 __cfq_exit_single_io_context(cfqd, cic);
2672
Jens Axboe4ac845a2008-01-24 08:44:49 +01002673 spin_unlock_irqrestore(q->queue_lock, flags);
Al Viro12a05732006-03-18 13:38:01 -05002674 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002675}
2676
Jens Axboe498d3aa2007-04-26 12:54:48 +02002677/*
2678 * The process that ioc belongs to has exited, we need to clean up
2679 * and put the internal structures we have that belongs to that process.
2680 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002681static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002683 call_for_each_cic(ioc, cfq_exit_single_io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684}
2685
Jens Axboe22e2c502005-06-27 10:55:12 +02002686static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04002687cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688{
Jens Axboeb5deef92006-07-19 23:39:40 +02002689 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Christoph Lameter94f60302007-07-17 04:03:29 -07002691 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
2692 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 if (cic) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002694 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02002695 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboeffc4e752008-02-19 10:02:29 +01002696 INIT_HLIST_NODE(&cic->cic_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02002697 cic->dtor = cfq_free_io_context;
2698 cic->exit = cfq_exit_io_context;
Tejun Heo245b2e72009-06-24 15:13:48 +09002699 elv_ioc_count_inc(cfq_ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 }
2701
2702 return cic;
2703}
2704
Jens Axboefd0928d2008-01-24 08:52:45 +01002705static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02002706{
2707 struct task_struct *tsk = current;
2708 int ioprio_class;
2709
Jens Axboe3b181522005-06-27 10:56:24 +02002710 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002711 return;
2712
Jens Axboefd0928d2008-01-24 08:52:45 +01002713 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002714 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002715 default:
2716 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2717 case IOPRIO_CLASS_NONE:
2718 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002719 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002720 */
2721 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002722 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002723 break;
2724 case IOPRIO_CLASS_RT:
2725 cfqq->ioprio = task_ioprio(ioc);
2726 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2727 break;
2728 case IOPRIO_CLASS_BE:
2729 cfqq->ioprio = task_ioprio(ioc);
2730 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2731 break;
2732 case IOPRIO_CLASS_IDLE:
2733 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2734 cfqq->ioprio = 7;
2735 cfq_clear_cfqq_idle_window(cfqq);
2736 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002737 }
2738
2739 /*
2740 * keep track of original prio settings in case we have to temporarily
2741 * elevate the priority of this queue
2742 */
2743 cfqq->org_ioprio = cfqq->ioprio;
2744 cfqq->org_ioprio_class = cfqq->ioprio_class;
Jens Axboe3b181522005-06-27 10:56:24 +02002745 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002746}
2747
Jens Axboefebffd62008-01-28 13:19:43 +01002748static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002749{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002750 struct cfq_data *cfqd = cic_to_cfqd(cic);
Al Viro478a82b2006-03-18 13:25:24 -05002751 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01002752 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02002753
Jens Axboecaaa5f92006-06-16 11:23:00 +02002754 if (unlikely(!cfqd))
2755 return;
2756
Jens Axboec1b707d2006-10-30 19:54:23 +01002757 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002758
Jens Axboeff6657c2009-04-08 10:58:57 +02002759 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002760 if (cfqq) {
2761 struct cfq_queue *new_cfqq;
Jens Axboeff6657c2009-04-08 10:58:57 +02002762 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc,
2763 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002764 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002765 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002766 cfq_put_queue(cfqq);
2767 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002768 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002769
Jens Axboeff6657c2009-04-08 10:58:57 +02002770 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002771 if (cfqq)
2772 cfq_mark_cfqq_prio_changed(cfqq);
2773
Jens Axboec1b707d2006-10-30 19:54:23 +01002774 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02002775}
2776
Jens Axboefc463792006-08-29 09:05:44 +02002777static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002779 call_for_each_cic(ioc, changed_ioprio);
Jens Axboefc463792006-08-29 09:05:44 +02002780 ioc->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781}
2782
Jens Axboed5036d72009-06-26 10:44:34 +02002783static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002784 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002785{
2786 RB_CLEAR_NODE(&cfqq->rb_node);
2787 RB_CLEAR_NODE(&cfqq->p_node);
2788 INIT_LIST_HEAD(&cfqq->fifo);
2789
2790 atomic_set(&cfqq->ref, 0);
2791 cfqq->cfqd = cfqd;
2792
2793 cfq_mark_cfqq_prio_changed(cfqq);
2794
2795 if (is_sync) {
2796 if (!cfq_class_idle(cfqq))
2797 cfq_mark_cfqq_idle_window(cfqq);
2798 cfq_mark_cfqq_sync(cfqq);
2799 }
2800 cfqq->pid = pid;
2801}
2802
Vivek Goyal24610332009-12-03 12:59:51 -05002803#ifdef CONFIG_CFQ_GROUP_IOSCHED
2804static void changed_cgroup(struct io_context *ioc, struct cfq_io_context *cic)
2805{
2806 struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002807 struct cfq_data *cfqd = cic_to_cfqd(cic);
Vivek Goyal24610332009-12-03 12:59:51 -05002808 unsigned long flags;
2809 struct request_queue *q;
2810
2811 if (unlikely(!cfqd))
2812 return;
2813
2814 q = cfqd->queue;
2815
2816 spin_lock_irqsave(q->queue_lock, flags);
2817
2818 if (sync_cfqq) {
2819 /*
2820 * Drop reference to sync queue. A new sync queue will be
2821 * assigned in new group upon arrival of a fresh request.
2822 */
2823 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2824 cic_set_cfqq(cic, NULL, 1);
2825 cfq_put_queue(sync_cfqq);
2826 }
2827
2828 spin_unlock_irqrestore(q->queue_lock, flags);
2829}
2830
2831static void cfq_ioc_set_cgroup(struct io_context *ioc)
2832{
2833 call_for_each_cic(ioc, changed_cgroup);
2834 ioc->cgroup_changed = 0;
2835}
2836#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2837
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002839cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01002840 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vasily Tarasov91fac312007-04-25 12:29:51 +02002843 struct cfq_io_context *cic;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002844 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
2846retry:
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002847 cfqg = cfq_get_cfqg(cfqd, 1);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002848 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002849 /* cic always exists here */
2850 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Jens Axboe6118b702009-06-30 09:34:12 +02002852 /*
2853 * Always try a new alloc if we fell back to the OOM cfqq
2854 * originally, since it should just be a temporary situation.
2855 */
2856 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2857 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 if (new_cfqq) {
2859 cfqq = new_cfqq;
2860 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002861 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002863 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002864 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002865 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002867 if (new_cfqq)
2868 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002869 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002870 cfqq = kmem_cache_alloc_node(cfq_pool,
2871 gfp_mask | __GFP_ZERO,
2872 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Jens Axboe6118b702009-06-30 09:34:12 +02002875 if (cfqq) {
2876 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2877 cfq_init_prio_data(cfqq, ioc);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002878 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002879 cfq_log_cfqq(cfqd, cfqq, "alloced");
2880 } else
2881 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 }
2883
2884 if (new_cfqq)
2885 kmem_cache_free(cfq_pool, new_cfqq);
2886
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 return cfqq;
2888}
2889
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002890static struct cfq_queue **
2891cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2892{
Jens Axboefe094d92008-01-31 13:08:54 +01002893 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002894 case IOPRIO_CLASS_RT:
2895 return &cfqd->async_cfqq[0][ioprio];
2896 case IOPRIO_CLASS_BE:
2897 return &cfqd->async_cfqq[1][ioprio];
2898 case IOPRIO_CLASS_IDLE:
2899 return &cfqd->async_idle_cfqq;
2900 default:
2901 BUG();
2902 }
2903}
2904
Jens Axboe15c31be2007-07-10 13:43:25 +02002905static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002906cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02002907 gfp_t gfp_mask)
2908{
Jens Axboefd0928d2008-01-24 08:52:45 +01002909 const int ioprio = task_ioprio(ioc);
2910 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002911 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002912 struct cfq_queue *cfqq = NULL;
2913
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002914 if (!is_sync) {
2915 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2916 cfqq = *async_cfqq;
2917 }
2918
Jens Axboe6118b702009-06-30 09:34:12 +02002919 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01002920 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002921
2922 /*
2923 * pin the queue now that it's allocated, scheduler exit will prune it
2924 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002925 if (!is_sync && !(*async_cfqq)) {
Jens Axboe15c31be2007-07-10 13:43:25 +02002926 atomic_inc(&cfqq->ref);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002927 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002928 }
2929
2930 atomic_inc(&cfqq->ref);
2931 return cfqq;
2932}
2933
Jens Axboe498d3aa2007-04-26 12:54:48 +02002934/*
2935 * We drop cfq io contexts lazily, so we may find a dead one.
2936 */
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002937static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002938cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc,
2939 struct cfq_io_context *cic)
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002940{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002941 unsigned long flags;
2942
Jens Axboefc463792006-08-29 09:05:44 +02002943 WARN_ON(!list_empty(&cic->queue_list));
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002944 BUG_ON(cic->key != cfqd_dead_key(cfqd));
Jens Axboe597bc482007-04-24 21:23:53 +02002945
Jens Axboe4ac845a2008-01-24 08:44:49 +01002946 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe597bc482007-04-24 21:23:53 +02002947
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002948 BUG_ON(ioc->ioc_data == cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002949
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002950 radix_tree_delete(&ioc->radix_root, cfqd->cic_index);
Jens Axboeffc4e752008-02-19 10:02:29 +01002951 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002952 spin_unlock_irqrestore(&ioc->lock, flags);
2953
2954 cfq_cic_free(cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002955}
2956
Jens Axboee2d74ac2006-03-28 08:59:01 +02002957static struct cfq_io_context *
Jens Axboe4ac845a2008-01-24 08:44:49 +01002958cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002959{
Jens Axboee2d74ac2006-03-28 08:59:01 +02002960 struct cfq_io_context *cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002961 unsigned long flags;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002962
Vasily Tarasov91fac312007-04-25 12:29:51 +02002963 if (unlikely(!ioc))
2964 return NULL;
2965
Jens Axboed6de8be2008-05-28 14:46:59 +02002966 rcu_read_lock();
2967
Jens Axboe597bc482007-04-24 21:23:53 +02002968 /*
2969 * we maintain a last-hit cache, to avoid browsing over the tree
2970 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01002971 cic = rcu_dereference(ioc->ioc_data);
Jens Axboed6de8be2008-05-28 14:46:59 +02002972 if (cic && cic->key == cfqd) {
2973 rcu_read_unlock();
Jens Axboe597bc482007-04-24 21:23:53 +02002974 return cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002975 }
Jens Axboe597bc482007-04-24 21:23:53 +02002976
Jens Axboe4ac845a2008-01-24 08:44:49 +01002977 do {
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002978 cic = radix_tree_lookup(&ioc->radix_root, cfqd->cic_index);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002979 rcu_read_unlock();
2980 if (!cic)
2981 break;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002982 if (unlikely(cic->key != cfqd)) {
Jens Axboe4ac845a2008-01-24 08:44:49 +01002983 cfq_drop_dead_cic(cfqd, ioc, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002984 rcu_read_lock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01002985 continue;
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002986 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002987
Jens Axboed6de8be2008-05-28 14:46:59 +02002988 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002989 rcu_assign_pointer(ioc->ioc_data, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002990 spin_unlock_irqrestore(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002991 break;
2992 } while (1);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002993
Jens Axboe4ac845a2008-01-24 08:44:49 +01002994 return cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002995}
2996
Jens Axboe4ac845a2008-01-24 08:44:49 +01002997/*
2998 * Add cic into ioc, using cfqd as the search key. This enables us to lookup
2999 * the process specific cfq io context when entered from the block layer.
3000 * Also adds the cic to a per-cfqd list, used when this queue is removed.
3001 */
Jens Axboefebffd62008-01-28 13:19:43 +01003002static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
3003 struct cfq_io_context *cic, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02003004{
Jens Axboe0261d682006-10-30 19:07:48 +01003005 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01003006 int ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003007
Jens Axboe4ac845a2008-01-24 08:44:49 +01003008 ret = radix_tree_preload(gfp_mask);
3009 if (!ret) {
3010 cic->ioc = ioc;
3011 cic->key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003012
Jens Axboe4ac845a2008-01-24 08:44:49 +01003013 spin_lock_irqsave(&ioc->lock, flags);
3014 ret = radix_tree_insert(&ioc->radix_root,
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003015 cfqd->cic_index, cic);
Jens Axboeffc4e752008-02-19 10:02:29 +01003016 if (!ret)
3017 hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01003018 spin_unlock_irqrestore(&ioc->lock, flags);
3019
3020 radix_tree_preload_end();
3021
3022 if (!ret) {
3023 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3024 list_add(&cic->queue_list, &cfqd->cic_list);
3025 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02003026 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003027 }
3028
Jens Axboe4ac845a2008-01-24 08:44:49 +01003029 if (ret)
3030 printk(KERN_ERR "cfq: cic link failed!\n");
Jens Axboefc463792006-08-29 09:05:44 +02003031
Jens Axboe4ac845a2008-01-24 08:44:49 +01003032 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003033}
3034
Jens Axboe22e2c502005-06-27 10:55:12 +02003035/*
3036 * Setup general io context and cfq io context. There can be several cfq
3037 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02003038 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02003039 */
3040static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02003041cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042{
Jens Axboe22e2c502005-06-27 10:55:12 +02003043 struct io_context *ioc = NULL;
3044 struct cfq_io_context *cic;
3045
3046 might_sleep_if(gfp_mask & __GFP_WAIT);
3047
Jens Axboeb5deef92006-07-19 23:39:40 +02003048 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02003049 if (!ioc)
3050 return NULL;
3051
Jens Axboe4ac845a2008-01-24 08:44:49 +01003052 cic = cfq_cic_lookup(cfqd, ioc);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003053 if (cic)
3054 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02003055
Jens Axboee2d74ac2006-03-28 08:59:01 +02003056 cic = cfq_alloc_io_context(cfqd, gfp_mask);
3057 if (cic == NULL)
3058 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02003059
Jens Axboe4ac845a2008-01-24 08:44:49 +01003060 if (cfq_cic_link(cfqd, ioc, cic, gfp_mask))
3061 goto err_free;
3062
Jens Axboe22e2c502005-06-27 10:55:12 +02003063out:
Jens Axboefc463792006-08-29 09:05:44 +02003064 smp_read_barrier_depends();
3065 if (unlikely(ioc->ioprio_changed))
3066 cfq_ioc_set_ioprio(ioc);
3067
Vivek Goyal24610332009-12-03 12:59:51 -05003068#ifdef CONFIG_CFQ_GROUP_IOSCHED
3069 if (unlikely(ioc->cgroup_changed))
3070 cfq_ioc_set_cgroup(ioc);
3071#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02003072 return cic;
Jens Axboe4ac845a2008-01-24 08:44:49 +01003073err_free:
3074 cfq_cic_free(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02003075err:
3076 put_io_context(ioc);
3077 return NULL;
3078}
3079
3080static void
3081cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
3082{
Jens Axboeaaf12282007-01-19 11:30:16 +11003083 unsigned long elapsed = jiffies - cic->last_end_request;
3084 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02003085
3086 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
3087 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
3088 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
3089}
3090
Jens Axboe206dc692006-03-28 13:03:44 +02003091static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003092cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02003093 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02003094{
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003095 sector_t sdist = 0;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003096 sector_t n_sec = blk_rq_sectors(rq);
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003097 if (cfqq->last_request_pos) {
3098 if (cfqq->last_request_pos < blk_rq_pos(rq))
3099 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
3100 else
3101 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
3102 }
Jens Axboe206dc692006-03-28 13:03:44 +02003103
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003104 cfqq->seek_history <<= 1;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003105 if (blk_queue_nonrot(cfqd->queue))
3106 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
3107 else
3108 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
Jens Axboe206dc692006-03-28 13:03:44 +02003109}
Jens Axboe22e2c502005-06-27 10:55:12 +02003110
3111/*
3112 * Disable idle window if the process thinks too long or seeks so much that
3113 * it doesn't matter
3114 */
3115static void
3116cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3117 struct cfq_io_context *cic)
3118{
Jens Axboe7b679132008-05-30 12:23:07 +02003119 int old_idle, enable_idle;
Jens Axboe1be92f22007-04-19 14:32:26 +02003120
Jens Axboe08717142008-01-28 11:38:15 +01003121 /*
3122 * Don't idle for async or idle io prio class
3123 */
3124 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f22007-04-19 14:32:26 +02003125 return;
3126
Jens Axboec265a7f2008-06-26 13:49:33 +02003127 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003128
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003129 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3130 cfq_mark_cfqq_deep(cfqq);
3131
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01003132 if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003133 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02003134 enable_idle = 0;
3135 else if (sample_valid(cic->ttime_samples)) {
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003136 if (cic->ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003137 enable_idle = 0;
3138 else
3139 enable_idle = 1;
3140 }
3141
Jens Axboe7b679132008-05-30 12:23:07 +02003142 if (old_idle != enable_idle) {
3143 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3144 if (enable_idle)
3145 cfq_mark_cfqq_idle_window(cfqq);
3146 else
3147 cfq_clear_cfqq_idle_window(cfqq);
3148 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003149}
3150
Jens Axboe22e2c502005-06-27 10:55:12 +02003151/*
3152 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3153 * no or if we aren't sure, a 1 will cause a preempt.
3154 */
Jens Axboea6151c32009-10-07 20:02:57 +02003155static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02003156cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02003157 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003158{
Jens Axboe6d048f52007-04-25 12:44:27 +02003159 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003160
Jens Axboe6d048f52007-04-25 12:44:27 +02003161 cfqq = cfqd->active_queue;
3162 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02003163 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003164
Jens Axboe6d048f52007-04-25 12:44:27 +02003165 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003166 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003167
3168 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003169 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003170
Jens Axboe22e2c502005-06-27 10:55:12 +02003171 /*
Divyesh Shah875feb62010-01-06 18:58:20 -08003172 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3173 */
3174 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3175 return false;
3176
3177 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02003178 * if the new request is sync, but the currently running queue is
3179 * not, let the sync request have priority.
3180 */
Jens Axboe5e705372006-07-13 12:39:25 +02003181 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003182 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003183
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003184 if (new_cfqq->cfqg != cfqq->cfqg)
3185 return false;
3186
3187 if (cfq_slice_used(cfqq))
3188 return true;
3189
3190 /* Allow preemption only if we are idling on sync-noidle tree */
3191 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
3192 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3193 new_cfqq->service_tree->count == 2 &&
3194 RB_EMPTY_ROOT(&cfqq->sort_list))
3195 return true;
3196
Jens Axboe374f84a2006-07-23 01:42:19 +02003197 /*
3198 * So both queues are sync. Let the new request get disk time if
3199 * it's a metadata request and the current queue is doing regular IO.
3200 */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003201 if ((rq->cmd_flags & REQ_META) && !cfqq->meta_pending)
Jens Axboee6ec4fe2009-11-03 20:21:35 +01003202 return true;
Jens Axboe22e2c502005-06-27 10:55:12 +02003203
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003204 /*
3205 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3206 */
3207 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003208 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003209
Jens Axboe1e3335d2007-02-14 19:59:49 +01003210 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003211 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003212
3213 /*
3214 * if this request is as-good as one we would expect from the
3215 * current cfqq, let it preempt
3216 */
Shaohua Lie9ce3352010-03-19 08:03:04 +01003217 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02003218 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003219
Jens Axboea6151c32009-10-07 20:02:57 +02003220 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003221}
3222
3223/*
3224 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3225 * let it have half of its nominal slice.
3226 */
3227static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3228{
Jens Axboe7b679132008-05-30 12:23:07 +02003229 cfq_log_cfqq(cfqd, cfqq, "preempt");
Vivek Goyale5ff0822010-04-26 19:25:11 +02003230 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003231
Jens Axboebf572252006-07-19 20:29:12 +02003232 /*
3233 * Put the new queue at the front of the of the current list,
3234 * so we know that it will be selected next.
3235 */
3236 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02003237
3238 cfq_service_tree_add(cfqd, cfqq, 1);
Jens Axboebf572252006-07-19 20:29:12 +02003239
Jens Axboe44f7c162007-01-19 11:51:58 +11003240 cfqq->slice_end = 0;
3241 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003242}
3243
3244/*
Jens Axboe5e705372006-07-13 12:39:25 +02003245 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02003246 * something we should do about it
3247 */
3248static void
Jens Axboe5e705372006-07-13 12:39:25 +02003249cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3250 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003251{
Jens Axboe5e705372006-07-13 12:39:25 +02003252 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003253
Aaron Carroll45333d52008-08-26 15:52:36 +02003254 cfqd->rq_queued++;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003255 if (rq->cmd_flags & REQ_META)
Jens Axboe374f84a2006-07-23 01:42:19 +02003256 cfqq->meta_pending++;
3257
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003258 cfq_update_io_thinktime(cfqd, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003259 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003260 cfq_update_idle_window(cfqd, cfqq, cic);
3261
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003262 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003263
3264 if (cfqq == cfqd->active_queue) {
3265 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003266 * Remember that we saw a request from this process, but
3267 * don't start queuing just yet. Otherwise we risk seeing lots
3268 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003269 * and merging. If the request is already larger than a single
3270 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003271 * merging is already done. Ditto for a busy system that
3272 * has other work pending, don't risk delaying until the
3273 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003274 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003275 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003276 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3277 cfqd->busy_queues > 1) {
Divyesh Shah812df482010-04-08 21:15:35 -07003278 cfq_del_timer(cfqd, cfqq);
Gui Jianfeng554554f2009-12-10 09:38:39 +01003279 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalbf791932009-12-03 12:59:37 -05003280 __blk_run_queue(cfqd->queue);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003281 } else {
Vivek Goyale98ef892010-06-18 10:39:47 -04003282 cfq_blkiocg_update_idle_time_stats(
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003283 &cfqq->cfqg->blkg);
Vivek Goyalbf791932009-12-03 12:59:37 -05003284 cfq_mark_cfqq_must_dispatch(cfqq);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003285 }
Jens Axboed6ceb252009-04-14 14:18:16 +02003286 }
Jens Axboe5e705372006-07-13 12:39:25 +02003287 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003288 /*
3289 * not the active queue - expire current slice if it is
3290 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003291 * has some old slice time left and is of higher priority or
3292 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003293 */
3294 cfq_preempt_queue(cfqd, cfqq);
Tejun Heoa7f55792009-04-23 11:05:17 +09003295 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003296 }
3297}
3298
Jens Axboe165125e2007-07-24 09:28:11 +02003299static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003300{
Jens Axboeb4878f22005-10-20 16:42:29 +02003301 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003302 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003303
Jens Axboe7b679132008-05-30 12:23:07 +02003304 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Jens Axboefd0928d2008-01-24 08:52:45 +01003305 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Jens Axboe30996f42009-10-05 11:03:39 +02003307 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02003308 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003309 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04003310 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -07003311 &cfqd->serving_group->blkg, rq_data_dir(rq),
3312 rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02003313 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314}
3315
Aaron Carroll45333d52008-08-26 15:52:36 +02003316/*
3317 * Update hw_tag based on peak queue depth over 50 samples under
3318 * sufficient load.
3319 */
3320static void cfq_update_hw_tag(struct cfq_data *cfqd)
3321{
Shaohua Li1a1238a2009-10-27 08:46:23 +01003322 struct cfq_queue *cfqq = cfqd->active_queue;
3323
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003324 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
3325 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003326
3327 if (cfqd->hw_tag == 1)
3328 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02003329
3330 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003331 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003332 return;
3333
Shaohua Li1a1238a2009-10-27 08:46:23 +01003334 /*
3335 * If active queue hasn't enough requests and can idle, cfq might not
3336 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3337 * case
3338 */
3339 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3340 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003341 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
Shaohua Li1a1238a2009-10-27 08:46:23 +01003342 return;
3343
Aaron Carroll45333d52008-08-26 15:52:36 +02003344 if (cfqd->hw_tag_samples++ < 50)
3345 return;
3346
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003347 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003348 cfqd->hw_tag = 1;
3349 else
3350 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02003351}
3352
Vivek Goyal7667aa02009-12-08 17:52:58 -05003353static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3354{
3355 struct cfq_io_context *cic = cfqd->active_cic;
3356
3357 /* If there are other queues in the group, don't wait */
3358 if (cfqq->cfqg->nr_cfqq > 1)
3359 return false;
3360
3361 if (cfq_slice_used(cfqq))
3362 return true;
3363
3364 /* if slice left is less than think time, wait busy */
3365 if (cic && sample_valid(cic->ttime_samples)
3366 && (cfqq->slice_end - jiffies < cic->ttime_mean))
3367 return true;
3368
3369 /*
3370 * If think times is less than a jiffy than ttime_mean=0 and above
3371 * will not be true. It might happen that slice has not expired yet
3372 * but will expire soon (4-5 ns) during select_queue(). To cover the
3373 * case where think time is less than a jiffy, mark the queue wait
3374 * busy if only 1 jiffy is left in the slice.
3375 */
3376 if (cfqq->slice_end - jiffies == 1)
3377 return true;
3378
3379 return false;
3380}
3381
Jens Axboe165125e2007-07-24 09:28:11 +02003382static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383{
Jens Axboe5e705372006-07-13 12:39:25 +02003384 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003385 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02003386 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003387 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
Jens Axboeb4878f22005-10-20 16:42:29 +02003389 now = jiffies;
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003390 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
3391 !!(rq->cmd_flags & REQ_NOIDLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
Aaron Carroll45333d52008-08-26 15:52:36 +02003393 cfq_update_hw_tag(cfqd);
3394
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003395 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02003396 WARN_ON(!cfqq->dispatched);
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003397 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02003398 cfqq->dispatched--;
Vivek Goyale98ef892010-06-18 10:39:47 -04003399 cfq_blkiocg_update_completion_stats(&cfqq->cfqg->blkg,
3400 rq_start_time_ns(rq), rq_io_start_time_ns(rq),
3401 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003403 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
Jens Axboe3ed9a292007-04-23 08:33:33 +02003404
Vivek Goyal365722b2009-10-03 15:21:27 +02003405 if (sync) {
Jens Axboe5e705372006-07-13 12:39:25 +02003406 RQ_CIC(rq)->last_end_request = now;
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003407 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3408 cfqd->last_delayed_sync = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02003409 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003410
3411 /*
3412 * If this is the active queue, check if it needs to be expired,
3413 * or if we want to idle in case it has no pending requests.
3414 */
3415 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02003416 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3417
Jens Axboe44f7c162007-01-19 11:51:58 +11003418 if (cfq_cfqq_slice_new(cfqq)) {
3419 cfq_set_prio_slice(cfqd, cfqq);
3420 cfq_clear_cfqq_slice_new(cfqq);
3421 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05003422
3423 /*
Vivek Goyal7667aa02009-12-08 17:52:58 -05003424 * Should we wait for next request to come in before we expire
3425 * the queue.
Vivek Goyalf75edf22009-12-03 12:59:53 -05003426 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05003427 if (cfq_should_wait_busy(cfqd, cfqq)) {
Vivek Goyalf75edf22009-12-03 12:59:53 -05003428 cfqq->slice_end = jiffies + cfqd->cfq_slice_idle;
3429 cfq_mark_cfqq_wait_busy(cfqq);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01003430 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
Vivek Goyalf75edf22009-12-03 12:59:53 -05003431 }
3432
Jens Axboea36e71f2009-04-15 12:15:11 +02003433 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003434 * Idling is not enabled on:
3435 * - expired queues
3436 * - idle-priority queues
3437 * - async queues
3438 * - queues with still some requests queued
3439 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02003440 */
Jens Axboe08717142008-01-28 11:38:15 +01003441 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Vivek Goyale5ff0822010-04-26 19:25:11 +02003442 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003443 else if (sync && cfqq_empty &&
3444 !cfq_close_cooperator(cfqd, cfqq)) {
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003445 cfqd->noidle_tree_requires_idle |=
3446 !(rq->cmd_flags & REQ_NOIDLE);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003447 /*
3448 * Idling is enabled for SYNC_WORKLOAD.
3449 * SYNC_NOIDLE_WORKLOAD idles at the end of the tree
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003450 * only if we processed at least one !REQ_NOIDLE request
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003451 */
3452 if (cfqd->serving_type == SYNC_WORKLOAD
Vivek Goyalc04645e2009-12-03 12:59:56 -05003453 || cfqd->noidle_tree_requires_idle
3454 || cfqq->cfqg->nr_cfqq == 1)
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003455 cfq_arm_slice_timer(cfqd);
3456 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003457 }
Jens Axboe6d048f52007-04-25 12:44:27 +02003458
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003459 if (!cfqd->rq_in_driver)
Jens Axboe23e018a2009-10-05 08:52:35 +02003460 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461}
3462
Jens Axboe22e2c502005-06-27 10:55:12 +02003463/*
3464 * we temporarily boost lower priority queues if they are holding fs exclusive
3465 * resources. they are boosted to normal prio (CLASS_BE/4)
3466 */
3467static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
Jens Axboe22e2c502005-06-27 10:55:12 +02003469 if (has_fs_excl()) {
3470 /*
3471 * boost idle prio on transactions that would lock out other
3472 * users of the filesystem
3473 */
3474 if (cfq_class_idle(cfqq))
3475 cfqq->ioprio_class = IOPRIO_CLASS_BE;
3476 if (cfqq->ioprio > IOPRIO_NORM)
3477 cfqq->ioprio = IOPRIO_NORM;
3478 } else {
3479 /*
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003480 * unboost the queue (if needed)
Jens Axboe22e2c502005-06-27 10:55:12 +02003481 */
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003482 cfqq->ioprio_class = cfqq->org_ioprio_class;
3483 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003485}
3486
Jens Axboe89850f72006-07-22 16:48:31 +02003487static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003488{
Jens Axboe1b379d82009-08-11 08:26:11 +02003489 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003490 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003491 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003492 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003493
3494 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003495}
3496
Jens Axboe165125e2007-07-24 09:28:11 +02003497static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003498{
3499 struct cfq_data *cfqd = q->elevator->elevator_data;
3500 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02003501 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003502 struct cfq_queue *cfqq;
3503
3504 /*
3505 * don't force setup of a queue from here, as a call to may_queue
3506 * does not necessarily imply that a request actually will be queued.
3507 * so just lookup a possibly existing queue, or return 'may queue'
3508 * if that fails
3509 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003510 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003511 if (!cic)
3512 return ELV_MQUEUE_MAY;
3513
Jens Axboeb0b78f82009-04-08 10:56:08 +02003514 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003515 if (cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003516 cfq_init_prio_data(cfqq, cic->ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02003517 cfq_prio_boost(cfqq);
3518
Jens Axboe89850f72006-07-22 16:48:31 +02003519 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003520 }
3521
3522 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523}
3524
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525/*
3526 * queue lock held here
3527 */
Jens Axboebb37b942006-12-01 10:42:33 +01003528static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529{
Jens Axboe5e705372006-07-13 12:39:25 +02003530 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
Jens Axboe5e705372006-07-13 12:39:25 +02003532 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003533 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Jens Axboe22e2c502005-06-27 10:55:12 +02003535 BUG_ON(!cfqq->allocated[rw]);
3536 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Jens Axboe5e705372006-07-13 12:39:25 +02003538 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02003541 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003543 /* Put down rq reference on cfqg */
3544 cfq_put_cfqg(RQ_CFQG(rq));
3545 rq->elevator_private3 = NULL;
3546
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 cfq_put_queue(cfqq);
3548 }
3549}
3550
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003551static struct cfq_queue *
3552cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic,
3553 struct cfq_queue *cfqq)
3554{
3555 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3556 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003557 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003558 cfq_put_queue(cfqq);
3559 return cic_to_cfqq(cic, 1);
3560}
3561
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003562/*
3563 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3564 * was the last process referring to said cfqq.
3565 */
3566static struct cfq_queue *
3567split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq)
3568{
3569 if (cfqq_process_refs(cfqq) == 1) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003570 cfqq->pid = current->pid;
3571 cfq_clear_cfqq_coop(cfqq);
Shaohua Liae54abe2010-02-05 13:11:45 +01003572 cfq_clear_cfqq_split_coop(cfqq);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003573 return cfqq;
3574 }
3575
3576 cic_set_cfqq(cic, NULL, 1);
Shaohua Lid02a2c02010-05-25 10:16:53 +02003577
3578 cfq_put_cooperator(cfqq);
3579
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003580 cfq_put_queue(cfqq);
3581 return NULL;
3582}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003584 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003586static int
Jens Axboe165125e2007-07-24 09:28:11 +02003587cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588{
3589 struct cfq_data *cfqd = q->elevator->elevator_data;
3590 struct cfq_io_context *cic;
3591 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003592 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003593 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 unsigned long flags;
3595
3596 might_sleep_if(gfp_mask & __GFP_WAIT);
3597
Jens Axboee2d74ac2006-03-28 08:59:01 +02003598 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02003599
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 spin_lock_irqsave(q->queue_lock, flags);
3601
Jens Axboe22e2c502005-06-27 10:55:12 +02003602 if (!cic)
3603 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003605new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003606 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003607 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003608 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003609 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003610 } else {
3611 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003612 * If the queue was seeky for too long, break it apart.
3613 */
Shaohua Liae54abe2010-02-05 13:11:45 +01003614 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003615 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3616 cfqq = split_cfqq(cic, cfqq);
3617 if (!cfqq)
3618 goto new_queue;
3619 }
3620
3621 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003622 * Check to see if this queue is scheduled to merge with
3623 * another, closely cooperating queue. The merging of
3624 * queues happens here as it must be done in process context.
3625 * The reference on new_cfqq was taken in merge_cfqqs.
3626 */
3627 if (cfqq->new_cfqq)
3628 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
3631 cfqq->allocated[rw]++;
Jens Axboe22e2c502005-06-27 10:55:12 +02003632 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02003633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 spin_unlock_irqrestore(q->queue_lock, flags);
3635
Jens Axboe5e705372006-07-13 12:39:25 +02003636 rq->elevator_private = cic;
3637 rq->elevator_private2 = cfqq;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003638 rq->elevator_private3 = cfq_ref_get_cfqg(cfqq->cfqg);
Jens Axboe5e705372006-07-13 12:39:25 +02003639 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02003640
Jens Axboe22e2c502005-06-27 10:55:12 +02003641queue_fail:
3642 if (cic)
3643 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02003644
Jens Axboe23e018a2009-10-05 08:52:35 +02003645 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 spin_unlock_irqrestore(q->queue_lock, flags);
Jens Axboe7b679132008-05-30 12:23:07 +02003647 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 return 1;
3649}
3650
David Howells65f27f32006-11-22 14:55:48 +00003651static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003652{
David Howells65f27f32006-11-22 14:55:48 +00003653 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003654 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003655 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003656
Jens Axboe40bb54d2009-04-15 12:11:10 +02003657 spin_lock_irq(q->queue_lock);
Tejun Heoa7f55792009-04-23 11:05:17 +09003658 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003659 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003660}
3661
3662/*
3663 * Timer running if the active_queue is currently idling inside its time slice
3664 */
3665static void cfq_idle_slice_timer(unsigned long data)
3666{
3667 struct cfq_data *cfqd = (struct cfq_data *) data;
3668 struct cfq_queue *cfqq;
3669 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003670 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003671
Jens Axboe7b679132008-05-30 12:23:07 +02003672 cfq_log(cfqd, "idle timer fired");
3673
Jens Axboe22e2c502005-06-27 10:55:12 +02003674 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3675
Jens Axboefe094d92008-01-31 13:08:54 +01003676 cfqq = cfqd->active_queue;
3677 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003678 timed_out = 0;
3679
Jens Axboe22e2c502005-06-27 10:55:12 +02003680 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003681 * We saw a request before the queue expired, let it through
3682 */
3683 if (cfq_cfqq_must_dispatch(cfqq))
3684 goto out_kick;
3685
3686 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003687 * expired
3688 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003689 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003690 goto expire;
3691
3692 /*
3693 * only expire and reinvoke request handler, if there are
3694 * other queues with pending requests
3695 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003696 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003697 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003698
3699 /*
3700 * not expired and it has a request pending, let it dispatch
3701 */
Jens Axboe75e50982009-04-07 08:56:14 +02003702 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003703 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003704
3705 /*
3706 * Queue depth flag is reset only when the idle didn't succeed
3707 */
3708 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003709 }
3710expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02003711 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003712out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003713 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003714out_cont:
3715 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3716}
3717
Jens Axboe3b181522005-06-27 10:56:24 +02003718static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3719{
3720 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003721 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003722}
Jens Axboe22e2c502005-06-27 10:55:12 +02003723
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003724static void cfq_put_async_queues(struct cfq_data *cfqd)
3725{
3726 int i;
3727
3728 for (i = 0; i < IOPRIO_BE_NR; i++) {
3729 if (cfqd->async_cfqq[0][i])
3730 cfq_put_queue(cfqd->async_cfqq[0][i]);
3731 if (cfqd->async_cfqq[1][i])
3732 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003733 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003734
3735 if (cfqd->async_idle_cfqq)
3736 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003737}
3738
Jens Axboebb729bc2009-12-06 09:54:19 +01003739static void cfq_cfqd_free(struct rcu_head *head)
3740{
3741 kfree(container_of(head, struct cfq_data, rcu));
3742}
3743
Jens Axboeb374d182008-10-31 10:05:07 +01003744static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745{
Jens Axboe22e2c502005-06-27 10:55:12 +02003746 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003747 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003748
Jens Axboe3b181522005-06-27 10:56:24 +02003749 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003750
Al Virod9ff4182006-03-18 13:51:22 -05003751 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003752
Al Virod9ff4182006-03-18 13:51:22 -05003753 if (cfqd->active_queue)
Vivek Goyale5ff0822010-04-26 19:25:11 +02003754 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003755
3756 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05003757 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
3758 struct cfq_io_context,
3759 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02003760
3761 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05003762 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003763
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003764 cfq_put_async_queues(cfqd);
Vivek Goyalb1c35762009-12-03 12:59:47 -05003765 cfq_release_cfq_groups(cfqd);
Vivek Goyale98ef892010-06-18 10:39:47 -04003766 cfq_blkiocg_del_blkio_group(&cfqd->root_group.blkg);
Jens Axboe15c31be2007-07-10 13:43:25 +02003767
Al Virod9ff4182006-03-18 13:51:22 -05003768 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05003769
3770 cfq_shutdown_timer_wq(cfqd);
3771
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003772 spin_lock(&cic_index_lock);
3773 ida_remove(&cic_index_ida, cfqd->cic_index);
3774 spin_unlock(&cic_index_lock);
3775
Vivek Goyalb1c35762009-12-03 12:59:47 -05003776 /* Wait for cfqg->blkg->key accessors to exit their grace periods. */
Jens Axboebb729bc2009-12-06 09:54:19 +01003777 call_rcu(&cfqd->rcu, cfq_cfqd_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778}
3779
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003780static int cfq_alloc_cic_index(void)
3781{
3782 int index, error;
3783
3784 do {
3785 if (!ida_pre_get(&cic_index_ida, GFP_KERNEL))
3786 return -ENOMEM;
3787
3788 spin_lock(&cic_index_lock);
3789 error = ida_get_new(&cic_index_ida, &index);
3790 spin_unlock(&cic_index_lock);
3791 if (error && error != -EAGAIN)
3792 return error;
3793 } while (error);
3794
3795 return index;
3796}
3797
Jens Axboe165125e2007-07-24 09:28:11 +02003798static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799{
3800 struct cfq_data *cfqd;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003801 int i, j;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003802 struct cfq_group *cfqg;
Vivek Goyal615f0252009-12-03 12:59:39 -05003803 struct cfq_rb_root *st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003805 i = cfq_alloc_cic_index();
3806 if (i < 0)
3807 return NULL;
3808
Christoph Lameter94f60302007-07-17 04:03:29 -07003809 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02003811 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003813 cfqd->cic_index = i;
3814
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003815 /* Init root service tree */
3816 cfqd->grp_service_tree = CFQ_RB_ROOT;
3817
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003818 /* Init root group */
3819 cfqg = &cfqd->root_group;
Vivek Goyal615f0252009-12-03 12:59:39 -05003820 for_each_cfqg_st(cfqg, i, j, st)
3821 *st = CFQ_RB_ROOT;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003822 RB_CLEAR_NODE(&cfqg->rb_node);
Jens Axboe26a2ac02009-04-23 12:13:27 +02003823
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003824 /* Give preference to root group over other groups */
3825 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3826
Vivek Goyal25fb5162009-12-03 12:59:46 -05003827#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyalb1c35762009-12-03 12:59:47 -05003828 /*
3829 * Take a reference to root group which we never drop. This is just
3830 * to make sure that cfq_put_cfqg() does not try to kfree root group
3831 */
3832 atomic_set(&cfqg->ref, 1);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003833 rcu_read_lock();
Vivek Goyale98ef892010-06-18 10:39:47 -04003834 cfq_blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg,
3835 (void *)cfqd, 0);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003836 rcu_read_unlock();
Vivek Goyal25fb5162009-12-03 12:59:46 -05003837#endif
Jens Axboe26a2ac02009-04-23 12:13:27 +02003838 /*
3839 * Not strictly needed (since RB_ROOT just clears the node and we
3840 * zeroed cfqd on alloc), but better be safe in case someone decides
3841 * to add magic to the rb code
3842 */
3843 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3844 cfqd->prio_trees[i] = RB_ROOT;
3845
Jens Axboe6118b702009-06-30 09:34:12 +02003846 /*
3847 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3848 * Grab a permanent reference to it, so that the normal code flow
3849 * will not attempt to free it.
3850 */
3851 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
3852 atomic_inc(&cfqd->oom_cfqq.ref);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003853 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
Jens Axboe6118b702009-06-30 09:34:12 +02003854
Al Virod9ff4182006-03-18 13:51:22 -05003855 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
Jens Axboe22e2c502005-06-27 10:55:12 +02003859 init_timer(&cfqd->idle_slice_timer);
3860 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3861 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3862
Jens Axboe23e018a2009-10-05 08:52:35 +02003863 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003864
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003866 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3867 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 cfqd->cfq_back_max = cfq_back_max;
3869 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003870 cfqd->cfq_slice[0] = cfq_slice_async;
3871 cfqd->cfq_slice[1] = cfq_slice_sync;
3872 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3873 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003874 cfqd->cfq_latency = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05003875 cfqd->cfq_group_isolation = 0;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003876 cfqd->hw_tag = -1;
Corrado Zoccoloedc71132009-12-09 20:56:04 +01003877 /*
3878 * we optimistically start assuming sync ops weren't delayed in last
3879 * second, in order to have larger depth for async operations.
3880 */
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003881 cfqd->last_delayed_sync = jiffies - HZ;
Jens Axboebc1c1162006-06-08 08:49:06 +02003882 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883}
3884
3885static void cfq_slab_kill(void)
3886{
Jens Axboed6de8be2008-05-28 14:46:59 +02003887 /*
3888 * Caller already ensured that pending RCU callbacks are completed,
3889 * so we should have no busy allocations at this point.
3890 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 if (cfq_pool)
3892 kmem_cache_destroy(cfq_pool);
3893 if (cfq_ioc_pool)
3894 kmem_cache_destroy(cfq_ioc_pool);
3895}
3896
3897static int __init cfq_slab_setup(void)
3898{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003899 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 if (!cfq_pool)
3901 goto fail;
3902
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02003903 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 if (!cfq_ioc_pool)
3905 goto fail;
3906
3907 return 0;
3908fail:
3909 cfq_slab_kill();
3910 return -ENOMEM;
3911}
3912
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913/*
3914 * sysfs parts below -->
3915 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916static ssize_t
3917cfq_var_show(unsigned int var, char *page)
3918{
3919 return sprintf(page, "%d\n", var);
3920}
3921
3922static ssize_t
3923cfq_var_store(unsigned int *var, const char *page, size_t count)
3924{
3925 char *p = (char *) page;
3926
3927 *var = simple_strtoul(p, &p, 10);
3928 return count;
3929}
3930
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003932static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003934 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 unsigned int __data = __VAR; \
3936 if (__CONV) \
3937 __data = jiffies_to_msecs(__data); \
3938 return cfq_var_show(__data, (page)); \
3939}
3940SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003941SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
3942SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05003943SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
3944SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003945SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
3946SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
3947SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
3948SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003949SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Vivek Goyalae30c282009-12-03 12:59:55 -05003950SHOW_FUNCTION(cfq_group_isolation_show, cfqd->cfq_group_isolation, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951#undef SHOW_FUNCTION
3952
3953#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003954static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003956 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 unsigned int __data; \
3958 int ret = cfq_var_store(&__data, (page), count); \
3959 if (__data < (MIN)) \
3960 __data = (MIN); \
3961 else if (__data > (MAX)) \
3962 __data = (MAX); \
3963 if (__CONV) \
3964 *(__PTR) = msecs_to_jiffies(__data); \
3965 else \
3966 *(__PTR) = __data; \
3967 return ret; \
3968}
3969STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003970STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
3971 UINT_MAX, 1);
3972STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
3973 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05003974STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003975STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
3976 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003977STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
3978STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
3979STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01003980STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
3981 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003982STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Vivek Goyalae30c282009-12-03 12:59:55 -05003983STORE_FUNCTION(cfq_group_isolation_store, &cfqd->cfq_group_isolation, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984#undef STORE_FUNCTION
3985
Al Viroe572ec72006-03-18 22:27:18 -05003986#define CFQ_ATTR(name) \
3987 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02003988
Al Viroe572ec72006-03-18 22:27:18 -05003989static struct elv_fs_entry cfq_attrs[] = {
3990 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05003991 CFQ_ATTR(fifo_expire_sync),
3992 CFQ_ATTR(fifo_expire_async),
3993 CFQ_ATTR(back_seek_max),
3994 CFQ_ATTR(back_seek_penalty),
3995 CFQ_ATTR(slice_sync),
3996 CFQ_ATTR(slice_async),
3997 CFQ_ATTR(slice_async_rq),
3998 CFQ_ATTR(slice_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02003999 CFQ_ATTR(low_latency),
Vivek Goyalae30c282009-12-03 12:59:55 -05004000 CFQ_ATTR(group_isolation),
Al Viroe572ec72006-03-18 22:27:18 -05004001 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002};
4003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004static struct elevator_type iosched_cfq = {
4005 .ops = {
4006 .elevator_merge_fn = cfq_merge,
4007 .elevator_merged_fn = cfq_merged_request,
4008 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01004009 .elevator_allow_merge_fn = cfq_allow_merge,
Divyesh Shah812d4022010-04-08 21:14:23 -07004010 .elevator_bio_merged_fn = cfq_bio_merged,
Jens Axboeb4878f22005-10-20 16:42:29 +02004011 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02004013 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 .elevator_deactivate_req_fn = cfq_deactivate_request,
4015 .elevator_queue_empty_fn = cfq_queue_empty,
4016 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02004017 .elevator_former_req_fn = elv_rb_former_request,
4018 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 .elevator_set_req_fn = cfq_set_request,
4020 .elevator_put_req_fn = cfq_put_request,
4021 .elevator_may_queue_fn = cfq_may_queue,
4022 .elevator_init_fn = cfq_init_queue,
4023 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02004024 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 },
Al Viro3d1ab402006-03-18 18:35:43 -05004026 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 .elevator_name = "cfq",
4028 .elevator_owner = THIS_MODULE,
4029};
4030
Vivek Goyal3e252062009-12-04 10:36:42 -05004031#ifdef CONFIG_CFQ_GROUP_IOSCHED
4032static struct blkio_policy_type blkio_policy_cfq = {
4033 .ops = {
4034 .blkio_unlink_group_fn = cfq_unlink_blkio_group,
4035 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
4036 },
4037};
4038#else
4039static struct blkio_policy_type blkio_policy_cfq;
4040#endif
4041
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042static int __init cfq_init(void)
4043{
Jens Axboe22e2c502005-06-27 10:55:12 +02004044 /*
4045 * could be 0 on HZ < 1000 setups
4046 */
4047 if (!cfq_slice_async)
4048 cfq_slice_async = 1;
4049 if (!cfq_slice_idle)
4050 cfq_slice_idle = 1;
4051
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 if (cfq_slab_setup())
4053 return -ENOMEM;
4054
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004055 elv_register(&iosched_cfq);
Vivek Goyal3e252062009-12-04 10:36:42 -05004056 blkio_policy_register(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004058 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059}
4060
4061static void __exit cfq_exit(void)
4062{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07004063 DECLARE_COMPLETION_ONSTACK(all_gone);
Vivek Goyal3e252062009-12-04 10:36:42 -05004064 blkio_policy_unregister(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05004066 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02004067 /* ioc_gone's update must be visible before reading ioc_count */
4068 smp_wmb();
Jens Axboed6de8be2008-05-28 14:46:59 +02004069
4070 /*
4071 * this also protects us from entering cfq_slab_kill() with
4072 * pending RCU callbacks
4073 */
Tejun Heo245b2e72009-06-24 15:13:48 +09004074 if (elv_ioc_count_read(cfq_ioc_count))
Jens Axboe9a11b4e2008-05-29 09:32:08 +02004075 wait_for_completion(&all_gone);
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04004076 ida_destroy(&cic_index_ida);
Christoph Hellwig83521d32005-10-30 15:01:39 -08004077 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078}
4079
4080module_init(cfq_init);
4081module_exit(cfq_exit);
4082
4083MODULE_AUTHOR("Jens Axboe");
4084MODULE_LICENSE("GPL");
4085MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");