blob: 55d2a21f7f0678cf9404ea801cb77c88dfb0ad83 [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>
Al Viro1cc9be62006-03-18 12:29:52 -050010#include <linux/blkdev.h>
11#include <linux/elevator.h>
Randy Dunlapad5ebd22009-11-11 13:47:45 +010012#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/rbtree.h>
Jens Axboe22e2c502005-06-27 10:55:12 +020014#include <linux/ioprio.h>
Jens Axboe7b679132008-05-30 12:23:07 +020015#include <linux/blktrace_api.h>
Vivek Goyal25bc6b02009-12-03 12:59:43 -050016#include "blk-cgroup.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/*
19 * tunables
20 */
Jens Axboefe094d92008-01-31 13:08:54 +010021/* max queue in one round of service */
22static const int cfq_quantum = 4;
Arjan van de Ven64100092006-01-06 09:46:02 +010023static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
Jens Axboefe094d92008-01-31 13:08:54 +010024/* maximum backwards seek, in KiB */
25static const int cfq_back_max = 16 * 1024;
26/* penalty of a backwards seek */
27static const int cfq_back_penalty = 2;
Arjan van de Ven64100092006-01-06 09:46:02 +010028static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020029static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010030static const int cfq_slice_async_rq = 2;
Jens Axboecaaa5f92006-06-16 11:23:00 +020031static int cfq_slice_idle = HZ / 125;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +010032static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
33static const int cfq_hist_divisor = 4;
Jens Axboe22e2c502005-06-27 10:55:12 +020034
Jens Axboed9e76202007-04-20 14:27:50 +020035/*
Jens Axboe08717142008-01-28 11:38:15 +010036 * offset from end of service tree
Jens Axboed9e76202007-04-20 14:27:50 +020037 */
Jens Axboe08717142008-01-28 11:38:15 +010038#define CFQ_IDLE_DELAY (HZ / 5)
Jens Axboed9e76202007-04-20 14:27:50 +020039
40/*
41 * below this threshold, we consider thinktime immediate
42 */
43#define CFQ_MIN_TT (2)
44
Jeff Moyere6c5bc72009-10-23 17:14:52 -040045/*
46 * Allow merged cfqqs to perform this amount of seeky I/O before
47 * deciding to break the queues up again.
48 */
49#define CFQQ_COOP_TOUT (HZ)
50
Jens Axboe22e2c502005-06-27 10:55:12 +020051#define CFQ_SLICE_SCALE (5)
Aaron Carroll45333d52008-08-26 15:52:36 +020052#define CFQ_HW_QUEUE_MIN (5)
Vivek Goyal25bc6b02009-12-03 12:59:43 -050053#define CFQ_SERVICE_SHIFT 12
Jens Axboe22e2c502005-06-27 10:55:12 +020054
Jens Axboefe094d92008-01-31 13:08:54 +010055#define RQ_CIC(rq) \
56 ((struct cfq_io_context *) (rq)->elevator_private)
Jens Axboe7b679132008-05-30 12:23:07 +020057#define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elevator_private2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Christoph Lametere18b8902006-12-06 20:33:20 -080059static struct kmem_cache *cfq_pool;
60static struct kmem_cache *cfq_ioc_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Tejun Heo245b2e72009-06-24 15:13:48 +090062static DEFINE_PER_CPU(unsigned long, cfq_ioc_count);
Al Viro334e94d2006-03-18 15:05:53 -050063static struct completion *ioc_gone;
Jens Axboe9a11b4e2008-05-29 09:32:08 +020064static DEFINE_SPINLOCK(ioc_gone_lock);
Al Viro334e94d2006-03-18 15:05:53 -050065
Jens Axboe22e2c502005-06-27 10:55:12 +020066#define CFQ_PRIO_LISTS IOPRIO_BE_NR
67#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
Jens Axboe22e2c502005-06-27 10:55:12 +020068#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
69
Jens Axboe206dc692006-03-28 13:03:44 +020070#define sample_valid(samples) ((samples) > 80)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050071#define rb_entry_cfqg(node) rb_entry((node), struct cfq_group, rb_node)
Jens Axboe206dc692006-03-28 13:03:44 +020072
Jens Axboe22e2c502005-06-27 10:55:12 +020073/*
Jens Axboecc09e292007-04-26 12:53:50 +020074 * Most of our rbtree usage is for sorting with min extraction, so
75 * if we cache the leftmost node we don't have to walk down the tree
76 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
77 * move this into the elevator for the rq sorting as well.
78 */
79struct cfq_rb_root {
80 struct rb_root rb;
81 struct rb_node *left;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010082 unsigned count;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050083 u64 min_vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -050084 struct rb_node *active;
Vivek Goyal58ff82f2009-12-03 12:59:44 -050085 unsigned total_weight;
Jens Axboecc09e292007-04-26 12:53:50 +020086};
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050087#define CFQ_RB_ROOT (struct cfq_rb_root) { RB_ROOT, NULL, 0, 0, }
Jens Axboecc09e292007-04-26 12:53:50 +020088
89/*
Jens Axboe6118b702009-06-30 09:34:12 +020090 * Per process-grouping structure
91 */
92struct cfq_queue {
93 /* reference count */
94 atomic_t ref;
95 /* various state flags, see below */
96 unsigned int flags;
97 /* parent cfq_data */
98 struct cfq_data *cfqd;
99 /* service_tree member */
100 struct rb_node rb_node;
101 /* service_tree key */
102 unsigned long rb_key;
103 /* prio tree member */
104 struct rb_node p_node;
105 /* prio tree root we belong to, if any */
106 struct rb_root *p_root;
107 /* sorted list of pending requests */
108 struct rb_root sort_list;
109 /* if fifo isn't expired, next request to serve */
110 struct request *next_rq;
111 /* requests queued in sort_list */
112 int queued[2];
113 /* currently allocated requests */
114 int allocated[2];
115 /* fifo list of requests in sort_list */
116 struct list_head fifo;
117
Vivek Goyaldae739e2009-12-03 12:59:45 -0500118 /* time when queue got scheduled in to dispatch first request. */
119 unsigned long dispatch_start;
120 /* time when first request from queue completed and slice started. */
121 unsigned long slice_start;
Jens Axboe6118b702009-06-30 09:34:12 +0200122 unsigned long slice_end;
123 long slice_resid;
124 unsigned int slice_dispatch;
125
126 /* pending metadata requests */
127 int meta_pending;
128 /* number of requests that are on the dispatch list or inside driver */
129 int dispatched;
130
131 /* io prio of this group */
132 unsigned short ioprio, org_ioprio;
133 unsigned short ioprio_class, org_ioprio_class;
134
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400135 unsigned int seek_samples;
136 u64 seek_total;
137 sector_t seek_mean;
138 sector_t last_request_pos;
Jeff Moyere6c5bc72009-10-23 17:14:52 -0400139 unsigned long seeky_start;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400140
Jens Axboe6118b702009-06-30 09:34:12 +0200141 pid_t pid;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400142
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100143 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400144 struct cfq_queue *new_cfqq;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500145 struct cfq_group *cfqg;
Jens Axboe6118b702009-06-30 09:34:12 +0200146};
147
148/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100149 * First index in the service_trees.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100150 * IDLE is handled separately, so it has negative index
151 */
152enum wl_prio_t {
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100153 BE_WORKLOAD = 0,
Vivek Goyal615f0252009-12-03 12:59:39 -0500154 RT_WORKLOAD = 1,
155 IDLE_WORKLOAD = 2,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100156};
157
158/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100159 * Second index in the service_trees.
160 */
161enum wl_type_t {
162 ASYNC_WORKLOAD = 0,
163 SYNC_NOIDLE_WORKLOAD = 1,
164 SYNC_WORKLOAD = 2
165};
166
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500167/* This is per cgroup per device grouping structure */
168struct cfq_group {
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500169 /* group service_tree member */
170 struct rb_node rb_node;
171
172 /* group service_tree key */
173 u64 vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500174 unsigned int weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500175 bool on_st;
176
177 /* number of cfqq currently on this group */
178 int nr_cfqq;
179
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500180 /* Per group busy queus average. Useful for workload slice calc. */
181 unsigned int busy_queues_avg[2];
Jens Axboe22e2c502005-06-27 10:55:12 +0200182 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100183 * rr lists of queues with requests, onle rr for each priority class.
184 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200185 */
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100186 struct cfq_rb_root service_trees[2][3];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100187 struct cfq_rb_root service_tree_idle;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500188
189 unsigned long saved_workload_slice;
190 enum wl_type_t saved_workload;
191 enum wl_prio_t saved_serving_prio;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500192};
193
194/*
195 * Per block device queue structure
196 */
197struct cfq_data {
198 struct request_queue *queue;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500199 /* Root service tree for cfq_groups */
200 struct cfq_rb_root grp_service_tree;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500201 struct cfq_group root_group;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500202 /* Number of active cfq groups on group service tree */
203 int nr_groups;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500204
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100205 /*
206 * The priority currently being served
207 */
208 enum wl_prio_t serving_prio;
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100209 enum wl_type_t serving_type;
210 unsigned long workload_expires;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500211 struct cfq_group *serving_group;
Corrado Zoccolo8e550632009-11-26 10:02:58 +0100212 bool noidle_tree_requires_idle;
Jens Axboea36e71f2009-04-15 12:15:11 +0200213
214 /*
215 * Each priority tree is sorted by next_request position. These
216 * trees are used when determining if two or more queues are
217 * interleaving requests (see cfq_close_cooperator).
218 */
219 struct rb_root prio_trees[CFQ_PRIO_LISTS];
220
Jens Axboe22e2c502005-06-27 10:55:12 +0200221 unsigned int busy_queues;
222
Jens Axboe5ad531d2009-07-03 12:57:48 +0200223 int rq_in_driver[2];
Jens Axboe3ed9a292007-04-23 08:33:33 +0200224 int sync_flight;
Aaron Carroll45333d52008-08-26 15:52:36 +0200225
226 /*
227 * queue-depth detection
228 */
229 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200230 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100231 /*
232 * hw_tag can be
233 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
234 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
235 * 0 => no NCQ
236 */
237 int hw_tag_est_depth;
238 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200239
240 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200241 * idle window management
242 */
243 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200244 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200245
246 struct cfq_queue *active_queue;
247 struct cfq_io_context *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200248
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200249 /*
250 * async queue for each priority case
251 */
252 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
253 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200254
Jens Axboe6d048f52007-04-25 12:44:27 +0200255 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /*
258 * tunables, see top of file
259 */
260 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200261 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 unsigned int cfq_back_penalty;
263 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200264 unsigned int cfq_slice[2];
265 unsigned int cfq_slice_async_rq;
266 unsigned int cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200267 unsigned int cfq_latency;
Al Virod9ff4182006-03-18 13:51:22 -0500268
269 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Jens Axboe6118b702009-06-30 09:34:12 +0200271 /*
272 * Fallback dummy cfqq for extreme OOM conditions
273 */
274 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200275
276 unsigned long last_end_sync_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277};
278
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500279static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
280 enum wl_prio_t prio,
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100281 enum wl_type_t type,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100282 struct cfq_data *cfqd)
283{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500284 if (!cfqg)
285 return NULL;
286
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100287 if (prio == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500288 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100289
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500290 return &cfqg->service_trees[prio][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100291}
292
Jens Axboe3b181522005-06-27 10:56:24 +0200293enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100294 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
295 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200296 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100297 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100298 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
299 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
300 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100301 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200302 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400303 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100304 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Jens Axboe3b181522005-06-27 10:56:24 +0200305};
306
307#define CFQ_CFQQ_FNS(name) \
308static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
309{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100310 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200311} \
312static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
313{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100314 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200315} \
316static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
317{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100318 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200319}
320
321CFQ_CFQQ_FNS(on_rr);
322CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200323CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200324CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200325CFQ_CFQQ_FNS(fifo_expire);
326CFQ_CFQQ_FNS(idle_window);
327CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100328CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200329CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200330CFQ_CFQQ_FNS(coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100331CFQ_CFQQ_FNS(deep);
Jens Axboe3b181522005-06-27 10:56:24 +0200332#undef CFQ_CFQQ_FNS
333
Jens Axboe7b679132008-05-30 12:23:07 +0200334#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
335 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
336#define cfq_log(cfqd, fmt, args...) \
337 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
338
Vivek Goyal615f0252009-12-03 12:59:39 -0500339/* Traverses through cfq group service trees */
340#define for_each_cfqg_st(cfqg, i, j, st) \
341 for (i = 0; i <= IDLE_WORKLOAD; i++) \
342 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
343 : &cfqg->service_tree_idle; \
344 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
345 (i == IDLE_WORKLOAD && j == 0); \
346 j++, st = i < IDLE_WORKLOAD ? \
347 &cfqg->service_trees[i][j]: NULL) \
348
349
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100350static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
351{
352 if (cfq_class_idle(cfqq))
353 return IDLE_WORKLOAD;
354 if (cfq_class_rt(cfqq))
355 return RT_WORKLOAD;
356 return BE_WORKLOAD;
357}
358
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100359
360static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
361{
362 if (!cfq_cfqq_sync(cfqq))
363 return ASYNC_WORKLOAD;
364 if (!cfq_cfqq_idle_window(cfqq))
365 return SYNC_NOIDLE_WORKLOAD;
366 return SYNC_WORKLOAD;
367}
368
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500369static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
370 struct cfq_data *cfqd,
371 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100372{
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500373 if (wl == IDLE_WORKLOAD)
374 return cfqg->service_tree_idle.count;
375
376 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
377 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
378 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100379}
380
Jens Axboe165125e2007-07-24 09:28:11 +0200381static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200382static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100383 struct io_context *, gfp_t);
Jens Axboe4ac845a2008-01-24 08:44:49 +0100384static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
Vasily Tarasov91fac312007-04-25 12:29:51 +0200385 struct io_context *);
386
Jens Axboe5ad531d2009-07-03 12:57:48 +0200387static inline int rq_in_driver(struct cfq_data *cfqd)
388{
389 return cfqd->rq_in_driver[0] + cfqd->rq_in_driver[1];
390}
391
Vasily Tarasov91fac312007-04-25 12:29:51 +0200392static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200393 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200394{
Jens Axboea6151c32009-10-07 20:02:57 +0200395 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200396}
397
398static inline void cic_set_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200399 struct cfq_queue *cfqq, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200400{
Jens Axboea6151c32009-10-07 20:02:57 +0200401 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200402}
403
404/*
405 * We regard a request as SYNC, if it's either a read or has the SYNC bit
406 * set (in which case it could also be direct WRITE).
407 */
Jens Axboea6151c32009-10-07 20:02:57 +0200408static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200409{
Jens Axboea6151c32009-10-07 20:02:57 +0200410 return bio_data_dir(bio) == READ || bio_rw_flagged(bio, BIO_RW_SYNCIO);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200411}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700414 * scheduler run of queue, if there are requests pending and no one in the
415 * driver that will restart queueing
416 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200417static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700418{
Jens Axboe7b679132008-05-30 12:23:07 +0200419 if (cfqd->busy_queues) {
420 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200421 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200422 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700423}
424
Jens Axboe165125e2007-07-24 09:28:11 +0200425static int cfq_queue_empty(struct request_queue *q)
Andrew Morton99f95e52005-06-27 20:14:05 -0700426{
427 struct cfq_data *cfqd = q->elevator->elevator_data;
428
Vivek Goyalf04a6422009-12-03 12:59:40 -0500429 return !cfqd->rq_queued;
Andrew Morton99f95e52005-06-27 20:14:05 -0700430}
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100433 * Scale schedule slice based on io priority. Use the sync time slice only
434 * if a queue is marked sync and has sync io queued. A sync queue with async
435 * io only, should not get full sync slice length.
436 */
Jens Axboea6151c32009-10-07 20:02:57 +0200437static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200438 unsigned short prio)
439{
440 const int base_slice = cfqd->cfq_slice[sync];
441
442 WARN_ON(prio >= IOPRIO_BE_NR);
443
444 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
445}
446
Jens Axboe44f7c162007-01-19 11:51:58 +1100447static inline int
448cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
449{
Jens Axboed9e76202007-04-20 14:27:50 +0200450 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100451}
452
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500453static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
454{
455 u64 d = delta << CFQ_SERVICE_SHIFT;
456
457 d = d * BLKIO_WEIGHT_DEFAULT;
458 do_div(d, cfqg->weight);
459 return d;
460}
461
462static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
463{
464 s64 delta = (s64)(vdisktime - min_vdisktime);
465 if (delta > 0)
466 min_vdisktime = vdisktime;
467
468 return min_vdisktime;
469}
470
471static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
472{
473 s64 delta = (s64)(vdisktime - min_vdisktime);
474 if (delta < 0)
475 min_vdisktime = vdisktime;
476
477 return min_vdisktime;
478}
479
480static void update_min_vdisktime(struct cfq_rb_root *st)
481{
482 u64 vdisktime = st->min_vdisktime;
483 struct cfq_group *cfqg;
484
485 if (st->active) {
486 cfqg = rb_entry_cfqg(st->active);
487 vdisktime = cfqg->vdisktime;
488 }
489
490 if (st->left) {
491 cfqg = rb_entry_cfqg(st->left);
492 vdisktime = min_vdisktime(vdisktime, cfqg->vdisktime);
493 }
494
495 st->min_vdisktime = max_vdisktime(st->min_vdisktime, vdisktime);
496}
497
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100498/*
499 * get averaged number of queues of RT/BE priority.
500 * average is updated, with a formula that gives more weight to higher numbers,
501 * to quickly follows sudden increases and decrease slowly
502 */
503
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500504static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
505 struct cfq_group *cfqg, bool rt)
Jens Axboe5869619c2009-10-28 09:27:07 +0100506{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100507 unsigned min_q, max_q;
508 unsigned mult = cfq_hist_divisor - 1;
509 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500510 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100511
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500512 min_q = min(cfqg->busy_queues_avg[rt], busy);
513 max_q = max(cfqg->busy_queues_avg[rt], busy);
514 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100515 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500516 return cfqg->busy_queues_avg[rt];
517}
518
519static inline unsigned
520cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
521{
522 struct cfq_rb_root *st = &cfqd->grp_service_tree;
523
524 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100525}
526
Jens Axboe44f7c162007-01-19 11:51:58 +1100527static inline void
528cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
529{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100530 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
531 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500532 /*
533 * interested queues (we consider only the ones with the same
534 * priority class in the cfq group)
535 */
536 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
537 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100538 unsigned sync_slice = cfqd->cfq_slice[1];
539 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500540 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
541
542 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100543 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
544 /* scale low_slice according to IO priority
545 * and sync vs async */
546 unsigned low_slice =
547 min(slice, base_low_slice * slice / sync_slice);
548 /* the adapted slice value is scaled to fit all iqs
549 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500550 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100551 low_slice);
552 }
553 }
Vivek Goyaldae739e2009-12-03 12:59:45 -0500554 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100555 cfqq->slice_end = jiffies + slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200556 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100557}
558
559/*
560 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
561 * isn't valid until the first request from the dispatch is activated
562 * and the slice time set.
563 */
Jens Axboea6151c32009-10-07 20:02:57 +0200564static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100565{
566 if (cfq_cfqq_slice_new(cfqq))
567 return 0;
568 if (time_before(jiffies, cfqq->slice_end))
569 return 0;
570
571 return 1;
572}
573
574/*
Jens Axboe5e705372006-07-13 12:39:25 +0200575 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200577 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 */
Jens Axboe5e705372006-07-13 12:39:25 +0200579static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100580cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100582 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200584#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
585#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
586 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Jens Axboe5e705372006-07-13 12:39:25 +0200588 if (rq1 == NULL || rq1 == rq2)
589 return rq2;
590 if (rq2 == NULL)
591 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200592
Jens Axboe5e705372006-07-13 12:39:25 +0200593 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
594 return rq1;
595 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
596 return rq2;
Jens Axboe374f84a2006-07-23 01:42:19 +0200597 if (rq_is_meta(rq1) && !rq_is_meta(rq2))
598 return rq1;
599 else if (rq_is_meta(rq2) && !rq_is_meta(rq1))
600 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Tejun Heo83096eb2009-05-07 22:24:39 +0900602 s1 = blk_rq_pos(rq1);
603 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /*
606 * by definition, 1KiB is 2 sectors
607 */
608 back_max = cfqd->cfq_back_max * 2;
609
610 /*
611 * Strict one way elevator _except_ in the case where we allow
612 * short backward seeks which are biased as twice the cost of a
613 * similar forward seek.
614 */
615 if (s1 >= last)
616 d1 = s1 - last;
617 else if (s1 + back_max >= last)
618 d1 = (last - s1) * cfqd->cfq_back_penalty;
619 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200620 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 if (s2 >= last)
623 d2 = s2 - last;
624 else if (s2 + back_max >= last)
625 d2 = (last - s2) * cfqd->cfq_back_penalty;
626 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200627 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Andreas Mohre8a99052006-03-28 08:59:49 +0200631 /*
632 * By doing switch() on the bit mask "wrap" we avoid having to
633 * check two variables for all permutations: --> faster!
634 */
635 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200636 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200637 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200638 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200639 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200640 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200641 else {
642 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200643 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200644 else
Jens Axboe5e705372006-07-13 12:39:25 +0200645 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200646 }
647
648 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200649 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200650 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200651 return rq2;
652 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200653 default:
654 /*
655 * Since both rqs are wrapped,
656 * start with the one that's further behind head
657 * (--> only *one* back seek required),
658 * since back seek takes more time than forward.
659 */
660 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200661 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 else
Jens Axboe5e705372006-07-13 12:39:25 +0200663 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665}
666
Jens Axboe498d3aa22007-04-26 12:54:48 +0200667/*
668 * The below is leftmost cache rbtree addon
669 */
Jens Axboe08717142008-01-28 11:38:15 +0100670static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200671{
Vivek Goyal615f0252009-12-03 12:59:39 -0500672 /* Service tree is empty */
673 if (!root->count)
674 return NULL;
675
Jens Axboecc09e292007-04-26 12:53:50 +0200676 if (!root->left)
677 root->left = rb_first(&root->rb);
678
Jens Axboe08717142008-01-28 11:38:15 +0100679 if (root->left)
680 return rb_entry(root->left, struct cfq_queue, rb_node);
681
682 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200683}
684
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500685static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
686{
687 if (!root->left)
688 root->left = rb_first(&root->rb);
689
690 if (root->left)
691 return rb_entry_cfqg(root->left);
692
693 return NULL;
694}
695
Jens Axboea36e71f2009-04-15 12:15:11 +0200696static void rb_erase_init(struct rb_node *n, struct rb_root *root)
697{
698 rb_erase(n, root);
699 RB_CLEAR_NODE(n);
700}
701
Jens Axboecc09e292007-04-26 12:53:50 +0200702static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
703{
704 if (root->left == n)
705 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200706 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100707 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200708}
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710/*
711 * would be nice to take fifo expire time into account as well
712 */
Jens Axboe5e705372006-07-13 12:39:25 +0200713static struct request *
714cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
715 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Jens Axboe21183b02006-07-13 12:33:14 +0200717 struct rb_node *rbnext = rb_next(&last->rb_node);
718 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200719 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Jens Axboe21183b02006-07-13 12:33:14 +0200721 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200724 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200727 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200728 else {
729 rbnext = rb_first(&cfqq->sort_list);
730 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200731 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100734 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Jens Axboed9e76202007-04-20 14:27:50 +0200737static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
738 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Jens Axboed9e76202007-04-20 14:27:50 +0200740 /*
741 * just an approximation, should be ok.
742 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500743 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100744 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200745}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500747static inline s64
748cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
749{
750 return cfqg->vdisktime - st->min_vdisktime;
751}
752
753static void
754__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
755{
756 struct rb_node **node = &st->rb.rb_node;
757 struct rb_node *parent = NULL;
758 struct cfq_group *__cfqg;
759 s64 key = cfqg_key(st, cfqg);
760 int left = 1;
761
762 while (*node != NULL) {
763 parent = *node;
764 __cfqg = rb_entry_cfqg(parent);
765
766 if (key < cfqg_key(st, __cfqg))
767 node = &parent->rb_left;
768 else {
769 node = &parent->rb_right;
770 left = 0;
771 }
772 }
773
774 if (left)
775 st->left = &cfqg->rb_node;
776
777 rb_link_node(&cfqg->rb_node, parent, node);
778 rb_insert_color(&cfqg->rb_node, &st->rb);
779}
780
781static void
782cfq_group_service_tree_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
783{
784 struct cfq_rb_root *st = &cfqd->grp_service_tree;
785 struct cfq_group *__cfqg;
786 struct rb_node *n;
787
788 cfqg->nr_cfqq++;
789 if (cfqg->on_st)
790 return;
791
792 /*
793 * Currently put the group at the end. Later implement something
794 * so that groups get lesser vtime based on their weights, so that
795 * if group does not loose all if it was not continously backlogged.
796 */
797 n = rb_last(&st->rb);
798 if (n) {
799 __cfqg = rb_entry_cfqg(n);
800 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
801 } else
802 cfqg->vdisktime = st->min_vdisktime;
803
804 __cfq_group_service_tree_add(st, cfqg);
805 cfqg->on_st = true;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500806 cfqd->nr_groups++;
807 st->total_weight += cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500808}
809
810static void
811cfq_group_service_tree_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
812{
813 struct cfq_rb_root *st = &cfqd->grp_service_tree;
814
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500815 if (st->active == &cfqg->rb_node)
816 st->active = NULL;
817
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500818 BUG_ON(cfqg->nr_cfqq < 1);
819 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500820
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500821 /* If there are other cfq queues under this group, don't delete it */
822 if (cfqg->nr_cfqq)
823 return;
824
825 cfqg->on_st = false;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500826 cfqd->nr_groups--;
827 st->total_weight -= cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500828 if (!RB_EMPTY_NODE(&cfqg->rb_node))
829 cfq_rb_erase(&cfqg->rb_node, st);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500830 cfqg->saved_workload_slice = 0;
831}
832
833static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq)
834{
835 unsigned int slice_used, allocated_slice;
836
837 /*
838 * Queue got expired before even a single request completed or
839 * got expired immediately after first request completion.
840 */
841 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
842 /*
843 * Also charge the seek time incurred to the group, otherwise
844 * if there are mutiple queues in the group, each can dispatch
845 * a single request on seeky media and cause lots of seek time
846 * and group will never know it.
847 */
848 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
849 1);
850 } else {
851 slice_used = jiffies - cfqq->slice_start;
852 allocated_slice = cfqq->slice_end - cfqq->slice_start;
853 if (slice_used > allocated_slice)
854 slice_used = allocated_slice;
855 }
856
857 cfq_log_cfqq(cfqq->cfqd, cfqq, "sl_used=%u", slice_used);
858 return slice_used;
859}
860
861static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
862 struct cfq_queue *cfqq)
863{
864 struct cfq_rb_root *st = &cfqd->grp_service_tree;
865 unsigned int used_sl;
866
867 used_sl = cfq_cfqq_slice_usage(cfqq);
868
869 /* Can't update vdisktime while group is on service tree */
870 cfq_rb_erase(&cfqg->rb_node, st);
871 cfqg->vdisktime += cfq_scale_slice(used_sl, cfqg);
872 __cfq_group_service_tree_add(st, cfqg);
873
874 /* This group is being expired. Save the context */
875 if (time_after(cfqd->workload_expires, jiffies)) {
876 cfqg->saved_workload_slice = cfqd->workload_expires
877 - jiffies;
878 cfqg->saved_workload = cfqd->serving_type;
879 cfqg->saved_serving_prio = cfqd->serving_prio;
880 } else
881 cfqg->saved_workload_slice = 0;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500882}
883
Jens Axboe498d3aa22007-04-26 12:54:48 +0200884/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100885 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +0200886 * requests waiting to be processed. It is sorted in the order that
887 * we will service the queues.
888 */
Jens Axboea36e71f2009-04-15 12:15:11 +0200889static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +0200890 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +0200891{
Jens Axboe08717142008-01-28 11:38:15 +0100892 struct rb_node **p, *parent;
893 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +0200894 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100895 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +0200896 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500897 int new_cfqq = 1;
Jens Axboed9e76202007-04-20 14:27:50 +0200898
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500899 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
900 cfqq_type(cfqq), cfqd);
Jens Axboe08717142008-01-28 11:38:15 +0100901 if (cfq_class_idle(cfqq)) {
902 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100903 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +0100904 if (parent && parent != &cfqq->rb_node) {
905 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
906 rb_key += __cfqq->rb_key;
907 } else
908 rb_key += jiffies;
909 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +0200910 /*
911 * Get our rb key offset. Subtract any residual slice
912 * value carried from last service. A negative resid
913 * count indicates slice overrun, and this should position
914 * the next service time further away in the tree.
915 */
Jens Axboeedd75ff2007-04-19 12:03:34 +0200916 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +0200917 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +0200918 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +0200919 } else {
920 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100921 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +0200922 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
923 }
Jens Axboed9e76202007-04-20 14:27:50 +0200924
925 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -0500926 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +0100927 /*
Jens Axboed9e76202007-04-20 14:27:50 +0200928 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +0100929 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100930 if (rb_key == cfqq->rb_key &&
931 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +0200932 return;
Jens Axboe53b03742006-07-28 09:48:51 +0200933
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100934 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
935 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +0200936 }
Jens Axboed9e76202007-04-20 14:27:50 +0200937
Jens Axboe498d3aa22007-04-26 12:54:48 +0200938 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +0100939 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100940 cfqq->service_tree = service_tree;
941 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +0200942 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +0200943 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +0200944
Jens Axboed9e76202007-04-20 14:27:50 +0200945 parent = *p;
946 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
947
Jens Axboe0c534e02007-04-18 20:01:57 +0200948 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100949 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +0200950 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100951 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +0200952 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100953 else {
Jens Axboe67060e32007-04-18 20:13:32 +0200954 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +0200955 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100956 }
Jens Axboe67060e32007-04-18 20:13:32 +0200957
958 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +0200959 }
960
Jens Axboecc09e292007-04-26 12:53:50 +0200961 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100962 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +0200963
Jens Axboed9e76202007-04-20 14:27:50 +0200964 cfqq->rb_key = rb_key;
965 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100966 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
967 service_tree->count++;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500968 if (add_front || !new_cfqq)
969 return;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500970 cfq_group_service_tree_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Jens Axboea36e71f2009-04-15 12:15:11 +0200973static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +0200974cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
975 sector_t sector, struct rb_node **ret_parent,
976 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +0200977{
Jens Axboea36e71f2009-04-15 12:15:11 +0200978 struct rb_node **p, *parent;
979 struct cfq_queue *cfqq = NULL;
980
981 parent = NULL;
982 p = &root->rb_node;
983 while (*p) {
984 struct rb_node **n;
985
986 parent = *p;
987 cfqq = rb_entry(parent, struct cfq_queue, p_node);
988
989 /*
990 * Sort strictly based on sector. Smallest to the left,
991 * largest to the right.
992 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900993 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +0200994 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900995 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +0200996 n = &(*p)->rb_left;
997 else
998 break;
999 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001000 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001001 }
1002
1003 *ret_parent = parent;
1004 if (rb_link)
1005 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001006 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001007}
1008
1009static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1010{
Jens Axboea36e71f2009-04-15 12:15:11 +02001011 struct rb_node **p, *parent;
1012 struct cfq_queue *__cfqq;
1013
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001014 if (cfqq->p_root) {
1015 rb_erase(&cfqq->p_node, cfqq->p_root);
1016 cfqq->p_root = NULL;
1017 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001018
1019 if (cfq_class_idle(cfqq))
1020 return;
1021 if (!cfqq->next_rq)
1022 return;
1023
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001024 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001025 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1026 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001027 if (!__cfqq) {
1028 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001029 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1030 } else
1031 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001032}
1033
Jens Axboe498d3aa22007-04-26 12:54:48 +02001034/*
1035 * Update cfqq's position in the service tree.
1036 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001037static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001038{
Jens Axboe6d048f52007-04-25 12:44:27 +02001039 /*
1040 * Resorting requires the cfqq to be on the RR list already.
1041 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001042 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001043 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001044 cfq_prio_tree_add(cfqd, cfqq);
1045 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001046}
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048/*
1049 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001050 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 */
Jens Axboefebffd62008-01-28 13:19:43 +01001052static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Jens Axboe7b679132008-05-30 12:23:07 +02001054 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001055 BUG_ON(cfq_cfqq_on_rr(cfqq));
1056 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 cfqd->busy_queues++;
1058
Jens Axboeedd75ff2007-04-19 12:03:34 +02001059 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
Jens Axboe498d3aa22007-04-26 12:54:48 +02001062/*
1063 * Called when the cfqq no longer has requests pending, remove it from
1064 * the service tree.
1065 */
Jens Axboefebffd62008-01-28 13:19:43 +01001066static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Jens Axboe7b679132008-05-30 12:23:07 +02001068 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001069 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1070 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001072 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1073 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1074 cfqq->service_tree = NULL;
1075 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001076 if (cfqq->p_root) {
1077 rb_erase(&cfqq->p_node, cfqq->p_root);
1078 cfqq->p_root = NULL;
1079 }
Jens Axboed9e76202007-04-20 14:27:50 +02001080
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001081 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 BUG_ON(!cfqd->busy_queues);
1083 cfqd->busy_queues--;
1084}
1085
1086/*
1087 * rb tree support functions
1088 */
Jens Axboefebffd62008-01-28 13:19:43 +01001089static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Jens Axboe5e705372006-07-13 12:39:25 +02001091 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001092 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Jens Axboeb4878f22005-10-20 16:42:29 +02001094 BUG_ON(!cfqq->queued[sync]);
1095 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Jens Axboe5e705372006-07-13 12:39:25 +02001097 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Vivek Goyalf04a6422009-12-03 12:59:40 -05001099 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1100 /*
1101 * Queue will be deleted from service tree when we actually
1102 * expire it later. Right now just remove it from prio tree
1103 * as it is empty.
1104 */
1105 if (cfqq->p_root) {
1106 rb_erase(&cfqq->p_node, cfqq->p_root);
1107 cfqq->p_root = NULL;
1108 }
1109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Jens Axboe5e705372006-07-13 12:39:25 +02001112static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Jens Axboe5e705372006-07-13 12:39:25 +02001114 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboea36e71f2009-04-15 12:15:11 +02001116 struct request *__alias, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Jens Axboe5380a102006-07-13 12:37:56 +02001118 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 /*
1121 * looks a little odd, but the first insert might return an alias.
1122 * if that happens, put the alias on the dispatch list
1123 */
Jens Axboe21183b02006-07-13 12:33:14 +02001124 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +02001125 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001126
1127 if (!cfq_cfqq_on_rr(cfqq))
1128 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001129
1130 /*
1131 * check if this request is a better next-serve candidate
1132 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001133 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001134 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001135
1136 /*
1137 * adjust priority tree position, if ->next_rq changes
1138 */
1139 if (prev != cfqq->next_rq)
1140 cfq_prio_tree_add(cfqd, cfqq);
1141
Jens Axboe5044eed2007-04-25 11:53:48 +02001142 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
Jens Axboefebffd62008-01-28 13:19:43 +01001145static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Jens Axboe5380a102006-07-13 12:37:56 +02001147 elv_rb_del(&cfqq->sort_list, rq);
1148 cfqq->queued[rq_is_sync(rq)]--;
Jens Axboe5e705372006-07-13 12:39:25 +02001149 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
Jens Axboe206dc692006-03-28 13:03:44 +02001152static struct request *
1153cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Jens Axboe206dc692006-03-28 13:03:44 +02001155 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001156 struct cfq_io_context *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001157 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Jens Axboe4ac845a2008-01-24 08:44:49 +01001159 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001160 if (!cic)
1161 return NULL;
1162
1163 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001164 if (cfqq) {
1165 sector_t sector = bio->bi_sector + bio_sectors(bio);
1166
Jens Axboe21183b02006-07-13 12:33:14 +02001167 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return NULL;
1171}
1172
Jens Axboe165125e2007-07-24 09:28:11 +02001173static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001174{
1175 struct cfq_data *cfqd = q->elevator->elevator_data;
1176
Jens Axboe5ad531d2009-07-03 12:57:48 +02001177 cfqd->rq_in_driver[rq_is_sync(rq)]++;
Jens Axboe7b679132008-05-30 12:23:07 +02001178 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Jens Axboe5ad531d2009-07-03 12:57:48 +02001179 rq_in_driver(cfqd));
Jens Axboe25776e32006-06-01 10:12:26 +02001180
Tejun Heo5b936292009-05-07 22:24:38 +09001181 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001182}
1183
Jens Axboe165125e2007-07-24 09:28:11 +02001184static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Jens Axboe22e2c502005-06-27 10:55:12 +02001186 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5ad531d2009-07-03 12:57:48 +02001187 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Jens Axboe5ad531d2009-07-03 12:57:48 +02001189 WARN_ON(!cfqd->rq_in_driver[sync]);
1190 cfqd->rq_in_driver[sync]--;
Jens Axboe7b679132008-05-30 12:23:07 +02001191 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Jens Axboe5ad531d2009-07-03 12:57:48 +02001192 rq_in_driver(cfqd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
Jens Axboeb4878f22005-10-20 16:42:29 +02001195static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Jens Axboe5e705372006-07-13 12:39:25 +02001197 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001198
Jens Axboe5e705372006-07-13 12:39:25 +02001199 if (cfqq->next_rq == rq)
1200 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Jens Axboeb4878f22005-10-20 16:42:29 +02001202 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001203 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001204
Aaron Carroll45333d52008-08-26 15:52:36 +02001205 cfqq->cfqd->rq_queued--;
Jens Axboe374f84a2006-07-23 01:42:19 +02001206 if (rq_is_meta(rq)) {
1207 WARN_ON(!cfqq->meta_pending);
1208 cfqq->meta_pending--;
1209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Jens Axboe165125e2007-07-24 09:28:11 +02001212static int cfq_merge(struct request_queue *q, struct request **req,
1213 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
1215 struct cfq_data *cfqd = q->elevator->elevator_data;
1216 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Jens Axboe206dc692006-03-28 13:03:44 +02001218 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001219 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001220 *req = __rq;
1221 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223
1224 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
Jens Axboe165125e2007-07-24 09:28:11 +02001227static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001228 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Jens Axboe21183b02006-07-13 12:33:14 +02001230 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001231 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Jens Axboe5e705372006-07-13 12:39:25 +02001233 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
1237static void
Jens Axboe165125e2007-07-24 09:28:11 +02001238cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 struct request *next)
1240{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001241 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001242 /*
1243 * reposition in fifo if next is older than rq
1244 */
1245 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001246 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001247 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001248 rq_set_fifo_time(rq, rq_fifo_time(next));
1249 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001250
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001251 if (cfqq->next_rq == next)
1252 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001253 cfq_remove_request(next);
Jens Axboe22e2c502005-06-27 10:55:12 +02001254}
1255
Jens Axboe165125e2007-07-24 09:28:11 +02001256static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001257 struct bio *bio)
1258{
1259 struct cfq_data *cfqd = q->elevator->elevator_data;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001260 struct cfq_io_context *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001261 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001262
1263 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001264 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001265 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001266 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001267 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001268
1269 /*
Jens Axboe719d3402006-12-22 09:38:53 +01001270 * Lookup the cfqq that this bio will be queued with. Allow
1271 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +01001272 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01001273 cic = cfq_cic_lookup(cfqd, current->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001274 if (!cic)
Jens Axboea6151c32009-10-07 20:02:57 +02001275 return false;
Jens Axboe719d3402006-12-22 09:38:53 +01001276
Vasily Tarasov91fac312007-04-25 12:29:51 +02001277 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001278 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001279}
1280
Jens Axboefebffd62008-01-28 13:19:43 +01001281static void __cfq_set_active_queue(struct cfq_data *cfqd,
1282 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001283{
1284 if (cfqq) {
Jens Axboe7b679132008-05-30 12:23:07 +02001285 cfq_log_cfqq(cfqd, cfqq, "set_active");
Vivek Goyaldae739e2009-12-03 12:59:45 -05001286 cfqq->slice_start = 0;
1287 cfqq->dispatch_start = jiffies;
Jens Axboe22e2c502005-06-27 10:55:12 +02001288 cfqq->slice_end = 0;
Jens Axboe2f5cb732009-04-07 08:51:19 +02001289 cfqq->slice_dispatch = 0;
1290
Jens Axboe2f5cb732009-04-07 08:51:19 +02001291 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboeb0291952009-04-07 11:38:31 +02001292 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001293 cfq_clear_cfqq_must_alloc_slice(cfqq);
1294 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +11001295 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02001296
1297 del_timer(&cfqd->idle_slice_timer);
Jens Axboe22e2c502005-06-27 10:55:12 +02001298 }
1299
1300 cfqd->active_queue = cfqq;
1301}
1302
1303/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001304 * current cfqq expired its slice (or was too idle), select new one
1305 */
1306static void
1307__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001308 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001309{
Jens Axboe7b679132008-05-30 12:23:07 +02001310 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1311
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001312 if (cfq_cfqq_wait_request(cfqq))
1313 del_timer(&cfqd->idle_slice_timer);
1314
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001315 cfq_clear_cfqq_wait_request(cfqq);
1316
1317 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001318 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001319 */
Jens Axboe7b679132008-05-30 12:23:07 +02001320 if (timed_out && !cfq_cfqq_slice_new(cfqq)) {
Jens Axboec5b680f2007-01-19 11:56:49 +11001321 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001322 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1323 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001324
Vivek Goyaldae739e2009-12-03 12:59:45 -05001325 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
1326
Vivek Goyalf04a6422009-12-03 12:59:40 -05001327 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1328 cfq_del_cfqq_rr(cfqd, cfqq);
1329
Jens Axboeedd75ff2007-04-19 12:03:34 +02001330 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001331
1332 if (cfqq == cfqd->active_queue)
1333 cfqd->active_queue = NULL;
1334
Vivek Goyaldae739e2009-12-03 12:59:45 -05001335 if (&cfqq->cfqg->rb_node == cfqd->grp_service_tree.active)
1336 cfqd->grp_service_tree.active = NULL;
1337
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001338 if (cfqd->active_cic) {
1339 put_io_context(cfqd->active_cic->ioc);
1340 cfqd->active_cic = NULL;
1341 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001342}
1343
Jens Axboea6151c32009-10-07 20:02:57 +02001344static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001345{
1346 struct cfq_queue *cfqq = cfqd->active_queue;
1347
1348 if (cfqq)
Jens Axboe6084cdd2007-04-23 08:25:00 +02001349 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001350}
1351
Jens Axboe498d3aa22007-04-26 12:54:48 +02001352/*
1353 * Get next queue for service. Unless we have a queue preemption,
1354 * we'll simply select the first cfqq in the service tree.
1355 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001356static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001357{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001358 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001359 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
1360 cfqd->serving_type, cfqd);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001361
Vivek Goyalf04a6422009-12-03 12:59:40 -05001362 if (!cfqd->rq_queued)
1363 return NULL;
1364
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001365 /* There is nothing to dispatch */
1366 if (!service_tree)
1367 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001368 if (RB_EMPTY_ROOT(&service_tree->rb))
1369 return NULL;
1370 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001371}
1372
Vivek Goyalf04a6422009-12-03 12:59:40 -05001373static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1374{
1375 struct cfq_group *cfqg = &cfqd->root_group;
1376 struct cfq_queue *cfqq;
1377 int i, j;
1378 struct cfq_rb_root *st;
1379
1380 if (!cfqd->rq_queued)
1381 return NULL;
1382
1383 for_each_cfqg_st(cfqg, i, j, st)
1384 if ((cfqq = cfq_rb_first(st)) != NULL)
1385 return cfqq;
1386 return NULL;
1387}
1388
Jens Axboe498d3aa22007-04-26 12:54:48 +02001389/*
1390 * Get and set a new active queue for service.
1391 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001392static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1393 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001394{
Jens Axboee00ef792009-11-04 08:54:55 +01001395 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001396 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001397
Jens Axboe22e2c502005-06-27 10:55:12 +02001398 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001399 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001400}
1401
Jens Axboed9e76202007-04-20 14:27:50 +02001402static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1403 struct request *rq)
1404{
Tejun Heo83096eb2009-05-07 22:24:39 +09001405 if (blk_rq_pos(rq) >= cfqd->last_position)
1406 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001407 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001408 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001409}
1410
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001411#define CFQQ_SEEK_THR 8 * 1024
1412#define CFQQ_SEEKY(cfqq) ((cfqq)->seek_mean > CFQQ_SEEK_THR)
Jeff Moyer04dc6e72009-04-21 07:31:56 +02001413
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001414static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1415 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001416{
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001417 sector_t sdist = cfqq->seek_mean;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001418
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001419 if (!sample_valid(cfqq->seek_samples))
1420 sdist = CFQQ_SEEK_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001421
Jeff Moyer04dc6e72009-04-21 07:31:56 +02001422 return cfq_dist_from_last(cfqd, rq) <= sdist;
Jens Axboe6d048f52007-04-25 12:44:27 +02001423}
1424
Jens Axboea36e71f2009-04-15 12:15:11 +02001425static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1426 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001427{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001428 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001429 struct rb_node *parent, *node;
1430 struct cfq_queue *__cfqq;
1431 sector_t sector = cfqd->last_position;
1432
1433 if (RB_EMPTY_ROOT(root))
1434 return NULL;
1435
1436 /*
1437 * First, if we find a request starting at the end of the last
1438 * request, choose it.
1439 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001440 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001441 if (__cfqq)
1442 return __cfqq;
1443
1444 /*
1445 * If the exact sector wasn't found, the parent of the NULL leaf
1446 * will contain the closest sector.
1447 */
1448 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001449 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001450 return __cfqq;
1451
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001452 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001453 node = rb_next(&__cfqq->p_node);
1454 else
1455 node = rb_prev(&__cfqq->p_node);
1456 if (!node)
1457 return NULL;
1458
1459 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001460 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001461 return __cfqq;
1462
1463 return NULL;
1464}
1465
1466/*
1467 * cfqd - obvious
1468 * cur_cfqq - passed in so that we don't decide that the current queue is
1469 * closely cooperating with itself.
1470 *
1471 * So, basically we're assuming that that cur_cfqq has dispatched at least
1472 * one request, and that cfqd->last_position reflects a position on the disk
1473 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1474 * assumption.
1475 */
1476static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001477 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001478{
1479 struct cfq_queue *cfqq;
1480
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001481 if (!cfq_cfqq_sync(cur_cfqq))
1482 return NULL;
1483 if (CFQQ_SEEKY(cur_cfqq))
1484 return NULL;
1485
Jens Axboea36e71f2009-04-15 12:15:11 +02001486 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001487 * We should notice if some of the queues are cooperating, eg
1488 * working closely on the same area of the disk. In that case,
1489 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001490 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001491 cfqq = cfqq_close(cfqd, cur_cfqq);
1492 if (!cfqq)
1493 return NULL;
1494
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001495 /*
1496 * It only makes sense to merge sync queues.
1497 */
1498 if (!cfq_cfqq_sync(cfqq))
1499 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001500 if (CFQQ_SEEKY(cfqq))
1501 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001502
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001503 /*
1504 * Do not merge queues of different priority classes
1505 */
1506 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1507 return NULL;
1508
Jens Axboea36e71f2009-04-15 12:15:11 +02001509 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001510}
1511
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001512/*
1513 * Determine whether we should enforce idle window for this queue.
1514 */
1515
1516static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1517{
1518 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001519 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001520
Vivek Goyalf04a6422009-12-03 12:59:40 -05001521 BUG_ON(!service_tree);
1522 BUG_ON(!service_tree->count);
1523
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001524 /* We never do for idle class queues. */
1525 if (prio == IDLE_WORKLOAD)
1526 return false;
1527
1528 /* We do for queues that were marked with idle window flag. */
1529 if (cfq_cfqq_idle_window(cfqq))
1530 return true;
1531
1532 /*
1533 * Otherwise, we do only if they are the last ones
1534 * in their service tree.
1535 */
Vivek Goyalf04a6422009-12-03 12:59:40 -05001536 return service_tree->count == 1;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001537}
1538
Jens Axboe6d048f52007-04-25 12:44:27 +02001539static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001540{
Jens Axboe17926692007-01-19 11:59:30 +11001541 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +02001542 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001543 unsigned long sl;
1544
Jens Axboea68bbdd2008-09-24 13:03:33 +02001545 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001546 * SSD device without seek penalty, disable idling. But only do so
1547 * for devices that support queuing, otherwise we still have a problem
1548 * with sync vs async workloads.
Jens Axboea68bbdd2008-09-24 13:03:33 +02001549 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001550 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbdd2008-09-24 13:03:33 +02001551 return;
1552
Jens Axboedd67d052006-06-21 09:36:18 +02001553 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02001554 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02001555
1556 /*
1557 * idle is disabled, either manually or by past process history
1558 */
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001559 if (!cfqd->cfq_slice_idle || !cfq_should_idle(cfqd, cfqq))
Jens Axboe6d048f52007-04-25 12:44:27 +02001560 return;
1561
Jens Axboe22e2c502005-06-27 10:55:12 +02001562 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001563 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02001564 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001565 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02001566 return;
1567
1568 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02001569 * task has exited, don't wait
1570 */
Jens Axboe206dc692006-03-28 13:03:44 +02001571 cic = cfqd->active_cic;
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01001572 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02001573 return;
1574
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001575 /*
1576 * If our average think time is larger than the remaining time
1577 * slice, then don't idle. This avoids overrunning the allotted
1578 * time slice.
1579 */
1580 if (sample_valid(cic->ttime_samples) &&
1581 (cfqq->slice_end - jiffies < cic->ttime_mean))
1582 return;
1583
Jens Axboe3b181522005-06-27 10:56:24 +02001584 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001585
Jens Axboe6d048f52007-04-25 12:44:27 +02001586 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02001587
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001588 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Jens Axboe9481ffd2009-04-15 12:14:13 +02001589 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
Jens Axboe498d3aa22007-04-26 12:54:48 +02001592/*
1593 * Move request from internal lists to the request queue dispatch list.
1594 */
Jens Axboe165125e2007-07-24 09:28:11 +02001595static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Jens Axboe3ed9a292007-04-23 08:33:33 +02001597 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001598 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001599
Jens Axboe7b679132008-05-30 12:23:07 +02001600 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
1601
Jeff Moyer06d21882009-09-11 17:08:59 +02001602 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02001603 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001604 cfqq->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02001605 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02001606
1607 if (cfq_cfqq_sync(cfqq))
1608 cfqd->sync_flight++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
1610
1611/*
1612 * return expired entry, or NULL to just start from scratch in rbtree
1613 */
Jens Axboefebffd62008-01-28 13:19:43 +01001614static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
Jens Axboe30996f42009-10-05 11:03:39 +02001616 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Jens Axboe3b181522005-06-27 10:56:24 +02001618 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11001620
1621 cfq_mark_cfqq_fifo_expire(cfqq);
1622
Jens Axboe89850f72006-07-22 16:48:31 +02001623 if (list_empty(&cfqq->fifo))
1624 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Jens Axboe89850f72006-07-22 16:48:31 +02001626 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02001627 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02001628 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Jens Axboe30996f42009-10-05 11:03:39 +02001630 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001631 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Jens Axboe22e2c502005-06-27 10:55:12 +02001634static inline int
1635cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1636{
1637 const int base_rq = cfqd->cfq_slice_async_rq;
1638
1639 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1640
1641 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
1642}
1643
1644/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001645 * Must be called with the queue_lock held.
1646 */
1647static int cfqq_process_refs(struct cfq_queue *cfqq)
1648{
1649 int process_refs, io_refs;
1650
1651 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
1652 process_refs = atomic_read(&cfqq->ref) - io_refs;
1653 BUG_ON(process_refs < 0);
1654 return process_refs;
1655}
1656
1657static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
1658{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001659 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001660 struct cfq_queue *__cfqq;
1661
1662 /* Avoid a circular list and skip interim queue merges */
1663 while ((__cfqq = new_cfqq->new_cfqq)) {
1664 if (__cfqq == cfqq)
1665 return;
1666 new_cfqq = __cfqq;
1667 }
1668
1669 process_refs = cfqq_process_refs(cfqq);
1670 /*
1671 * If the process for the cfqq has gone away, there is no
1672 * sense in merging the queues.
1673 */
1674 if (process_refs == 0)
1675 return;
1676
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001677 /*
1678 * Merge in the direction of the lesser amount of work.
1679 */
1680 new_process_refs = cfqq_process_refs(new_cfqq);
1681 if (new_process_refs >= process_refs) {
1682 cfqq->new_cfqq = new_cfqq;
1683 atomic_add(process_refs, &new_cfqq->ref);
1684 } else {
1685 new_cfqq->new_cfqq = cfqq;
1686 atomic_add(new_process_refs, &cfqq->ref);
1687 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001688}
1689
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001690static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
1691 struct cfq_group *cfqg, enum wl_prio_t prio,
1692 bool prio_changed)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001693{
1694 struct cfq_queue *queue;
1695 int i;
1696 bool key_valid = false;
1697 unsigned long lowest_key = 0;
1698 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
1699
1700 if (prio_changed) {
1701 /*
1702 * When priorities switched, we prefer starting
1703 * from SYNC_NOIDLE (first choice), or just SYNC
1704 * over ASYNC
1705 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001706 if (service_tree_for(cfqg, prio, cur_best, cfqd)->count)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001707 return cur_best;
1708 cur_best = SYNC_WORKLOAD;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001709 if (service_tree_for(cfqg, prio, cur_best, cfqd)->count)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001710 return cur_best;
1711
1712 return ASYNC_WORKLOAD;
1713 }
1714
1715 for (i = 0; i < 3; ++i) {
1716 /* otherwise, select the one with lowest rb_key */
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001717 queue = cfq_rb_first(service_tree_for(cfqg, prio, i, cfqd));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001718 if (queue &&
1719 (!key_valid || time_before(queue->rb_key, lowest_key))) {
1720 lowest_key = queue->rb_key;
1721 cur_best = i;
1722 key_valid = true;
1723 }
1724 }
1725
1726 return cur_best;
1727}
1728
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001729static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001730{
1731 enum wl_prio_t previous_prio = cfqd->serving_prio;
1732 bool prio_changed;
1733 unsigned slice;
1734 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001735 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001736 unsigned group_slice;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001737
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001738 if (!cfqg) {
1739 cfqd->serving_prio = IDLE_WORKLOAD;
1740 cfqd->workload_expires = jiffies + 1;
1741 return;
1742 }
1743
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001744 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001745 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001746 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001747 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001748 cfqd->serving_prio = BE_WORKLOAD;
1749 else {
1750 cfqd->serving_prio = IDLE_WORKLOAD;
1751 cfqd->workload_expires = jiffies + 1;
1752 return;
1753 }
1754
1755 /*
1756 * For RT and BE, we have to choose also the type
1757 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
1758 * expiration time
1759 */
1760 prio_changed = (cfqd->serving_prio != previous_prio);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001761 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type,
1762 cfqd);
1763 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001764
1765 /*
1766 * If priority didn't change, check workload expiration,
1767 * and that we still have other queues ready
1768 */
1769 if (!prio_changed && count &&
1770 !time_after(jiffies, cfqd->workload_expires))
1771 return;
1772
1773 /* otherwise select new workload type */
1774 cfqd->serving_type =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001775 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio, prio_changed);
1776 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type,
1777 cfqd);
1778 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001779
1780 /*
1781 * the workload slice is computed as a fraction of target latency
1782 * proportional to the number of queues in that workload, over
1783 * all the queues in the same priority class
1784 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001785 group_slice = cfq_group_slice(cfqd, cfqg);
1786
1787 slice = group_slice * count /
1788 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
1789 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001790
1791 if (cfqd->serving_type == ASYNC_WORKLOAD)
1792 /* async workload slice is scaled down according to
1793 * the sync/async slice ratio. */
1794 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
1795 else
1796 /* sync workload slice is at least 2 * cfq_slice_idle */
1797 slice = max(slice, 2 * cfqd->cfq_slice_idle);
1798
1799 slice = max_t(unsigned, slice, CFQ_MIN_TT);
1800 cfqd->workload_expires = jiffies + slice;
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001801 cfqd->noidle_tree_requires_idle = false;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001802}
1803
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001804static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
1805{
1806 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05001807 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001808
1809 if (RB_EMPTY_ROOT(&st->rb))
1810 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05001811 cfqg = cfq_rb_first_group(st);
1812 st->active = &cfqg->rb_node;
1813 update_min_vdisktime(st);
1814 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001815}
1816
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001817static void cfq_choose_cfqg(struct cfq_data *cfqd)
1818{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001819 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
1820
1821 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001822
1823 /* Restore the workload type data */
1824 if (cfqg->saved_workload_slice) {
1825 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
1826 cfqd->serving_type = cfqg->saved_workload;
1827 cfqd->serving_prio = cfqg->saved_serving_prio;
1828 }
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001829 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001830}
1831
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001832/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02001833 * Select a queue for service. If we have a current active queue,
1834 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02001835 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001836static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001837{
Jens Axboea36e71f2009-04-15 12:15:11 +02001838 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001839
1840 cfqq = cfqd->active_queue;
1841 if (!cfqq)
1842 goto new_queue;
1843
Vivek Goyalf04a6422009-12-03 12:59:40 -05001844 if (!cfqd->rq_queued)
1845 return NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001846 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02001847 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02001848 */
Jens Axboeb0291952009-04-07 11:38:31 +02001849 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq))
Jens Axboe3b181522005-06-27 10:56:24 +02001850 goto expire;
Jens Axboe22e2c502005-06-27 10:55:12 +02001851
1852 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02001853 * The active queue has requests and isn't expired, allow it to
1854 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02001855 */
Jens Axboedd67d052006-06-21 09:36:18 +02001856 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02001857 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02001858
1859 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02001860 * If another queue has a request waiting within our mean seek
1861 * distance, let it run. The expire code will check for close
1862 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001863 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02001864 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001865 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001866 if (new_cfqq) {
1867 if (!cfqq->new_cfqq)
1868 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02001869 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001870 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001871
1872 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02001873 * No requests pending. If the active queue still has requests in
1874 * flight or is idling for a new request, allow either of these
1875 * conditions to happen (or time out) before selecting a new queue.
1876 */
Jens Axboecc197472007-04-20 20:45:39 +02001877 if (timer_pending(&cfqd->idle_slice_timer) ||
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001878 (cfqq->dispatched && cfq_should_idle(cfqd, cfqq))) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02001879 cfqq = NULL;
1880 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02001881 }
1882
Jens Axboe3b181522005-06-27 10:56:24 +02001883expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +02001884 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02001885new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001886 /*
1887 * Current queue expired. Check if we have to switch to a new
1888 * service tree
1889 */
1890 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001891 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001892
Jens Axboea36e71f2009-04-15 12:15:11 +02001893 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001894keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02001895 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001896}
1897
Jens Axboefebffd62008-01-28 13:19:43 +01001898static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02001899{
1900 int dispatched = 0;
1901
1902 while (cfqq->next_rq) {
1903 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
1904 dispatched++;
1905 }
1906
1907 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05001908
1909 /* By default cfqq is not expired if it is empty. Do it explicitly */
1910 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02001911 return dispatched;
1912}
1913
Jens Axboe498d3aa22007-04-26 12:54:48 +02001914/*
1915 * Drain our current requests. Used for barriers and when switching
1916 * io schedulers on-the-fly.
1917 */
Jens Axboed9e76202007-04-20 14:27:50 +02001918static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001919{
Jens Axboe08717142008-01-28 11:38:15 +01001920 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001921 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001922
Vivek Goyalf04a6422009-12-03 12:59:40 -05001923 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL)
1924 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001925
Jens Axboe6084cdd2007-04-23 08:25:00 +02001926 cfq_slice_expired(cfqd, 0);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001927 BUG_ON(cfqd->busy_queues);
1928
Jeff Moyer69237152009-06-12 15:29:30 +02001929 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01001930 return dispatched;
1931}
1932
Jens Axboe0b182d62009-10-06 20:49:37 +02001933static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02001934{
Jens Axboe2f5cb732009-04-07 08:51:19 +02001935 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Jens Axboe2f5cb732009-04-07 08:51:19 +02001937 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02001938 * Drain async requests before we start sync IO
1939 */
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001940 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_driver[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02001941 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02001942
1943 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02001944 * If this is an async queue and we have sync IO in flight, let it wait
1945 */
1946 if (cfqd->sync_flight && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02001947 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02001948
1949 max_dispatch = cfqd->cfq_quantum;
1950 if (cfq_class_idle(cfqq))
1951 max_dispatch = 1;
1952
1953 /*
1954 * Does this cfqq already have too much IO in flight?
1955 */
1956 if (cfqq->dispatched >= max_dispatch) {
1957 /*
1958 * idle queue must always only have a single IO in flight
1959 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02001960 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02001961 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02001962
Jens Axboe2f5cb732009-04-07 08:51:19 +02001963 /*
1964 * We have other queues, don't allow more IO from this one
1965 */
1966 if (cfqd->busy_queues > 1)
Jens Axboe0b182d62009-10-06 20:49:37 +02001967 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11001968
Jens Axboe2f5cb732009-04-07 08:51:19 +02001969 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01001970 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02001971 */
Shaohua Li474b18c2009-12-03 12:58:05 +01001972 max_dispatch = -1;
Jens Axboe8e296752009-10-03 16:26:03 +02001973 }
1974
1975 /*
1976 * Async queues must wait a bit before being allowed dispatch.
1977 * We also ramp up the dispatch depth gradually for async IO,
1978 * based on the last sync IO we serviced
1979 */
Jens Axboe963b72f2009-10-03 19:42:18 +02001980 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Jens Axboe8e296752009-10-03 16:26:03 +02001981 unsigned long last_sync = jiffies - cfqd->last_end_sync_rq;
1982 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02001983
Jens Axboe61f0c1d2009-10-03 19:46:03 +02001984 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02001985 if (!depth && !cfqq->dispatched)
1986 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02001987 if (depth < max_dispatch)
1988 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
1990
Jens Axboe0b182d62009-10-06 20:49:37 +02001991 /*
1992 * If we're below the current max, allow a dispatch
1993 */
1994 return cfqq->dispatched < max_dispatch;
1995}
1996
1997/*
1998 * Dispatch a request from cfqq, moving them to the request queue
1999 * dispatch list.
2000 */
2001static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2002{
2003 struct request *rq;
2004
2005 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2006
2007 if (!cfq_may_dispatch(cfqd, cfqq))
2008 return false;
2009
2010 /*
2011 * follow expired path, else get first next available
2012 */
2013 rq = cfq_check_fifo(cfqq);
2014 if (!rq)
2015 rq = cfqq->next_rq;
2016
2017 /*
2018 * insert request into driver dispatch list
2019 */
2020 cfq_dispatch_insert(cfqd->queue, rq);
2021
2022 if (!cfqd->active_cic) {
2023 struct cfq_io_context *cic = RQ_CIC(rq);
2024
2025 atomic_long_inc(&cic->ioc->refcount);
2026 cfqd->active_cic = cic;
2027 }
2028
2029 return true;
2030}
2031
2032/*
2033 * Find the cfqq that we need to service and move a request from that to the
2034 * dispatch list
2035 */
2036static int cfq_dispatch_requests(struct request_queue *q, int force)
2037{
2038 struct cfq_data *cfqd = q->elevator->elevator_data;
2039 struct cfq_queue *cfqq;
2040
2041 if (!cfqd->busy_queues)
2042 return 0;
2043
2044 if (unlikely(force))
2045 return cfq_forced_dispatch(cfqd);
2046
2047 cfqq = cfq_select_queue(cfqd);
2048 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002049 return 0;
2050
Jens Axboe2f5cb732009-04-07 08:51:19 +02002051 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002052 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002053 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002054 if (!cfq_dispatch_request(cfqd, cfqq))
2055 return 0;
2056
Jens Axboe2f5cb732009-04-07 08:51:19 +02002057 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002058 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002059
2060 /*
2061 * expire an async queue immediately if it has used up its slice. idle
2062 * queue always expire after 1 dispatch round.
2063 */
2064 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2065 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2066 cfq_class_idle(cfqq))) {
2067 cfqq->slice_end = jiffies + 1;
2068 cfq_slice_expired(cfqd, 0);
2069 }
2070
Shan Weib217a902009-09-01 10:06:42 +02002071 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002072 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075/*
Jens Axboe5e705372006-07-13 12:39:25 +02002076 * task holds one reference to the queue, dropped when task exits. each rq
2077 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 *
2079 * queue lock must be held here.
2080 */
2081static void cfq_put_queue(struct cfq_queue *cfqq)
2082{
Jens Axboe22e2c502005-06-27 10:55:12 +02002083 struct cfq_data *cfqd = cfqq->cfqd;
2084
2085 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 if (!atomic_dec_and_test(&cfqq->ref))
2088 return;
2089
Jens Axboe7b679132008-05-30 12:23:07 +02002090 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002092 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002094 if (unlikely(cfqd->active_queue == cfqq)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02002095 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002096 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002097 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002098
Vivek Goyalf04a6422009-12-03 12:59:40 -05002099 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 kmem_cache_free(cfq_pool, cfqq);
2101}
2102
Jens Axboed6de8be2008-05-28 14:46:59 +02002103/*
2104 * Must always be called with the rcu_read_lock() held
2105 */
Jens Axboe07416d22008-05-07 09:17:12 +02002106static void
2107__call_for_each_cic(struct io_context *ioc,
2108 void (*func)(struct io_context *, struct cfq_io_context *))
2109{
2110 struct cfq_io_context *cic;
2111 struct hlist_node *n;
2112
2113 hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list)
2114 func(ioc, cic);
2115}
2116
Jens Axboe4ac845a2008-01-24 08:44:49 +01002117/*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002118 * Call func for each cic attached to this ioc.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002119 */
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002120static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002121call_for_each_cic(struct io_context *ioc,
2122 void (*func)(struct io_context *, struct cfq_io_context *))
2123{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002124 rcu_read_lock();
Jens Axboe07416d22008-05-07 09:17:12 +02002125 __call_for_each_cic(ioc, func);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002126 rcu_read_unlock();
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002127}
Jens Axboe4ac845a2008-01-24 08:44:49 +01002128
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002129static void cfq_cic_free_rcu(struct rcu_head *head)
2130{
2131 struct cfq_io_context *cic;
2132
2133 cic = container_of(head, struct cfq_io_context, rcu_head);
2134
2135 kmem_cache_free(cfq_ioc_pool, cic);
Tejun Heo245b2e72009-06-24 15:13:48 +09002136 elv_ioc_count_dec(cfq_ioc_count);
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002137
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002138 if (ioc_gone) {
2139 /*
2140 * CFQ scheduler is exiting, grab exit lock and check
2141 * the pending io context count. If it hits zero,
2142 * complete ioc_gone and set it back to NULL
2143 */
2144 spin_lock(&ioc_gone_lock);
Tejun Heo245b2e72009-06-24 15:13:48 +09002145 if (ioc_gone && !elv_ioc_count_read(cfq_ioc_count)) {
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002146 complete(ioc_gone);
2147 ioc_gone = NULL;
2148 }
2149 spin_unlock(&ioc_gone_lock);
2150 }
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002151}
2152
2153static void cfq_cic_free(struct cfq_io_context *cic)
2154{
2155 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002156}
2157
2158static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic)
2159{
2160 unsigned long flags;
2161
2162 BUG_ON(!cic->dead_key);
2163
2164 spin_lock_irqsave(&ioc->lock, flags);
2165 radix_tree_delete(&ioc->radix_root, cic->dead_key);
Jens Axboeffc4e752008-02-19 10:02:29 +01002166 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002167 spin_unlock_irqrestore(&ioc->lock, flags);
2168
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002169 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002170}
2171
Jens Axboed6de8be2008-05-28 14:46:59 +02002172/*
2173 * Must be called with rcu_read_lock() held or preemption otherwise disabled.
2174 * Only two callers of this - ->dtor() which is called with the rcu_read_lock(),
2175 * and ->trim() which is called with the task lock held
2176 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002177static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002179 /*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002180 * ioc->refcount is zero here, or we are called from elv_unregister(),
2181 * so no more cic's are allowed to be linked into this ioc. So it
2182 * should be ok to iterate over the known list, we will see all cic's
2183 * since no new ones are added.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002184 */
Jens Axboe07416d22008-05-07 09:17:12 +02002185 __call_for_each_cic(ioc, cic_free_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186}
2187
Jens Axboe89850f72006-07-22 16:48:31 +02002188static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2189{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002190 struct cfq_queue *__cfqq, *next;
2191
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002192 if (unlikely(cfqq == cfqd->active_queue)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02002193 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002194 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002195 }
Jens Axboe89850f72006-07-22 16:48:31 +02002196
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002197 /*
2198 * If this queue was scheduled to merge with another queue, be
2199 * sure to drop the reference taken on that queue (and others in
2200 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2201 */
2202 __cfqq = cfqq->new_cfqq;
2203 while (__cfqq) {
2204 if (__cfqq == cfqq) {
2205 WARN(1, "cfqq->new_cfqq loop detected\n");
2206 break;
2207 }
2208 next = __cfqq->new_cfqq;
2209 cfq_put_queue(__cfqq);
2210 __cfqq = next;
2211 }
2212
Jens Axboe89850f72006-07-22 16:48:31 +02002213 cfq_put_queue(cfqq);
2214}
2215
2216static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
2217 struct cfq_io_context *cic)
2218{
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002219 struct io_context *ioc = cic->ioc;
2220
Jens Axboefc463792006-08-29 09:05:44 +02002221 list_del_init(&cic->queue_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002222
2223 /*
2224 * Make sure key == NULL is seen for dead queues
2225 */
Jens Axboefc463792006-08-29 09:05:44 +02002226 smp_wmb();
Jens Axboe4ac845a2008-01-24 08:44:49 +01002227 cic->dead_key = (unsigned long) cic->key;
Jens Axboefc463792006-08-29 09:05:44 +02002228 cic->key = NULL;
2229
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002230 if (ioc->ioc_data == cic)
2231 rcu_assign_pointer(ioc->ioc_data, NULL);
2232
Jens Axboeff6657c2009-04-08 10:58:57 +02002233 if (cic->cfqq[BLK_RW_ASYNC]) {
2234 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2235 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002236 }
2237
Jens Axboeff6657c2009-04-08 10:58:57 +02002238 if (cic->cfqq[BLK_RW_SYNC]) {
2239 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2240 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002241 }
Jens Axboe89850f72006-07-22 16:48:31 +02002242}
2243
Jens Axboe4ac845a2008-01-24 08:44:49 +01002244static void cfq_exit_single_io_context(struct io_context *ioc,
2245 struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002246{
Al Viro478a82b2006-03-18 13:25:24 -05002247 struct cfq_data *cfqd = cic->key;
Jens Axboe22e2c502005-06-27 10:55:12 +02002248
Jens Axboe89850f72006-07-22 16:48:31 +02002249 if (cfqd) {
Jens Axboe165125e2007-07-24 09:28:11 +02002250 struct request_queue *q = cfqd->queue;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002251 unsigned long flags;
Jens Axboe22e2c502005-06-27 10:55:12 +02002252
Jens Axboe4ac845a2008-01-24 08:44:49 +01002253 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboe62c1fe92008-12-15 21:19:25 +01002254
2255 /*
2256 * Ensure we get a fresh copy of the ->key to prevent
2257 * race between exiting task and queue
2258 */
2259 smp_read_barrier_depends();
2260 if (cic->key)
2261 __cfq_exit_single_io_context(cfqd, cic);
2262
Jens Axboe4ac845a2008-01-24 08:44:49 +01002263 spin_unlock_irqrestore(q->queue_lock, flags);
Al Viro12a05732006-03-18 13:38:01 -05002264 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002265}
2266
Jens Axboe498d3aa22007-04-26 12:54:48 +02002267/*
2268 * The process that ioc belongs to has exited, we need to clean up
2269 * and put the internal structures we have that belongs to that process.
2270 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002271static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002273 call_for_each_cic(ioc, cfq_exit_single_io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274}
2275
Jens Axboe22e2c502005-06-27 10:55:12 +02002276static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04002277cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
Jens Axboeb5deef92006-07-19 23:39:40 +02002279 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Christoph Lameter94f60302007-07-17 04:03:29 -07002281 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
2282 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 if (cic) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002284 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02002285 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboeffc4e752008-02-19 10:02:29 +01002286 INIT_HLIST_NODE(&cic->cic_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02002287 cic->dtor = cfq_free_io_context;
2288 cic->exit = cfq_exit_io_context;
Tejun Heo245b2e72009-06-24 15:13:48 +09002289 elv_ioc_count_inc(cfq_ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 }
2291
2292 return cic;
2293}
2294
Jens Axboefd0928d2008-01-24 08:52:45 +01002295static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02002296{
2297 struct task_struct *tsk = current;
2298 int ioprio_class;
2299
Jens Axboe3b181522005-06-27 10:56:24 +02002300 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002301 return;
2302
Jens Axboefd0928d2008-01-24 08:52:45 +01002303 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002304 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002305 default:
2306 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2307 case IOPRIO_CLASS_NONE:
2308 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002309 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002310 */
2311 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002312 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002313 break;
2314 case IOPRIO_CLASS_RT:
2315 cfqq->ioprio = task_ioprio(ioc);
2316 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2317 break;
2318 case IOPRIO_CLASS_BE:
2319 cfqq->ioprio = task_ioprio(ioc);
2320 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2321 break;
2322 case IOPRIO_CLASS_IDLE:
2323 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2324 cfqq->ioprio = 7;
2325 cfq_clear_cfqq_idle_window(cfqq);
2326 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002327 }
2328
2329 /*
2330 * keep track of original prio settings in case we have to temporarily
2331 * elevate the priority of this queue
2332 */
2333 cfqq->org_ioprio = cfqq->ioprio;
2334 cfqq->org_ioprio_class = cfqq->ioprio_class;
Jens Axboe3b181522005-06-27 10:56:24 +02002335 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002336}
2337
Jens Axboefebffd62008-01-28 13:19:43 +01002338static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002339{
Al Viro478a82b2006-03-18 13:25:24 -05002340 struct cfq_data *cfqd = cic->key;
2341 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01002342 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02002343
Jens Axboecaaa5f92006-06-16 11:23:00 +02002344 if (unlikely(!cfqd))
2345 return;
2346
Jens Axboec1b707d2006-10-30 19:54:23 +01002347 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002348
Jens Axboeff6657c2009-04-08 10:58:57 +02002349 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002350 if (cfqq) {
2351 struct cfq_queue *new_cfqq;
Jens Axboeff6657c2009-04-08 10:58:57 +02002352 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc,
2353 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002354 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002355 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002356 cfq_put_queue(cfqq);
2357 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002358 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002359
Jens Axboeff6657c2009-04-08 10:58:57 +02002360 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002361 if (cfqq)
2362 cfq_mark_cfqq_prio_changed(cfqq);
2363
Jens Axboec1b707d2006-10-30 19:54:23 +01002364 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02002365}
2366
Jens Axboefc463792006-08-29 09:05:44 +02002367static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002369 call_for_each_cic(ioc, changed_ioprio);
Jens Axboefc463792006-08-29 09:05:44 +02002370 ioc->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371}
2372
Jens Axboed5036d72009-06-26 10:44:34 +02002373static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002374 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002375{
2376 RB_CLEAR_NODE(&cfqq->rb_node);
2377 RB_CLEAR_NODE(&cfqq->p_node);
2378 INIT_LIST_HEAD(&cfqq->fifo);
2379
2380 atomic_set(&cfqq->ref, 0);
2381 cfqq->cfqd = cfqd;
2382
2383 cfq_mark_cfqq_prio_changed(cfqq);
2384
2385 if (is_sync) {
2386 if (!cfq_class_idle(cfqq))
2387 cfq_mark_cfqq_idle_window(cfqq);
2388 cfq_mark_cfqq_sync(cfqq);
2389 }
2390 cfqq->pid = pid;
2391}
2392
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002393static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
2394{
2395 cfqq->cfqg = cfqg;
2396}
2397
2398static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
2399{
2400 return &cfqd->root_group;
2401}
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002404cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01002405 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vasily Tarasov91fac312007-04-25 12:29:51 +02002408 struct cfq_io_context *cic;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002409 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411retry:
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002412 cfqg = cfq_get_cfqg(cfqd, 1);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002413 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002414 /* cic always exists here */
2415 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Jens Axboe6118b702009-06-30 09:34:12 +02002417 /*
2418 * Always try a new alloc if we fell back to the OOM cfqq
2419 * originally, since it should just be a temporary situation.
2420 */
2421 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2422 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 if (new_cfqq) {
2424 cfqq = new_cfqq;
2425 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002426 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002428 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002429 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002430 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002432 if (new_cfqq)
2433 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002434 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002435 cfqq = kmem_cache_alloc_node(cfq_pool,
2436 gfp_mask | __GFP_ZERO,
2437 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Jens Axboe6118b702009-06-30 09:34:12 +02002440 if (cfqq) {
2441 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2442 cfq_init_prio_data(cfqq, ioc);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002443 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002444 cfq_log_cfqq(cfqd, cfqq, "alloced");
2445 } else
2446 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 }
2448
2449 if (new_cfqq)
2450 kmem_cache_free(cfq_pool, new_cfqq);
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 return cfqq;
2453}
2454
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002455static struct cfq_queue **
2456cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2457{
Jens Axboefe094d92008-01-31 13:08:54 +01002458 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002459 case IOPRIO_CLASS_RT:
2460 return &cfqd->async_cfqq[0][ioprio];
2461 case IOPRIO_CLASS_BE:
2462 return &cfqd->async_cfqq[1][ioprio];
2463 case IOPRIO_CLASS_IDLE:
2464 return &cfqd->async_idle_cfqq;
2465 default:
2466 BUG();
2467 }
2468}
2469
Jens Axboe15c31be2007-07-10 13:43:25 +02002470static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002471cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02002472 gfp_t gfp_mask)
2473{
Jens Axboefd0928d2008-01-24 08:52:45 +01002474 const int ioprio = task_ioprio(ioc);
2475 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002476 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002477 struct cfq_queue *cfqq = NULL;
2478
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002479 if (!is_sync) {
2480 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2481 cfqq = *async_cfqq;
2482 }
2483
Jens Axboe6118b702009-06-30 09:34:12 +02002484 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01002485 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002486
2487 /*
2488 * pin the queue now that it's allocated, scheduler exit will prune it
2489 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002490 if (!is_sync && !(*async_cfqq)) {
Jens Axboe15c31be2007-07-10 13:43:25 +02002491 atomic_inc(&cfqq->ref);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002492 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002493 }
2494
2495 atomic_inc(&cfqq->ref);
2496 return cfqq;
2497}
2498
Jens Axboe498d3aa22007-04-26 12:54:48 +02002499/*
2500 * We drop cfq io contexts lazily, so we may find a dead one.
2501 */
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002502static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002503cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc,
2504 struct cfq_io_context *cic)
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002505{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002506 unsigned long flags;
2507
Jens Axboefc463792006-08-29 09:05:44 +02002508 WARN_ON(!list_empty(&cic->queue_list));
Jens Axboe597bc482007-04-24 21:23:53 +02002509
Jens Axboe4ac845a2008-01-24 08:44:49 +01002510 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe597bc482007-04-24 21:23:53 +02002511
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002512 BUG_ON(ioc->ioc_data == cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002513
2514 radix_tree_delete(&ioc->radix_root, (unsigned long) cfqd);
Jens Axboeffc4e752008-02-19 10:02:29 +01002515 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002516 spin_unlock_irqrestore(&ioc->lock, flags);
2517
2518 cfq_cic_free(cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002519}
2520
Jens Axboee2d74ac2006-03-28 08:59:01 +02002521static struct cfq_io_context *
Jens Axboe4ac845a2008-01-24 08:44:49 +01002522cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002523{
Jens Axboee2d74ac2006-03-28 08:59:01 +02002524 struct cfq_io_context *cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002525 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002526 void *k;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002527
Vasily Tarasov91fac312007-04-25 12:29:51 +02002528 if (unlikely(!ioc))
2529 return NULL;
2530
Jens Axboed6de8be2008-05-28 14:46:59 +02002531 rcu_read_lock();
2532
Jens Axboe597bc482007-04-24 21:23:53 +02002533 /*
2534 * we maintain a last-hit cache, to avoid browsing over the tree
2535 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01002536 cic = rcu_dereference(ioc->ioc_data);
Jens Axboed6de8be2008-05-28 14:46:59 +02002537 if (cic && cic->key == cfqd) {
2538 rcu_read_unlock();
Jens Axboe597bc482007-04-24 21:23:53 +02002539 return cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002540 }
Jens Axboe597bc482007-04-24 21:23:53 +02002541
Jens Axboe4ac845a2008-01-24 08:44:49 +01002542 do {
Jens Axboe4ac845a2008-01-24 08:44:49 +01002543 cic = radix_tree_lookup(&ioc->radix_root, (unsigned long) cfqd);
2544 rcu_read_unlock();
2545 if (!cic)
2546 break;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02002547 /* ->key must be copied to avoid race with cfq_exit_queue() */
2548 k = cic->key;
2549 if (unlikely(!k)) {
Jens Axboe4ac845a2008-01-24 08:44:49 +01002550 cfq_drop_dead_cic(cfqd, ioc, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002551 rcu_read_lock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01002552 continue;
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002553 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002554
Jens Axboed6de8be2008-05-28 14:46:59 +02002555 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002556 rcu_assign_pointer(ioc->ioc_data, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002557 spin_unlock_irqrestore(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002558 break;
2559 } while (1);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002560
Jens Axboe4ac845a2008-01-24 08:44:49 +01002561 return cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002562}
2563
Jens Axboe4ac845a2008-01-24 08:44:49 +01002564/*
2565 * Add cic into ioc, using cfqd as the search key. This enables us to lookup
2566 * the process specific cfq io context when entered from the block layer.
2567 * Also adds the cic to a per-cfqd list, used when this queue is removed.
2568 */
Jens Axboefebffd62008-01-28 13:19:43 +01002569static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
2570 struct cfq_io_context *cic, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002571{
Jens Axboe0261d682006-10-30 19:07:48 +01002572 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002573 int ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002574
Jens Axboe4ac845a2008-01-24 08:44:49 +01002575 ret = radix_tree_preload(gfp_mask);
2576 if (!ret) {
2577 cic->ioc = ioc;
2578 cic->key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002579
Jens Axboe4ac845a2008-01-24 08:44:49 +01002580 spin_lock_irqsave(&ioc->lock, flags);
2581 ret = radix_tree_insert(&ioc->radix_root,
2582 (unsigned long) cfqd, cic);
Jens Axboeffc4e752008-02-19 10:02:29 +01002583 if (!ret)
2584 hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002585 spin_unlock_irqrestore(&ioc->lock, flags);
2586
2587 radix_tree_preload_end();
2588
2589 if (!ret) {
2590 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2591 list_add(&cic->queue_list, &cfqd->cic_list);
2592 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002593 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002594 }
2595
Jens Axboe4ac845a2008-01-24 08:44:49 +01002596 if (ret)
2597 printk(KERN_ERR "cfq: cic link failed!\n");
Jens Axboefc463792006-08-29 09:05:44 +02002598
Jens Axboe4ac845a2008-01-24 08:44:49 +01002599 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002600}
2601
Jens Axboe22e2c502005-06-27 10:55:12 +02002602/*
2603 * Setup general io context and cfq io context. There can be several cfq
2604 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02002605 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02002606 */
2607static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02002608cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609{
Jens Axboe22e2c502005-06-27 10:55:12 +02002610 struct io_context *ioc = NULL;
2611 struct cfq_io_context *cic;
2612
2613 might_sleep_if(gfp_mask & __GFP_WAIT);
2614
Jens Axboeb5deef92006-07-19 23:39:40 +02002615 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02002616 if (!ioc)
2617 return NULL;
2618
Jens Axboe4ac845a2008-01-24 08:44:49 +01002619 cic = cfq_cic_lookup(cfqd, ioc);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002620 if (cic)
2621 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02002622
Jens Axboee2d74ac2006-03-28 08:59:01 +02002623 cic = cfq_alloc_io_context(cfqd, gfp_mask);
2624 if (cic == NULL)
2625 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02002626
Jens Axboe4ac845a2008-01-24 08:44:49 +01002627 if (cfq_cic_link(cfqd, ioc, cic, gfp_mask))
2628 goto err_free;
2629
Jens Axboe22e2c502005-06-27 10:55:12 +02002630out:
Jens Axboefc463792006-08-29 09:05:44 +02002631 smp_read_barrier_depends();
2632 if (unlikely(ioc->ioprio_changed))
2633 cfq_ioc_set_ioprio(ioc);
2634
Jens Axboe22e2c502005-06-27 10:55:12 +02002635 return cic;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002636err_free:
2637 cfq_cic_free(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02002638err:
2639 put_io_context(ioc);
2640 return NULL;
2641}
2642
2643static void
2644cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
2645{
Jens Axboeaaf1228dd2007-01-19 11:30:16 +11002646 unsigned long elapsed = jiffies - cic->last_end_request;
2647 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02002648
2649 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
2650 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
2651 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
2652}
2653
Jens Axboe206dc692006-03-28 13:03:44 +02002654static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002655cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02002656 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02002657{
2658 sector_t sdist;
2659 u64 total;
2660
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002661 if (!cfqq->last_request_pos)
Jeff Moyer4d00aa42009-04-21 07:25:04 +02002662 sdist = 0;
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002663 else if (cfqq->last_request_pos < blk_rq_pos(rq))
2664 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
Jens Axboe206dc692006-03-28 13:03:44 +02002665 else
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002666 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
Jens Axboe206dc692006-03-28 13:03:44 +02002667
2668 /*
2669 * Don't allow the seek distance to get too large from the
2670 * odd fragment, pagein, etc
2671 */
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002672 if (cfqq->seek_samples <= 60) /* second&third seek */
2673 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*1024);
Jens Axboe206dc692006-03-28 13:03:44 +02002674 else
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002675 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*64);
Jens Axboe206dc692006-03-28 13:03:44 +02002676
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002677 cfqq->seek_samples = (7*cfqq->seek_samples + 256) / 8;
2678 cfqq->seek_total = (7*cfqq->seek_total + (u64)256*sdist) / 8;
2679 total = cfqq->seek_total + (cfqq->seek_samples/2);
2680 do_div(total, cfqq->seek_samples);
2681 cfqq->seek_mean = (sector_t)total;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002682
2683 /*
2684 * If this cfqq is shared between multiple processes, check to
2685 * make sure that those processes are still issuing I/Os within
2686 * the mean seek distance. If not, it may be time to break the
2687 * queues apart again.
2688 */
2689 if (cfq_cfqq_coop(cfqq)) {
2690 if (CFQQ_SEEKY(cfqq) && !cfqq->seeky_start)
2691 cfqq->seeky_start = jiffies;
2692 else if (!CFQQ_SEEKY(cfqq))
2693 cfqq->seeky_start = 0;
2694 }
Jens Axboe206dc692006-03-28 13:03:44 +02002695}
Jens Axboe22e2c502005-06-27 10:55:12 +02002696
2697/*
2698 * Disable idle window if the process thinks too long or seeks so much that
2699 * it doesn't matter
2700 */
2701static void
2702cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
2703 struct cfq_io_context *cic)
2704{
Jens Axboe7b679132008-05-30 12:23:07 +02002705 int old_idle, enable_idle;
Jens Axboe1be92f22007-04-19 14:32:26 +02002706
Jens Axboe08717142008-01-28 11:38:15 +01002707 /*
2708 * Don't idle for async or idle io prio class
2709 */
2710 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f22007-04-19 14:32:26 +02002711 return;
2712
Jens Axboec265a7f2008-06-26 13:49:33 +02002713 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002714
Corrado Zoccolo76280af2009-11-26 10:02:58 +01002715 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
2716 cfq_mark_cfqq_deep(cfqq);
2717
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01002718 if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
Corrado Zoccolo76280af2009-11-26 10:02:58 +01002719 (!cfq_cfqq_deep(cfqq) && sample_valid(cfqq->seek_samples)
2720 && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02002721 enable_idle = 0;
2722 else if (sample_valid(cic->ttime_samples)) {
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002723 if (cic->ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02002724 enable_idle = 0;
2725 else
2726 enable_idle = 1;
2727 }
2728
Jens Axboe7b679132008-05-30 12:23:07 +02002729 if (old_idle != enable_idle) {
2730 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
2731 if (enable_idle)
2732 cfq_mark_cfqq_idle_window(cfqq);
2733 else
2734 cfq_clear_cfqq_idle_window(cfqq);
2735 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002736}
2737
Jens Axboe22e2c502005-06-27 10:55:12 +02002738/*
2739 * Check if new_cfqq should preempt the currently active queue. Return 0 for
2740 * no or if we aren't sure, a 1 will cause a preempt.
2741 */
Jens Axboea6151c32009-10-07 20:02:57 +02002742static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02002743cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02002744 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002745{
Jens Axboe6d048f52007-04-25 12:44:27 +02002746 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002747
Jens Axboe6d048f52007-04-25 12:44:27 +02002748 cfqq = cfqd->active_queue;
2749 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02002750 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002751
Jens Axboe6d048f52007-04-25 12:44:27 +02002752 if (cfq_slice_used(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002753 return true;
Jens Axboe6d048f52007-04-25 12:44:27 +02002754
2755 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002756 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002757
2758 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002759 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002760
Vivek Goyalf04a6422009-12-03 12:59:40 -05002761 /* Allow preemption only if we are idling on sync-noidle tree */
Corrado Zoccoloe4a22912009-11-26 10:02:58 +01002762 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
2763 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
Vivek Goyalf04a6422009-12-03 12:59:40 -05002764 new_cfqq->service_tree->count == 2 &&
2765 RB_EMPTY_ROOT(&cfqq->sort_list))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002766 return true;
2767
Jens Axboe22e2c502005-06-27 10:55:12 +02002768 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02002769 * if the new request is sync, but the currently running queue is
2770 * not, let the sync request have priority.
2771 */
Jens Axboe5e705372006-07-13 12:39:25 +02002772 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002773 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002774
Jens Axboe374f84a2006-07-23 01:42:19 +02002775 /*
2776 * So both queues are sync. Let the new request get disk time if
2777 * it's a metadata request and the current queue is doing regular IO.
2778 */
2779 if (rq_is_meta(rq) && !cfqq->meta_pending)
Jens Axboee6ec4fe2009-11-03 20:21:35 +01002780 return true;
Jens Axboe22e2c502005-06-27 10:55:12 +02002781
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002782 /*
2783 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
2784 */
2785 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002786 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002787
Jens Axboe1e3335d2007-02-14 19:59:49 +01002788 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02002789 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002790
2791 /*
2792 * if this request is as-good as one we would expect from the
2793 * current cfqq, let it preempt
2794 */
Jens Axboee00ef792009-11-04 08:54:55 +01002795 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02002796 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01002797
Jens Axboea6151c32009-10-07 20:02:57 +02002798 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02002799}
2800
2801/*
2802 * cfqq preempts the active queue. if we allowed preempt with no slice left,
2803 * let it have half of its nominal slice.
2804 */
2805static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2806{
Jens Axboe7b679132008-05-30 12:23:07 +02002807 cfq_log_cfqq(cfqd, cfqq, "preempt");
Jens Axboe6084cdd2007-04-23 08:25:00 +02002808 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02002809
Jens Axboebf572252006-07-19 20:29:12 +02002810 /*
2811 * Put the new queue at the front of the of the current list,
2812 * so we know that it will be selected next.
2813 */
2814 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02002815
2816 cfq_service_tree_add(cfqd, cfqq, 1);
Jens Axboebf572252006-07-19 20:29:12 +02002817
Jens Axboe44f7c162007-01-19 11:51:58 +11002818 cfqq->slice_end = 0;
2819 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002820}
2821
2822/*
Jens Axboe5e705372006-07-13 12:39:25 +02002823 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02002824 * something we should do about it
2825 */
2826static void
Jens Axboe5e705372006-07-13 12:39:25 +02002827cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
2828 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002829{
Jens Axboe5e705372006-07-13 12:39:25 +02002830 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02002831
Aaron Carroll45333d52008-08-26 15:52:36 +02002832 cfqd->rq_queued++;
Jens Axboe374f84a2006-07-23 01:42:19 +02002833 if (rq_is_meta(rq))
2834 cfqq->meta_pending++;
2835
Jens Axboe9c2c38a2005-08-24 14:57:54 +02002836 cfq_update_io_thinktime(cfqd, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002837 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02002838 cfq_update_idle_window(cfqd, cfqq, cic);
2839
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002840 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002841
2842 if (cfqq == cfqd->active_queue) {
2843 /*
Jens Axboeb0291952009-04-07 11:38:31 +02002844 * Remember that we saw a request from this process, but
2845 * don't start queuing just yet. Otherwise we risk seeing lots
2846 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02002847 * and merging. If the request is already larger than a single
2848 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02002849 * merging is already done. Ditto for a busy system that
2850 * has other work pending, don't risk delaying until the
2851 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02002852 */
Jens Axboed6ceb252009-04-14 14:18:16 +02002853 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02002854 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
2855 cfqd->busy_queues > 1) {
Jens Axboed6ceb252009-04-14 14:18:16 +02002856 del_timer(&cfqd->idle_slice_timer);
Vivek Goyalbf7919372009-12-03 12:59:37 -05002857 __blk_run_queue(cfqd->queue);
2858 } else
2859 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboed6ceb252009-04-14 14:18:16 +02002860 }
Jens Axboe5e705372006-07-13 12:39:25 +02002861 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002862 /*
2863 * not the active queue - expire current slice if it is
2864 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01002865 * has some old slice time left and is of higher priority or
2866 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02002867 */
2868 cfq_preempt_queue(cfqd, cfqq);
Tejun Heoa7f55792009-04-23 11:05:17 +09002869 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02002870 }
2871}
2872
Jens Axboe165125e2007-07-24 09:28:11 +02002873static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02002874{
Jens Axboeb4878f22005-10-20 16:42:29 +02002875 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02002876 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002877
Jens Axboe7b679132008-05-30 12:23:07 +02002878 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Jens Axboefd0928d2008-01-24 08:52:45 +01002879 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Jens Axboe30996f42009-10-05 11:03:39 +02002881 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02002882 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01002883 cfq_add_rq_rb(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002884
Jens Axboe5e705372006-07-13 12:39:25 +02002885 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886}
2887
Aaron Carroll45333d52008-08-26 15:52:36 +02002888/*
2889 * Update hw_tag based on peak queue depth over 50 samples under
2890 * sufficient load.
2891 */
2892static void cfq_update_hw_tag(struct cfq_data *cfqd)
2893{
Shaohua Li1a1238a2009-10-27 08:46:23 +01002894 struct cfq_queue *cfqq = cfqd->active_queue;
2895
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01002896 if (rq_in_driver(cfqd) > cfqd->hw_tag_est_depth)
2897 cfqd->hw_tag_est_depth = rq_in_driver(cfqd);
2898
2899 if (cfqd->hw_tag == 1)
2900 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02002901
2902 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Jens Axboe5ad531d2009-07-03 12:57:48 +02002903 rq_in_driver(cfqd) <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02002904 return;
2905
Shaohua Li1a1238a2009-10-27 08:46:23 +01002906 /*
2907 * If active queue hasn't enough requests and can idle, cfq might not
2908 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
2909 * case
2910 */
2911 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
2912 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
2913 CFQ_HW_QUEUE_MIN && rq_in_driver(cfqd) < CFQ_HW_QUEUE_MIN)
2914 return;
2915
Aaron Carroll45333d52008-08-26 15:52:36 +02002916 if (cfqd->hw_tag_samples++ < 50)
2917 return;
2918
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01002919 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02002920 cfqd->hw_tag = 1;
2921 else
2922 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02002923}
2924
Jens Axboe165125e2007-07-24 09:28:11 +02002925static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926{
Jens Axboe5e705372006-07-13 12:39:25 +02002927 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02002928 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02002929 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02002930 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
Jens Axboeb4878f22005-10-20 16:42:29 +02002932 now = jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02002933 cfq_log_cfqq(cfqd, cfqq, "complete");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Aaron Carroll45333d52008-08-26 15:52:36 +02002935 cfq_update_hw_tag(cfqd);
2936
Jens Axboe5ad531d2009-07-03 12:57:48 +02002937 WARN_ON(!cfqd->rq_in_driver[sync]);
Jens Axboe6d048f52007-04-25 12:44:27 +02002938 WARN_ON(!cfqq->dispatched);
Jens Axboe5ad531d2009-07-03 12:57:48 +02002939 cfqd->rq_in_driver[sync]--;
Jens Axboe6d048f52007-04-25 12:44:27 +02002940 cfqq->dispatched--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
Jens Axboe3ed9a292007-04-23 08:33:33 +02002942 if (cfq_cfqq_sync(cfqq))
2943 cfqd->sync_flight--;
2944
Vivek Goyal365722b2009-10-03 15:21:27 +02002945 if (sync) {
Jens Axboe5e705372006-07-13 12:39:25 +02002946 RQ_CIC(rq)->last_end_request = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02002947 cfqd->last_end_sync_rq = now;
2948 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002949
2950 /*
2951 * If this is the active queue, check if it needs to be expired,
2952 * or if we want to idle in case it has no pending requests.
2953 */
2954 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02002955 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
2956
Jens Axboe44f7c162007-01-19 11:51:58 +11002957 if (cfq_cfqq_slice_new(cfqq)) {
2958 cfq_set_prio_slice(cfqd, cfqq);
2959 cfq_clear_cfqq_slice_new(cfqq);
2960 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002961 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002962 * Idling is not enabled on:
2963 * - expired queues
2964 * - idle-priority queues
2965 * - async queues
2966 * - queues with still some requests queued
2967 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02002968 */
Jens Axboe08717142008-01-28 11:38:15 +01002969 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Jens Axboe6084cdd2007-04-23 08:25:00 +02002970 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002971 else if (sync && cfqq_empty &&
2972 !cfq_close_cooperator(cfqd, cfqq)) {
2973 cfqd->noidle_tree_requires_idle |= !rq_noidle(rq);
2974 /*
2975 * Idling is enabled for SYNC_WORKLOAD.
2976 * SYNC_NOIDLE_WORKLOAD idles at the end of the tree
2977 * only if we processed at least one !rq_noidle request
2978 */
2979 if (cfqd->serving_type == SYNC_WORKLOAD
2980 || cfqd->noidle_tree_requires_idle)
2981 cfq_arm_slice_timer(cfqd);
2982 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002983 }
Jens Axboe6d048f52007-04-25 12:44:27 +02002984
Jens Axboe5ad531d2009-07-03 12:57:48 +02002985 if (!rq_in_driver(cfqd))
Jens Axboe23e018a2009-10-05 08:52:35 +02002986 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987}
2988
Jens Axboe22e2c502005-06-27 10:55:12 +02002989/*
2990 * we temporarily boost lower priority queues if they are holding fs exclusive
2991 * resources. they are boosted to normal prio (CLASS_BE/4)
2992 */
2993static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
Jens Axboe22e2c502005-06-27 10:55:12 +02002995 if (has_fs_excl()) {
2996 /*
2997 * boost idle prio on transactions that would lock out other
2998 * users of the filesystem
2999 */
3000 if (cfq_class_idle(cfqq))
3001 cfqq->ioprio_class = IOPRIO_CLASS_BE;
3002 if (cfqq->ioprio > IOPRIO_NORM)
3003 cfqq->ioprio = IOPRIO_NORM;
3004 } else {
3005 /*
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003006 * unboost the queue (if needed)
Jens Axboe22e2c502005-06-27 10:55:12 +02003007 */
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003008 cfqq->ioprio_class = cfqq->org_ioprio_class;
3009 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003011}
3012
Jens Axboe89850f72006-07-22 16:48:31 +02003013static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003014{
Jens Axboe1b379d82009-08-11 08:26:11 +02003015 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003016 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003017 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003018 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003019
3020 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003021}
3022
Jens Axboe165125e2007-07-24 09:28:11 +02003023static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003024{
3025 struct cfq_data *cfqd = q->elevator->elevator_data;
3026 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02003027 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003028 struct cfq_queue *cfqq;
3029
3030 /*
3031 * don't force setup of a queue from here, as a call to may_queue
3032 * does not necessarily imply that a request actually will be queued.
3033 * so just lookup a possibly existing queue, or return 'may queue'
3034 * if that fails
3035 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003036 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003037 if (!cic)
3038 return ELV_MQUEUE_MAY;
3039
Jens Axboeb0b78f82009-04-08 10:56:08 +02003040 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003041 if (cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003042 cfq_init_prio_data(cfqq, cic->ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02003043 cfq_prio_boost(cfqq);
3044
Jens Axboe89850f72006-07-22 16:48:31 +02003045 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003046 }
3047
3048 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049}
3050
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051/*
3052 * queue lock held here
3053 */
Jens Axboebb37b942006-12-01 10:42:33 +01003054static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055{
Jens Axboe5e705372006-07-13 12:39:25 +02003056 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Jens Axboe5e705372006-07-13 12:39:25 +02003058 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003059 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Jens Axboe22e2c502005-06-27 10:55:12 +02003061 BUG_ON(!cfqq->allocated[rw]);
3062 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Jens Axboe5e705372006-07-13 12:39:25 +02003064 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02003067 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 cfq_put_queue(cfqq);
3070 }
3071}
3072
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003073static struct cfq_queue *
3074cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic,
3075 struct cfq_queue *cfqq)
3076{
3077 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3078 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003079 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003080 cfq_put_queue(cfqq);
3081 return cic_to_cfqq(cic, 1);
3082}
3083
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003084static int should_split_cfqq(struct cfq_queue *cfqq)
3085{
3086 if (cfqq->seeky_start &&
3087 time_after(jiffies, cfqq->seeky_start + CFQQ_COOP_TOUT))
3088 return 1;
3089 return 0;
3090}
3091
3092/*
3093 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3094 * was the last process referring to said cfqq.
3095 */
3096static struct cfq_queue *
3097split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq)
3098{
3099 if (cfqq_process_refs(cfqq) == 1) {
3100 cfqq->seeky_start = 0;
3101 cfqq->pid = current->pid;
3102 cfq_clear_cfqq_coop(cfqq);
3103 return cfqq;
3104 }
3105
3106 cic_set_cfqq(cic, NULL, 1);
3107 cfq_put_queue(cfqq);
3108 return NULL;
3109}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003111 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003113static int
Jens Axboe165125e2007-07-24 09:28:11 +02003114cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115{
3116 struct cfq_data *cfqd = q->elevator->elevator_data;
3117 struct cfq_io_context *cic;
3118 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003119 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003120 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 unsigned long flags;
3122
3123 might_sleep_if(gfp_mask & __GFP_WAIT);
3124
Jens Axboee2d74ac2006-03-28 08:59:01 +02003125 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02003126
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 spin_lock_irqsave(q->queue_lock, flags);
3128
Jens Axboe22e2c502005-06-27 10:55:12 +02003129 if (!cic)
3130 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003132new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003133 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003134 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003135 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003136 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003137 } else {
3138 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003139 * If the queue was seeky for too long, break it apart.
3140 */
3141 if (cfq_cfqq_coop(cfqq) && should_split_cfqq(cfqq)) {
3142 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3143 cfqq = split_cfqq(cic, cfqq);
3144 if (!cfqq)
3145 goto new_queue;
3146 }
3147
3148 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003149 * Check to see if this queue is scheduled to merge with
3150 * another, closely cooperating queue. The merging of
3151 * queues happens here as it must be done in process context.
3152 * The reference on new_cfqq was taken in merge_cfqqs.
3153 */
3154 if (cfqq->new_cfqq)
3155 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
3158 cfqq->allocated[rw]++;
Jens Axboe22e2c502005-06-27 10:55:12 +02003159 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02003160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 spin_unlock_irqrestore(q->queue_lock, flags);
3162
Jens Axboe5e705372006-07-13 12:39:25 +02003163 rq->elevator_private = cic;
3164 rq->elevator_private2 = cfqq;
3165 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02003166
Jens Axboe22e2c502005-06-27 10:55:12 +02003167queue_fail:
3168 if (cic)
3169 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02003170
Jens Axboe23e018a2009-10-05 08:52:35 +02003171 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 spin_unlock_irqrestore(q->queue_lock, flags);
Jens Axboe7b679132008-05-30 12:23:07 +02003173 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 return 1;
3175}
3176
David Howells65f27f32006-11-22 14:55:48 +00003177static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003178{
David Howells65f27f32006-11-22 14:55:48 +00003179 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003180 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003181 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003182
Jens Axboe40bb54d2009-04-15 12:11:10 +02003183 spin_lock_irq(q->queue_lock);
Tejun Heoa7f55792009-04-23 11:05:17 +09003184 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003185 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003186}
3187
3188/*
3189 * Timer running if the active_queue is currently idling inside its time slice
3190 */
3191static void cfq_idle_slice_timer(unsigned long data)
3192{
3193 struct cfq_data *cfqd = (struct cfq_data *) data;
3194 struct cfq_queue *cfqq;
3195 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003196 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003197
Jens Axboe7b679132008-05-30 12:23:07 +02003198 cfq_log(cfqd, "idle timer fired");
3199
Jens Axboe22e2c502005-06-27 10:55:12 +02003200 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3201
Jens Axboefe094d92008-01-31 13:08:54 +01003202 cfqq = cfqd->active_queue;
3203 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003204 timed_out = 0;
3205
Jens Axboe22e2c502005-06-27 10:55:12 +02003206 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003207 * We saw a request before the queue expired, let it through
3208 */
3209 if (cfq_cfqq_must_dispatch(cfqq))
3210 goto out_kick;
3211
3212 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003213 * expired
3214 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003215 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003216 goto expire;
3217
3218 /*
3219 * only expire and reinvoke request handler, if there are
3220 * other queues with pending requests
3221 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003222 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003223 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003224
3225 /*
3226 * not expired and it has a request pending, let it dispatch
3227 */
Jens Axboe75e50982009-04-07 08:56:14 +02003228 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003229 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003230
3231 /*
3232 * Queue depth flag is reset only when the idle didn't succeed
3233 */
3234 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003235 }
3236expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +02003237 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003238out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003239 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003240out_cont:
3241 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3242}
3243
Jens Axboe3b181522005-06-27 10:56:24 +02003244static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3245{
3246 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003247 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003248}
Jens Axboe22e2c502005-06-27 10:55:12 +02003249
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003250static void cfq_put_async_queues(struct cfq_data *cfqd)
3251{
3252 int i;
3253
3254 for (i = 0; i < IOPRIO_BE_NR; i++) {
3255 if (cfqd->async_cfqq[0][i])
3256 cfq_put_queue(cfqd->async_cfqq[0][i]);
3257 if (cfqd->async_cfqq[1][i])
3258 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003259 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003260
3261 if (cfqd->async_idle_cfqq)
3262 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003263}
3264
Jens Axboeb374d182008-10-31 10:05:07 +01003265static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266{
Jens Axboe22e2c502005-06-27 10:55:12 +02003267 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003268 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003269
Jens Axboe3b181522005-06-27 10:56:24 +02003270 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003271
Al Virod9ff4182006-03-18 13:51:22 -05003272 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003273
Al Virod9ff4182006-03-18 13:51:22 -05003274 if (cfqd->active_queue)
Jens Axboe6084cdd2007-04-23 08:25:00 +02003275 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003276
3277 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05003278 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
3279 struct cfq_io_context,
3280 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02003281
3282 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05003283 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003284
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003285 cfq_put_async_queues(cfqd);
Jens Axboe15c31be2007-07-10 13:43:25 +02003286
Al Virod9ff4182006-03-18 13:51:22 -05003287 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05003288
3289 cfq_shutdown_timer_wq(cfqd);
3290
Al Viroa90d7422006-03-18 12:05:37 -05003291 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292}
3293
Jens Axboe165125e2007-07-24 09:28:11 +02003294static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295{
3296 struct cfq_data *cfqd;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003297 int i, j;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003298 struct cfq_group *cfqg;
Vivek Goyal615f0252009-12-03 12:59:39 -05003299 struct cfq_rb_root *st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Christoph Lameter94f60302007-07-17 04:03:29 -07003301 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02003303 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003305 /* Init root service tree */
3306 cfqd->grp_service_tree = CFQ_RB_ROOT;
3307
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003308 /* Init root group */
3309 cfqg = &cfqd->root_group;
Vivek Goyal615f0252009-12-03 12:59:39 -05003310 for_each_cfqg_st(cfqg, i, j, st)
3311 *st = CFQ_RB_ROOT;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003312 RB_CLEAR_NODE(&cfqg->rb_node);
Jens Axboe26a2ac02009-04-23 12:13:27 +02003313
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003314 /* Give preference to root group over other groups */
3315 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3316
Jens Axboe26a2ac02009-04-23 12:13:27 +02003317 /*
3318 * Not strictly needed (since RB_ROOT just clears the node and we
3319 * zeroed cfqd on alloc), but better be safe in case someone decides
3320 * to add magic to the rb code
3321 */
3322 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3323 cfqd->prio_trees[i] = RB_ROOT;
3324
Jens Axboe6118b702009-06-30 09:34:12 +02003325 /*
3326 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3327 * Grab a permanent reference to it, so that the normal code flow
3328 * will not attempt to free it.
3329 */
3330 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
3331 atomic_inc(&cfqd->oom_cfqq.ref);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003332 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
Jens Axboe6118b702009-06-30 09:34:12 +02003333
Al Virod9ff4182006-03-18 13:51:22 -05003334 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Jens Axboe22e2c502005-06-27 10:55:12 +02003338 init_timer(&cfqd->idle_slice_timer);
3339 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3340 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3341
Jens Axboe23e018a2009-10-05 08:52:35 +02003342 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003343
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003345 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3346 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 cfqd->cfq_back_max = cfq_back_max;
3348 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003349 cfqd->cfq_slice[0] = cfq_slice_async;
3350 cfqd->cfq_slice[1] = cfq_slice_sync;
3351 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3352 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003353 cfqd->cfq_latency = 1;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003354 cfqd->hw_tag = -1;
Vivek Goyal365722b2009-10-03 15:21:27 +02003355 cfqd->last_end_sync_rq = jiffies;
Jens Axboebc1c1162006-06-08 08:49:06 +02003356 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357}
3358
3359static void cfq_slab_kill(void)
3360{
Jens Axboed6de8be2008-05-28 14:46:59 +02003361 /*
3362 * Caller already ensured that pending RCU callbacks are completed,
3363 * so we should have no busy allocations at this point.
3364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 if (cfq_pool)
3366 kmem_cache_destroy(cfq_pool);
3367 if (cfq_ioc_pool)
3368 kmem_cache_destroy(cfq_ioc_pool);
3369}
3370
3371static int __init cfq_slab_setup(void)
3372{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003373 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 if (!cfq_pool)
3375 goto fail;
3376
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02003377 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 if (!cfq_ioc_pool)
3379 goto fail;
3380
3381 return 0;
3382fail:
3383 cfq_slab_kill();
3384 return -ENOMEM;
3385}
3386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387/*
3388 * sysfs parts below -->
3389 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390static ssize_t
3391cfq_var_show(unsigned int var, char *page)
3392{
3393 return sprintf(page, "%d\n", var);
3394}
3395
3396static ssize_t
3397cfq_var_store(unsigned int *var, const char *page, size_t count)
3398{
3399 char *p = (char *) page;
3400
3401 *var = simple_strtoul(p, &p, 10);
3402 return count;
3403}
3404
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003406static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003408 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 unsigned int __data = __VAR; \
3410 if (__CONV) \
3411 __data = jiffies_to_msecs(__data); \
3412 return cfq_var_show(__data, (page)); \
3413}
3414SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003415SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
3416SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05003417SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
3418SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003419SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
3420SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
3421SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
3422SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003423SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424#undef SHOW_FUNCTION
3425
3426#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003427static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003429 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 unsigned int __data; \
3431 int ret = cfq_var_store(&__data, (page), count); \
3432 if (__data < (MIN)) \
3433 __data = (MIN); \
3434 else if (__data > (MAX)) \
3435 __data = (MAX); \
3436 if (__CONV) \
3437 *(__PTR) = msecs_to_jiffies(__data); \
3438 else \
3439 *(__PTR) = __data; \
3440 return ret; \
3441}
3442STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003443STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
3444 UINT_MAX, 1);
3445STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
3446 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05003447STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003448STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
3449 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003450STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
3451STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
3452STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01003453STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
3454 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003455STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456#undef STORE_FUNCTION
3457
Al Viroe572ec72006-03-18 22:27:18 -05003458#define CFQ_ATTR(name) \
3459 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02003460
Al Viroe572ec72006-03-18 22:27:18 -05003461static struct elv_fs_entry cfq_attrs[] = {
3462 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05003463 CFQ_ATTR(fifo_expire_sync),
3464 CFQ_ATTR(fifo_expire_async),
3465 CFQ_ATTR(back_seek_max),
3466 CFQ_ATTR(back_seek_penalty),
3467 CFQ_ATTR(slice_sync),
3468 CFQ_ATTR(slice_async),
3469 CFQ_ATTR(slice_async_rq),
3470 CFQ_ATTR(slice_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02003471 CFQ_ATTR(low_latency),
Al Viroe572ec72006-03-18 22:27:18 -05003472 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473};
3474
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475static struct elevator_type iosched_cfq = {
3476 .ops = {
3477 .elevator_merge_fn = cfq_merge,
3478 .elevator_merged_fn = cfq_merged_request,
3479 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01003480 .elevator_allow_merge_fn = cfq_allow_merge,
Jens Axboeb4878f22005-10-20 16:42:29 +02003481 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02003483 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 .elevator_deactivate_req_fn = cfq_deactivate_request,
3485 .elevator_queue_empty_fn = cfq_queue_empty,
3486 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02003487 .elevator_former_req_fn = elv_rb_former_request,
3488 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 .elevator_set_req_fn = cfq_set_request,
3490 .elevator_put_req_fn = cfq_put_request,
3491 .elevator_may_queue_fn = cfq_may_queue,
3492 .elevator_init_fn = cfq_init_queue,
3493 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02003494 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 },
Al Viro3d1ab402006-03-18 18:35:43 -05003496 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 .elevator_name = "cfq",
3498 .elevator_owner = THIS_MODULE,
3499};
3500
3501static int __init cfq_init(void)
3502{
Jens Axboe22e2c502005-06-27 10:55:12 +02003503 /*
3504 * could be 0 on HZ < 1000 setups
3505 */
3506 if (!cfq_slice_async)
3507 cfq_slice_async = 1;
3508 if (!cfq_slice_idle)
3509 cfq_slice_idle = 1;
3510
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 if (cfq_slab_setup())
3512 return -ENOMEM;
3513
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01003514 elv_register(&iosched_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01003516 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517}
3518
3519static void __exit cfq_exit(void)
3520{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07003521 DECLARE_COMPLETION_ONSTACK(all_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05003523 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02003524 /* ioc_gone's update must be visible before reading ioc_count */
3525 smp_wmb();
Jens Axboed6de8be2008-05-28 14:46:59 +02003526
3527 /*
3528 * this also protects us from entering cfq_slab_kill() with
3529 * pending RCU callbacks
3530 */
Tejun Heo245b2e72009-06-24 15:13:48 +09003531 if (elv_ioc_count_read(cfq_ioc_count))
Jens Axboe9a11b4e2008-05-29 09:32:08 +02003532 wait_for_completion(&all_gone);
Christoph Hellwig83521d32005-10-30 15:01:39 -08003533 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534}
3535
3536module_init(cfq_init);
3537module_exit(cfq_exit);
3538
3539MODULE_AUTHOR("Jens Axboe");
3540MODULE_LICENSE("GPL");
3541MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");