blob: 85e48192754daa6d1766a6d2af56c39c86e0428e [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;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +020033static int cfq_group_idle = HZ / 125;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +010034static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
35static const int cfq_hist_divisor = 4;
Jens Axboe22e2c502005-06-27 10:55:12 +020036
Jens Axboed9e76202007-04-20 14:27:50 +020037/*
Jens Axboe08717142008-01-28 11:38:15 +010038 * offset from end of service tree
Jens Axboed9e76202007-04-20 14:27:50 +020039 */
Jens Axboe08717142008-01-28 11:38:15 +010040#define CFQ_IDLE_DELAY (HZ / 5)
Jens Axboed9e76202007-04-20 14:27:50 +020041
42/*
43 * below this threshold, we consider thinktime immediate
44 */
45#define CFQ_MIN_TT (2)
46
Jens Axboe22e2c502005-06-27 10:55:12 +020047#define CFQ_SLICE_SCALE (5)
Aaron Carroll45333d52008-08-26 15:52:36 +020048#define CFQ_HW_QUEUE_MIN (5)
Vivek Goyal25bc6b02009-12-03 12:59:43 -050049#define CFQ_SERVICE_SHIFT 12
Jens Axboe22e2c502005-06-27 10:55:12 +020050
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010051#define CFQQ_SEEK_THR (sector_t)(8 * 100)
Shaohua Lie9ce3352010-03-19 08:03:04 +010052#define CFQQ_CLOSE_THR (sector_t)(8 * 1024)
Corrado Zoccolo41647e72010-02-27 19:45:40 +010053#define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32)
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010054#define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8)
Shaohua Liae54abe2010-02-05 13:11:45 +010055
Jens Axboefe094d92008-01-31 13:08:54 +010056#define RQ_CIC(rq) \
57 ((struct cfq_io_context *) (rq)->elevator_private)
Jens Axboe7b679132008-05-30 12:23:07 +020058#define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elevator_private2)
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +020059#define RQ_CFQG(rq) (struct cfq_group *) ((rq)->elevator_private3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Christoph Lametere18b8902006-12-06 20:33:20 -080061static struct kmem_cache *cfq_pool;
62static struct kmem_cache *cfq_ioc_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Tejun Heo245b2e72009-06-24 15:13:48 +090064static DEFINE_PER_CPU(unsigned long, cfq_ioc_count);
Al Viro334e94d2006-03-18 15:05:53 -050065static struct completion *ioc_gone;
Jens Axboe9a11b4e2008-05-29 09:32:08 +020066static DEFINE_SPINLOCK(ioc_gone_lock);
Al Viro334e94d2006-03-18 15:05:53 -050067
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +040068static DEFINE_SPINLOCK(cic_index_lock);
69static DEFINE_IDA(cic_index_ida);
70
Jens Axboe22e2c502005-06-27 10:55:12 +020071#define CFQ_PRIO_LISTS IOPRIO_BE_NR
72#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
Jens Axboe22e2c502005-06-27 10:55:12 +020073#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
74
Jens Axboe206dc692006-03-28 13:03:44 +020075#define sample_valid(samples) ((samples) > 80)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050076#define rb_entry_cfqg(node) rb_entry((node), struct cfq_group, rb_node)
Jens Axboe206dc692006-03-28 13:03:44 +020077
Jens Axboe22e2c502005-06-27 10:55:12 +020078/*
Jens Axboecc09e292007-04-26 12:53:50 +020079 * Most of our rbtree usage is for sorting with min extraction, so
80 * if we cache the leftmost node we don't have to walk down the tree
81 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
82 * move this into the elevator for the rq sorting as well.
83 */
84struct cfq_rb_root {
85 struct rb_root rb;
86 struct rb_node *left;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010087 unsigned count;
Richard Kennedy73e9ffd2010-03-01 10:50:20 +010088 unsigned total_weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050089 u64 min_vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -050090 struct rb_node *active;
Jens Axboecc09e292007-04-26 12:53:50 +020091};
Richard Kennedy73e9ffd2010-03-01 10:50:20 +010092#define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, .left = NULL, \
93 .count = 0, .min_vdisktime = 0, }
Jens Axboecc09e292007-04-26 12:53:50 +020094
95/*
Jens Axboe6118b702009-06-30 09:34:12 +020096 * Per process-grouping structure
97 */
98struct cfq_queue {
99 /* reference count */
100 atomic_t ref;
101 /* various state flags, see below */
102 unsigned int flags;
103 /* parent cfq_data */
104 struct cfq_data *cfqd;
105 /* service_tree member */
106 struct rb_node rb_node;
107 /* service_tree key */
108 unsigned long rb_key;
109 /* prio tree member */
110 struct rb_node p_node;
111 /* prio tree root we belong to, if any */
112 struct rb_root *p_root;
113 /* sorted list of pending requests */
114 struct rb_root sort_list;
115 /* if fifo isn't expired, next request to serve */
116 struct request *next_rq;
117 /* requests queued in sort_list */
118 int queued[2];
119 /* currently allocated requests */
120 int allocated[2];
121 /* fifo list of requests in sort_list */
122 struct list_head fifo;
123
Vivek Goyaldae739e2009-12-03 12:59:45 -0500124 /* time when queue got scheduled in to dispatch first request. */
125 unsigned long dispatch_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500126 unsigned int allocated_slice;
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100127 unsigned int slice_dispatch;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500128 /* time when first request from queue completed and slice started. */
129 unsigned long slice_start;
Jens Axboe6118b702009-06-30 09:34:12 +0200130 unsigned long slice_end;
131 long slice_resid;
Jens Axboe6118b702009-06-30 09:34:12 +0200132
133 /* pending metadata requests */
134 int meta_pending;
135 /* number of requests that are on the dispatch list or inside driver */
136 int dispatched;
137
138 /* io prio of this group */
139 unsigned short ioprio, org_ioprio;
140 unsigned short ioprio_class, org_ioprio_class;
141
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100142 pid_t pid;
143
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +0100144 u32 seek_history;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400145 sector_t last_request_pos;
146
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100147 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400148 struct cfq_queue *new_cfqq;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500149 struct cfq_group *cfqg;
Vivek Goyalae30c282009-12-03 12:59:55 -0500150 struct cfq_group *orig_cfqg;
Jens Axboe6118b702009-06-30 09:34:12 +0200151};
152
153/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100154 * First index in the service_trees.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100155 * IDLE is handled separately, so it has negative index
156 */
157enum wl_prio_t {
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100158 BE_WORKLOAD = 0,
Vivek Goyal615f0252009-12-03 12:59:39 -0500159 RT_WORKLOAD = 1,
160 IDLE_WORKLOAD = 2,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100161};
162
163/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100164 * Second index in the service_trees.
165 */
166enum wl_type_t {
167 ASYNC_WORKLOAD = 0,
168 SYNC_NOIDLE_WORKLOAD = 1,
169 SYNC_WORKLOAD = 2
170};
171
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500172/* This is per cgroup per device grouping structure */
173struct cfq_group {
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500174 /* group service_tree member */
175 struct rb_node rb_node;
176
177 /* group service_tree key */
178 u64 vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500179 unsigned int weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500180 bool on_st;
181
182 /* number of cfqq currently on this group */
183 int nr_cfqq;
184
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500185 /* Per group busy queus average. Useful for workload slice calc. */
186 unsigned int busy_queues_avg[2];
Jens Axboe22e2c502005-06-27 10:55:12 +0200187 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100188 * rr lists of queues with requests, onle rr for each priority class.
189 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200190 */
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100191 struct cfq_rb_root service_trees[2][3];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100192 struct cfq_rb_root service_tree_idle;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500193
194 unsigned long saved_workload_slice;
195 enum wl_type_t saved_workload;
196 enum wl_prio_t saved_serving_prio;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500197 struct blkio_group blkg;
198#ifdef CONFIG_CFQ_GROUP_IOSCHED
199 struct hlist_node cfqd_node;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500200 atomic_t ref;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500201#endif
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200202 /* number of requests that are on the dispatch list or inside driver */
203 int dispatched;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500204};
205
206/*
207 * Per block device queue structure
208 */
209struct cfq_data {
210 struct request_queue *queue;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500211 /* Root service tree for cfq_groups */
212 struct cfq_rb_root grp_service_tree;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500213 struct cfq_group root_group;
214
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100215 /*
216 * The priority currently being served
217 */
218 enum wl_prio_t serving_prio;
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100219 enum wl_type_t serving_type;
220 unsigned long workload_expires;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500221 struct cfq_group *serving_group;
Corrado Zoccolo8e550632009-11-26 10:02:58 +0100222 bool noidle_tree_requires_idle;
Jens Axboea36e71f2009-04-15 12:15:11 +0200223
224 /*
225 * Each priority tree is sorted by next_request position. These
226 * trees are used when determining if two or more queues are
227 * interleaving requests (see cfq_close_cooperator).
228 */
229 struct rb_root prio_trees[CFQ_PRIO_LISTS];
230
Jens Axboe22e2c502005-06-27 10:55:12 +0200231 unsigned int busy_queues;
232
Corrado Zoccolo53c583d2010-02-28 19:45:05 +0100233 int rq_in_driver;
234 int rq_in_flight[2];
Aaron Carroll45333d52008-08-26 15:52:36 +0200235
236 /*
237 * queue-depth detection
238 */
239 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200240 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100241 /*
242 * hw_tag can be
243 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
244 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
245 * 0 => no NCQ
246 */
247 int hw_tag_est_depth;
248 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200249
250 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200251 * idle window management
252 */
253 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200254 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200255
256 struct cfq_queue *active_queue;
257 struct cfq_io_context *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200258
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200259 /*
260 * async queue for each priority case
261 */
262 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
263 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200264
Jens Axboe6d048f52007-04-25 12:44:27 +0200265 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /*
268 * tunables, see top of file
269 */
270 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200271 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 unsigned int cfq_back_penalty;
273 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200274 unsigned int cfq_slice[2];
275 unsigned int cfq_slice_async_rq;
276 unsigned int cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200277 unsigned int cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200278 unsigned int cfq_latency;
Vivek Goyalae30c282009-12-03 12:59:55 -0500279 unsigned int cfq_group_isolation;
Al Virod9ff4182006-03-18 13:51:22 -0500280
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400281 unsigned int cic_index;
Al Virod9ff4182006-03-18 13:51:22 -0500282 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Jens Axboe6118b702009-06-30 09:34:12 +0200284 /*
285 * Fallback dummy cfqq for extreme OOM conditions
286 */
287 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200288
Corrado Zoccolo573412b2009-12-06 11:48:52 +0100289 unsigned long last_delayed_sync;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500290
291 /* List of cfq groups being managed on this device*/
292 struct hlist_head cfqg_list;
Jens Axboebb729bc2009-12-06 09:54:19 +0100293 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294};
295
Vivek Goyal25fb5162009-12-03 12:59:46 -0500296static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
297
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500298static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
299 enum wl_prio_t prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -0500300 enum wl_type_t type)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100301{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500302 if (!cfqg)
303 return NULL;
304
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100305 if (prio == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500306 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100307
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500308 return &cfqg->service_trees[prio][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100309}
310
Jens Axboe3b181522005-06-27 10:56:24 +0200311enum cfqq_state_flags {
Jens Axboeb0b8d742007-01-19 11:35:30 +1100312 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
313 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200314 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d742007-01-19 11:35:30 +1100315 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d742007-01-19 11:35:30 +1100316 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
317 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
318 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100319 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200320 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400321 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Shaohua Liae54abe2010-02-05 13:11:45 +0100322 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100323 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Vivek Goyalf75edf22009-12-03 12:59:53 -0500324 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
Jens Axboe3b181522005-06-27 10:56:24 +0200325};
326
327#define CFQ_CFQQ_FNS(name) \
328static inline void cfq_mark_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 void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
333{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100334 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200335} \
336static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
337{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100338 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200339}
340
341CFQ_CFQQ_FNS(on_rr);
342CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200343CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200344CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200345CFQ_CFQQ_FNS(fifo_expire);
346CFQ_CFQQ_FNS(idle_window);
347CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100348CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200349CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200350CFQ_CFQQ_FNS(coop);
Shaohua Liae54abe2010-02-05 13:11:45 +0100351CFQ_CFQQ_FNS(split_coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100352CFQ_CFQQ_FNS(deep);
Vivek Goyalf75edf22009-12-03 12:59:53 -0500353CFQ_CFQQ_FNS(wait_busy);
Jens Axboe3b181522005-06-27 10:56:24 +0200354#undef CFQ_CFQQ_FNS
355
Vivek Goyalafc24d42010-04-26 19:27:56 +0200356#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal2868ef72009-12-03 12:59:48 -0500357#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
358 blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \
359 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
360 blkg_path(&(cfqq)->cfqg->blkg), ##args);
361
362#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \
363 blk_add_trace_msg((cfqd)->queue, "%s " fmt, \
364 blkg_path(&(cfqg)->blkg), ##args); \
365
366#else
Jens Axboe7b679132008-05-30 12:23:07 +0200367#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
368 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500369#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0);
370#endif
Jens Axboe7b679132008-05-30 12:23:07 +0200371#define cfq_log(cfqd, fmt, args...) \
372 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
373
Vivek Goyal615f0252009-12-03 12:59:39 -0500374/* Traverses through cfq group service trees */
375#define for_each_cfqg_st(cfqg, i, j, st) \
376 for (i = 0; i <= IDLE_WORKLOAD; i++) \
377 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
378 : &cfqg->service_tree_idle; \
379 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
380 (i == IDLE_WORKLOAD && j == 0); \
381 j++, st = i < IDLE_WORKLOAD ? \
382 &cfqg->service_trees[i][j]: NULL) \
383
384
Vivek Goyal02b35082010-08-23 12:23:53 +0200385static inline bool iops_mode(struct cfq_data *cfqd)
386{
387 /*
388 * If we are not idling on queues and it is a NCQ drive, parallel
389 * execution of requests is on and measuring time is not possible
390 * in most of the cases until and unless we drive shallower queue
391 * depths and that becomes a performance bottleneck. In such cases
392 * switch to start providing fairness in terms of number of IOs.
393 */
394 if (!cfqd->cfq_slice_idle && cfqd->hw_tag)
395 return true;
396 else
397 return false;
398}
399
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100400static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
401{
402 if (cfq_class_idle(cfqq))
403 return IDLE_WORKLOAD;
404 if (cfq_class_rt(cfqq))
405 return RT_WORKLOAD;
406 return BE_WORKLOAD;
407}
408
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100409
410static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
411{
412 if (!cfq_cfqq_sync(cfqq))
413 return ASYNC_WORKLOAD;
414 if (!cfq_cfqq_idle_window(cfqq))
415 return SYNC_NOIDLE_WORKLOAD;
416 return SYNC_WORKLOAD;
417}
418
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500419static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
420 struct cfq_data *cfqd,
421 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100422{
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500423 if (wl == IDLE_WORKLOAD)
424 return cfqg->service_tree_idle.count;
425
426 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
427 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
428 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100429}
430
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500431static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
432 struct cfq_group *cfqg)
433{
434 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count
435 + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
436}
437
Jens Axboe165125e2007-07-24 09:28:11 +0200438static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200439static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100440 struct io_context *, gfp_t);
Jens Axboe4ac845a2008-01-24 08:44:49 +0100441static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
Vasily Tarasov91fac312007-04-25 12:29:51 +0200442 struct io_context *);
443
444static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200445 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200446{
Jens Axboea6151c32009-10-07 20:02:57 +0200447 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200448}
449
450static inline void cic_set_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200451 struct cfq_queue *cfqq, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200452{
Jens Axboea6151c32009-10-07 20:02:57 +0200453 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200454}
455
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400456#define CIC_DEAD_KEY 1ul
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400457#define CIC_DEAD_INDEX_SHIFT 1
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400458
459static inline void *cfqd_dead_key(struct cfq_data *cfqd)
460{
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +0400461 return (void *)(cfqd->cic_index << CIC_DEAD_INDEX_SHIFT | CIC_DEAD_KEY);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400462}
463
464static inline struct cfq_data *cic_to_cfqd(struct cfq_io_context *cic)
465{
466 struct cfq_data *cfqd = cic->key;
467
468 if (unlikely((unsigned long) cfqd & CIC_DEAD_KEY))
469 return NULL;
470
471 return cfqd;
472}
473
Vasily Tarasov91fac312007-04-25 12:29:51 +0200474/*
475 * We regard a request as SYNC, if it's either a read or has the SYNC bit
476 * set (in which case it could also be direct WRITE).
477 */
Jens Axboea6151c32009-10-07 20:02:57 +0200478static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200479{
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200480 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200481}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700484 * scheduler run of queue, if there are requests pending and no one in the
485 * driver that will restart queueing
486 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200487static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700488{
Jens Axboe7b679132008-05-30 12:23:07 +0200489 if (cfqd->busy_queues) {
490 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200491 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200492 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700493}
494
Jens Axboe165125e2007-07-24 09:28:11 +0200495static int cfq_queue_empty(struct request_queue *q)
Andrew Morton99f95e52005-06-27 20:14:05 -0700496{
497 struct cfq_data *cfqd = q->elevator->elevator_data;
498
Vivek Goyalf04a6422009-12-03 12:59:40 -0500499 return !cfqd->rq_queued;
Andrew Morton99f95e52005-06-27 20:14:05 -0700500}
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100503 * Scale schedule slice based on io priority. Use the sync time slice only
504 * if a queue is marked sync and has sync io queued. A sync queue with async
505 * io only, should not get full sync slice length.
506 */
Jens Axboea6151c32009-10-07 20:02:57 +0200507static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200508 unsigned short prio)
509{
510 const int base_slice = cfqd->cfq_slice[sync];
511
512 WARN_ON(prio >= IOPRIO_BE_NR);
513
514 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
515}
516
Jens Axboe44f7c162007-01-19 11:51:58 +1100517static inline int
518cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
519{
Jens Axboed9e76202007-04-20 14:27:50 +0200520 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100521}
522
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500523static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
524{
525 u64 d = delta << CFQ_SERVICE_SHIFT;
526
527 d = d * BLKIO_WEIGHT_DEFAULT;
528 do_div(d, cfqg->weight);
529 return d;
530}
531
532static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
533{
534 s64 delta = (s64)(vdisktime - min_vdisktime);
535 if (delta > 0)
536 min_vdisktime = vdisktime;
537
538 return min_vdisktime;
539}
540
541static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
542{
543 s64 delta = (s64)(vdisktime - min_vdisktime);
544 if (delta < 0)
545 min_vdisktime = vdisktime;
546
547 return min_vdisktime;
548}
549
550static void update_min_vdisktime(struct cfq_rb_root *st)
551{
552 u64 vdisktime = st->min_vdisktime;
553 struct cfq_group *cfqg;
554
555 if (st->active) {
556 cfqg = rb_entry_cfqg(st->active);
557 vdisktime = cfqg->vdisktime;
558 }
559
560 if (st->left) {
561 cfqg = rb_entry_cfqg(st->left);
562 vdisktime = min_vdisktime(vdisktime, cfqg->vdisktime);
563 }
564
565 st->min_vdisktime = max_vdisktime(st->min_vdisktime, vdisktime);
566}
567
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100568/*
569 * get averaged number of queues of RT/BE priority.
570 * average is updated, with a formula that gives more weight to higher numbers,
571 * to quickly follows sudden increases and decrease slowly
572 */
573
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500574static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
575 struct cfq_group *cfqg, bool rt)
Jens Axboe58696192009-10-28 09:27:07 +0100576{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100577 unsigned min_q, max_q;
578 unsigned mult = cfq_hist_divisor - 1;
579 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500580 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100581
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500582 min_q = min(cfqg->busy_queues_avg[rt], busy);
583 max_q = max(cfqg->busy_queues_avg[rt], busy);
584 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100585 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500586 return cfqg->busy_queues_avg[rt];
587}
588
589static inline unsigned
590cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
591{
592 struct cfq_rb_root *st = &cfqd->grp_service_tree;
593
594 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100595}
596
Jens Axboe44f7c162007-01-19 11:51:58 +1100597static inline void
598cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
599{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100600 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
601 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500602 /*
603 * interested queues (we consider only the ones with the same
604 * priority class in the cfq group)
605 */
606 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
607 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100608 unsigned sync_slice = cfqd->cfq_slice[1];
609 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500610 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
611
612 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100613 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
614 /* scale low_slice according to IO priority
615 * and sync vs async */
616 unsigned low_slice =
617 min(slice, base_low_slice * slice / sync_slice);
618 /* the adapted slice value is scaled to fit all iqs
619 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500620 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100621 low_slice);
622 }
623 }
Vivek Goyaldae739e2009-12-03 12:59:45 -0500624 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100625 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500626 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200627 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100628}
629
630/*
631 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
632 * isn't valid until the first request from the dispatch is activated
633 * and the slice time set.
634 */
Jens Axboea6151c32009-10-07 20:02:57 +0200635static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100636{
637 if (cfq_cfqq_slice_new(cfqq))
638 return 0;
639 if (time_before(jiffies, cfqq->slice_end))
640 return 0;
641
642 return 1;
643}
644
645/*
Jens Axboe5e705372006-07-13 12:39:25 +0200646 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200648 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 */
Jens Axboe5e705372006-07-13 12:39:25 +0200650static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100651cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100653 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200655#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
656#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
657 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Jens Axboe5e705372006-07-13 12:39:25 +0200659 if (rq1 == NULL || rq1 == rq2)
660 return rq2;
661 if (rq2 == NULL)
662 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200663
Jens Axboe5e705372006-07-13 12:39:25 +0200664 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
665 return rq1;
666 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
667 return rq2;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200668 if ((rq1->cmd_flags & REQ_META) && !(rq2->cmd_flags & REQ_META))
Jens Axboe374f84a2006-07-23 01:42:19 +0200669 return rq1;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200670 else if ((rq2->cmd_flags & REQ_META) &&
671 !(rq1->cmd_flags & REQ_META))
Jens Axboe374f84a2006-07-23 01:42:19 +0200672 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Tejun Heo83096eb2009-05-07 22:24:39 +0900674 s1 = blk_rq_pos(rq1);
675 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 /*
678 * by definition, 1KiB is 2 sectors
679 */
680 back_max = cfqd->cfq_back_max * 2;
681
682 /*
683 * Strict one way elevator _except_ in the case where we allow
684 * short backward seeks which are biased as twice the cost of a
685 * similar forward seek.
686 */
687 if (s1 >= last)
688 d1 = s1 - last;
689 else if (s1 + back_max >= last)
690 d1 = (last - s1) * cfqd->cfq_back_penalty;
691 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200692 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 if (s2 >= last)
695 d2 = s2 - last;
696 else if (s2 + back_max >= last)
697 d2 = (last - s2) * cfqd->cfq_back_penalty;
698 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200699 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Andreas Mohre8a99052006-03-28 08:59:49 +0200703 /*
704 * By doing switch() on the bit mask "wrap" we avoid having to
705 * check two variables for all permutations: --> faster!
706 */
707 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200708 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200709 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200710 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200711 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200712 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200713 else {
714 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200715 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200716 else
Jens Axboe5e705372006-07-13 12:39:25 +0200717 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200718 }
719
720 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200721 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200722 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200723 return rq2;
724 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200725 default:
726 /*
727 * Since both rqs are wrapped,
728 * start with the one that's further behind head
729 * (--> only *one* back seek required),
730 * since back seek takes more time than forward.
731 */
732 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200733 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 else
Jens Axboe5e705372006-07-13 12:39:25 +0200735 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737}
738
Jens Axboe498d3aa2007-04-26 12:54:48 +0200739/*
740 * The below is leftmost cache rbtree addon
741 */
Jens Axboe08717142008-01-28 11:38:15 +0100742static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200743{
Vivek Goyal615f0252009-12-03 12:59:39 -0500744 /* Service tree is empty */
745 if (!root->count)
746 return NULL;
747
Jens Axboecc09e292007-04-26 12:53:50 +0200748 if (!root->left)
749 root->left = rb_first(&root->rb);
750
Jens Axboe08717142008-01-28 11:38:15 +0100751 if (root->left)
752 return rb_entry(root->left, struct cfq_queue, rb_node);
753
754 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200755}
756
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500757static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
758{
759 if (!root->left)
760 root->left = rb_first(&root->rb);
761
762 if (root->left)
763 return rb_entry_cfqg(root->left);
764
765 return NULL;
766}
767
Jens Axboea36e71f2009-04-15 12:15:11 +0200768static void rb_erase_init(struct rb_node *n, struct rb_root *root)
769{
770 rb_erase(n, root);
771 RB_CLEAR_NODE(n);
772}
773
Jens Axboecc09e292007-04-26 12:53:50 +0200774static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
775{
776 if (root->left == n)
777 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200778 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100779 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782/*
783 * would be nice to take fifo expire time into account as well
784 */
Jens Axboe5e705372006-07-13 12:39:25 +0200785static struct request *
786cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
787 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Jens Axboe21183b02006-07-13 12:33:14 +0200789 struct rb_node *rbnext = rb_next(&last->rb_node);
790 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200791 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Jens Axboe21183b02006-07-13 12:33:14 +0200793 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200796 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200799 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200800 else {
801 rbnext = rb_first(&cfqq->sort_list);
802 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200803 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100806 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Jens Axboed9e76202007-04-20 14:27:50 +0200809static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
810 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Jens Axboed9e76202007-04-20 14:27:50 +0200812 /*
813 * just an approximation, should be ok.
814 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500815 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100816 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200817}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500819static inline s64
820cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
821{
822 return cfqg->vdisktime - st->min_vdisktime;
823}
824
825static void
826__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
827{
828 struct rb_node **node = &st->rb.rb_node;
829 struct rb_node *parent = NULL;
830 struct cfq_group *__cfqg;
831 s64 key = cfqg_key(st, cfqg);
832 int left = 1;
833
834 while (*node != NULL) {
835 parent = *node;
836 __cfqg = rb_entry_cfqg(parent);
837
838 if (key < cfqg_key(st, __cfqg))
839 node = &parent->rb_left;
840 else {
841 node = &parent->rb_right;
842 left = 0;
843 }
844 }
845
846 if (left)
847 st->left = &cfqg->rb_node;
848
849 rb_link_node(&cfqg->rb_node, parent, node);
850 rb_insert_color(&cfqg->rb_node, &st->rb);
851}
852
853static void
854cfq_group_service_tree_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
855{
856 struct cfq_rb_root *st = &cfqd->grp_service_tree;
857 struct cfq_group *__cfqg;
858 struct rb_node *n;
859
860 cfqg->nr_cfqq++;
861 if (cfqg->on_st)
862 return;
863
864 /*
865 * Currently put the group at the end. Later implement something
866 * so that groups get lesser vtime based on their weights, so that
867 * if group does not loose all if it was not continously backlogged.
868 */
869 n = rb_last(&st->rb);
870 if (n) {
871 __cfqg = rb_entry_cfqg(n);
872 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
873 } else
874 cfqg->vdisktime = st->min_vdisktime;
875
876 __cfq_group_service_tree_add(st, cfqg);
877 cfqg->on_st = true;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500878 st->total_weight += cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500879}
880
881static void
882cfq_group_service_tree_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
883{
884 struct cfq_rb_root *st = &cfqd->grp_service_tree;
885
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500886 if (st->active == &cfqg->rb_node)
887 st->active = NULL;
888
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500889 BUG_ON(cfqg->nr_cfqq < 1);
890 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500891
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500892 /* If there are other cfq queues under this group, don't delete it */
893 if (cfqg->nr_cfqq)
894 return;
895
Vivek Goyal2868ef72009-12-03 12:59:48 -0500896 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500897 cfqg->on_st = false;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500898 st->total_weight -= cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500899 if (!RB_EMPTY_NODE(&cfqg->rb_node))
900 cfq_rb_erase(&cfqg->rb_node, st);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500901 cfqg->saved_workload_slice = 0;
Vivek Goyale98ef892010-06-18 10:39:47 -0400902 cfq_blkiocg_update_dequeue_stats(&cfqg->blkg, 1);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500903}
904
905static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq)
906{
Vivek Goyalf75edf22009-12-03 12:59:53 -0500907 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500908
909 /*
910 * Queue got expired before even a single request completed or
911 * got expired immediately after first request completion.
912 */
913 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
914 /*
915 * Also charge the seek time incurred to the group, otherwise
916 * if there are mutiple queues in the group, each can dispatch
917 * a single request on seeky media and cause lots of seek time
918 * and group will never know it.
919 */
920 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
921 1);
922 } else {
923 slice_used = jiffies - cfqq->slice_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500924 if (slice_used > cfqq->allocated_slice)
925 slice_used = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500926 }
927
Vivek Goyaldae739e2009-12-03 12:59:45 -0500928 return slice_used;
929}
930
931static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
Vivek Goyale5ff0822010-04-26 19:25:11 +0200932 struct cfq_queue *cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500933{
934 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal02b35082010-08-23 12:23:53 +0200935 unsigned int used_sl, charge;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500936 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
937 - cfqg->service_tree_idle.count;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500938
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500939 BUG_ON(nr_sync < 0);
Vivek Goyal02b35082010-08-23 12:23:53 +0200940 used_sl = charge = cfq_cfqq_slice_usage(cfqq);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500941
Vivek Goyal02b35082010-08-23 12:23:53 +0200942 if (iops_mode(cfqd))
943 charge = cfqq->slice_dispatch;
944 else if (!cfq_cfqq_sync(cfqq) && !nr_sync)
945 charge = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500946
947 /* Can't update vdisktime while group is on service tree */
948 cfq_rb_erase(&cfqg->rb_node, st);
Vivek Goyal02b35082010-08-23 12:23:53 +0200949 cfqg->vdisktime += cfq_scale_slice(charge, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500950 __cfq_group_service_tree_add(st, cfqg);
951
952 /* This group is being expired. Save the context */
953 if (time_after(cfqd->workload_expires, jiffies)) {
954 cfqg->saved_workload_slice = cfqd->workload_expires
955 - jiffies;
956 cfqg->saved_workload = cfqd->serving_type;
957 cfqg->saved_serving_prio = cfqd->serving_prio;
958 } else
959 cfqg->saved_workload_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -0500960
961 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
962 st->min_vdisktime);
Vivek Goyal02b35082010-08-23 12:23:53 +0200963 cfq_log_cfqq(cfqq->cfqd, cfqq, "sl_used=%u disp=%u charge=%u iops=%u",
964 used_sl, cfqq->slice_dispatch, charge, iops_mode(cfqd));
Vivek Goyale98ef892010-06-18 10:39:47 -0400965 cfq_blkiocg_update_timeslice_used(&cfqg->blkg, used_sl);
966 cfq_blkiocg_set_start_empty_time(&cfqg->blkg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500967}
968
Vivek Goyal25fb5162009-12-03 12:59:46 -0500969#ifdef CONFIG_CFQ_GROUP_IOSCHED
970static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg)
971{
972 if (blkg)
973 return container_of(blkg, struct cfq_group, blkg);
974 return NULL;
975}
976
Vivek Goyalf8d461d2009-12-03 12:59:52 -0500977void
978cfq_update_blkio_group_weight(struct blkio_group *blkg, unsigned int weight)
979{
980 cfqg_of_blkg(blkg)->weight = weight;
981}
982
Vivek Goyal25fb5162009-12-03 12:59:46 -0500983static struct cfq_group *
984cfq_find_alloc_cfqg(struct cfq_data *cfqd, struct cgroup *cgroup, int create)
985{
986 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup);
987 struct cfq_group *cfqg = NULL;
988 void *key = cfqd;
989 int i, j;
990 struct cfq_rb_root *st;
Vivek Goyal22084192009-12-03 12:59:49 -0500991 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
992 unsigned int major, minor;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500993
Vivek Goyal25fb5162009-12-03 12:59:46 -0500994 cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key));
Ricky Beniteza74b2ad2010-04-05 18:22:17 +0200995 if (cfqg && !cfqg->blkg.dev && bdi->dev && dev_name(bdi->dev)) {
996 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
997 cfqg->blkg.dev = MKDEV(major, minor);
998 goto done;
999 }
Vivek Goyal25fb5162009-12-03 12:59:46 -05001000 if (cfqg || !create)
1001 goto done;
1002
1003 cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
1004 if (!cfqg)
1005 goto done;
1006
Vivek Goyal25fb5162009-12-03 12:59:46 -05001007 for_each_cfqg_st(cfqg, i, j, st)
1008 *st = CFQ_RB_ROOT;
1009 RB_CLEAR_NODE(&cfqg->rb_node);
1010
Vivek Goyalb1c35762009-12-03 12:59:47 -05001011 /*
1012 * Take the initial reference that will be released on destroy
1013 * This can be thought of a joint reference by cgroup and
1014 * elevator which will be dropped by either elevator exit
1015 * or cgroup deletion path depending on who is exiting first.
1016 */
1017 atomic_set(&cfqg->ref, 1);
1018
Vivek Goyal25fb5162009-12-03 12:59:46 -05001019 /* Add group onto cgroup list */
Vivek Goyal22084192009-12-03 12:59:49 -05001020 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyale98ef892010-06-18 10:39:47 -04001021 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg, (void *)cfqd,
Vivek Goyal22084192009-12-03 12:59:49 -05001022 MKDEV(major, minor));
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001023 cfqg->weight = blkcg_get_weight(blkcg, cfqg->blkg.dev);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001024
1025 /* Add group on cfqd list */
1026 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
1027
1028done:
Vivek Goyal25fb5162009-12-03 12:59:46 -05001029 return cfqg;
1030}
1031
1032/*
1033 * Search for the cfq group current task belongs to. If create = 1, then also
1034 * create the cfq group if it does not exist. request_queue lock must be held.
1035 */
1036static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
1037{
1038 struct cgroup *cgroup;
1039 struct cfq_group *cfqg = NULL;
1040
1041 rcu_read_lock();
1042 cgroup = task_cgroup(current, blkio_subsys_id);
1043 cfqg = cfq_find_alloc_cfqg(cfqd, cgroup, create);
1044 if (!cfqg && create)
1045 cfqg = &cfqd->root_group;
1046 rcu_read_unlock();
1047 return cfqg;
1048}
1049
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001050static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1051{
1052 atomic_inc(&cfqg->ref);
1053 return cfqg;
1054}
1055
Vivek Goyal25fb5162009-12-03 12:59:46 -05001056static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1057{
1058 /* Currently, all async queues are mapped to root group */
1059 if (!cfq_cfqq_sync(cfqq))
1060 cfqg = &cfqq->cfqd->root_group;
1061
1062 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001063 /* cfqq reference on cfqg */
1064 atomic_inc(&cfqq->cfqg->ref);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001065}
Vivek Goyalb1c35762009-12-03 12:59:47 -05001066
1067static void cfq_put_cfqg(struct cfq_group *cfqg)
1068{
1069 struct cfq_rb_root *st;
1070 int i, j;
1071
1072 BUG_ON(atomic_read(&cfqg->ref) <= 0);
1073 if (!atomic_dec_and_test(&cfqg->ref))
1074 return;
1075 for_each_cfqg_st(cfqg, i, j, st)
1076 BUG_ON(!RB_EMPTY_ROOT(&st->rb) || st->active != NULL);
1077 kfree(cfqg);
1078}
1079
1080static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1081{
1082 /* Something wrong if we are trying to remove same group twice */
1083 BUG_ON(hlist_unhashed(&cfqg->cfqd_node));
1084
1085 hlist_del_init(&cfqg->cfqd_node);
1086
1087 /*
1088 * Put the reference taken at the time of creation so that when all
1089 * queues are gone, group can be destroyed.
1090 */
1091 cfq_put_cfqg(cfqg);
1092}
1093
1094static void cfq_release_cfq_groups(struct cfq_data *cfqd)
1095{
1096 struct hlist_node *pos, *n;
1097 struct cfq_group *cfqg;
1098
1099 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1100 /*
1101 * If cgroup removal path got to blk_group first and removed
1102 * it from cgroup list, then it will take care of destroying
1103 * cfqg also.
1104 */
Vivek Goyale98ef892010-06-18 10:39:47 -04001105 if (!cfq_blkiocg_del_blkio_group(&cfqg->blkg))
Vivek Goyalb1c35762009-12-03 12:59:47 -05001106 cfq_destroy_cfqg(cfqd, cfqg);
1107 }
1108}
1109
1110/*
1111 * Blk cgroup controller notification saying that blkio_group object is being
1112 * delinked as associated cgroup object is going away. That also means that
1113 * no new IO will come in this group. So get rid of this group as soon as
1114 * any pending IO in the group is finished.
1115 *
1116 * This function is called under rcu_read_lock(). key is the rcu protected
1117 * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu
1118 * read lock.
1119 *
1120 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
1121 * it should not be NULL as even if elevator was exiting, cgroup deltion
1122 * path got to it first.
1123 */
1124void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
1125{
1126 unsigned long flags;
1127 struct cfq_data *cfqd = key;
1128
1129 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1130 cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg));
1131 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1132}
1133
Vivek Goyal25fb5162009-12-03 12:59:46 -05001134#else /* GROUP_IOSCHED */
1135static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
1136{
1137 return &cfqd->root_group;
1138}
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001139
1140static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1141{
Dmitry Monakhov50eaeb32010-04-28 19:50:33 +02001142 return cfqg;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001143}
1144
Vivek Goyal25fb5162009-12-03 12:59:46 -05001145static inline void
1146cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1147 cfqq->cfqg = cfqg;
1148}
1149
Vivek Goyalb1c35762009-12-03 12:59:47 -05001150static void cfq_release_cfq_groups(struct cfq_data *cfqd) {}
1151static inline void cfq_put_cfqg(struct cfq_group *cfqg) {}
1152
Vivek Goyal25fb5162009-12-03 12:59:46 -05001153#endif /* GROUP_IOSCHED */
1154
Jens Axboe498d3aa2007-04-26 12:54:48 +02001155/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001156 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa2007-04-26 12:54:48 +02001157 * requests waiting to be processed. It is sorted in the order that
1158 * we will service the queues.
1159 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001160static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001161 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02001162{
Jens Axboe08717142008-01-28 11:38:15 +01001163 struct rb_node **p, *parent;
1164 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001165 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001166 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa2007-04-26 12:54:48 +02001167 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001168 int new_cfqq = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05001169 int group_changed = 0;
1170
1171#ifdef CONFIG_CFQ_GROUP_IOSCHED
1172 if (!cfqd->cfq_group_isolation
1173 && cfqq_type(cfqq) == SYNC_NOIDLE_WORKLOAD
1174 && cfqq->cfqg && cfqq->cfqg != &cfqd->root_group) {
1175 /* Move this cfq to root group */
1176 cfq_log_cfqq(cfqd, cfqq, "moving to root group");
1177 if (!RB_EMPTY_NODE(&cfqq->rb_node))
1178 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
1179 cfqq->orig_cfqg = cfqq->cfqg;
1180 cfqq->cfqg = &cfqd->root_group;
1181 atomic_inc(&cfqd->root_group.ref);
1182 group_changed = 1;
1183 } else if (!cfqd->cfq_group_isolation
1184 && cfqq_type(cfqq) == SYNC_WORKLOAD && cfqq->orig_cfqg) {
1185 /* cfqq is sequential now needs to go to its original group */
1186 BUG_ON(cfqq->cfqg != &cfqd->root_group);
1187 if (!RB_EMPTY_NODE(&cfqq->rb_node))
1188 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
1189 cfq_put_cfqg(cfqq->cfqg);
1190 cfqq->cfqg = cfqq->orig_cfqg;
1191 cfqq->orig_cfqg = NULL;
1192 group_changed = 1;
1193 cfq_log_cfqq(cfqd, cfqq, "moved to origin group");
1194 }
1195#endif
Jens Axboed9e76202007-04-20 14:27:50 +02001196
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001197 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
Vivek Goyal65b32a52009-12-16 17:52:59 -05001198 cfqq_type(cfqq));
Jens Axboe08717142008-01-28 11:38:15 +01001199 if (cfq_class_idle(cfqq)) {
1200 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001201 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +01001202 if (parent && parent != &cfqq->rb_node) {
1203 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1204 rb_key += __cfqq->rb_key;
1205 } else
1206 rb_key += jiffies;
1207 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02001208 /*
1209 * Get our rb key offset. Subtract any residual slice
1210 * value carried from last service. A negative resid
1211 * count indicates slice overrun, and this should position
1212 * the next service time further away in the tree.
1213 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001214 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02001215 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02001216 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001217 } else {
1218 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001219 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001220 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1221 }
Jens Axboed9e76202007-04-20 14:27:50 +02001222
1223 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05001224 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01001225 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001226 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01001227 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001228 if (rb_key == cfqq->rb_key &&
1229 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +02001230 return;
Jens Axboe53b03742006-07-28 09:48:51 +02001231
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001232 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1233 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001234 }
Jens Axboed9e76202007-04-20 14:27:50 +02001235
Jens Axboe498d3aa2007-04-26 12:54:48 +02001236 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01001237 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001238 cfqq->service_tree = service_tree;
1239 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02001240 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +02001241 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +02001242
Jens Axboed9e76202007-04-20 14:27:50 +02001243 parent = *p;
1244 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1245
Jens Axboe0c534e02007-04-18 20:01:57 +02001246 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001247 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02001248 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001249 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +02001250 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001251 else {
Jens Axboe67060e32007-04-18 20:13:32 +02001252 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02001253 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001254 }
Jens Axboe67060e32007-04-18 20:13:32 +02001255
1256 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +02001257 }
1258
Jens Axboecc09e292007-04-26 12:53:50 +02001259 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001260 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02001261
Jens Axboed9e76202007-04-20 14:27:50 +02001262 cfqq->rb_key = rb_key;
1263 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001264 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1265 service_tree->count++;
Vivek Goyalae30c282009-12-03 12:59:55 -05001266 if ((add_front || !new_cfqq) && !group_changed)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001267 return;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001268 cfq_group_service_tree_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Jens Axboea36e71f2009-04-15 12:15:11 +02001271static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001272cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1273 sector_t sector, struct rb_node **ret_parent,
1274 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02001275{
Jens Axboea36e71f2009-04-15 12:15:11 +02001276 struct rb_node **p, *parent;
1277 struct cfq_queue *cfqq = NULL;
1278
1279 parent = NULL;
1280 p = &root->rb_node;
1281 while (*p) {
1282 struct rb_node **n;
1283
1284 parent = *p;
1285 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1286
1287 /*
1288 * Sort strictly based on sector. Smallest to the left,
1289 * largest to the right.
1290 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001291 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001292 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001293 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001294 n = &(*p)->rb_left;
1295 else
1296 break;
1297 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001298 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001299 }
1300
1301 *ret_parent = parent;
1302 if (rb_link)
1303 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001304 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001305}
1306
1307static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1308{
Jens Axboea36e71f2009-04-15 12:15:11 +02001309 struct rb_node **p, *parent;
1310 struct cfq_queue *__cfqq;
1311
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001312 if (cfqq->p_root) {
1313 rb_erase(&cfqq->p_node, cfqq->p_root);
1314 cfqq->p_root = NULL;
1315 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001316
1317 if (cfq_class_idle(cfqq))
1318 return;
1319 if (!cfqq->next_rq)
1320 return;
1321
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001322 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001323 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1324 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001325 if (!__cfqq) {
1326 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001327 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1328 } else
1329 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001330}
1331
Jens Axboe498d3aa2007-04-26 12:54:48 +02001332/*
1333 * Update cfqq's position in the service tree.
1334 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001335static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001336{
Jens Axboe6d048f52007-04-25 12:44:27 +02001337 /*
1338 * Resorting requires the cfqq to be on the RR list already.
1339 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001340 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001341 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001342 cfq_prio_tree_add(cfqd, cfqq);
1343 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001344}
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346/*
1347 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001348 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 */
Jens Axboefebffd62008-01-28 13:19:43 +01001350static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Jens Axboe7b679132008-05-30 12:23:07 +02001352 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001353 BUG_ON(cfq_cfqq_on_rr(cfqq));
1354 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 cfqd->busy_queues++;
1356
Jens Axboeedd75ff2007-04-19 12:03:34 +02001357 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
1359
Jens Axboe498d3aa2007-04-26 12:54:48 +02001360/*
1361 * Called when the cfqq no longer has requests pending, remove it from
1362 * the service tree.
1363 */
Jens Axboefebffd62008-01-28 13:19:43 +01001364static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Jens Axboe7b679132008-05-30 12:23:07 +02001366 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001367 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1368 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001370 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1371 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1372 cfqq->service_tree = NULL;
1373 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001374 if (cfqq->p_root) {
1375 rb_erase(&cfqq->p_node, cfqq->p_root);
1376 cfqq->p_root = NULL;
1377 }
Jens Axboed9e76202007-04-20 14:27:50 +02001378
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001379 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 BUG_ON(!cfqd->busy_queues);
1381 cfqd->busy_queues--;
1382}
1383
1384/*
1385 * rb tree support functions
1386 */
Jens Axboefebffd62008-01-28 13:19:43 +01001387static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Jens Axboe5e705372006-07-13 12:39:25 +02001389 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001390 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Jens Axboeb4878f22005-10-20 16:42:29 +02001392 BUG_ON(!cfqq->queued[sync]);
1393 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Jens Axboe5e705372006-07-13 12:39:25 +02001395 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Vivek Goyalf04a6422009-12-03 12:59:40 -05001397 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1398 /*
1399 * Queue will be deleted from service tree when we actually
1400 * expire it later. Right now just remove it from prio tree
1401 * as it is empty.
1402 */
1403 if (cfqq->p_root) {
1404 rb_erase(&cfqq->p_node, cfqq->p_root);
1405 cfqq->p_root = NULL;
1406 }
1407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
Jens Axboe5e705372006-07-13 12:39:25 +02001410static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Jens Axboe5e705372006-07-13 12:39:25 +02001412 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboea36e71f2009-04-15 12:15:11 +02001414 struct request *__alias, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Jens Axboe5380a102006-07-13 12:37:56 +02001416 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 /*
1419 * looks a little odd, but the first insert might return an alias.
1420 * if that happens, put the alias on the dispatch list
1421 */
Jens Axboe21183b02006-07-13 12:33:14 +02001422 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +02001423 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001424
1425 if (!cfq_cfqq_on_rr(cfqq))
1426 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001427
1428 /*
1429 * check if this request is a better next-serve candidate
1430 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001431 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001432 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001433
1434 /*
1435 * adjust priority tree position, if ->next_rq changes
1436 */
1437 if (prev != cfqq->next_rq)
1438 cfq_prio_tree_add(cfqd, cfqq);
1439
Jens Axboe5044eed2007-04-25 11:53:48 +02001440 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441}
1442
Jens Axboefebffd62008-01-28 13:19:43 +01001443static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Jens Axboe5380a102006-07-13 12:37:56 +02001445 elv_rb_del(&cfqq->sort_list, rq);
1446 cfqq->queued[rq_is_sync(rq)]--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001447 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1448 rq_data_dir(rq), rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02001449 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04001450 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001451 &cfqq->cfqd->serving_group->blkg, rq_data_dir(rq),
1452 rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
Jens Axboe206dc692006-03-28 13:03:44 +02001455static struct request *
1456cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Jens Axboe206dc692006-03-28 13:03:44 +02001458 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001459 struct cfq_io_context *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001460 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Jens Axboe4ac845a2008-01-24 08:44:49 +01001462 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001463 if (!cic)
1464 return NULL;
1465
1466 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001467 if (cfqq) {
1468 sector_t sector = bio->bi_sector + bio_sectors(bio);
1469
Jens Axboe21183b02006-07-13 12:33:14 +02001470 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 return NULL;
1474}
1475
Jens Axboe165125e2007-07-24 09:28:11 +02001476static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001477{
1478 struct cfq_data *cfqd = q->elevator->elevator_data;
1479
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001480 cfqd->rq_in_driver++;
Jens Axboe7b679132008-05-30 12:23:07 +02001481 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001482 cfqd->rq_in_driver);
Jens Axboe25776e32006-06-01 10:12:26 +02001483
Tejun Heo5b936292009-05-07 22:24:38 +09001484 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001485}
1486
Jens Axboe165125e2007-07-24 09:28:11 +02001487static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Jens Axboe22e2c502005-06-27 10:55:12 +02001489 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001491 WARN_ON(!cfqd->rq_in_driver);
1492 cfqd->rq_in_driver--;
Jens Axboe7b679132008-05-30 12:23:07 +02001493 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001494 cfqd->rq_in_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
Jens Axboeb4878f22005-10-20 16:42:29 +02001497static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Jens Axboe5e705372006-07-13 12:39:25 +02001499 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001500
Jens Axboe5e705372006-07-13 12:39:25 +02001501 if (cfqq->next_rq == rq)
1502 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Jens Axboeb4878f22005-10-20 16:42:29 +02001504 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001505 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001506
Aaron Carroll45333d52008-08-26 15:52:36 +02001507 cfqq->cfqd->rq_queued--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001508 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1509 rq_data_dir(rq), rq_is_sync(rq));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001510 if (rq->cmd_flags & REQ_META) {
Jens Axboe374f84a2006-07-23 01:42:19 +02001511 WARN_ON(!cfqq->meta_pending);
1512 cfqq->meta_pending--;
1513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
Jens Axboe165125e2007-07-24 09:28:11 +02001516static int cfq_merge(struct request_queue *q, struct request **req,
1517 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 struct cfq_data *cfqd = q->elevator->elevator_data;
1520 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Jens Axboe206dc692006-03-28 13:03:44 +02001522 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001523 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001524 *req = __rq;
1525 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
1527
1528 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
Jens Axboe165125e2007-07-24 09:28:11 +02001531static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001532 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Jens Axboe21183b02006-07-13 12:33:14 +02001534 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001535 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Jens Axboe5e705372006-07-13 12:39:25 +02001537 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Divyesh Shah812d4022010-04-08 21:14:23 -07001541static void cfq_bio_merged(struct request_queue *q, struct request *req,
1542 struct bio *bio)
1543{
Vivek Goyale98ef892010-06-18 10:39:47 -04001544 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(req))->blkg,
1545 bio_data_dir(bio), cfq_bio_sync(bio));
Divyesh Shah812d4022010-04-08 21:14:23 -07001546}
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548static void
Jens Axboe165125e2007-07-24 09:28:11 +02001549cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 struct request *next)
1551{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001552 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001553 /*
1554 * reposition in fifo if next is older than rq
1555 */
1556 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001557 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001558 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001559 rq_set_fifo_time(rq, rq_fifo_time(next));
1560 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001561
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001562 if (cfqq->next_rq == next)
1563 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001564 cfq_remove_request(next);
Vivek Goyale98ef892010-06-18 10:39:47 -04001565 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(rq))->blkg,
1566 rq_data_dir(next), rq_is_sync(next));
Jens Axboe22e2c502005-06-27 10:55:12 +02001567}
1568
Jens Axboe165125e2007-07-24 09:28:11 +02001569static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001570 struct bio *bio)
1571{
1572 struct cfq_data *cfqd = q->elevator->elevator_data;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001573 struct cfq_io_context *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001574 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001575
1576 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001577 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001578 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001579 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001580 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001581
1582 /*
Jens Axboe719d3402006-12-22 09:38:53 +01001583 * Lookup the cfqq that this bio will be queued with. Allow
1584 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +01001585 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01001586 cic = cfq_cic_lookup(cfqd, current->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001587 if (!cic)
Jens Axboea6151c32009-10-07 20:02:57 +02001588 return false;
Jens Axboe719d3402006-12-22 09:38:53 +01001589
Vasily Tarasov91fac312007-04-25 12:29:51 +02001590 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001591 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001592}
1593
Divyesh Shah812df482010-04-08 21:15:35 -07001594static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1595{
1596 del_timer(&cfqd->idle_slice_timer);
Vivek Goyale98ef892010-06-18 10:39:47 -04001597 cfq_blkiocg_update_idle_time_stats(&cfqq->cfqg->blkg);
Divyesh Shah812df482010-04-08 21:15:35 -07001598}
1599
Jens Axboefebffd62008-01-28 13:19:43 +01001600static void __cfq_set_active_queue(struct cfq_data *cfqd,
1601 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001602{
1603 if (cfqq) {
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001604 cfq_log_cfqq(cfqd, cfqq, "set_active wl_prio:%d wl_type:%d",
1605 cfqd->serving_prio, cfqd->serving_type);
Vivek Goyale98ef892010-06-18 10:39:47 -04001606 cfq_blkiocg_update_avg_queue_size_stats(&cfqq->cfqg->blkg);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001607 cfqq->slice_start = 0;
1608 cfqq->dispatch_start = jiffies;
Vivek Goyalf75edf22009-12-03 12:59:53 -05001609 cfqq->allocated_slice = 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001610 cfqq->slice_end = 0;
Jens Axboe2f5cb732009-04-07 08:51:19 +02001611 cfqq->slice_dispatch = 0;
1612
Jens Axboe2f5cb732009-04-07 08:51:19 +02001613 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboeb0291952009-04-07 11:38:31 +02001614 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001615 cfq_clear_cfqq_must_alloc_slice(cfqq);
1616 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +11001617 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02001618
Divyesh Shah812df482010-04-08 21:15:35 -07001619 cfq_del_timer(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001620 }
1621
1622 cfqd->active_queue = cfqq;
1623}
1624
1625/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001626 * current cfqq expired its slice (or was too idle), select new one
1627 */
1628static void
1629__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Vivek Goyale5ff0822010-04-26 19:25:11 +02001630 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001631{
Jens Axboe7b679132008-05-30 12:23:07 +02001632 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1633
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001634 if (cfq_cfqq_wait_request(cfqq))
Divyesh Shah812df482010-04-08 21:15:35 -07001635 cfq_del_timer(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001636
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001637 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05001638 cfq_clear_cfqq_wait_busy(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001639
1640 /*
Shaohua Liae54abe2010-02-05 13:11:45 +01001641 * If this cfqq is shared between multiple processes, check to
1642 * make sure that those processes are still issuing I/Os within
1643 * the mean seek distance. If not, it may be time to break the
1644 * queues apart again.
1645 */
1646 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
1647 cfq_mark_cfqq_split_coop(cfqq);
1648
1649 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001650 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001651 */
Jens Axboe7b679132008-05-30 12:23:07 +02001652 if (timed_out && !cfq_cfqq_slice_new(cfqq)) {
Jens Axboec5b680f2007-01-19 11:56:49 +11001653 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001654 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1655 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001656
Vivek Goyale5ff0822010-04-26 19:25:11 +02001657 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001658
Vivek Goyalf04a6422009-12-03 12:59:40 -05001659 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1660 cfq_del_cfqq_rr(cfqd, cfqq);
1661
Jens Axboeedd75ff2007-04-19 12:03:34 +02001662 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001663
1664 if (cfqq == cfqd->active_queue)
1665 cfqd->active_queue = NULL;
1666
Vivek Goyaldae739e2009-12-03 12:59:45 -05001667 if (&cfqq->cfqg->rb_node == cfqd->grp_service_tree.active)
1668 cfqd->grp_service_tree.active = NULL;
1669
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001670 if (cfqd->active_cic) {
1671 put_io_context(cfqd->active_cic->ioc);
1672 cfqd->active_cic = NULL;
1673 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001674}
1675
Vivek Goyale5ff0822010-04-26 19:25:11 +02001676static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001677{
1678 struct cfq_queue *cfqq = cfqd->active_queue;
1679
1680 if (cfqq)
Vivek Goyale5ff0822010-04-26 19:25:11 +02001681 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001682}
1683
Jens Axboe498d3aa2007-04-26 12:54:48 +02001684/*
1685 * Get next queue for service. Unless we have a queue preemption,
1686 * we'll simply select the first cfqq in the service tree.
1687 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001688static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001689{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001690 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001691 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -05001692 cfqd->serving_type);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001693
Vivek Goyalf04a6422009-12-03 12:59:40 -05001694 if (!cfqd->rq_queued)
1695 return NULL;
1696
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001697 /* There is nothing to dispatch */
1698 if (!service_tree)
1699 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001700 if (RB_EMPTY_ROOT(&service_tree->rb))
1701 return NULL;
1702 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001703}
1704
Vivek Goyalf04a6422009-12-03 12:59:40 -05001705static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1706{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001707 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05001708 struct cfq_queue *cfqq;
1709 int i, j;
1710 struct cfq_rb_root *st;
1711
1712 if (!cfqd->rq_queued)
1713 return NULL;
1714
Vivek Goyal25fb5162009-12-03 12:59:46 -05001715 cfqg = cfq_get_next_cfqg(cfqd);
1716 if (!cfqg)
1717 return NULL;
1718
Vivek Goyalf04a6422009-12-03 12:59:40 -05001719 for_each_cfqg_st(cfqg, i, j, st)
1720 if ((cfqq = cfq_rb_first(st)) != NULL)
1721 return cfqq;
1722 return NULL;
1723}
1724
Jens Axboe498d3aa2007-04-26 12:54:48 +02001725/*
1726 * Get and set a new active queue for service.
1727 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001728static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1729 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001730{
Jens Axboee00ef792009-11-04 08:54:55 +01001731 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001732 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001733
Jens Axboe22e2c502005-06-27 10:55:12 +02001734 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001735 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001736}
1737
Jens Axboed9e76202007-04-20 14:27:50 +02001738static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1739 struct request *rq)
1740{
Tejun Heo83096eb2009-05-07 22:24:39 +09001741 if (blk_rq_pos(rq) >= cfqd->last_position)
1742 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001743 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001744 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001745}
1746
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001747static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Shaohua Lie9ce3352010-03-19 08:03:04 +01001748 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001749{
Shaohua Lie9ce3352010-03-19 08:03:04 +01001750 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001751}
1752
Jens Axboea36e71f2009-04-15 12:15:11 +02001753static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1754 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001755{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001756 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001757 struct rb_node *parent, *node;
1758 struct cfq_queue *__cfqq;
1759 sector_t sector = cfqd->last_position;
1760
1761 if (RB_EMPTY_ROOT(root))
1762 return NULL;
1763
1764 /*
1765 * First, if we find a request starting at the end of the last
1766 * request, choose it.
1767 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001768 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001769 if (__cfqq)
1770 return __cfqq;
1771
1772 /*
1773 * If the exact sector wasn't found, the parent of the NULL leaf
1774 * will contain the closest sector.
1775 */
1776 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001777 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001778 return __cfqq;
1779
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001780 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001781 node = rb_next(&__cfqq->p_node);
1782 else
1783 node = rb_prev(&__cfqq->p_node);
1784 if (!node)
1785 return NULL;
1786
1787 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001788 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001789 return __cfqq;
1790
1791 return NULL;
1792}
1793
1794/*
1795 * cfqd - obvious
1796 * cur_cfqq - passed in so that we don't decide that the current queue is
1797 * closely cooperating with itself.
1798 *
1799 * So, basically we're assuming that that cur_cfqq has dispatched at least
1800 * one request, and that cfqd->last_position reflects a position on the disk
1801 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1802 * assumption.
1803 */
1804static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001805 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001806{
1807 struct cfq_queue *cfqq;
1808
Divyesh Shah39c01b22010-03-25 15:45:57 +01001809 if (cfq_class_idle(cur_cfqq))
1810 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001811 if (!cfq_cfqq_sync(cur_cfqq))
1812 return NULL;
1813 if (CFQQ_SEEKY(cur_cfqq))
1814 return NULL;
1815
Jens Axboea36e71f2009-04-15 12:15:11 +02001816 /*
Gui Jianfengb9d8f4c2009-12-08 08:54:17 +01001817 * Don't search priority tree if it's the only queue in the group.
1818 */
1819 if (cur_cfqq->cfqg->nr_cfqq == 1)
1820 return NULL;
1821
1822 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001823 * We should notice if some of the queues are cooperating, eg
1824 * working closely on the same area of the disk. In that case,
1825 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001826 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001827 cfqq = cfqq_close(cfqd, cur_cfqq);
1828 if (!cfqq)
1829 return NULL;
1830
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001831 /* If new queue belongs to different cfq_group, don't choose it */
1832 if (cur_cfqq->cfqg != cfqq->cfqg)
1833 return NULL;
1834
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001835 /*
1836 * It only makes sense to merge sync queues.
1837 */
1838 if (!cfq_cfqq_sync(cfqq))
1839 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001840 if (CFQQ_SEEKY(cfqq))
1841 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001842
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001843 /*
1844 * Do not merge queues of different priority classes
1845 */
1846 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1847 return NULL;
1848
Jens Axboea36e71f2009-04-15 12:15:11 +02001849 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001850}
1851
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001852/*
1853 * Determine whether we should enforce idle window for this queue.
1854 */
1855
1856static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1857{
1858 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001859 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001860
Vivek Goyalf04a6422009-12-03 12:59:40 -05001861 BUG_ON(!service_tree);
1862 BUG_ON(!service_tree->count);
1863
Vivek Goyalb6508c12010-08-23 12:23:33 +02001864 if (!cfqd->cfq_slice_idle)
1865 return false;
1866
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001867 /* We never do for idle class queues. */
1868 if (prio == IDLE_WORKLOAD)
1869 return false;
1870
1871 /* We do for queues that were marked with idle window flag. */
Shaohua Li3c764b72009-12-04 13:12:06 +01001872 if (cfq_cfqq_idle_window(cfqq) &&
1873 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001874 return true;
1875
1876 /*
1877 * Otherwise, we do only if they are the last ones
1878 * in their service tree.
1879 */
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001880 if (service_tree->count == 1 && cfq_cfqq_sync(cfqq))
1881 return 1;
1882 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d",
1883 service_tree->count);
1884 return 0;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001885}
1886
Jens Axboe6d048f52007-04-25 12:44:27 +02001887static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001888{
Jens Axboe17926692007-01-19 11:59:30 +11001889 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +02001890 struct cfq_io_context *cic;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001891 unsigned long sl, group_idle = 0;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001892
Jens Axboea68bbdd2008-09-24 13:03:33 +02001893 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001894 * SSD device without seek penalty, disable idling. But only do so
1895 * for devices that support queuing, otherwise we still have a problem
1896 * with sync vs async workloads.
Jens Axboea68bbdd2008-09-24 13:03:33 +02001897 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001898 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbdd2008-09-24 13:03:33 +02001899 return;
1900
Jens Axboedd67d052006-06-21 09:36:18 +02001901 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02001902 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02001903
1904 /*
1905 * idle is disabled, either manually or by past process history
1906 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001907 if (!cfq_should_idle(cfqd, cfqq)) {
1908 /* no queue idling. Check for group idling */
1909 if (cfqd->cfq_group_idle)
1910 group_idle = cfqd->cfq_group_idle;
1911 else
1912 return;
1913 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001914
Jens Axboe22e2c502005-06-27 10:55:12 +02001915 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001916 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02001917 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001918 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02001919 return;
1920
1921 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02001922 * task has exited, don't wait
1923 */
Jens Axboe206dc692006-03-28 13:03:44 +02001924 cic = cfqd->active_cic;
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01001925 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02001926 return;
1927
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001928 /*
1929 * If our average think time is larger than the remaining time
1930 * slice, then don't idle. This avoids overrunning the allotted
1931 * time slice.
1932 */
1933 if (sample_valid(cic->ttime_samples) &&
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001934 (cfqq->slice_end - jiffies < cic->ttime_mean)) {
1935 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%d",
1936 cic->ttime_mean);
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001937 return;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001938 }
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001939
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001940 /* There are other queues in the group, don't do group idle */
1941 if (group_idle && cfqq->cfqg->nr_cfqq > 1)
1942 return;
1943
Jens Axboe3b181522005-06-27 10:56:24 +02001944 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001945
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001946 if (group_idle)
1947 sl = cfqd->cfq_group_idle;
1948 else
1949 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02001950
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001951 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04001952 cfq_blkiocg_update_set_idle_time_stats(&cfqq->cfqg->blkg);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001953 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu group_idle: %d", sl,
1954 group_idle ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
Jens Axboe498d3aa2007-04-26 12:54:48 +02001957/*
1958 * Move request from internal lists to the request queue dispatch list.
1959 */
Jens Axboe165125e2007-07-24 09:28:11 +02001960static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
Jens Axboe3ed9a292007-04-23 08:33:33 +02001962 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001963 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001964
Jens Axboe7b679132008-05-30 12:23:07 +02001965 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
1966
Jeff Moyer06d21882009-09-11 17:08:59 +02001967 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02001968 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001969 cfqq->dispatched++;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02001970 (RQ_CFQG(rq))->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02001971 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02001972
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001973 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
Vivek Goyale98ef892010-06-18 10:39:47 -04001974 cfq_blkiocg_update_dispatch_stats(&cfqq->cfqg->blkg, blk_rq_bytes(rq),
Divyesh Shah84c124d2010-04-09 08:31:19 +02001975 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
1978/*
1979 * return expired entry, or NULL to just start from scratch in rbtree
1980 */
Jens Axboefebffd62008-01-28 13:19:43 +01001981static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
Jens Axboe30996f42009-10-05 11:03:39 +02001983 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Jens Axboe3b181522005-06-27 10:56:24 +02001985 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11001987
1988 cfq_mark_cfqq_fifo_expire(cfqq);
1989
Jens Axboe89850f72006-07-22 16:48:31 +02001990 if (list_empty(&cfqq->fifo))
1991 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Jens Axboe89850f72006-07-22 16:48:31 +02001993 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02001994 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02001995 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Jens Axboe30996f42009-10-05 11:03:39 +02001997 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001998 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999}
2000
Jens Axboe22e2c502005-06-27 10:55:12 +02002001static inline int
2002cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2003{
2004 const int base_rq = cfqd->cfq_slice_async_rq;
2005
2006 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
2007
2008 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
2009}
2010
2011/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002012 * Must be called with the queue_lock held.
2013 */
2014static int cfqq_process_refs(struct cfq_queue *cfqq)
2015{
2016 int process_refs, io_refs;
2017
2018 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
2019 process_refs = atomic_read(&cfqq->ref) - io_refs;
2020 BUG_ON(process_refs < 0);
2021 return process_refs;
2022}
2023
2024static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
2025{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002026 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002027 struct cfq_queue *__cfqq;
2028
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002029 /*
2030 * If there are no process references on the new_cfqq, then it is
2031 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
2032 * chain may have dropped their last reference (not just their
2033 * last process reference).
2034 */
2035 if (!cfqq_process_refs(new_cfqq))
2036 return;
2037
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002038 /* Avoid a circular list and skip interim queue merges */
2039 while ((__cfqq = new_cfqq->new_cfqq)) {
2040 if (__cfqq == cfqq)
2041 return;
2042 new_cfqq = __cfqq;
2043 }
2044
2045 process_refs = cfqq_process_refs(cfqq);
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002046 new_process_refs = cfqq_process_refs(new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002047 /*
2048 * If the process for the cfqq has gone away, there is no
2049 * sense in merging the queues.
2050 */
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002051 if (process_refs == 0 || new_process_refs == 0)
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002052 return;
2053
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002054 /*
2055 * Merge in the direction of the lesser amount of work.
2056 */
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002057 if (new_process_refs >= process_refs) {
2058 cfqq->new_cfqq = new_cfqq;
2059 atomic_add(process_refs, &new_cfqq->ref);
2060 } else {
2061 new_cfqq->new_cfqq = cfqq;
2062 atomic_add(new_process_refs, &cfqq->ref);
2063 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002064}
2065
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002066static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
Vivek Goyal65b32a52009-12-16 17:52:59 -05002067 struct cfq_group *cfqg, enum wl_prio_t prio)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002068{
2069 struct cfq_queue *queue;
2070 int i;
2071 bool key_valid = false;
2072 unsigned long lowest_key = 0;
2073 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2074
Vivek Goyal65b32a52009-12-16 17:52:59 -05002075 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2076 /* select the one with lowest rb_key */
2077 queue = cfq_rb_first(service_tree_for(cfqg, prio, i));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002078 if (queue &&
2079 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2080 lowest_key = queue->rb_key;
2081 cur_best = i;
2082 key_valid = true;
2083 }
2084 }
2085
2086 return cur_best;
2087}
2088
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002089static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002090{
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002091 unsigned slice;
2092 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002093 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002094 unsigned group_slice;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002095
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002096 if (!cfqg) {
2097 cfqd->serving_prio = IDLE_WORKLOAD;
2098 cfqd->workload_expires = jiffies + 1;
2099 return;
2100 }
2101
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002102 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002103 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002104 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002105 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002106 cfqd->serving_prio = BE_WORKLOAD;
2107 else {
2108 cfqd->serving_prio = IDLE_WORKLOAD;
2109 cfqd->workload_expires = jiffies + 1;
2110 return;
2111 }
2112
2113 /*
2114 * For RT and BE, we have to choose also the type
2115 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2116 * expiration time
2117 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002118 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002119 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002120
2121 /*
Vivek Goyal65b32a52009-12-16 17:52:59 -05002122 * check workload expiration, and that we still have other queues ready
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002123 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002124 if (count && !time_after(jiffies, cfqd->workload_expires))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002125 return;
2126
2127 /* otherwise select new workload type */
2128 cfqd->serving_type =
Vivek Goyal65b32a52009-12-16 17:52:59 -05002129 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio);
2130 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002131 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002132
2133 /*
2134 * the workload slice is computed as a fraction of target latency
2135 * proportional to the number of queues in that workload, over
2136 * all the queues in the same priority class
2137 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002138 group_slice = cfq_group_slice(cfqd, cfqg);
2139
2140 slice = group_slice * count /
2141 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2142 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002143
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002144 if (cfqd->serving_type == ASYNC_WORKLOAD) {
2145 unsigned int tmp;
2146
2147 /*
2148 * Async queues are currently system wide. Just taking
2149 * proportion of queues with-in same group will lead to higher
2150 * async ratio system wide as generally root group is going
2151 * to have higher weight. A more accurate thing would be to
2152 * calculate system wide asnc/sync ratio.
2153 */
2154 tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg);
2155 tmp = tmp/cfqd->busy_queues;
2156 slice = min_t(unsigned, slice, tmp);
2157
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002158 /* async workload slice is scaled down according to
2159 * the sync/async slice ratio. */
2160 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002161 } else
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002162 /* sync workload slice is at least 2 * cfq_slice_idle */
2163 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2164
2165 slice = max_t(unsigned, slice, CFQ_MIN_TT);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002166 cfq_log(cfqd, "workload slice:%d", slice);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002167 cfqd->workload_expires = jiffies + slice;
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002168 cfqd->noidle_tree_requires_idle = false;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002169}
2170
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002171static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2172{
2173 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002174 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002175
2176 if (RB_EMPTY_ROOT(&st->rb))
2177 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002178 cfqg = cfq_rb_first_group(st);
2179 st->active = &cfqg->rb_node;
2180 update_min_vdisktime(st);
2181 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002182}
2183
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002184static void cfq_choose_cfqg(struct cfq_data *cfqd)
2185{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002186 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2187
2188 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002189
2190 /* Restore the workload type data */
2191 if (cfqg->saved_workload_slice) {
2192 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2193 cfqd->serving_type = cfqg->saved_workload;
2194 cfqd->serving_prio = cfqg->saved_serving_prio;
Gui Jianfeng66ae2912009-12-15 10:08:45 +01002195 } else
2196 cfqd->workload_expires = jiffies - 1;
2197
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002198 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002199}
2200
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002201/*
Jens Axboe498d3aa2007-04-26 12:54:48 +02002202 * Select a queue for service. If we have a current active queue,
2203 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02002204 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002205static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002206{
Jens Axboea36e71f2009-04-15 12:15:11 +02002207 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002208
2209 cfqq = cfqd->active_queue;
2210 if (!cfqq)
2211 goto new_queue;
2212
Vivek Goyalf04a6422009-12-03 12:59:40 -05002213 if (!cfqd->rq_queued)
2214 return NULL;
Vivek Goyalc244bb52009-12-08 17:52:57 -05002215
2216 /*
2217 * We were waiting for group to get backlogged. Expire the queue
2218 */
2219 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2220 goto expire;
2221
Jens Axboe22e2c502005-06-27 10:55:12 +02002222 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002223 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02002224 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05002225 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2226 /*
2227 * If slice had not expired at the completion of last request
2228 * we might not have turned on wait_busy flag. Don't expire
2229 * the queue yet. Allow the group to get backlogged.
2230 *
2231 * The very fact that we have used the slice, that means we
2232 * have been idling all along on this queue and it should be
2233 * ok to wait for this request to complete.
2234 */
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002235 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2236 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2237 cfqq = NULL;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002238 goto keep_queue;
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002239 } else
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002240 goto check_group_idle;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002241 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002242
2243 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002244 * The active queue has requests and isn't expired, allow it to
2245 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02002246 */
Jens Axboedd67d052006-06-21 09:36:18 +02002247 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002248 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02002249
2250 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02002251 * If another queue has a request waiting within our mean seek
2252 * distance, let it run. The expire code will check for close
2253 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002254 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02002255 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002256 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002257 if (new_cfqq) {
2258 if (!cfqq->new_cfqq)
2259 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02002260 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002261 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002262
2263 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002264 * No requests pending. If the active queue still has requests in
2265 * flight or is idling for a new request, allow either of these
2266 * conditions to happen (or time out) before selecting a new queue.
2267 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002268 if (timer_pending(&cfqd->idle_slice_timer)) {
2269 cfqq = NULL;
2270 goto keep_queue;
2271 }
2272
2273 if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2274 cfqq = NULL;
2275 goto keep_queue;
2276 }
2277
2278 /*
2279 * If group idle is enabled and there are requests dispatched from
2280 * this group, wait for requests to complete.
2281 */
2282check_group_idle:
2283 if (cfqd->cfq_group_idle && cfqq->cfqg->nr_cfqq == 1
2284 && cfqq->cfqg->dispatched) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02002285 cfqq = NULL;
2286 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002287 }
2288
Jens Axboe3b181522005-06-27 10:56:24 +02002289expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02002290 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02002291new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002292 /*
2293 * Current queue expired. Check if we have to switch to a new
2294 * service tree
2295 */
2296 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002297 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002298
Jens Axboea36e71f2009-04-15 12:15:11 +02002299 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002300keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02002301 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002302}
2303
Jens Axboefebffd62008-01-28 13:19:43 +01002304static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02002305{
2306 int dispatched = 0;
2307
2308 while (cfqq->next_rq) {
2309 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2310 dispatched++;
2311 }
2312
2313 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05002314
2315 /* By default cfqq is not expired if it is empty. Do it explicitly */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002316 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02002317 return dispatched;
2318}
2319
Jens Axboe498d3aa2007-04-26 12:54:48 +02002320/*
2321 * Drain our current requests. Used for barriers and when switching
2322 * io schedulers on-the-fly.
2323 */
Jens Axboed9e76202007-04-20 14:27:50 +02002324static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002325{
Jens Axboe08717142008-01-28 11:38:15 +01002326 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002327 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002328
Divyesh Shah3440c492010-04-09 09:29:57 +02002329 /* Expire the timeslice of the current active queue first */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002330 cfq_slice_expired(cfqd, 0);
Divyesh Shah3440c492010-04-09 09:29:57 +02002331 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
2332 __cfq_set_active_queue(cfqd, cfqq);
Vivek Goyalf04a6422009-12-03 12:59:40 -05002333 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Divyesh Shah3440c492010-04-09 09:29:57 +02002334 }
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002335
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002336 BUG_ON(cfqd->busy_queues);
2337
Jeff Moyer69237152009-06-12 15:29:30 +02002338 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002339 return dispatched;
2340}
2341
Shaohua Liabc3c742010-03-01 09:20:54 +01002342static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
2343 struct cfq_queue *cfqq)
2344{
2345 /* the queue hasn't finished any request, can't estimate */
2346 if (cfq_cfqq_slice_new(cfqq))
2347 return 1;
2348 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
2349 cfqq->slice_end))
2350 return 1;
2351
2352 return 0;
2353}
2354
Jens Axboe0b182d62009-10-06 20:49:37 +02002355static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02002356{
Jens Axboe2f5cb732009-04-07 08:51:19 +02002357 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Jens Axboe2f5cb732009-04-07 08:51:19 +02002359 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02002360 * Drain async requests before we start sync IO
2361 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002362 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02002363 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02002364
2365 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002366 * If this is an async queue and we have sync IO in flight, let it wait
2367 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002368 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002369 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002370
Shaohua Liabc3c742010-03-01 09:20:54 +01002371 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002372 if (cfq_class_idle(cfqq))
2373 max_dispatch = 1;
2374
2375 /*
2376 * Does this cfqq already have too much IO in flight?
2377 */
2378 if (cfqq->dispatched >= max_dispatch) {
2379 /*
2380 * idle queue must always only have a single IO in flight
2381 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02002382 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002383 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02002384
Jens Axboe2f5cb732009-04-07 08:51:19 +02002385 /*
2386 * We have other queues, don't allow more IO from this one
2387 */
Shaohua Liabc3c742010-03-01 09:20:54 +01002388 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002389 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11002390
Jens Axboe2f5cb732009-04-07 08:51:19 +02002391 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01002392 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02002393 */
Shaohua Liabc3c742010-03-01 09:20:54 +01002394 if (cfqd->busy_queues == 1)
2395 max_dispatch = -1;
2396 else
2397 /*
2398 * Normally we start throttling cfqq when cfq_quantum/2
2399 * requests have been dispatched. But we can drive
2400 * deeper queue depths at the beginning of slice
2401 * subjected to upper limit of cfq_quantum.
2402 * */
2403 max_dispatch = cfqd->cfq_quantum;
Jens Axboe8e296752009-10-03 16:26:03 +02002404 }
2405
2406 /*
2407 * Async queues must wait a bit before being allowed dispatch.
2408 * We also ramp up the dispatch depth gradually for async IO,
2409 * based on the last sync IO we serviced
2410 */
Jens Axboe963b72f2009-10-03 19:42:18 +02002411 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Corrado Zoccolo573412b2009-12-06 11:48:52 +01002412 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
Jens Axboe8e296752009-10-03 16:26:03 +02002413 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02002414
Jens Axboe61f0c1d2009-10-03 19:46:03 +02002415 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02002416 if (!depth && !cfqq->dispatched)
2417 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02002418 if (depth < max_dispatch)
2419 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 }
2421
Jens Axboe0b182d62009-10-06 20:49:37 +02002422 /*
2423 * If we're below the current max, allow a dispatch
2424 */
2425 return cfqq->dispatched < max_dispatch;
2426}
2427
2428/*
2429 * Dispatch a request from cfqq, moving them to the request queue
2430 * dispatch list.
2431 */
2432static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2433{
2434 struct request *rq;
2435
2436 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2437
2438 if (!cfq_may_dispatch(cfqd, cfqq))
2439 return false;
2440
2441 /*
2442 * follow expired path, else get first next available
2443 */
2444 rq = cfq_check_fifo(cfqq);
2445 if (!rq)
2446 rq = cfqq->next_rq;
2447
2448 /*
2449 * insert request into driver dispatch list
2450 */
2451 cfq_dispatch_insert(cfqd->queue, rq);
2452
2453 if (!cfqd->active_cic) {
2454 struct cfq_io_context *cic = RQ_CIC(rq);
2455
2456 atomic_long_inc(&cic->ioc->refcount);
2457 cfqd->active_cic = cic;
2458 }
2459
2460 return true;
2461}
2462
2463/*
2464 * Find the cfqq that we need to service and move a request from that to the
2465 * dispatch list
2466 */
2467static int cfq_dispatch_requests(struct request_queue *q, int force)
2468{
2469 struct cfq_data *cfqd = q->elevator->elevator_data;
2470 struct cfq_queue *cfqq;
2471
2472 if (!cfqd->busy_queues)
2473 return 0;
2474
2475 if (unlikely(force))
2476 return cfq_forced_dispatch(cfqd);
2477
2478 cfqq = cfq_select_queue(cfqd);
2479 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002480 return 0;
2481
Jens Axboe2f5cb732009-04-07 08:51:19 +02002482 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002483 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002484 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002485 if (!cfq_dispatch_request(cfqd, cfqq))
2486 return 0;
2487
Jens Axboe2f5cb732009-04-07 08:51:19 +02002488 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002489 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002490
2491 /*
2492 * expire an async queue immediately if it has used up its slice. idle
2493 * queue always expire after 1 dispatch round.
2494 */
2495 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2496 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2497 cfq_class_idle(cfqq))) {
2498 cfqq->slice_end = jiffies + 1;
Vivek Goyale5ff0822010-04-26 19:25:11 +02002499 cfq_slice_expired(cfqd, 0);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002500 }
2501
Shan Weib217a902009-09-01 10:06:42 +02002502 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002503 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506/*
Jens Axboe5e705372006-07-13 12:39:25 +02002507 * task holds one reference to the queue, dropped when task exits. each rq
2508 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05002510 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 * queue lock must be held here.
2512 */
2513static void cfq_put_queue(struct cfq_queue *cfqq)
2514{
Jens Axboe22e2c502005-06-27 10:55:12 +02002515 struct cfq_data *cfqd = cfqq->cfqd;
Vivek Goyal878eadd2009-12-07 19:37:15 +01002516 struct cfq_group *cfqg, *orig_cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02002517
2518 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
2520 if (!atomic_dec_and_test(&cfqq->ref))
2521 return;
2522
Jens Axboe7b679132008-05-30 12:23:07 +02002523 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002525 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002526 cfqg = cfqq->cfqg;
Vivek Goyal878eadd2009-12-07 19:37:15 +01002527 orig_cfqg = cfqq->orig_cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002529 if (unlikely(cfqd->active_queue == cfqq)) {
Vivek Goyale5ff0822010-04-26 19:25:11 +02002530 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002531 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002532 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002533
Vivek Goyalf04a6422009-12-03 12:59:40 -05002534 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 kmem_cache_free(cfq_pool, cfqq);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002536 cfq_put_cfqg(cfqg);
Vivek Goyal878eadd2009-12-07 19:37:15 +01002537 if (orig_cfqg)
2538 cfq_put_cfqg(orig_cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539}
2540
Jens Axboed6de8be2008-05-28 14:46:59 +02002541/*
2542 * Must always be called with the rcu_read_lock() held
2543 */
Jens Axboe07416d22008-05-07 09:17:12 +02002544static void
2545__call_for_each_cic(struct io_context *ioc,
2546 void (*func)(struct io_context *, struct cfq_io_context *))
2547{
2548 struct cfq_io_context *cic;
2549 struct hlist_node *n;
2550
2551 hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list)
2552 func(ioc, cic);
2553}
2554
Jens Axboe4ac845a2008-01-24 08:44:49 +01002555/*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002556 * Call func for each cic attached to this ioc.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002557 */
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002558static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002559call_for_each_cic(struct io_context *ioc,
2560 void (*func)(struct io_context *, struct cfq_io_context *))
2561{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002562 rcu_read_lock();
Jens Axboe07416d22008-05-07 09:17:12 +02002563 __call_for_each_cic(ioc, func);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002564 rcu_read_unlock();
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002565}
Jens Axboe4ac845a2008-01-24 08:44:49 +01002566
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002567static void cfq_cic_free_rcu(struct rcu_head *head)
2568{
2569 struct cfq_io_context *cic;
2570
2571 cic = container_of(head, struct cfq_io_context, rcu_head);
2572
2573 kmem_cache_free(cfq_ioc_pool, cic);
Tejun Heo245b2e72009-06-24 15:13:48 +09002574 elv_ioc_count_dec(cfq_ioc_count);
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002575
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002576 if (ioc_gone) {
2577 /*
2578 * CFQ scheduler is exiting, grab exit lock and check
2579 * the pending io context count. If it hits zero,
2580 * complete ioc_gone and set it back to NULL
2581 */
2582 spin_lock(&ioc_gone_lock);
Tejun Heo245b2e72009-06-24 15:13:48 +09002583 if (ioc_gone && !elv_ioc_count_read(cfq_ioc_count)) {
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002584 complete(ioc_gone);
2585 ioc_gone = NULL;
2586 }
2587 spin_unlock(&ioc_gone_lock);
2588 }
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002589}
2590
2591static void cfq_cic_free(struct cfq_io_context *cic)
2592{
2593 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002594}
2595
2596static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic)
2597{
2598 unsigned long flags;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002599 unsigned long dead_key = (unsigned long) cic->key;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002600
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002601 BUG_ON(!(dead_key & CIC_DEAD_KEY));
Jens Axboe4ac845a2008-01-24 08:44:49 +01002602
2603 spin_lock_irqsave(&ioc->lock, flags);
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002604 radix_tree_delete(&ioc->radix_root, dead_key >> CIC_DEAD_INDEX_SHIFT);
Jens Axboeffc4e752008-02-19 10:02:29 +01002605 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002606 spin_unlock_irqrestore(&ioc->lock, flags);
2607
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002608 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002609}
2610
Jens Axboed6de8be2008-05-28 14:46:59 +02002611/*
2612 * Must be called with rcu_read_lock() held or preemption otherwise disabled.
2613 * Only two callers of this - ->dtor() which is called with the rcu_read_lock(),
2614 * and ->trim() which is called with the task lock held
2615 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002616static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002618 /*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002619 * ioc->refcount is zero here, or we are called from elv_unregister(),
2620 * so no more cic's are allowed to be linked into this ioc. So it
2621 * should be ok to iterate over the known list, we will see all cic's
2622 * since no new ones are added.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002623 */
Jens Axboe07416d22008-05-07 09:17:12 +02002624 __call_for_each_cic(ioc, cic_free_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625}
2626
Shaohua Lid02a2c02010-05-25 10:16:53 +02002627static void cfq_put_cooperator(struct cfq_queue *cfqq)
Jens Axboe89850f72006-07-22 16:48:31 +02002628{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002629 struct cfq_queue *__cfqq, *next;
2630
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002631 /*
2632 * If this queue was scheduled to merge with another queue, be
2633 * sure to drop the reference taken on that queue (and others in
2634 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2635 */
2636 __cfqq = cfqq->new_cfqq;
2637 while (__cfqq) {
2638 if (__cfqq == cfqq) {
2639 WARN(1, "cfqq->new_cfqq loop detected\n");
2640 break;
2641 }
2642 next = __cfqq->new_cfqq;
2643 cfq_put_queue(__cfqq);
2644 __cfqq = next;
2645 }
Shaohua Lid02a2c02010-05-25 10:16:53 +02002646}
2647
2648static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2649{
2650 if (unlikely(cfqq == cfqd->active_queue)) {
2651 __cfq_slice_expired(cfqd, cfqq, 0);
2652 cfq_schedule_dispatch(cfqd);
2653 }
2654
2655 cfq_put_cooperator(cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002656
Jens Axboe89850f72006-07-22 16:48:31 +02002657 cfq_put_queue(cfqq);
2658}
2659
2660static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
2661 struct cfq_io_context *cic)
2662{
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002663 struct io_context *ioc = cic->ioc;
2664
Jens Axboefc463792006-08-29 09:05:44 +02002665 list_del_init(&cic->queue_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002666
2667 /*
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002668 * Make sure dead mark is seen for dead queues
Jens Axboe4ac845a2008-01-24 08:44:49 +01002669 */
Jens Axboefc463792006-08-29 09:05:44 +02002670 smp_wmb();
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002671 cic->key = cfqd_dead_key(cfqd);
Jens Axboefc463792006-08-29 09:05:44 +02002672
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002673 if (ioc->ioc_data == cic)
2674 rcu_assign_pointer(ioc->ioc_data, NULL);
2675
Jens Axboeff6657c2009-04-08 10:58:57 +02002676 if (cic->cfqq[BLK_RW_ASYNC]) {
2677 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2678 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002679 }
2680
Jens Axboeff6657c2009-04-08 10:58:57 +02002681 if (cic->cfqq[BLK_RW_SYNC]) {
2682 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2683 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002684 }
Jens Axboe89850f72006-07-22 16:48:31 +02002685}
2686
Jens Axboe4ac845a2008-01-24 08:44:49 +01002687static void cfq_exit_single_io_context(struct io_context *ioc,
2688 struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002689{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002690 struct cfq_data *cfqd = cic_to_cfqd(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02002691
Jens Axboe89850f72006-07-22 16:48:31 +02002692 if (cfqd) {
Jens Axboe165125e2007-07-24 09:28:11 +02002693 struct request_queue *q = cfqd->queue;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002694 unsigned long flags;
Jens Axboe22e2c502005-06-27 10:55:12 +02002695
Jens Axboe4ac845a2008-01-24 08:44:49 +01002696 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboe62c1fe92008-12-15 21:19:25 +01002697
2698 /*
2699 * Ensure we get a fresh copy of the ->key to prevent
2700 * race between exiting task and queue
2701 */
2702 smp_read_barrier_depends();
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002703 if (cic->key == cfqd)
Jens Axboe62c1fe92008-12-15 21:19:25 +01002704 __cfq_exit_single_io_context(cfqd, cic);
2705
Jens Axboe4ac845a2008-01-24 08:44:49 +01002706 spin_unlock_irqrestore(q->queue_lock, flags);
Al Viro12a05732006-03-18 13:38:01 -05002707 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002708}
2709
Jens Axboe498d3aa2007-04-26 12:54:48 +02002710/*
2711 * The process that ioc belongs to has exited, we need to clean up
2712 * and put the internal structures we have that belongs to that process.
2713 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002714static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002716 call_for_each_cic(ioc, cfq_exit_single_io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717}
2718
Jens Axboe22e2c502005-06-27 10:55:12 +02002719static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04002720cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
Jens Axboeb5deef92006-07-19 23:39:40 +02002722 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
Christoph Lameter94f60302007-07-17 04:03:29 -07002724 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
2725 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (cic) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002727 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02002728 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboeffc4e752008-02-19 10:02:29 +01002729 INIT_HLIST_NODE(&cic->cic_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02002730 cic->dtor = cfq_free_io_context;
2731 cic->exit = cfq_exit_io_context;
Tejun Heo245b2e72009-06-24 15:13:48 +09002732 elv_ioc_count_inc(cfq_ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 }
2734
2735 return cic;
2736}
2737
Jens Axboefd0928d2008-01-24 08:52:45 +01002738static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02002739{
2740 struct task_struct *tsk = current;
2741 int ioprio_class;
2742
Jens Axboe3b181522005-06-27 10:56:24 +02002743 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002744 return;
2745
Jens Axboefd0928d2008-01-24 08:52:45 +01002746 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002747 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002748 default:
2749 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2750 case IOPRIO_CLASS_NONE:
2751 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002752 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002753 */
2754 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002755 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002756 break;
2757 case IOPRIO_CLASS_RT:
2758 cfqq->ioprio = task_ioprio(ioc);
2759 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2760 break;
2761 case IOPRIO_CLASS_BE:
2762 cfqq->ioprio = task_ioprio(ioc);
2763 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2764 break;
2765 case IOPRIO_CLASS_IDLE:
2766 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2767 cfqq->ioprio = 7;
2768 cfq_clear_cfqq_idle_window(cfqq);
2769 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002770 }
2771
2772 /*
2773 * keep track of original prio settings in case we have to temporarily
2774 * elevate the priority of this queue
2775 */
2776 cfqq->org_ioprio = cfqq->ioprio;
2777 cfqq->org_ioprio_class = cfqq->ioprio_class;
Jens Axboe3b181522005-06-27 10:56:24 +02002778 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002779}
2780
Jens Axboefebffd62008-01-28 13:19:43 +01002781static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002782{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002783 struct cfq_data *cfqd = cic_to_cfqd(cic);
Al Viro478a82b2006-03-18 13:25:24 -05002784 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01002785 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02002786
Jens Axboecaaa5f92006-06-16 11:23:00 +02002787 if (unlikely(!cfqd))
2788 return;
2789
Jens Axboec1b707d2006-10-30 19:54:23 +01002790 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002791
Jens Axboeff6657c2009-04-08 10:58:57 +02002792 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002793 if (cfqq) {
2794 struct cfq_queue *new_cfqq;
Jens Axboeff6657c2009-04-08 10:58:57 +02002795 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc,
2796 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002797 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002798 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002799 cfq_put_queue(cfqq);
2800 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002801 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002802
Jens Axboeff6657c2009-04-08 10:58:57 +02002803 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002804 if (cfqq)
2805 cfq_mark_cfqq_prio_changed(cfqq);
2806
Jens Axboec1b707d2006-10-30 19:54:23 +01002807 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02002808}
2809
Jens Axboefc463792006-08-29 09:05:44 +02002810static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002812 call_for_each_cic(ioc, changed_ioprio);
Jens Axboefc463792006-08-29 09:05:44 +02002813 ioc->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814}
2815
Jens Axboed5036d72009-06-26 10:44:34 +02002816static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002817 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002818{
2819 RB_CLEAR_NODE(&cfqq->rb_node);
2820 RB_CLEAR_NODE(&cfqq->p_node);
2821 INIT_LIST_HEAD(&cfqq->fifo);
2822
2823 atomic_set(&cfqq->ref, 0);
2824 cfqq->cfqd = cfqd;
2825
2826 cfq_mark_cfqq_prio_changed(cfqq);
2827
2828 if (is_sync) {
2829 if (!cfq_class_idle(cfqq))
2830 cfq_mark_cfqq_idle_window(cfqq);
2831 cfq_mark_cfqq_sync(cfqq);
2832 }
2833 cfqq->pid = pid;
2834}
2835
Vivek Goyal24610332009-12-03 12:59:51 -05002836#ifdef CONFIG_CFQ_GROUP_IOSCHED
2837static void changed_cgroup(struct io_context *ioc, struct cfq_io_context *cic)
2838{
2839 struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002840 struct cfq_data *cfqd = cic_to_cfqd(cic);
Vivek Goyal24610332009-12-03 12:59:51 -05002841 unsigned long flags;
2842 struct request_queue *q;
2843
2844 if (unlikely(!cfqd))
2845 return;
2846
2847 q = cfqd->queue;
2848
2849 spin_lock_irqsave(q->queue_lock, flags);
2850
2851 if (sync_cfqq) {
2852 /*
2853 * Drop reference to sync queue. A new sync queue will be
2854 * assigned in new group upon arrival of a fresh request.
2855 */
2856 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2857 cic_set_cfqq(cic, NULL, 1);
2858 cfq_put_queue(sync_cfqq);
2859 }
2860
2861 spin_unlock_irqrestore(q->queue_lock, flags);
2862}
2863
2864static void cfq_ioc_set_cgroup(struct io_context *ioc)
2865{
2866 call_for_each_cic(ioc, changed_cgroup);
2867 ioc->cgroup_changed = 0;
2868}
2869#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002872cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01002873 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vasily Tarasov91fac312007-04-25 12:29:51 +02002876 struct cfq_io_context *cic;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002877 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
2879retry:
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002880 cfqg = cfq_get_cfqg(cfqd, 1);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002881 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002882 /* cic always exists here */
2883 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Jens Axboe6118b702009-06-30 09:34:12 +02002885 /*
2886 * Always try a new alloc if we fell back to the OOM cfqq
2887 * originally, since it should just be a temporary situation.
2888 */
2889 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2890 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 if (new_cfqq) {
2892 cfqq = new_cfqq;
2893 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002894 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002896 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002897 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002898 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002900 if (new_cfqq)
2901 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002902 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002903 cfqq = kmem_cache_alloc_node(cfq_pool,
2904 gfp_mask | __GFP_ZERO,
2905 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Jens Axboe6118b702009-06-30 09:34:12 +02002908 if (cfqq) {
2909 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2910 cfq_init_prio_data(cfqq, ioc);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002911 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002912 cfq_log_cfqq(cfqd, cfqq, "alloced");
2913 } else
2914 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 }
2916
2917 if (new_cfqq)
2918 kmem_cache_free(cfq_pool, new_cfqq);
2919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 return cfqq;
2921}
2922
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002923static struct cfq_queue **
2924cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2925{
Jens Axboefe094d92008-01-31 13:08:54 +01002926 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002927 case IOPRIO_CLASS_RT:
2928 return &cfqd->async_cfqq[0][ioprio];
2929 case IOPRIO_CLASS_BE:
2930 return &cfqd->async_cfqq[1][ioprio];
2931 case IOPRIO_CLASS_IDLE:
2932 return &cfqd->async_idle_cfqq;
2933 default:
2934 BUG();
2935 }
2936}
2937
Jens Axboe15c31be2007-07-10 13:43:25 +02002938static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002939cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02002940 gfp_t gfp_mask)
2941{
Jens Axboefd0928d2008-01-24 08:52:45 +01002942 const int ioprio = task_ioprio(ioc);
2943 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002944 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002945 struct cfq_queue *cfqq = NULL;
2946
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002947 if (!is_sync) {
2948 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2949 cfqq = *async_cfqq;
2950 }
2951
Jens Axboe6118b702009-06-30 09:34:12 +02002952 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01002953 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002954
2955 /*
2956 * pin the queue now that it's allocated, scheduler exit will prune it
2957 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002958 if (!is_sync && !(*async_cfqq)) {
Jens Axboe15c31be2007-07-10 13:43:25 +02002959 atomic_inc(&cfqq->ref);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002960 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002961 }
2962
2963 atomic_inc(&cfqq->ref);
2964 return cfqq;
2965}
2966
Jens Axboe498d3aa2007-04-26 12:54:48 +02002967/*
2968 * We drop cfq io contexts lazily, so we may find a dead one.
2969 */
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002970static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002971cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc,
2972 struct cfq_io_context *cic)
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002973{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002974 unsigned long flags;
2975
Jens Axboefc463792006-08-29 09:05:44 +02002976 WARN_ON(!list_empty(&cic->queue_list));
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002977 BUG_ON(cic->key != cfqd_dead_key(cfqd));
Jens Axboe597bc482007-04-24 21:23:53 +02002978
Jens Axboe4ac845a2008-01-24 08:44:49 +01002979 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe597bc482007-04-24 21:23:53 +02002980
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002981 BUG_ON(ioc->ioc_data == cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002982
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04002983 radix_tree_delete(&ioc->radix_root, cfqd->cic_index);
Jens Axboeffc4e752008-02-19 10:02:29 +01002984 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002985 spin_unlock_irqrestore(&ioc->lock, flags);
2986
2987 cfq_cic_free(cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002988}
2989
Jens Axboee2d74ac2006-03-28 08:59:01 +02002990static struct cfq_io_context *
Jens Axboe4ac845a2008-01-24 08:44:49 +01002991cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002992{
Jens Axboee2d74ac2006-03-28 08:59:01 +02002993 struct cfq_io_context *cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002994 unsigned long flags;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002995
Vasily Tarasov91fac312007-04-25 12:29:51 +02002996 if (unlikely(!ioc))
2997 return NULL;
2998
Jens Axboed6de8be2008-05-28 14:46:59 +02002999 rcu_read_lock();
3000
Jens Axboe597bc482007-04-24 21:23:53 +02003001 /*
3002 * we maintain a last-hit cache, to avoid browsing over the tree
3003 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003004 cic = rcu_dereference(ioc->ioc_data);
Jens Axboed6de8be2008-05-28 14:46:59 +02003005 if (cic && cic->key == cfqd) {
3006 rcu_read_unlock();
Jens Axboe597bc482007-04-24 21:23:53 +02003007 return cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02003008 }
Jens Axboe597bc482007-04-24 21:23:53 +02003009
Jens Axboe4ac845a2008-01-24 08:44:49 +01003010 do {
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003011 cic = radix_tree_lookup(&ioc->radix_root, cfqd->cic_index);
Jens Axboe4ac845a2008-01-24 08:44:49 +01003012 rcu_read_unlock();
3013 if (!cic)
3014 break;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04003015 if (unlikely(cic->key != cfqd)) {
Jens Axboe4ac845a2008-01-24 08:44:49 +01003016 cfq_drop_dead_cic(cfqd, ioc, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02003017 rcu_read_lock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01003018 continue;
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02003019 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003020
Jens Axboed6de8be2008-05-28 14:46:59 +02003021 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01003022 rcu_assign_pointer(ioc->ioc_data, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02003023 spin_unlock_irqrestore(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01003024 break;
3025 } while (1);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003026
Jens Axboe4ac845a2008-01-24 08:44:49 +01003027 return cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003028}
3029
Jens Axboe4ac845a2008-01-24 08:44:49 +01003030/*
3031 * Add cic into ioc, using cfqd as the search key. This enables us to lookup
3032 * the process specific cfq io context when entered from the block layer.
3033 * Also adds the cic to a per-cfqd list, used when this queue is removed.
3034 */
Jens Axboefebffd62008-01-28 13:19:43 +01003035static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
3036 struct cfq_io_context *cic, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02003037{
Jens Axboe0261d682006-10-30 19:07:48 +01003038 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01003039 int ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003040
Jens Axboe4ac845a2008-01-24 08:44:49 +01003041 ret = radix_tree_preload(gfp_mask);
3042 if (!ret) {
3043 cic->ioc = ioc;
3044 cic->key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003045
Jens Axboe4ac845a2008-01-24 08:44:49 +01003046 spin_lock_irqsave(&ioc->lock, flags);
3047 ret = radix_tree_insert(&ioc->radix_root,
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003048 cfqd->cic_index, cic);
Jens Axboeffc4e752008-02-19 10:02:29 +01003049 if (!ret)
3050 hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01003051 spin_unlock_irqrestore(&ioc->lock, flags);
3052
3053 radix_tree_preload_end();
3054
3055 if (!ret) {
3056 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3057 list_add(&cic->queue_list, &cfqd->cic_list);
3058 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02003059 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003060 }
3061
Jens Axboe4ac845a2008-01-24 08:44:49 +01003062 if (ret)
3063 printk(KERN_ERR "cfq: cic link failed!\n");
Jens Axboefc463792006-08-29 09:05:44 +02003064
Jens Axboe4ac845a2008-01-24 08:44:49 +01003065 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003066}
3067
Jens Axboe22e2c502005-06-27 10:55:12 +02003068/*
3069 * Setup general io context and cfq io context. There can be several cfq
3070 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02003071 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02003072 */
3073static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02003074cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075{
Jens Axboe22e2c502005-06-27 10:55:12 +02003076 struct io_context *ioc = NULL;
3077 struct cfq_io_context *cic;
3078
3079 might_sleep_if(gfp_mask & __GFP_WAIT);
3080
Jens Axboeb5deef92006-07-19 23:39:40 +02003081 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02003082 if (!ioc)
3083 return NULL;
3084
Jens Axboe4ac845a2008-01-24 08:44:49 +01003085 cic = cfq_cic_lookup(cfqd, ioc);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003086 if (cic)
3087 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02003088
Jens Axboee2d74ac2006-03-28 08:59:01 +02003089 cic = cfq_alloc_io_context(cfqd, gfp_mask);
3090 if (cic == NULL)
3091 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02003092
Jens Axboe4ac845a2008-01-24 08:44:49 +01003093 if (cfq_cic_link(cfqd, ioc, cic, gfp_mask))
3094 goto err_free;
3095
Jens Axboe22e2c502005-06-27 10:55:12 +02003096out:
Jens Axboefc463792006-08-29 09:05:44 +02003097 smp_read_barrier_depends();
3098 if (unlikely(ioc->ioprio_changed))
3099 cfq_ioc_set_ioprio(ioc);
3100
Vivek Goyal24610332009-12-03 12:59:51 -05003101#ifdef CONFIG_CFQ_GROUP_IOSCHED
3102 if (unlikely(ioc->cgroup_changed))
3103 cfq_ioc_set_cgroup(ioc);
3104#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02003105 return cic;
Jens Axboe4ac845a2008-01-24 08:44:49 +01003106err_free:
3107 cfq_cic_free(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02003108err:
3109 put_io_context(ioc);
3110 return NULL;
3111}
3112
3113static void
3114cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
3115{
Jens Axboeaaf12282007-01-19 11:30:16 +11003116 unsigned long elapsed = jiffies - cic->last_end_request;
3117 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02003118
3119 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
3120 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
3121 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
3122}
3123
Jens Axboe206dc692006-03-28 13:03:44 +02003124static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003125cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02003126 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02003127{
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003128 sector_t sdist = 0;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003129 sector_t n_sec = blk_rq_sectors(rq);
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003130 if (cfqq->last_request_pos) {
3131 if (cfqq->last_request_pos < blk_rq_pos(rq))
3132 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
3133 else
3134 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
3135 }
Jens Axboe206dc692006-03-28 13:03:44 +02003136
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003137 cfqq->seek_history <<= 1;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003138 if (blk_queue_nonrot(cfqd->queue))
3139 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
3140 else
3141 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
Jens Axboe206dc692006-03-28 13:03:44 +02003142}
Jens Axboe22e2c502005-06-27 10:55:12 +02003143
3144/*
3145 * Disable idle window if the process thinks too long or seeks so much that
3146 * it doesn't matter
3147 */
3148static void
3149cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3150 struct cfq_io_context *cic)
3151{
Jens Axboe7b679132008-05-30 12:23:07 +02003152 int old_idle, enable_idle;
Jens Axboe1be92f22007-04-19 14:32:26 +02003153
Jens Axboe08717142008-01-28 11:38:15 +01003154 /*
3155 * Don't idle for async or idle io prio class
3156 */
3157 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f22007-04-19 14:32:26 +02003158 return;
3159
Jens Axboec265a7f2008-06-26 13:49:33 +02003160 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003161
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003162 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3163 cfq_mark_cfqq_deep(cfqq);
3164
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01003165 if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003166 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02003167 enable_idle = 0;
3168 else if (sample_valid(cic->ttime_samples)) {
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003169 if (cic->ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003170 enable_idle = 0;
3171 else
3172 enable_idle = 1;
3173 }
3174
Jens Axboe7b679132008-05-30 12:23:07 +02003175 if (old_idle != enable_idle) {
3176 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3177 if (enable_idle)
3178 cfq_mark_cfqq_idle_window(cfqq);
3179 else
3180 cfq_clear_cfqq_idle_window(cfqq);
3181 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003182}
3183
Jens Axboe22e2c502005-06-27 10:55:12 +02003184/*
3185 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3186 * no or if we aren't sure, a 1 will cause a preempt.
3187 */
Jens Axboea6151c32009-10-07 20:02:57 +02003188static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02003189cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02003190 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003191{
Jens Axboe6d048f52007-04-25 12:44:27 +02003192 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003193
Jens Axboe6d048f52007-04-25 12:44:27 +02003194 cfqq = cfqd->active_queue;
3195 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02003196 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003197
Jens Axboe6d048f52007-04-25 12:44:27 +02003198 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003199 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003200
3201 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003202 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003203
Jens Axboe22e2c502005-06-27 10:55:12 +02003204 /*
Divyesh Shah875feb62010-01-06 18:58:20 -08003205 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3206 */
3207 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3208 return false;
3209
3210 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02003211 * if the new request is sync, but the currently running queue is
3212 * not, let the sync request have priority.
3213 */
Jens Axboe5e705372006-07-13 12:39:25 +02003214 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003215 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003216
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003217 if (new_cfqq->cfqg != cfqq->cfqg)
3218 return false;
3219
3220 if (cfq_slice_used(cfqq))
3221 return true;
3222
3223 /* Allow preemption only if we are idling on sync-noidle tree */
3224 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
3225 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3226 new_cfqq->service_tree->count == 2 &&
3227 RB_EMPTY_ROOT(&cfqq->sort_list))
3228 return true;
3229
Jens Axboe374f84a2006-07-23 01:42:19 +02003230 /*
3231 * So both queues are sync. Let the new request get disk time if
3232 * it's a metadata request and the current queue is doing regular IO.
3233 */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003234 if ((rq->cmd_flags & REQ_META) && !cfqq->meta_pending)
Jens Axboee6ec4fe2009-11-03 20:21:35 +01003235 return true;
Jens Axboe22e2c502005-06-27 10:55:12 +02003236
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003237 /*
3238 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3239 */
3240 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003241 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003242
Jens Axboe1e3335d2007-02-14 19:59:49 +01003243 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003244 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003245
3246 /*
3247 * if this request is as-good as one we would expect from the
3248 * current cfqq, let it preempt
3249 */
Shaohua Lie9ce3352010-03-19 08:03:04 +01003250 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02003251 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003252
Jens Axboea6151c32009-10-07 20:02:57 +02003253 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003254}
3255
3256/*
3257 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3258 * let it have half of its nominal slice.
3259 */
3260static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3261{
Jens Axboe7b679132008-05-30 12:23:07 +02003262 cfq_log_cfqq(cfqd, cfqq, "preempt");
Vivek Goyale5ff0822010-04-26 19:25:11 +02003263 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003264
Jens Axboebf572252006-07-19 20:29:12 +02003265 /*
3266 * Put the new queue at the front of the of the current list,
3267 * so we know that it will be selected next.
3268 */
3269 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02003270
3271 cfq_service_tree_add(cfqd, cfqq, 1);
Jens Axboebf572252006-07-19 20:29:12 +02003272
Jens Axboe44f7c162007-01-19 11:51:58 +11003273 cfqq->slice_end = 0;
3274 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003275}
3276
3277/*
Jens Axboe5e705372006-07-13 12:39:25 +02003278 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02003279 * something we should do about it
3280 */
3281static void
Jens Axboe5e705372006-07-13 12:39:25 +02003282cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3283 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003284{
Jens Axboe5e705372006-07-13 12:39:25 +02003285 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003286
Aaron Carroll45333d52008-08-26 15:52:36 +02003287 cfqd->rq_queued++;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02003288 if (rq->cmd_flags & REQ_META)
Jens Axboe374f84a2006-07-23 01:42:19 +02003289 cfqq->meta_pending++;
3290
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003291 cfq_update_io_thinktime(cfqd, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003292 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003293 cfq_update_idle_window(cfqd, cfqq, cic);
3294
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003295 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003296
3297 if (cfqq == cfqd->active_queue) {
3298 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003299 * Remember that we saw a request from this process, but
3300 * don't start queuing just yet. Otherwise we risk seeing lots
3301 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003302 * and merging. If the request is already larger than a single
3303 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003304 * merging is already done. Ditto for a busy system that
3305 * has other work pending, don't risk delaying until the
3306 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003307 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003308 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003309 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3310 cfqd->busy_queues > 1) {
Divyesh Shah812df482010-04-08 21:15:35 -07003311 cfq_del_timer(cfqd, cfqq);
Gui Jianfeng554554f2009-12-10 09:38:39 +01003312 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalbf791932009-12-03 12:59:37 -05003313 __blk_run_queue(cfqd->queue);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003314 } else {
Vivek Goyale98ef892010-06-18 10:39:47 -04003315 cfq_blkiocg_update_idle_time_stats(
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003316 &cfqq->cfqg->blkg);
Vivek Goyalbf791932009-12-03 12:59:37 -05003317 cfq_mark_cfqq_must_dispatch(cfqq);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003318 }
Jens Axboed6ceb252009-04-14 14:18:16 +02003319 }
Jens Axboe5e705372006-07-13 12:39:25 +02003320 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003321 /*
3322 * not the active queue - expire current slice if it is
3323 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003324 * has some old slice time left and is of higher priority or
3325 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003326 */
3327 cfq_preempt_queue(cfqd, cfqq);
Tejun Heoa7f55792009-04-23 11:05:17 +09003328 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003329 }
3330}
3331
Jens Axboe165125e2007-07-24 09:28:11 +02003332static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003333{
Jens Axboeb4878f22005-10-20 16:42:29 +02003334 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003335 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003336
Jens Axboe7b679132008-05-30 12:23:07 +02003337 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Jens Axboefd0928d2008-01-24 08:52:45 +01003338 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Jens Axboe30996f42009-10-05 11:03:39 +02003340 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02003341 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003342 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04003343 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -07003344 &cfqd->serving_group->blkg, rq_data_dir(rq),
3345 rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02003346 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347}
3348
Aaron Carroll45333d52008-08-26 15:52:36 +02003349/*
3350 * Update hw_tag based on peak queue depth over 50 samples under
3351 * sufficient load.
3352 */
3353static void cfq_update_hw_tag(struct cfq_data *cfqd)
3354{
Shaohua Li1a1238a2009-10-27 08:46:23 +01003355 struct cfq_queue *cfqq = cfqd->active_queue;
3356
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003357 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
3358 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003359
3360 if (cfqd->hw_tag == 1)
3361 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02003362
3363 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003364 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003365 return;
3366
Shaohua Li1a1238a2009-10-27 08:46:23 +01003367 /*
3368 * If active queue hasn't enough requests and can idle, cfq might not
3369 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3370 * case
3371 */
3372 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3373 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003374 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
Shaohua Li1a1238a2009-10-27 08:46:23 +01003375 return;
3376
Aaron Carroll45333d52008-08-26 15:52:36 +02003377 if (cfqd->hw_tag_samples++ < 50)
3378 return;
3379
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003380 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003381 cfqd->hw_tag = 1;
3382 else
3383 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02003384}
3385
Vivek Goyal7667aa02009-12-08 17:52:58 -05003386static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3387{
3388 struct cfq_io_context *cic = cfqd->active_cic;
3389
3390 /* If there are other queues in the group, don't wait */
3391 if (cfqq->cfqg->nr_cfqq > 1)
3392 return false;
3393
3394 if (cfq_slice_used(cfqq))
3395 return true;
3396
3397 /* if slice left is less than think time, wait busy */
3398 if (cic && sample_valid(cic->ttime_samples)
3399 && (cfqq->slice_end - jiffies < cic->ttime_mean))
3400 return true;
3401
3402 /*
3403 * If think times is less than a jiffy than ttime_mean=0 and above
3404 * will not be true. It might happen that slice has not expired yet
3405 * but will expire soon (4-5 ns) during select_queue(). To cover the
3406 * case where think time is less than a jiffy, mark the queue wait
3407 * busy if only 1 jiffy is left in the slice.
3408 */
3409 if (cfqq->slice_end - jiffies == 1)
3410 return true;
3411
3412 return false;
3413}
3414
Jens Axboe165125e2007-07-24 09:28:11 +02003415static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416{
Jens Axboe5e705372006-07-13 12:39:25 +02003417 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003418 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02003419 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003420 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Jens Axboeb4878f22005-10-20 16:42:29 +02003422 now = jiffies;
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003423 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
3424 !!(rq->cmd_flags & REQ_NOIDLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425
Aaron Carroll45333d52008-08-26 15:52:36 +02003426 cfq_update_hw_tag(cfqd);
3427
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003428 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02003429 WARN_ON(!cfqq->dispatched);
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003430 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02003431 cfqq->dispatched--;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003432 (RQ_CFQG(rq))->dispatched--;
Vivek Goyale98ef892010-06-18 10:39:47 -04003433 cfq_blkiocg_update_completion_stats(&cfqq->cfqg->blkg,
3434 rq_start_time_ns(rq), rq_io_start_time_ns(rq),
3435 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003437 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
Jens Axboe3ed9a292007-04-23 08:33:33 +02003438
Vivek Goyal365722b2009-10-03 15:21:27 +02003439 if (sync) {
Jens Axboe5e705372006-07-13 12:39:25 +02003440 RQ_CIC(rq)->last_end_request = now;
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003441 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3442 cfqd->last_delayed_sync = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02003443 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003444
3445 /*
3446 * If this is the active queue, check if it needs to be expired,
3447 * or if we want to idle in case it has no pending requests.
3448 */
3449 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02003450 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3451
Jens Axboe44f7c162007-01-19 11:51:58 +11003452 if (cfq_cfqq_slice_new(cfqq)) {
3453 cfq_set_prio_slice(cfqd, cfqq);
3454 cfq_clear_cfqq_slice_new(cfqq);
3455 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05003456
3457 /*
Vivek Goyal7667aa02009-12-08 17:52:58 -05003458 * Should we wait for next request to come in before we expire
3459 * the queue.
Vivek Goyalf75edf22009-12-03 12:59:53 -05003460 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05003461 if (cfq_should_wait_busy(cfqd, cfqq)) {
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003462 unsigned long extend_sl = cfqd->cfq_slice_idle;
3463 if (!cfqd->cfq_slice_idle)
3464 extend_sl = cfqd->cfq_group_idle;
3465 cfqq->slice_end = jiffies + extend_sl;
Vivek Goyalf75edf22009-12-03 12:59:53 -05003466 cfq_mark_cfqq_wait_busy(cfqq);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01003467 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
Vivek Goyalf75edf22009-12-03 12:59:53 -05003468 }
3469
Jens Axboea36e71f2009-04-15 12:15:11 +02003470 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003471 * Idling is not enabled on:
3472 * - expired queues
3473 * - idle-priority queues
3474 * - async queues
3475 * - queues with still some requests queued
3476 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02003477 */
Jens Axboe08717142008-01-28 11:38:15 +01003478 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Vivek Goyale5ff0822010-04-26 19:25:11 +02003479 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003480 else if (sync && cfqq_empty &&
3481 !cfq_close_cooperator(cfqd, cfqq)) {
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003482 cfqd->noidle_tree_requires_idle |=
3483 !(rq->cmd_flags & REQ_NOIDLE);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003484 /*
3485 * Idling is enabled for SYNC_WORKLOAD.
3486 * SYNC_NOIDLE_WORKLOAD idles at the end of the tree
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003487 * only if we processed at least one !REQ_NOIDLE request
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003488 */
3489 if (cfqd->serving_type == SYNC_WORKLOAD
Vivek Goyalc04645e2009-12-03 12:59:56 -05003490 || cfqd->noidle_tree_requires_idle
3491 || cfqq->cfqg->nr_cfqq == 1)
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003492 cfq_arm_slice_timer(cfqd);
3493 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003494 }
Jens Axboe6d048f52007-04-25 12:44:27 +02003495
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003496 if (!cfqd->rq_in_driver)
Jens Axboe23e018a2009-10-05 08:52:35 +02003497 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498}
3499
Jens Axboe22e2c502005-06-27 10:55:12 +02003500/*
3501 * we temporarily boost lower priority queues if they are holding fs exclusive
3502 * resources. they are boosted to normal prio (CLASS_BE/4)
3503 */
3504static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505{
Jens Axboe22e2c502005-06-27 10:55:12 +02003506 if (has_fs_excl()) {
3507 /*
3508 * boost idle prio on transactions that would lock out other
3509 * users of the filesystem
3510 */
3511 if (cfq_class_idle(cfqq))
3512 cfqq->ioprio_class = IOPRIO_CLASS_BE;
3513 if (cfqq->ioprio > IOPRIO_NORM)
3514 cfqq->ioprio = IOPRIO_NORM;
3515 } else {
3516 /*
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003517 * unboost the queue (if needed)
Jens Axboe22e2c502005-06-27 10:55:12 +02003518 */
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003519 cfqq->ioprio_class = cfqq->org_ioprio_class;
3520 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003522}
3523
Jens Axboe89850f72006-07-22 16:48:31 +02003524static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003525{
Jens Axboe1b379d82009-08-11 08:26:11 +02003526 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003527 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003528 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003529 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003530
3531 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003532}
3533
Jens Axboe165125e2007-07-24 09:28:11 +02003534static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003535{
3536 struct cfq_data *cfqd = q->elevator->elevator_data;
3537 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02003538 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003539 struct cfq_queue *cfqq;
3540
3541 /*
3542 * don't force setup of a queue from here, as a call to may_queue
3543 * does not necessarily imply that a request actually will be queued.
3544 * so just lookup a possibly existing queue, or return 'may queue'
3545 * if that fails
3546 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003547 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003548 if (!cic)
3549 return ELV_MQUEUE_MAY;
3550
Jens Axboeb0b78f82009-04-08 10:56:08 +02003551 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003552 if (cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003553 cfq_init_prio_data(cfqq, cic->ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02003554 cfq_prio_boost(cfqq);
3555
Jens Axboe89850f72006-07-22 16:48:31 +02003556 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003557 }
3558
3559 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560}
3561
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562/*
3563 * queue lock held here
3564 */
Jens Axboebb37b942006-12-01 10:42:33 +01003565static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566{
Jens Axboe5e705372006-07-13 12:39:25 +02003567 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
Jens Axboe5e705372006-07-13 12:39:25 +02003569 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003570 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Jens Axboe22e2c502005-06-27 10:55:12 +02003572 BUG_ON(!cfqq->allocated[rw]);
3573 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Jens Axboe5e705372006-07-13 12:39:25 +02003575 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02003578 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003580 /* Put down rq reference on cfqg */
3581 cfq_put_cfqg(RQ_CFQG(rq));
3582 rq->elevator_private3 = NULL;
3583
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 cfq_put_queue(cfqq);
3585 }
3586}
3587
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003588static struct cfq_queue *
3589cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic,
3590 struct cfq_queue *cfqq)
3591{
3592 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3593 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003594 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003595 cfq_put_queue(cfqq);
3596 return cic_to_cfqq(cic, 1);
3597}
3598
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003599/*
3600 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3601 * was the last process referring to said cfqq.
3602 */
3603static struct cfq_queue *
3604split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq)
3605{
3606 if (cfqq_process_refs(cfqq) == 1) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003607 cfqq->pid = current->pid;
3608 cfq_clear_cfqq_coop(cfqq);
Shaohua Liae54abe2010-02-05 13:11:45 +01003609 cfq_clear_cfqq_split_coop(cfqq);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003610 return cfqq;
3611 }
3612
3613 cic_set_cfqq(cic, NULL, 1);
Shaohua Lid02a2c02010-05-25 10:16:53 +02003614
3615 cfq_put_cooperator(cfqq);
3616
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003617 cfq_put_queue(cfqq);
3618 return NULL;
3619}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003621 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003623static int
Jens Axboe165125e2007-07-24 09:28:11 +02003624cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625{
3626 struct cfq_data *cfqd = q->elevator->elevator_data;
3627 struct cfq_io_context *cic;
3628 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003629 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003630 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 unsigned long flags;
3632
3633 might_sleep_if(gfp_mask & __GFP_WAIT);
3634
Jens Axboee2d74ac2006-03-28 08:59:01 +02003635 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02003636
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 spin_lock_irqsave(q->queue_lock, flags);
3638
Jens Axboe22e2c502005-06-27 10:55:12 +02003639 if (!cic)
3640 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003642new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003643 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003644 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003645 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003646 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003647 } else {
3648 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003649 * If the queue was seeky for too long, break it apart.
3650 */
Shaohua Liae54abe2010-02-05 13:11:45 +01003651 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003652 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3653 cfqq = split_cfqq(cic, cfqq);
3654 if (!cfqq)
3655 goto new_queue;
3656 }
3657
3658 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003659 * Check to see if this queue is scheduled to merge with
3660 * another, closely cooperating queue. The merging of
3661 * queues happens here as it must be done in process context.
3662 * The reference on new_cfqq was taken in merge_cfqqs.
3663 */
3664 if (cfqq->new_cfqq)
3665 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667
3668 cfqq->allocated[rw]++;
Jens Axboe22e2c502005-06-27 10:55:12 +02003669 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02003670
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 spin_unlock_irqrestore(q->queue_lock, flags);
3672
Jens Axboe5e705372006-07-13 12:39:25 +02003673 rq->elevator_private = cic;
3674 rq->elevator_private2 = cfqq;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003675 rq->elevator_private3 = cfq_ref_get_cfqg(cfqq->cfqg);
Jens Axboe5e705372006-07-13 12:39:25 +02003676 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02003677
Jens Axboe22e2c502005-06-27 10:55:12 +02003678queue_fail:
3679 if (cic)
3680 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02003681
Jens Axboe23e018a2009-10-05 08:52:35 +02003682 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 spin_unlock_irqrestore(q->queue_lock, flags);
Jens Axboe7b679132008-05-30 12:23:07 +02003684 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 return 1;
3686}
3687
David Howells65f27f32006-11-22 14:55:48 +00003688static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003689{
David Howells65f27f32006-11-22 14:55:48 +00003690 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003691 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003692 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003693
Jens Axboe40bb54d2009-04-15 12:11:10 +02003694 spin_lock_irq(q->queue_lock);
Tejun Heoa7f55792009-04-23 11:05:17 +09003695 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003696 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003697}
3698
3699/*
3700 * Timer running if the active_queue is currently idling inside its time slice
3701 */
3702static void cfq_idle_slice_timer(unsigned long data)
3703{
3704 struct cfq_data *cfqd = (struct cfq_data *) data;
3705 struct cfq_queue *cfqq;
3706 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003707 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003708
Jens Axboe7b679132008-05-30 12:23:07 +02003709 cfq_log(cfqd, "idle timer fired");
3710
Jens Axboe22e2c502005-06-27 10:55:12 +02003711 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3712
Jens Axboefe094d92008-01-31 13:08:54 +01003713 cfqq = cfqd->active_queue;
3714 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003715 timed_out = 0;
3716
Jens Axboe22e2c502005-06-27 10:55:12 +02003717 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003718 * We saw a request before the queue expired, let it through
3719 */
3720 if (cfq_cfqq_must_dispatch(cfqq))
3721 goto out_kick;
3722
3723 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003724 * expired
3725 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003726 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003727 goto expire;
3728
3729 /*
3730 * only expire and reinvoke request handler, if there are
3731 * other queues with pending requests
3732 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003733 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003734 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003735
3736 /*
3737 * not expired and it has a request pending, let it dispatch
3738 */
Jens Axboe75e50982009-04-07 08:56:14 +02003739 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003740 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003741
3742 /*
3743 * Queue depth flag is reset only when the idle didn't succeed
3744 */
3745 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003746 }
3747expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02003748 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003749out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003750 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003751out_cont:
3752 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3753}
3754
Jens Axboe3b181522005-06-27 10:56:24 +02003755static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3756{
3757 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003758 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003759}
Jens Axboe22e2c502005-06-27 10:55:12 +02003760
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003761static void cfq_put_async_queues(struct cfq_data *cfqd)
3762{
3763 int i;
3764
3765 for (i = 0; i < IOPRIO_BE_NR; i++) {
3766 if (cfqd->async_cfqq[0][i])
3767 cfq_put_queue(cfqd->async_cfqq[0][i]);
3768 if (cfqd->async_cfqq[1][i])
3769 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003770 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003771
3772 if (cfqd->async_idle_cfqq)
3773 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003774}
3775
Jens Axboebb729bc2009-12-06 09:54:19 +01003776static void cfq_cfqd_free(struct rcu_head *head)
3777{
3778 kfree(container_of(head, struct cfq_data, rcu));
3779}
3780
Jens Axboeb374d182008-10-31 10:05:07 +01003781static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782{
Jens Axboe22e2c502005-06-27 10:55:12 +02003783 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003784 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003785
Jens Axboe3b181522005-06-27 10:56:24 +02003786 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003787
Al Virod9ff4182006-03-18 13:51:22 -05003788 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003789
Al Virod9ff4182006-03-18 13:51:22 -05003790 if (cfqd->active_queue)
Vivek Goyale5ff0822010-04-26 19:25:11 +02003791 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003792
3793 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05003794 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
3795 struct cfq_io_context,
3796 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02003797
3798 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05003799 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003800
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003801 cfq_put_async_queues(cfqd);
Vivek Goyalb1c35762009-12-03 12:59:47 -05003802 cfq_release_cfq_groups(cfqd);
Vivek Goyale98ef892010-06-18 10:39:47 -04003803 cfq_blkiocg_del_blkio_group(&cfqd->root_group.blkg);
Jens Axboe15c31be2007-07-10 13:43:25 +02003804
Al Virod9ff4182006-03-18 13:51:22 -05003805 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05003806
3807 cfq_shutdown_timer_wq(cfqd);
3808
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003809 spin_lock(&cic_index_lock);
3810 ida_remove(&cic_index_ida, cfqd->cic_index);
3811 spin_unlock(&cic_index_lock);
3812
Vivek Goyalb1c35762009-12-03 12:59:47 -05003813 /* Wait for cfqg->blkg->key accessors to exit their grace periods. */
Jens Axboebb729bc2009-12-06 09:54:19 +01003814 call_rcu(&cfqd->rcu, cfq_cfqd_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815}
3816
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003817static int cfq_alloc_cic_index(void)
3818{
3819 int index, error;
3820
3821 do {
3822 if (!ida_pre_get(&cic_index_ida, GFP_KERNEL))
3823 return -ENOMEM;
3824
3825 spin_lock(&cic_index_lock);
3826 error = ida_get_new(&cic_index_ida, &index);
3827 spin_unlock(&cic_index_lock);
3828 if (error && error != -EAGAIN)
3829 return error;
3830 } while (error);
3831
3832 return index;
3833}
3834
Jens Axboe165125e2007-07-24 09:28:11 +02003835static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836{
3837 struct cfq_data *cfqd;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003838 int i, j;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003839 struct cfq_group *cfqg;
Vivek Goyal615f0252009-12-03 12:59:39 -05003840 struct cfq_rb_root *st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003842 i = cfq_alloc_cic_index();
3843 if (i < 0)
3844 return NULL;
3845
Christoph Lameter94f60302007-07-17 04:03:29 -07003846 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02003848 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003850 cfqd->cic_index = i;
3851
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003852 /* Init root service tree */
3853 cfqd->grp_service_tree = CFQ_RB_ROOT;
3854
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003855 /* Init root group */
3856 cfqg = &cfqd->root_group;
Vivek Goyal615f0252009-12-03 12:59:39 -05003857 for_each_cfqg_st(cfqg, i, j, st)
3858 *st = CFQ_RB_ROOT;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003859 RB_CLEAR_NODE(&cfqg->rb_node);
Jens Axboe26a2ac02009-04-23 12:13:27 +02003860
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003861 /* Give preference to root group over other groups */
3862 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3863
Vivek Goyal25fb5162009-12-03 12:59:46 -05003864#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyalb1c35762009-12-03 12:59:47 -05003865 /*
3866 * Take a reference to root group which we never drop. This is just
3867 * to make sure that cfq_put_cfqg() does not try to kfree root group
3868 */
3869 atomic_set(&cfqg->ref, 1);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003870 rcu_read_lock();
Vivek Goyale98ef892010-06-18 10:39:47 -04003871 cfq_blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg,
3872 (void *)cfqd, 0);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003873 rcu_read_unlock();
Vivek Goyal25fb5162009-12-03 12:59:46 -05003874#endif
Jens Axboe26a2ac02009-04-23 12:13:27 +02003875 /*
3876 * Not strictly needed (since RB_ROOT just clears the node and we
3877 * zeroed cfqd on alloc), but better be safe in case someone decides
3878 * to add magic to the rb code
3879 */
3880 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3881 cfqd->prio_trees[i] = RB_ROOT;
3882
Jens Axboe6118b702009-06-30 09:34:12 +02003883 /*
3884 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3885 * Grab a permanent reference to it, so that the normal code flow
3886 * will not attempt to free it.
3887 */
3888 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
3889 atomic_inc(&cfqd->oom_cfqq.ref);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003890 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
Jens Axboe6118b702009-06-30 09:34:12 +02003891
Al Virod9ff4182006-03-18 13:51:22 -05003892 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
Jens Axboe22e2c502005-06-27 10:55:12 +02003896 init_timer(&cfqd->idle_slice_timer);
3897 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3898 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3899
Jens Axboe23e018a2009-10-05 08:52:35 +02003900 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003901
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003903 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3904 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 cfqd->cfq_back_max = cfq_back_max;
3906 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003907 cfqd->cfq_slice[0] = cfq_slice_async;
3908 cfqd->cfq_slice[1] = cfq_slice_sync;
3909 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3910 cfqd->cfq_slice_idle = cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003911 cfqd->cfq_group_idle = cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003912 cfqd->cfq_latency = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05003913 cfqd->cfq_group_isolation = 0;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003914 cfqd->hw_tag = -1;
Corrado Zoccoloedc71132009-12-09 20:56:04 +01003915 /*
3916 * we optimistically start assuming sync ops weren't delayed in last
3917 * second, in order to have larger depth for async operations.
3918 */
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003919 cfqd->last_delayed_sync = jiffies - HZ;
Jens Axboebc1c1162006-06-08 08:49:06 +02003920 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921}
3922
3923static void cfq_slab_kill(void)
3924{
Jens Axboed6de8be2008-05-28 14:46:59 +02003925 /*
3926 * Caller already ensured that pending RCU callbacks are completed,
3927 * so we should have no busy allocations at this point.
3928 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 if (cfq_pool)
3930 kmem_cache_destroy(cfq_pool);
3931 if (cfq_ioc_pool)
3932 kmem_cache_destroy(cfq_ioc_pool);
3933}
3934
3935static int __init cfq_slab_setup(void)
3936{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003937 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 if (!cfq_pool)
3939 goto fail;
3940
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02003941 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 if (!cfq_ioc_pool)
3943 goto fail;
3944
3945 return 0;
3946fail:
3947 cfq_slab_kill();
3948 return -ENOMEM;
3949}
3950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951/*
3952 * sysfs parts below -->
3953 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954static ssize_t
3955cfq_var_show(unsigned int var, char *page)
3956{
3957 return sprintf(page, "%d\n", var);
3958}
3959
3960static ssize_t
3961cfq_var_store(unsigned int *var, const char *page, size_t count)
3962{
3963 char *p = (char *) page;
3964
3965 *var = simple_strtoul(p, &p, 10);
3966 return count;
3967}
3968
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003970static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003972 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 unsigned int __data = __VAR; \
3974 if (__CONV) \
3975 __data = jiffies_to_msecs(__data); \
3976 return cfq_var_show(__data, (page)); \
3977}
3978SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003979SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
3980SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05003981SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
3982SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003983SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003984SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003985SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
3986SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
3987SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003988SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Vivek Goyalae30c282009-12-03 12:59:55 -05003989SHOW_FUNCTION(cfq_group_isolation_show, cfqd->cfq_group_isolation, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990#undef SHOW_FUNCTION
3991
3992#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003993static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003995 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 unsigned int __data; \
3997 int ret = cfq_var_store(&__data, (page), count); \
3998 if (__data < (MIN)) \
3999 __data = (MIN); \
4000 else if (__data > (MAX)) \
4001 __data = (MAX); \
4002 if (__CONV) \
4003 *(__PTR) = msecs_to_jiffies(__data); \
4004 else \
4005 *(__PTR) = __data; \
4006 return ret; \
4007}
4008STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004009STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
4010 UINT_MAX, 1);
4011STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
4012 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05004013STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004014STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
4015 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004016STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004017STORE_FUNCTION(cfq_group_idle_store, &cfqd->cfq_group_idle, 0, UINT_MAX, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02004018STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
4019STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01004020STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
4021 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02004022STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Vivek Goyalae30c282009-12-03 12:59:55 -05004023STORE_FUNCTION(cfq_group_isolation_store, &cfqd->cfq_group_isolation, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024#undef STORE_FUNCTION
4025
Al Viroe572ec72006-03-18 22:27:18 -05004026#define CFQ_ATTR(name) \
4027 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02004028
Al Viroe572ec72006-03-18 22:27:18 -05004029static struct elv_fs_entry cfq_attrs[] = {
4030 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05004031 CFQ_ATTR(fifo_expire_sync),
4032 CFQ_ATTR(fifo_expire_async),
4033 CFQ_ATTR(back_seek_max),
4034 CFQ_ATTR(back_seek_penalty),
4035 CFQ_ATTR(slice_sync),
4036 CFQ_ATTR(slice_async),
4037 CFQ_ATTR(slice_async_rq),
4038 CFQ_ATTR(slice_idle),
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004039 CFQ_ATTR(group_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02004040 CFQ_ATTR(low_latency),
Vivek Goyalae30c282009-12-03 12:59:55 -05004041 CFQ_ATTR(group_isolation),
Al Viroe572ec72006-03-18 22:27:18 -05004042 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043};
4044
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045static struct elevator_type iosched_cfq = {
4046 .ops = {
4047 .elevator_merge_fn = cfq_merge,
4048 .elevator_merged_fn = cfq_merged_request,
4049 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01004050 .elevator_allow_merge_fn = cfq_allow_merge,
Divyesh Shah812d4022010-04-08 21:14:23 -07004051 .elevator_bio_merged_fn = cfq_bio_merged,
Jens Axboeb4878f22005-10-20 16:42:29 +02004052 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02004054 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 .elevator_deactivate_req_fn = cfq_deactivate_request,
4056 .elevator_queue_empty_fn = cfq_queue_empty,
4057 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02004058 .elevator_former_req_fn = elv_rb_former_request,
4059 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 .elevator_set_req_fn = cfq_set_request,
4061 .elevator_put_req_fn = cfq_put_request,
4062 .elevator_may_queue_fn = cfq_may_queue,
4063 .elevator_init_fn = cfq_init_queue,
4064 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02004065 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 },
Al Viro3d1ab402006-03-18 18:35:43 -05004067 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 .elevator_name = "cfq",
4069 .elevator_owner = THIS_MODULE,
4070};
4071
Vivek Goyal3e252062009-12-04 10:36:42 -05004072#ifdef CONFIG_CFQ_GROUP_IOSCHED
4073static struct blkio_policy_type blkio_policy_cfq = {
4074 .ops = {
4075 .blkio_unlink_group_fn = cfq_unlink_blkio_group,
4076 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
4077 },
4078};
4079#else
4080static struct blkio_policy_type blkio_policy_cfq;
4081#endif
4082
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083static int __init cfq_init(void)
4084{
Jens Axboe22e2c502005-06-27 10:55:12 +02004085 /*
4086 * could be 0 on HZ < 1000 setups
4087 */
4088 if (!cfq_slice_async)
4089 cfq_slice_async = 1;
4090 if (!cfq_slice_idle)
4091 cfq_slice_idle = 1;
4092
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004093#ifdef CONFIG_CFQ_GROUP_IOSCHED
4094 if (!cfq_group_idle)
4095 cfq_group_idle = 1;
4096#else
4097 cfq_group_idle = 0;
4098#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 if (cfq_slab_setup())
4100 return -ENOMEM;
4101
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004102 elv_register(&iosched_cfq);
Vivek Goyal3e252062009-12-04 10:36:42 -05004103 blkio_policy_register(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004105 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106}
4107
4108static void __exit cfq_exit(void)
4109{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07004110 DECLARE_COMPLETION_ONSTACK(all_gone);
Vivek Goyal3e252062009-12-04 10:36:42 -05004111 blkio_policy_unregister(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05004113 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02004114 /* ioc_gone's update must be visible before reading ioc_count */
4115 smp_wmb();
Jens Axboed6de8be2008-05-28 14:46:59 +02004116
4117 /*
4118 * this also protects us from entering cfq_slab_kill() with
4119 * pending RCU callbacks
4120 */
Tejun Heo245b2e72009-06-24 15:13:48 +09004121 if (elv_ioc_count_read(cfq_ioc_count))
Jens Axboe9a11b4e2008-05-29 09:32:08 +02004122 wait_for_completion(&all_gone);
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04004123 ida_destroy(&cic_index_ida);
Christoph Hellwig83521d32005-10-30 15:01:39 -08004124 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125}
4126
4127module_init(cfq_init);
4128module_exit(cfq_exit);
4129
4130MODULE_AUTHOR("Jens Axboe");
4131MODULE_LICENSE("GPL");
4132MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");