blob: 1cc10489eaf02d35a205bee58deacfeeacdd1b8c [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;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500120 unsigned int allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500121 /* time when first request from queue completed and slice started. */
122 unsigned long slice_start;
Jens Axboe6118b702009-06-30 09:34:12 +0200123 unsigned long slice_end;
124 long slice_resid;
125 unsigned int slice_dispatch;
126
127 /* pending metadata requests */
128 int meta_pending;
129 /* number of requests that are on the dispatch list or inside driver */
130 int dispatched;
131
132 /* io prio of this group */
133 unsigned short ioprio, org_ioprio;
134 unsigned short ioprio_class, org_ioprio_class;
135
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400136 unsigned int seek_samples;
137 u64 seek_total;
138 sector_t seek_mean;
139 sector_t last_request_pos;
Jeff Moyere6c5bc72009-10-23 17:14:52 -0400140 unsigned long seeky_start;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400141
Jens Axboe6118b702009-06-30 09:34:12 +0200142 pid_t pid;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400143
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100144 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400145 struct cfq_queue *new_cfqq;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500146 struct cfq_group *cfqg;
Vivek Goyal22084192009-12-03 12:59:49 -0500147 /* Sectors dispatched in current dispatch round */
148 unsigned long nr_sectors;
Jens Axboe6118b702009-06-30 09:34:12 +0200149};
150
151/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100152 * First index in the service_trees.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100153 * IDLE is handled separately, so it has negative index
154 */
155enum wl_prio_t {
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100156 BE_WORKLOAD = 0,
Vivek Goyal615f0252009-12-03 12:59:39 -0500157 RT_WORKLOAD = 1,
158 IDLE_WORKLOAD = 2,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100159};
160
161/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100162 * Second index in the service_trees.
163 */
164enum wl_type_t {
165 ASYNC_WORKLOAD = 0,
166 SYNC_NOIDLE_WORKLOAD = 1,
167 SYNC_WORKLOAD = 2
168};
169
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500170/* This is per cgroup per device grouping structure */
171struct cfq_group {
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500172 /* group service_tree member */
173 struct rb_node rb_node;
174
175 /* group service_tree key */
176 u64 vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500177 unsigned int weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500178 bool on_st;
179
180 /* number of cfqq currently on this group */
181 int nr_cfqq;
182
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500183 /* Per group busy queus average. Useful for workload slice calc. */
184 unsigned int busy_queues_avg[2];
Jens Axboe22e2c502005-06-27 10:55:12 +0200185 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100186 * rr lists of queues with requests, onle rr for each priority class.
187 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200188 */
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100189 struct cfq_rb_root service_trees[2][3];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100190 struct cfq_rb_root service_tree_idle;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500191
192 unsigned long saved_workload_slice;
193 enum wl_type_t saved_workload;
194 enum wl_prio_t saved_serving_prio;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500195 struct blkio_group blkg;
196#ifdef CONFIG_CFQ_GROUP_IOSCHED
197 struct hlist_node cfqd_node;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500198 atomic_t ref;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500199#endif
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500200};
201
202/*
203 * Per block device queue structure
204 */
205struct cfq_data {
206 struct request_queue *queue;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500207 /* Root service tree for cfq_groups */
208 struct cfq_rb_root grp_service_tree;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500209 struct cfq_group root_group;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500210 /* Number of active cfq groups on group service tree */
211 int nr_groups;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500212
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100213 /*
214 * The priority currently being served
215 */
216 enum wl_prio_t serving_prio;
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100217 enum wl_type_t serving_type;
218 unsigned long workload_expires;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500219 struct cfq_group *serving_group;
Corrado Zoccolo8e550632009-11-26 10:02:58 +0100220 bool noidle_tree_requires_idle;
Jens Axboea36e71f2009-04-15 12:15:11 +0200221
222 /*
223 * Each priority tree is sorted by next_request position. These
224 * trees are used when determining if two or more queues are
225 * interleaving requests (see cfq_close_cooperator).
226 */
227 struct rb_root prio_trees[CFQ_PRIO_LISTS];
228
Jens Axboe22e2c502005-06-27 10:55:12 +0200229 unsigned int busy_queues;
230
Jens Axboe5ad531d2009-07-03 12:57:48 +0200231 int rq_in_driver[2];
Jens Axboe3ed9a292007-04-23 08:33:33 +0200232 int sync_flight;
Aaron Carroll45333d52008-08-26 15:52:36 +0200233
234 /*
235 * queue-depth detection
236 */
237 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200238 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100239 /*
240 * hw_tag can be
241 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
242 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
243 * 0 => no NCQ
244 */
245 int hw_tag_est_depth;
246 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200247
248 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200249 * idle window management
250 */
251 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200252 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200253
254 struct cfq_queue *active_queue;
255 struct cfq_io_context *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200256
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200257 /*
258 * async queue for each priority case
259 */
260 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
261 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200262
Jens Axboe6d048f52007-04-25 12:44:27 +0200263 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /*
266 * tunables, see top of file
267 */
268 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200269 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 unsigned int cfq_back_penalty;
271 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200272 unsigned int cfq_slice[2];
273 unsigned int cfq_slice_async_rq;
274 unsigned int cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200275 unsigned int cfq_latency;
Al Virod9ff4182006-03-18 13:51:22 -0500276
277 struct list_head cic_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Jens Axboe6118b702009-06-30 09:34:12 +0200279 /*
280 * Fallback dummy cfqq for extreme OOM conditions
281 */
282 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200283
284 unsigned long last_end_sync_rq;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500285
286 /* List of cfq groups being managed on this device*/
287 struct hlist_head cfqg_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288};
289
Vivek Goyal25fb5162009-12-03 12:59:46 -0500290static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
291
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500292static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
293 enum wl_prio_t prio,
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100294 enum wl_type_t type,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100295 struct cfq_data *cfqd)
296{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500297 if (!cfqg)
298 return NULL;
299
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100300 if (prio == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500301 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100302
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500303 return &cfqg->service_trees[prio][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100304}
305
Jens Axboe3b181522005-06-27 10:56:24 +0200306enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100307 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
308 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200309 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100310 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100311 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
312 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
313 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100314 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200315 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400316 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100317 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Vivek Goyalf75edf22009-12-03 12:59:53 -0500318 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
319 CFQ_CFQQ_FLAG_wait_busy_done, /* Got new request. Expire the queue */
Jens Axboe3b181522005-06-27 10:56:24 +0200320};
321
322#define CFQ_CFQQ_FNS(name) \
323static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
324{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100325 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200326} \
327static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
328{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100329 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200330} \
331static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
332{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100333 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200334}
335
336CFQ_CFQQ_FNS(on_rr);
337CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200338CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200339CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200340CFQ_CFQQ_FNS(fifo_expire);
341CFQ_CFQQ_FNS(idle_window);
342CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100343CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200344CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200345CFQ_CFQQ_FNS(coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100346CFQ_CFQQ_FNS(deep);
Vivek Goyalf75edf22009-12-03 12:59:53 -0500347CFQ_CFQQ_FNS(wait_busy);
348CFQ_CFQQ_FNS(wait_busy_done);
Jens Axboe3b181522005-06-27 10:56:24 +0200349#undef CFQ_CFQQ_FNS
350
Vivek Goyal2868ef72009-12-03 12:59:48 -0500351#ifdef CONFIG_DEBUG_CFQ_IOSCHED
352#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
353 blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \
354 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
355 blkg_path(&(cfqq)->cfqg->blkg), ##args);
356
357#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \
358 blk_add_trace_msg((cfqd)->queue, "%s " fmt, \
359 blkg_path(&(cfqg)->blkg), ##args); \
360
361#else
Jens Axboe7b679132008-05-30 12:23:07 +0200362#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
363 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500364#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0);
365#endif
Jens Axboe7b679132008-05-30 12:23:07 +0200366#define cfq_log(cfqd, fmt, args...) \
367 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
368
Vivek Goyal615f0252009-12-03 12:59:39 -0500369/* Traverses through cfq group service trees */
370#define for_each_cfqg_st(cfqg, i, j, st) \
371 for (i = 0; i <= IDLE_WORKLOAD; i++) \
372 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
373 : &cfqg->service_tree_idle; \
374 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
375 (i == IDLE_WORKLOAD && j == 0); \
376 j++, st = i < IDLE_WORKLOAD ? \
377 &cfqg->service_trees[i][j]: NULL) \
378
379
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100380static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
381{
382 if (cfq_class_idle(cfqq))
383 return IDLE_WORKLOAD;
384 if (cfq_class_rt(cfqq))
385 return RT_WORKLOAD;
386 return BE_WORKLOAD;
387}
388
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100389
390static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
391{
392 if (!cfq_cfqq_sync(cfqq))
393 return ASYNC_WORKLOAD;
394 if (!cfq_cfqq_idle_window(cfqq))
395 return SYNC_NOIDLE_WORKLOAD;
396 return SYNC_WORKLOAD;
397}
398
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500399static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
400 struct cfq_data *cfqd,
401 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100402{
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500403 if (wl == IDLE_WORKLOAD)
404 return cfqg->service_tree_idle.count;
405
406 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
407 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
408 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100409}
410
Jens Axboe165125e2007-07-24 09:28:11 +0200411static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200412static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100413 struct io_context *, gfp_t);
Jens Axboe4ac845a2008-01-24 08:44:49 +0100414static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *,
Vasily Tarasov91fac312007-04-25 12:29:51 +0200415 struct io_context *);
416
Jens Axboe5ad531d2009-07-03 12:57:48 +0200417static inline int rq_in_driver(struct cfq_data *cfqd)
418{
419 return cfqd->rq_in_driver[0] + cfqd->rq_in_driver[1];
420}
421
Vasily Tarasov91fac312007-04-25 12:29:51 +0200422static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200423 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200424{
Jens Axboea6151c32009-10-07 20:02:57 +0200425 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200426}
427
428static inline void cic_set_cfqq(struct cfq_io_context *cic,
Jens Axboea6151c32009-10-07 20:02:57 +0200429 struct cfq_queue *cfqq, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200430{
Jens Axboea6151c32009-10-07 20:02:57 +0200431 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200432}
433
434/*
435 * We regard a request as SYNC, if it's either a read or has the SYNC bit
436 * set (in which case it could also be direct WRITE).
437 */
Jens Axboea6151c32009-10-07 20:02:57 +0200438static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200439{
Jens Axboea6151c32009-10-07 20:02:57 +0200440 return bio_data_dir(bio) == READ || bio_rw_flagged(bio, BIO_RW_SYNCIO);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200441}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700444 * scheduler run of queue, if there are requests pending and no one in the
445 * driver that will restart queueing
446 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200447static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700448{
Jens Axboe7b679132008-05-30 12:23:07 +0200449 if (cfqd->busy_queues) {
450 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200451 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200452 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700453}
454
Jens Axboe165125e2007-07-24 09:28:11 +0200455static int cfq_queue_empty(struct request_queue *q)
Andrew Morton99f95e52005-06-27 20:14:05 -0700456{
457 struct cfq_data *cfqd = q->elevator->elevator_data;
458
Vivek Goyalf04a6422009-12-03 12:59:40 -0500459 return !cfqd->rq_queued;
Andrew Morton99f95e52005-06-27 20:14:05 -0700460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100463 * Scale schedule slice based on io priority. Use the sync time slice only
464 * if a queue is marked sync and has sync io queued. A sync queue with async
465 * io only, should not get full sync slice length.
466 */
Jens Axboea6151c32009-10-07 20:02:57 +0200467static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200468 unsigned short prio)
469{
470 const int base_slice = cfqd->cfq_slice[sync];
471
472 WARN_ON(prio >= IOPRIO_BE_NR);
473
474 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
475}
476
Jens Axboe44f7c162007-01-19 11:51:58 +1100477static inline int
478cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
479{
Jens Axboed9e76202007-04-20 14:27:50 +0200480 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100481}
482
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500483static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
484{
485 u64 d = delta << CFQ_SERVICE_SHIFT;
486
487 d = d * BLKIO_WEIGHT_DEFAULT;
488 do_div(d, cfqg->weight);
489 return d;
490}
491
492static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
493{
494 s64 delta = (s64)(vdisktime - min_vdisktime);
495 if (delta > 0)
496 min_vdisktime = vdisktime;
497
498 return min_vdisktime;
499}
500
501static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
502{
503 s64 delta = (s64)(vdisktime - min_vdisktime);
504 if (delta < 0)
505 min_vdisktime = vdisktime;
506
507 return min_vdisktime;
508}
509
510static void update_min_vdisktime(struct cfq_rb_root *st)
511{
512 u64 vdisktime = st->min_vdisktime;
513 struct cfq_group *cfqg;
514
515 if (st->active) {
516 cfqg = rb_entry_cfqg(st->active);
517 vdisktime = cfqg->vdisktime;
518 }
519
520 if (st->left) {
521 cfqg = rb_entry_cfqg(st->left);
522 vdisktime = min_vdisktime(vdisktime, cfqg->vdisktime);
523 }
524
525 st->min_vdisktime = max_vdisktime(st->min_vdisktime, vdisktime);
526}
527
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100528/*
529 * get averaged number of queues of RT/BE priority.
530 * average is updated, with a formula that gives more weight to higher numbers,
531 * to quickly follows sudden increases and decrease slowly
532 */
533
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500534static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
535 struct cfq_group *cfqg, bool rt)
Jens Axboe5869619c2009-10-28 09:27:07 +0100536{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100537 unsigned min_q, max_q;
538 unsigned mult = cfq_hist_divisor - 1;
539 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500540 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100541
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500542 min_q = min(cfqg->busy_queues_avg[rt], busy);
543 max_q = max(cfqg->busy_queues_avg[rt], busy);
544 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100545 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500546 return cfqg->busy_queues_avg[rt];
547}
548
549static inline unsigned
550cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
551{
552 struct cfq_rb_root *st = &cfqd->grp_service_tree;
553
554 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100555}
556
Jens Axboe44f7c162007-01-19 11:51:58 +1100557static inline void
558cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
559{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100560 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
561 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500562 /*
563 * interested queues (we consider only the ones with the same
564 * priority class in the cfq group)
565 */
566 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
567 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100568 unsigned sync_slice = cfqd->cfq_slice[1];
569 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500570 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
571
572 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100573 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
574 /* scale low_slice according to IO priority
575 * and sync vs async */
576 unsigned low_slice =
577 min(slice, base_low_slice * slice / sync_slice);
578 /* the adapted slice value is scaled to fit all iqs
579 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500580 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100581 low_slice);
582 }
583 }
Vivek Goyaldae739e2009-12-03 12:59:45 -0500584 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100585 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500586 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200587 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100588}
589
590/*
591 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
592 * isn't valid until the first request from the dispatch is activated
593 * and the slice time set.
594 */
Jens Axboea6151c32009-10-07 20:02:57 +0200595static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100596{
597 if (cfq_cfqq_slice_new(cfqq))
598 return 0;
599 if (time_before(jiffies, cfqq->slice_end))
600 return 0;
601
602 return 1;
603}
604
605/*
Jens Axboe5e705372006-07-13 12:39:25 +0200606 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200608 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 */
Jens Axboe5e705372006-07-13 12:39:25 +0200610static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100611cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100613 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200615#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
616#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
617 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Jens Axboe5e705372006-07-13 12:39:25 +0200619 if (rq1 == NULL || rq1 == rq2)
620 return rq2;
621 if (rq2 == NULL)
622 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200623
Jens Axboe5e705372006-07-13 12:39:25 +0200624 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
625 return rq1;
626 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
627 return rq2;
Jens Axboe374f84a2006-07-23 01:42:19 +0200628 if (rq_is_meta(rq1) && !rq_is_meta(rq2))
629 return rq1;
630 else if (rq_is_meta(rq2) && !rq_is_meta(rq1))
631 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Tejun Heo83096eb2009-05-07 22:24:39 +0900633 s1 = blk_rq_pos(rq1);
634 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /*
637 * by definition, 1KiB is 2 sectors
638 */
639 back_max = cfqd->cfq_back_max * 2;
640
641 /*
642 * Strict one way elevator _except_ in the case where we allow
643 * short backward seeks which are biased as twice the cost of a
644 * similar forward seek.
645 */
646 if (s1 >= last)
647 d1 = s1 - last;
648 else if (s1 + back_max >= last)
649 d1 = (last - s1) * cfqd->cfq_back_penalty;
650 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200651 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 if (s2 >= last)
654 d2 = s2 - last;
655 else if (s2 + back_max >= last)
656 d2 = (last - s2) * cfqd->cfq_back_penalty;
657 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200658 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Andreas Mohre8a99052006-03-28 08:59:49 +0200662 /*
663 * By doing switch() on the bit mask "wrap" we avoid having to
664 * check two variables for all permutations: --> faster!
665 */
666 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200667 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200668 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200669 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200670 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200671 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200672 else {
673 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200674 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200675 else
Jens Axboe5e705372006-07-13 12:39:25 +0200676 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200677 }
678
679 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200680 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200681 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200682 return rq2;
683 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200684 default:
685 /*
686 * Since both rqs are wrapped,
687 * start with the one that's further behind head
688 * (--> only *one* back seek required),
689 * since back seek takes more time than forward.
690 */
691 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200692 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 else
Jens Axboe5e705372006-07-13 12:39:25 +0200694 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696}
697
Jens Axboe498d3aa22007-04-26 12:54:48 +0200698/*
699 * The below is leftmost cache rbtree addon
700 */
Jens Axboe08717142008-01-28 11:38:15 +0100701static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200702{
Vivek Goyal615f0252009-12-03 12:59:39 -0500703 /* Service tree is empty */
704 if (!root->count)
705 return NULL;
706
Jens Axboecc09e292007-04-26 12:53:50 +0200707 if (!root->left)
708 root->left = rb_first(&root->rb);
709
Jens Axboe08717142008-01-28 11:38:15 +0100710 if (root->left)
711 return rb_entry(root->left, struct cfq_queue, rb_node);
712
713 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200714}
715
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500716static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
717{
718 if (!root->left)
719 root->left = rb_first(&root->rb);
720
721 if (root->left)
722 return rb_entry_cfqg(root->left);
723
724 return NULL;
725}
726
Jens Axboea36e71f2009-04-15 12:15:11 +0200727static void rb_erase_init(struct rb_node *n, struct rb_root *root)
728{
729 rb_erase(n, root);
730 RB_CLEAR_NODE(n);
731}
732
Jens Axboecc09e292007-04-26 12:53:50 +0200733static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
734{
735 if (root->left == n)
736 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200737 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100738 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200739}
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741/*
742 * would be nice to take fifo expire time into account as well
743 */
Jens Axboe5e705372006-07-13 12:39:25 +0200744static struct request *
745cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
746 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Jens Axboe21183b02006-07-13 12:33:14 +0200748 struct rb_node *rbnext = rb_next(&last->rb_node);
749 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200750 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Jens Axboe21183b02006-07-13 12:33:14 +0200752 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200755 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200758 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200759 else {
760 rbnext = rb_first(&cfqq->sort_list);
761 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200762 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100765 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Jens Axboed9e76202007-04-20 14:27:50 +0200768static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
769 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Jens Axboed9e76202007-04-20 14:27:50 +0200771 /*
772 * just an approximation, should be ok.
773 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500774 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100775 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200776}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500778static inline s64
779cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
780{
781 return cfqg->vdisktime - st->min_vdisktime;
782}
783
784static void
785__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
786{
787 struct rb_node **node = &st->rb.rb_node;
788 struct rb_node *parent = NULL;
789 struct cfq_group *__cfqg;
790 s64 key = cfqg_key(st, cfqg);
791 int left = 1;
792
793 while (*node != NULL) {
794 parent = *node;
795 __cfqg = rb_entry_cfqg(parent);
796
797 if (key < cfqg_key(st, __cfqg))
798 node = &parent->rb_left;
799 else {
800 node = &parent->rb_right;
801 left = 0;
802 }
803 }
804
805 if (left)
806 st->left = &cfqg->rb_node;
807
808 rb_link_node(&cfqg->rb_node, parent, node);
809 rb_insert_color(&cfqg->rb_node, &st->rb);
810}
811
812static void
813cfq_group_service_tree_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
814{
815 struct cfq_rb_root *st = &cfqd->grp_service_tree;
816 struct cfq_group *__cfqg;
817 struct rb_node *n;
818
819 cfqg->nr_cfqq++;
820 if (cfqg->on_st)
821 return;
822
823 /*
824 * Currently put the group at the end. Later implement something
825 * so that groups get lesser vtime based on their weights, so that
826 * if group does not loose all if it was not continously backlogged.
827 */
828 n = rb_last(&st->rb);
829 if (n) {
830 __cfqg = rb_entry_cfqg(n);
831 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
832 } else
833 cfqg->vdisktime = st->min_vdisktime;
834
835 __cfq_group_service_tree_add(st, cfqg);
836 cfqg->on_st = true;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500837 cfqd->nr_groups++;
838 st->total_weight += cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500839}
840
841static void
842cfq_group_service_tree_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
843{
844 struct cfq_rb_root *st = &cfqd->grp_service_tree;
845
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500846 if (st->active == &cfqg->rb_node)
847 st->active = NULL;
848
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500849 BUG_ON(cfqg->nr_cfqq < 1);
850 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500851
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500852 /* If there are other cfq queues under this group, don't delete it */
853 if (cfqg->nr_cfqq)
854 return;
855
Vivek Goyal2868ef72009-12-03 12:59:48 -0500856 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500857 cfqg->on_st = false;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500858 cfqd->nr_groups--;
859 st->total_weight -= cfqg->weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500860 if (!RB_EMPTY_NODE(&cfqg->rb_node))
861 cfq_rb_erase(&cfqg->rb_node, st);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500862 cfqg->saved_workload_slice = 0;
Vivek Goyal22084192009-12-03 12:59:49 -0500863 blkiocg_update_blkio_group_dequeue_stats(&cfqg->blkg, 1);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500864}
865
866static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq)
867{
Vivek Goyalf75edf22009-12-03 12:59:53 -0500868 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500869
870 /*
871 * Queue got expired before even a single request completed or
872 * got expired immediately after first request completion.
873 */
874 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
875 /*
876 * Also charge the seek time incurred to the group, otherwise
877 * if there are mutiple queues in the group, each can dispatch
878 * a single request on seeky media and cause lots of seek time
879 * and group will never know it.
880 */
881 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
882 1);
883 } else {
884 slice_used = jiffies - cfqq->slice_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500885 if (slice_used > cfqq->allocated_slice)
886 slice_used = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500887 }
888
Vivek Goyal22084192009-12-03 12:59:49 -0500889 cfq_log_cfqq(cfqq->cfqd, cfqq, "sl_used=%u sect=%lu", slice_used,
890 cfqq->nr_sectors);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500891 return slice_used;
892}
893
894static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
895 struct cfq_queue *cfqq)
896{
897 struct cfq_rb_root *st = &cfqd->grp_service_tree;
898 unsigned int used_sl;
899
900 used_sl = cfq_cfqq_slice_usage(cfqq);
901
902 /* Can't update vdisktime while group is on service tree */
903 cfq_rb_erase(&cfqg->rb_node, st);
904 cfqg->vdisktime += cfq_scale_slice(used_sl, cfqg);
905 __cfq_group_service_tree_add(st, cfqg);
906
907 /* This group is being expired. Save the context */
908 if (time_after(cfqd->workload_expires, jiffies)) {
909 cfqg->saved_workload_slice = cfqd->workload_expires
910 - jiffies;
911 cfqg->saved_workload = cfqd->serving_type;
912 cfqg->saved_serving_prio = cfqd->serving_prio;
913 } else
914 cfqg->saved_workload_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -0500915
916 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
917 st->min_vdisktime);
Vivek Goyal22084192009-12-03 12:59:49 -0500918 blkiocg_update_blkio_group_stats(&cfqg->blkg, used_sl,
919 cfqq->nr_sectors);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500920}
921
Vivek Goyal25fb5162009-12-03 12:59:46 -0500922#ifdef CONFIG_CFQ_GROUP_IOSCHED
923static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg)
924{
925 if (blkg)
926 return container_of(blkg, struct cfq_group, blkg);
927 return NULL;
928}
929
Vivek Goyalf8d461d2009-12-03 12:59:52 -0500930void
931cfq_update_blkio_group_weight(struct blkio_group *blkg, unsigned int weight)
932{
933 cfqg_of_blkg(blkg)->weight = weight;
934}
935
Vivek Goyal25fb5162009-12-03 12:59:46 -0500936static struct cfq_group *
937cfq_find_alloc_cfqg(struct cfq_data *cfqd, struct cgroup *cgroup, int create)
938{
939 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup);
940 struct cfq_group *cfqg = NULL;
941 void *key = cfqd;
942 int i, j;
943 struct cfq_rb_root *st;
Vivek Goyal22084192009-12-03 12:59:49 -0500944 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
945 unsigned int major, minor;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500946
947 /* Do we need to take this reference */
948 if (!css_tryget(&blkcg->css))
949 return NULL;;
950
951 cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key));
952 if (cfqg || !create)
953 goto done;
954
955 cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
956 if (!cfqg)
957 goto done;
958
959 cfqg->weight = blkcg->weight;
960 for_each_cfqg_st(cfqg, i, j, st)
961 *st = CFQ_RB_ROOT;
962 RB_CLEAR_NODE(&cfqg->rb_node);
963
Vivek Goyalb1c35762009-12-03 12:59:47 -0500964 /*
965 * Take the initial reference that will be released on destroy
966 * This can be thought of a joint reference by cgroup and
967 * elevator which will be dropped by either elevator exit
968 * or cgroup deletion path depending on who is exiting first.
969 */
970 atomic_set(&cfqg->ref, 1);
971
Vivek Goyal25fb5162009-12-03 12:59:46 -0500972 /* Add group onto cgroup list */
Vivek Goyal22084192009-12-03 12:59:49 -0500973 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
974 blkiocg_add_blkio_group(blkcg, &cfqg->blkg, (void *)cfqd,
975 MKDEV(major, minor));
Vivek Goyal25fb5162009-12-03 12:59:46 -0500976
977 /* Add group on cfqd list */
978 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
979
980done:
981 css_put(&blkcg->css);
982 return cfqg;
983}
984
985/*
986 * Search for the cfq group current task belongs to. If create = 1, then also
987 * create the cfq group if it does not exist. request_queue lock must be held.
988 */
989static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
990{
991 struct cgroup *cgroup;
992 struct cfq_group *cfqg = NULL;
993
994 rcu_read_lock();
995 cgroup = task_cgroup(current, blkio_subsys_id);
996 cfqg = cfq_find_alloc_cfqg(cfqd, cgroup, create);
997 if (!cfqg && create)
998 cfqg = &cfqd->root_group;
999 rcu_read_unlock();
1000 return cfqg;
1001}
1002
1003static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1004{
1005 /* Currently, all async queues are mapped to root group */
1006 if (!cfq_cfqq_sync(cfqq))
1007 cfqg = &cfqq->cfqd->root_group;
1008
1009 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001010 /* cfqq reference on cfqg */
1011 atomic_inc(&cfqq->cfqg->ref);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001012}
Vivek Goyalb1c35762009-12-03 12:59:47 -05001013
1014static void cfq_put_cfqg(struct cfq_group *cfqg)
1015{
1016 struct cfq_rb_root *st;
1017 int i, j;
1018
1019 BUG_ON(atomic_read(&cfqg->ref) <= 0);
1020 if (!atomic_dec_and_test(&cfqg->ref))
1021 return;
1022 for_each_cfqg_st(cfqg, i, j, st)
1023 BUG_ON(!RB_EMPTY_ROOT(&st->rb) || st->active != NULL);
1024 kfree(cfqg);
1025}
1026
1027static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1028{
1029 /* Something wrong if we are trying to remove same group twice */
1030 BUG_ON(hlist_unhashed(&cfqg->cfqd_node));
1031
1032 hlist_del_init(&cfqg->cfqd_node);
1033
1034 /*
1035 * Put the reference taken at the time of creation so that when all
1036 * queues are gone, group can be destroyed.
1037 */
1038 cfq_put_cfqg(cfqg);
1039}
1040
1041static void cfq_release_cfq_groups(struct cfq_data *cfqd)
1042{
1043 struct hlist_node *pos, *n;
1044 struct cfq_group *cfqg;
1045
1046 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1047 /*
1048 * If cgroup removal path got to blk_group first and removed
1049 * it from cgroup list, then it will take care of destroying
1050 * cfqg also.
1051 */
1052 if (!blkiocg_del_blkio_group(&cfqg->blkg))
1053 cfq_destroy_cfqg(cfqd, cfqg);
1054 }
1055}
1056
1057/*
1058 * Blk cgroup controller notification saying that blkio_group object is being
1059 * delinked as associated cgroup object is going away. That also means that
1060 * no new IO will come in this group. So get rid of this group as soon as
1061 * any pending IO in the group is finished.
1062 *
1063 * This function is called under rcu_read_lock(). key is the rcu protected
1064 * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu
1065 * read lock.
1066 *
1067 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
1068 * it should not be NULL as even if elevator was exiting, cgroup deltion
1069 * path got to it first.
1070 */
1071void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
1072{
1073 unsigned long flags;
1074 struct cfq_data *cfqd = key;
1075
1076 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1077 cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg));
1078 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1079}
1080
Vivek Goyal25fb5162009-12-03 12:59:46 -05001081#else /* GROUP_IOSCHED */
1082static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create)
1083{
1084 return &cfqd->root_group;
1085}
1086static inline void
1087cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1088 cfqq->cfqg = cfqg;
1089}
1090
Vivek Goyalb1c35762009-12-03 12:59:47 -05001091static void cfq_release_cfq_groups(struct cfq_data *cfqd) {}
1092static inline void cfq_put_cfqg(struct cfq_group *cfqg) {}
1093
Vivek Goyal25fb5162009-12-03 12:59:46 -05001094#endif /* GROUP_IOSCHED */
1095
Jens Axboe498d3aa22007-04-26 12:54:48 +02001096/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001097 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +02001098 * requests waiting to be processed. It is sorted in the order that
1099 * we will service the queues.
1100 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001101static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001102 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02001103{
Jens Axboe08717142008-01-28 11:38:15 +01001104 struct rb_node **p, *parent;
1105 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001106 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001107 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +02001108 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001109 int new_cfqq = 1;
Jens Axboed9e76202007-04-20 14:27:50 +02001110
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001111 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
1112 cfqq_type(cfqq), cfqd);
Jens Axboe08717142008-01-28 11:38:15 +01001113 if (cfq_class_idle(cfqq)) {
1114 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001115 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +01001116 if (parent && parent != &cfqq->rb_node) {
1117 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1118 rb_key += __cfqq->rb_key;
1119 } else
1120 rb_key += jiffies;
1121 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02001122 /*
1123 * Get our rb key offset. Subtract any residual slice
1124 * value carried from last service. A negative resid
1125 * count indicates slice overrun, and this should position
1126 * the next service time further away in the tree.
1127 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001128 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02001129 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02001130 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001131 } else {
1132 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001133 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001134 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1135 }
Jens Axboed9e76202007-04-20 14:27:50 +02001136
1137 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05001138 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01001139 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001140 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01001141 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001142 if (rb_key == cfqq->rb_key &&
1143 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +02001144 return;
Jens Axboe53b037442006-07-28 09:48:51 +02001145
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001146 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1147 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001148 }
Jens Axboed9e76202007-04-20 14:27:50 +02001149
Jens Axboe498d3aa22007-04-26 12:54:48 +02001150 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01001151 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001152 cfqq->service_tree = service_tree;
1153 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02001154 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +02001155 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +02001156
Jens Axboed9e76202007-04-20 14:27:50 +02001157 parent = *p;
1158 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1159
Jens Axboe0c534e02007-04-18 20:01:57 +02001160 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001161 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02001162 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001163 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +02001164 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001165 else {
Jens Axboe67060e32007-04-18 20:13:32 +02001166 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02001167 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001168 }
Jens Axboe67060e32007-04-18 20:13:32 +02001169
1170 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +02001171 }
1172
Jens Axboecc09e292007-04-26 12:53:50 +02001173 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001174 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02001175
Jens Axboed9e76202007-04-20 14:27:50 +02001176 cfqq->rb_key = rb_key;
1177 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001178 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1179 service_tree->count++;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001180 if (add_front || !new_cfqq)
1181 return;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001182 cfq_group_service_tree_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
Jens Axboea36e71f2009-04-15 12:15:11 +02001185static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001186cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1187 sector_t sector, struct rb_node **ret_parent,
1188 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02001189{
Jens Axboea36e71f2009-04-15 12:15:11 +02001190 struct rb_node **p, *parent;
1191 struct cfq_queue *cfqq = NULL;
1192
1193 parent = NULL;
1194 p = &root->rb_node;
1195 while (*p) {
1196 struct rb_node **n;
1197
1198 parent = *p;
1199 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1200
1201 /*
1202 * Sort strictly based on sector. Smallest to the left,
1203 * largest to the right.
1204 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001205 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001206 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001207 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001208 n = &(*p)->rb_left;
1209 else
1210 break;
1211 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001212 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001213 }
1214
1215 *ret_parent = parent;
1216 if (rb_link)
1217 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001218 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001219}
1220
1221static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1222{
Jens Axboea36e71f2009-04-15 12:15:11 +02001223 struct rb_node **p, *parent;
1224 struct cfq_queue *__cfqq;
1225
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001226 if (cfqq->p_root) {
1227 rb_erase(&cfqq->p_node, cfqq->p_root);
1228 cfqq->p_root = NULL;
1229 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001230
1231 if (cfq_class_idle(cfqq))
1232 return;
1233 if (!cfqq->next_rq)
1234 return;
1235
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001236 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001237 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1238 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001239 if (!__cfqq) {
1240 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001241 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1242 } else
1243 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001244}
1245
Jens Axboe498d3aa22007-04-26 12:54:48 +02001246/*
1247 * Update cfqq's position in the service tree.
1248 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001249static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001250{
Jens Axboe6d048f52007-04-25 12:44:27 +02001251 /*
1252 * Resorting requires the cfqq to be on the RR list already.
1253 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001254 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001255 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001256 cfq_prio_tree_add(cfqd, cfqq);
1257 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001258}
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260/*
1261 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001262 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 */
Jens Axboefebffd62008-01-28 13:19:43 +01001264static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Jens Axboe7b679132008-05-30 12:23:07 +02001266 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001267 BUG_ON(cfq_cfqq_on_rr(cfqq));
1268 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 cfqd->busy_queues++;
1270
Jens Axboeedd75ff2007-04-19 12:03:34 +02001271 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
Jens Axboe498d3aa22007-04-26 12:54:48 +02001274/*
1275 * Called when the cfqq no longer has requests pending, remove it from
1276 * the service tree.
1277 */
Jens Axboefebffd62008-01-28 13:19:43 +01001278static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Jens Axboe7b679132008-05-30 12:23:07 +02001280 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001281 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1282 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001284 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1285 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1286 cfqq->service_tree = NULL;
1287 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001288 if (cfqq->p_root) {
1289 rb_erase(&cfqq->p_node, cfqq->p_root);
1290 cfqq->p_root = NULL;
1291 }
Jens Axboed9e76202007-04-20 14:27:50 +02001292
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001293 cfq_group_service_tree_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 BUG_ON(!cfqd->busy_queues);
1295 cfqd->busy_queues--;
1296}
1297
1298/*
1299 * rb tree support functions
1300 */
Jens Axboefebffd62008-01-28 13:19:43 +01001301static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Jens Axboe5e705372006-07-13 12:39:25 +02001303 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001304 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Jens Axboeb4878f22005-10-20 16:42:29 +02001306 BUG_ON(!cfqq->queued[sync]);
1307 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Jens Axboe5e705372006-07-13 12:39:25 +02001309 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Vivek Goyalf04a6422009-12-03 12:59:40 -05001311 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1312 /*
1313 * Queue will be deleted from service tree when we actually
1314 * expire it later. Right now just remove it from prio tree
1315 * as it is empty.
1316 */
1317 if (cfqq->p_root) {
1318 rb_erase(&cfqq->p_node, cfqq->p_root);
1319 cfqq->p_root = NULL;
1320 }
1321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
1323
Jens Axboe5e705372006-07-13 12:39:25 +02001324static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Jens Axboe5e705372006-07-13 12:39:25 +02001326 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboea36e71f2009-04-15 12:15:11 +02001328 struct request *__alias, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Jens Axboe5380a102006-07-13 12:37:56 +02001330 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 /*
1333 * looks a little odd, but the first insert might return an alias.
1334 * if that happens, put the alias on the dispatch list
1335 */
Jens Axboe21183b02006-07-13 12:33:14 +02001336 while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL)
Jens Axboe5e705372006-07-13 12:39:25 +02001337 cfq_dispatch_insert(cfqd->queue, __alias);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001338
1339 if (!cfq_cfqq_on_rr(cfqq))
1340 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001341
1342 /*
1343 * check if this request is a better next-serve candidate
1344 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001345 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001346 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001347
1348 /*
1349 * adjust priority tree position, if ->next_rq changes
1350 */
1351 if (prev != cfqq->next_rq)
1352 cfq_prio_tree_add(cfqd, cfqq);
1353
Jens Axboe5044eed2007-04-25 11:53:48 +02001354 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Jens Axboefebffd62008-01-28 13:19:43 +01001357static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Jens Axboe5380a102006-07-13 12:37:56 +02001359 elv_rb_del(&cfqq->sort_list, rq);
1360 cfqq->queued[rq_is_sync(rq)]--;
Jens Axboe5e705372006-07-13 12:39:25 +02001361 cfq_add_rq_rb(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
Jens Axboe206dc692006-03-28 13:03:44 +02001364static struct request *
1365cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Jens Axboe206dc692006-03-28 13:03:44 +02001367 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001368 struct cfq_io_context *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001369 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Jens Axboe4ac845a2008-01-24 08:44:49 +01001371 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001372 if (!cic)
1373 return NULL;
1374
1375 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001376 if (cfqq) {
1377 sector_t sector = bio->bi_sector + bio_sectors(bio);
1378
Jens Axboe21183b02006-07-13 12:33:14 +02001379 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return NULL;
1383}
1384
Jens Axboe165125e2007-07-24 09:28:11 +02001385static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001386{
1387 struct cfq_data *cfqd = q->elevator->elevator_data;
1388
Jens Axboe5ad531d2009-07-03 12:57:48 +02001389 cfqd->rq_in_driver[rq_is_sync(rq)]++;
Jens Axboe7b679132008-05-30 12:23:07 +02001390 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Jens Axboe5ad531d2009-07-03 12:57:48 +02001391 rq_in_driver(cfqd));
Jens Axboe25776e32006-06-01 10:12:26 +02001392
Tejun Heo5b936292009-05-07 22:24:38 +09001393 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001394}
1395
Jens Axboe165125e2007-07-24 09:28:11 +02001396static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
Jens Axboe22e2c502005-06-27 10:55:12 +02001398 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5ad531d2009-07-03 12:57:48 +02001399 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Jens Axboe5ad531d2009-07-03 12:57:48 +02001401 WARN_ON(!cfqd->rq_in_driver[sync]);
1402 cfqd->rq_in_driver[sync]--;
Jens Axboe7b679132008-05-30 12:23:07 +02001403 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Jens Axboe5ad531d2009-07-03 12:57:48 +02001404 rq_in_driver(cfqd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
Jens Axboeb4878f22005-10-20 16:42:29 +02001407static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
Jens Axboe5e705372006-07-13 12:39:25 +02001409 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001410
Jens Axboe5e705372006-07-13 12:39:25 +02001411 if (cfqq->next_rq == rq)
1412 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Jens Axboeb4878f22005-10-20 16:42:29 +02001414 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001415 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001416
Aaron Carroll45333d52008-08-26 15:52:36 +02001417 cfqq->cfqd->rq_queued--;
Jens Axboe374f84a2006-07-23 01:42:19 +02001418 if (rq_is_meta(rq)) {
1419 WARN_ON(!cfqq->meta_pending);
1420 cfqq->meta_pending--;
1421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
Jens Axboe165125e2007-07-24 09:28:11 +02001424static int cfq_merge(struct request_queue *q, struct request **req,
1425 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
1427 struct cfq_data *cfqd = q->elevator->elevator_data;
1428 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Jens Axboe206dc692006-03-28 13:03:44 +02001430 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001431 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001432 *req = __rq;
1433 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435
1436 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438
Jens Axboe165125e2007-07-24 09:28:11 +02001439static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001440 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Jens Axboe21183b02006-07-13 12:33:14 +02001442 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001443 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Jens Axboe5e705372006-07-13 12:39:25 +02001445 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
1449static void
Jens Axboe165125e2007-07-24 09:28:11 +02001450cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 struct request *next)
1452{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001453 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001454 /*
1455 * reposition in fifo if next is older than rq
1456 */
1457 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001458 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001459 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001460 rq_set_fifo_time(rq, rq_fifo_time(next));
1461 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001462
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001463 if (cfqq->next_rq == next)
1464 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001465 cfq_remove_request(next);
Jens Axboe22e2c502005-06-27 10:55:12 +02001466}
1467
Jens Axboe165125e2007-07-24 09:28:11 +02001468static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001469 struct bio *bio)
1470{
1471 struct cfq_data *cfqd = q->elevator->elevator_data;
Vasily Tarasov91fac312007-04-25 12:29:51 +02001472 struct cfq_io_context *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001473 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001474
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001475 /* Deny merge if bio and rq don't belong to same cfq group */
1476 if ((RQ_CFQQ(rq))->cfqg != cfq_get_cfqg(cfqd, 0))
1477 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001478 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001479 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001480 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001481 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001482 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001483
1484 /*
Jens Axboe719d3402006-12-22 09:38:53 +01001485 * Lookup the cfqq that this bio will be queued with. Allow
1486 * merge only if rq is queued there.
Jens Axboeda775262006-12-20 11:04:12 +01001487 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01001488 cic = cfq_cic_lookup(cfqd, current->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001489 if (!cic)
Jens Axboea6151c32009-10-07 20:02:57 +02001490 return false;
Jens Axboe719d3402006-12-22 09:38:53 +01001491
Vasily Tarasov91fac312007-04-25 12:29:51 +02001492 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001493 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001494}
1495
Jens Axboefebffd62008-01-28 13:19:43 +01001496static void __cfq_set_active_queue(struct cfq_data *cfqd,
1497 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001498{
1499 if (cfqq) {
Jens Axboe7b679132008-05-30 12:23:07 +02001500 cfq_log_cfqq(cfqd, cfqq, "set_active");
Vivek Goyaldae739e2009-12-03 12:59:45 -05001501 cfqq->slice_start = 0;
1502 cfqq->dispatch_start = jiffies;
Vivek Goyalf75edf22009-12-03 12:59:53 -05001503 cfqq->allocated_slice = 0;
Jens Axboe22e2c502005-06-27 10:55:12 +02001504 cfqq->slice_end = 0;
Jens Axboe2f5cb732009-04-07 08:51:19 +02001505 cfqq->slice_dispatch = 0;
Vivek Goyal22084192009-12-03 12:59:49 -05001506 cfqq->nr_sectors = 0;
Jens Axboe2f5cb732009-04-07 08:51:19 +02001507
Jens Axboe2f5cb732009-04-07 08:51:19 +02001508 cfq_clear_cfqq_wait_request(cfqq);
Jens Axboeb0291952009-04-07 11:38:31 +02001509 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001510 cfq_clear_cfqq_must_alloc_slice(cfqq);
1511 cfq_clear_cfqq_fifo_expire(cfqq);
Jens Axboe44f7c162007-01-19 11:51:58 +11001512 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02001513
1514 del_timer(&cfqd->idle_slice_timer);
Jens Axboe22e2c502005-06-27 10:55:12 +02001515 }
1516
1517 cfqd->active_queue = cfqq;
1518}
1519
1520/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001521 * current cfqq expired its slice (or was too idle), select new one
1522 */
1523static void
1524__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001525 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001526{
Jens Axboe7b679132008-05-30 12:23:07 +02001527 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1528
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001529 if (cfq_cfqq_wait_request(cfqq))
1530 del_timer(&cfqd->idle_slice_timer);
1531
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001532 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05001533 cfq_clear_cfqq_wait_busy(cfqq);
1534 cfq_clear_cfqq_wait_busy_done(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001535
1536 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001537 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001538 */
Jens Axboe7b679132008-05-30 12:23:07 +02001539 if (timed_out && !cfq_cfqq_slice_new(cfqq)) {
Jens Axboec5b680f2007-01-19 11:56:49 +11001540 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001541 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1542 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001543
Vivek Goyaldae739e2009-12-03 12:59:45 -05001544 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
1545
Vivek Goyalf04a6422009-12-03 12:59:40 -05001546 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1547 cfq_del_cfqq_rr(cfqd, cfqq);
1548
Jens Axboeedd75ff2007-04-19 12:03:34 +02001549 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001550
1551 if (cfqq == cfqd->active_queue)
1552 cfqd->active_queue = NULL;
1553
Vivek Goyaldae739e2009-12-03 12:59:45 -05001554 if (&cfqq->cfqg->rb_node == cfqd->grp_service_tree.active)
1555 cfqd->grp_service_tree.active = NULL;
1556
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001557 if (cfqd->active_cic) {
1558 put_io_context(cfqd->active_cic->ioc);
1559 cfqd->active_cic = NULL;
1560 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001561}
1562
Jens Axboea6151c32009-10-07 20:02:57 +02001563static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001564{
1565 struct cfq_queue *cfqq = cfqd->active_queue;
1566
1567 if (cfqq)
Jens Axboe6084cdd2007-04-23 08:25:00 +02001568 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001569}
1570
Jens Axboe498d3aa22007-04-26 12:54:48 +02001571/*
1572 * Get next queue for service. Unless we have a queue preemption,
1573 * we'll simply select the first cfqq in the service tree.
1574 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001575static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001576{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001577 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001578 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
1579 cfqd->serving_type, cfqd);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001580
Vivek Goyalf04a6422009-12-03 12:59:40 -05001581 if (!cfqd->rq_queued)
1582 return NULL;
1583
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001584 /* There is nothing to dispatch */
1585 if (!service_tree)
1586 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001587 if (RB_EMPTY_ROOT(&service_tree->rb))
1588 return NULL;
1589 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001590}
1591
Vivek Goyalf04a6422009-12-03 12:59:40 -05001592static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1593{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001594 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05001595 struct cfq_queue *cfqq;
1596 int i, j;
1597 struct cfq_rb_root *st;
1598
1599 if (!cfqd->rq_queued)
1600 return NULL;
1601
Vivek Goyal25fb5162009-12-03 12:59:46 -05001602 cfqg = cfq_get_next_cfqg(cfqd);
1603 if (!cfqg)
1604 return NULL;
1605
Vivek Goyalf04a6422009-12-03 12:59:40 -05001606 for_each_cfqg_st(cfqg, i, j, st)
1607 if ((cfqq = cfq_rb_first(st)) != NULL)
1608 return cfqq;
1609 return NULL;
1610}
1611
Jens Axboe498d3aa22007-04-26 12:54:48 +02001612/*
1613 * Get and set a new active queue for service.
1614 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001615static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1616 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001617{
Jens Axboee00ef792009-11-04 08:54:55 +01001618 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001619 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001620
Jens Axboe22e2c502005-06-27 10:55:12 +02001621 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001622 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001623}
1624
Jens Axboed9e76202007-04-20 14:27:50 +02001625static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1626 struct request *rq)
1627{
Tejun Heo83096eb2009-05-07 22:24:39 +09001628 if (blk_rq_pos(rq) >= cfqd->last_position)
1629 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001630 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001631 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001632}
1633
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001634#define CFQQ_SEEK_THR 8 * 1024
1635#define CFQQ_SEEKY(cfqq) ((cfqq)->seek_mean > CFQQ_SEEK_THR)
Jeff Moyer04dc6e72009-04-21 07:31:56 +02001636
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001637static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
1638 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001639{
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001640 sector_t sdist = cfqq->seek_mean;
Jens Axboecaaa5f92006-06-16 11:23:00 +02001641
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001642 if (!sample_valid(cfqq->seek_samples))
1643 sdist = CFQQ_SEEK_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001644
Jeff Moyer04dc6e72009-04-21 07:31:56 +02001645 return cfq_dist_from_last(cfqd, rq) <= sdist;
Jens Axboe6d048f52007-04-25 12:44:27 +02001646}
1647
Jens Axboea36e71f2009-04-15 12:15:11 +02001648static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1649 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001650{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001651 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001652 struct rb_node *parent, *node;
1653 struct cfq_queue *__cfqq;
1654 sector_t sector = cfqd->last_position;
1655
1656 if (RB_EMPTY_ROOT(root))
1657 return NULL;
1658
1659 /*
1660 * First, if we find a request starting at the end of the last
1661 * request, choose it.
1662 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001663 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001664 if (__cfqq)
1665 return __cfqq;
1666
1667 /*
1668 * If the exact sector wasn't found, the parent of the NULL leaf
1669 * will contain the closest sector.
1670 */
1671 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001672 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001673 return __cfqq;
1674
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001675 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001676 node = rb_next(&__cfqq->p_node);
1677 else
1678 node = rb_prev(&__cfqq->p_node);
1679 if (!node)
1680 return NULL;
1681
1682 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001683 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001684 return __cfqq;
1685
1686 return NULL;
1687}
1688
1689/*
1690 * cfqd - obvious
1691 * cur_cfqq - passed in so that we don't decide that the current queue is
1692 * closely cooperating with itself.
1693 *
1694 * So, basically we're assuming that that cur_cfqq has dispatched at least
1695 * one request, and that cfqd->last_position reflects a position on the disk
1696 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1697 * assumption.
1698 */
1699static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001700 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001701{
1702 struct cfq_queue *cfqq;
1703
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001704 if (!cfq_cfqq_sync(cur_cfqq))
1705 return NULL;
1706 if (CFQQ_SEEKY(cur_cfqq))
1707 return NULL;
1708
Jens Axboea36e71f2009-04-15 12:15:11 +02001709 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001710 * We should notice if some of the queues are cooperating, eg
1711 * working closely on the same area of the disk. In that case,
1712 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001713 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001714 cfqq = cfqq_close(cfqd, cur_cfqq);
1715 if (!cfqq)
1716 return NULL;
1717
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001718 /* If new queue belongs to different cfq_group, don't choose it */
1719 if (cur_cfqq->cfqg != cfqq->cfqg)
1720 return NULL;
1721
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001722 /*
1723 * It only makes sense to merge sync queues.
1724 */
1725 if (!cfq_cfqq_sync(cfqq))
1726 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001727 if (CFQQ_SEEKY(cfqq))
1728 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001729
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001730 /*
1731 * Do not merge queues of different priority classes
1732 */
1733 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1734 return NULL;
1735
Jens Axboea36e71f2009-04-15 12:15:11 +02001736 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001737}
1738
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001739/*
1740 * Determine whether we should enforce idle window for this queue.
1741 */
1742
1743static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1744{
1745 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001746 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001747
Vivek Goyalf04a6422009-12-03 12:59:40 -05001748 BUG_ON(!service_tree);
1749 BUG_ON(!service_tree->count);
1750
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001751 /* We never do for idle class queues. */
1752 if (prio == IDLE_WORKLOAD)
1753 return false;
1754
1755 /* We do for queues that were marked with idle window flag. */
1756 if (cfq_cfqq_idle_window(cfqq))
1757 return true;
1758
1759 /*
1760 * Otherwise, we do only if they are the last ones
1761 * in their service tree.
1762 */
Vivek Goyalf04a6422009-12-03 12:59:40 -05001763 return service_tree->count == 1;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001764}
1765
Jens Axboe6d048f52007-04-25 12:44:27 +02001766static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001767{
Jens Axboe17926692007-01-19 11:59:30 +11001768 struct cfq_queue *cfqq = cfqd->active_queue;
Jens Axboe206dc692006-03-28 13:03:44 +02001769 struct cfq_io_context *cic;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001770 unsigned long sl;
1771
Jens Axboea68bbddba2008-09-24 13:03:33 +02001772 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001773 * SSD device without seek penalty, disable idling. But only do so
1774 * for devices that support queuing, otherwise we still have a problem
1775 * with sync vs async workloads.
Jens Axboea68bbddba2008-09-24 13:03:33 +02001776 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02001777 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbddba2008-09-24 13:03:33 +02001778 return;
1779
Jens Axboedd67d052006-06-21 09:36:18 +02001780 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02001781 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02001782
1783 /*
1784 * idle is disabled, either manually or by past process history
1785 */
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001786 if (!cfqd->cfq_slice_idle || !cfq_should_idle(cfqd, cfqq))
Jens Axboe6d048f52007-04-25 12:44:27 +02001787 return;
1788
Jens Axboe22e2c502005-06-27 10:55:12 +02001789 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001790 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02001791 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01001792 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02001793 return;
1794
1795 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02001796 * task has exited, don't wait
1797 */
Jens Axboe206dc692006-03-28 13:03:44 +02001798 cic = cfqd->active_cic;
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01001799 if (!cic || !atomic_read(&cic->ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02001800 return;
1801
Corrado Zoccolo355b6592009-10-08 08:43:32 +02001802 /*
1803 * If our average think time is larger than the remaining time
1804 * slice, then don't idle. This avoids overrunning the allotted
1805 * time slice.
1806 */
1807 if (sample_valid(cic->ttime_samples) &&
1808 (cfqq->slice_end - jiffies < cic->ttime_mean))
1809 return;
1810
Jens Axboe3b181522005-06-27 10:56:24 +02001811 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001812
Jens Axboe6d048f52007-04-25 12:44:27 +02001813 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02001814
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001815 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Jens Axboe9481ffd2009-04-15 12:14:13 +02001816 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
Jens Axboe498d3aa22007-04-26 12:54:48 +02001819/*
1820 * Move request from internal lists to the request queue dispatch list.
1821 */
Jens Axboe165125e2007-07-24 09:28:11 +02001822static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
Jens Axboe3ed9a292007-04-23 08:33:33 +02001824 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02001825 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001826
Jens Axboe7b679132008-05-30 12:23:07 +02001827 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
1828
Jeff Moyer06d21882009-09-11 17:08:59 +02001829 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02001830 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001831 cfqq->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02001832 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02001833
1834 if (cfq_cfqq_sync(cfqq))
1835 cfqd->sync_flight++;
Vivek Goyal22084192009-12-03 12:59:49 -05001836 cfqq->nr_sectors += blk_rq_sectors(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837}
1838
1839/*
1840 * return expired entry, or NULL to just start from scratch in rbtree
1841 */
Jens Axboefebffd62008-01-28 13:19:43 +01001842static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Jens Axboe30996f42009-10-05 11:03:39 +02001844 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Jens Axboe3b181522005-06-27 10:56:24 +02001846 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11001848
1849 cfq_mark_cfqq_fifo_expire(cfqq);
1850
Jens Axboe89850f72006-07-22 16:48:31 +02001851 if (list_empty(&cfqq->fifo))
1852 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Jens Axboe89850f72006-07-22 16:48:31 +02001854 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02001855 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02001856 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Jens Axboe30996f42009-10-05 11:03:39 +02001858 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02001859 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
Jens Axboe22e2c502005-06-27 10:55:12 +02001862static inline int
1863cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1864{
1865 const int base_rq = cfqd->cfq_slice_async_rq;
1866
1867 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
1868
1869 return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio));
1870}
1871
1872/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001873 * Must be called with the queue_lock held.
1874 */
1875static int cfqq_process_refs(struct cfq_queue *cfqq)
1876{
1877 int process_refs, io_refs;
1878
1879 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
1880 process_refs = atomic_read(&cfqq->ref) - io_refs;
1881 BUG_ON(process_refs < 0);
1882 return process_refs;
1883}
1884
1885static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
1886{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001887 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001888 struct cfq_queue *__cfqq;
1889
1890 /* Avoid a circular list and skip interim queue merges */
1891 while ((__cfqq = new_cfqq->new_cfqq)) {
1892 if (__cfqq == cfqq)
1893 return;
1894 new_cfqq = __cfqq;
1895 }
1896
1897 process_refs = cfqq_process_refs(cfqq);
1898 /*
1899 * If the process for the cfqq has gone away, there is no
1900 * sense in merging the queues.
1901 */
1902 if (process_refs == 0)
1903 return;
1904
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001905 /*
1906 * Merge in the direction of the lesser amount of work.
1907 */
1908 new_process_refs = cfqq_process_refs(new_cfqq);
1909 if (new_process_refs >= process_refs) {
1910 cfqq->new_cfqq = new_cfqq;
1911 atomic_add(process_refs, &new_cfqq->ref);
1912 } else {
1913 new_cfqq->new_cfqq = cfqq;
1914 atomic_add(new_process_refs, &cfqq->ref);
1915 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001916}
1917
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001918static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
1919 struct cfq_group *cfqg, enum wl_prio_t prio,
1920 bool prio_changed)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001921{
1922 struct cfq_queue *queue;
1923 int i;
1924 bool key_valid = false;
1925 unsigned long lowest_key = 0;
1926 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
1927
1928 if (prio_changed) {
1929 /*
1930 * When priorities switched, we prefer starting
1931 * from SYNC_NOIDLE (first choice), or just SYNC
1932 * over ASYNC
1933 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001934 if (service_tree_for(cfqg, prio, cur_best, cfqd)->count)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001935 return cur_best;
1936 cur_best = SYNC_WORKLOAD;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001937 if (service_tree_for(cfqg, prio, cur_best, cfqd)->count)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001938 return cur_best;
1939
1940 return ASYNC_WORKLOAD;
1941 }
1942
1943 for (i = 0; i < 3; ++i) {
1944 /* otherwise, select the one with lowest rb_key */
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001945 queue = cfq_rb_first(service_tree_for(cfqg, prio, i, cfqd));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001946 if (queue &&
1947 (!key_valid || time_before(queue->rb_key, lowest_key))) {
1948 lowest_key = queue->rb_key;
1949 cur_best = i;
1950 key_valid = true;
1951 }
1952 }
1953
1954 return cur_best;
1955}
1956
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001957static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001958{
1959 enum wl_prio_t previous_prio = cfqd->serving_prio;
1960 bool prio_changed;
1961 unsigned slice;
1962 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001963 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001964 unsigned group_slice;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001965
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001966 if (!cfqg) {
1967 cfqd->serving_prio = IDLE_WORKLOAD;
1968 cfqd->workload_expires = jiffies + 1;
1969 return;
1970 }
1971
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001972 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001973 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001974 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05001975 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001976 cfqd->serving_prio = BE_WORKLOAD;
1977 else {
1978 cfqd->serving_prio = IDLE_WORKLOAD;
1979 cfqd->workload_expires = jiffies + 1;
1980 return;
1981 }
1982
1983 /*
1984 * For RT and BE, we have to choose also the type
1985 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
1986 * expiration time
1987 */
1988 prio_changed = (cfqd->serving_prio != previous_prio);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001989 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type,
1990 cfqd);
1991 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001992
1993 /*
1994 * If priority didn't change, check workload expiration,
1995 * and that we still have other queues ready
1996 */
1997 if (!prio_changed && count &&
1998 !time_after(jiffies, cfqd->workload_expires))
1999 return;
2000
2001 /* otherwise select new workload type */
2002 cfqd->serving_type =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002003 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio, prio_changed);
2004 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type,
2005 cfqd);
2006 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002007
2008 /*
2009 * the workload slice is computed as a fraction of target latency
2010 * proportional to the number of queues in that workload, over
2011 * all the queues in the same priority class
2012 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002013 group_slice = cfq_group_slice(cfqd, cfqg);
2014
2015 slice = group_slice * count /
2016 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2017 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002018
2019 if (cfqd->serving_type == ASYNC_WORKLOAD)
2020 /* async workload slice is scaled down according to
2021 * the sync/async slice ratio. */
2022 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
2023 else
2024 /* sync workload slice is at least 2 * cfq_slice_idle */
2025 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2026
2027 slice = max_t(unsigned, slice, CFQ_MIN_TT);
2028 cfqd->workload_expires = jiffies + slice;
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002029 cfqd->noidle_tree_requires_idle = false;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002030}
2031
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002032static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2033{
2034 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002035 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002036
2037 if (RB_EMPTY_ROOT(&st->rb))
2038 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002039 cfqg = cfq_rb_first_group(st);
2040 st->active = &cfqg->rb_node;
2041 update_min_vdisktime(st);
2042 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002043}
2044
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002045static void cfq_choose_cfqg(struct cfq_data *cfqd)
2046{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002047 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2048
2049 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002050
2051 /* Restore the workload type data */
2052 if (cfqg->saved_workload_slice) {
2053 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2054 cfqd->serving_type = cfqg->saved_workload;
2055 cfqd->serving_prio = cfqg->saved_serving_prio;
2056 }
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002057 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002058}
2059
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002060/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02002061 * Select a queue for service. If we have a current active queue,
2062 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02002063 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002064static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002065{
Jens Axboea36e71f2009-04-15 12:15:11 +02002066 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002067
2068 cfqq = cfqd->active_queue;
2069 if (!cfqq)
2070 goto new_queue;
2071
Vivek Goyalf04a6422009-12-03 12:59:40 -05002072 if (!cfqd->rq_queued)
2073 return NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002074 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002075 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02002076 */
Vivek Goyalf75edf22009-12-03 12:59:53 -05002077 if ((cfq_slice_used(cfqq) || cfq_cfqq_wait_busy_done(cfqq))
2078 && !cfq_cfqq_must_dispatch(cfqq))
Jens Axboe3b181522005-06-27 10:56:24 +02002079 goto expire;
Jens Axboe22e2c502005-06-27 10:55:12 +02002080
2081 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002082 * The active queue has requests and isn't expired, allow it to
2083 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02002084 */
Jens Axboedd67d052006-06-21 09:36:18 +02002085 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002086 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02002087
2088 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02002089 * If another queue has a request waiting within our mean seek
2090 * distance, let it run. The expire code will check for close
2091 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002092 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02002093 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002094 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002095 if (new_cfqq) {
2096 if (!cfqq->new_cfqq)
2097 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02002098 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002099 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002100
2101 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002102 * No requests pending. If the active queue still has requests in
2103 * flight or is idling for a new request, allow either of these
2104 * conditions to happen (or time out) before selecting a new queue.
2105 */
Jens Axboecc197472007-04-20 20:45:39 +02002106 if (timer_pending(&cfqd->idle_slice_timer) ||
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002107 (cfqq->dispatched && cfq_should_idle(cfqd, cfqq))) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02002108 cfqq = NULL;
2109 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002110 }
2111
Jens Axboe3b181522005-06-27 10:56:24 +02002112expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +02002113 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02002114new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002115 /*
2116 * Current queue expired. Check if we have to switch to a new
2117 * service tree
2118 */
2119 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002120 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002121
Jens Axboea36e71f2009-04-15 12:15:11 +02002122 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002123keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02002124 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002125}
2126
Jens Axboefebffd62008-01-28 13:19:43 +01002127static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02002128{
2129 int dispatched = 0;
2130
2131 while (cfqq->next_rq) {
2132 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2133 dispatched++;
2134 }
2135
2136 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05002137
2138 /* By default cfqq is not expired if it is empty. Do it explicitly */
2139 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02002140 return dispatched;
2141}
2142
Jens Axboe498d3aa22007-04-26 12:54:48 +02002143/*
2144 * Drain our current requests. Used for barriers and when switching
2145 * io schedulers on-the-fly.
2146 */
Jens Axboed9e76202007-04-20 14:27:50 +02002147static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002148{
Jens Axboe08717142008-01-28 11:38:15 +01002149 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002150 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002151
Vivek Goyalf04a6422009-12-03 12:59:40 -05002152 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL)
2153 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002154
Jens Axboe6084cdd2007-04-23 08:25:00 +02002155 cfq_slice_expired(cfqd, 0);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002156 BUG_ON(cfqd->busy_queues);
2157
Jeff Moyer6923715a2009-06-12 15:29:30 +02002158 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002159 return dispatched;
2160}
2161
Jens Axboe0b182d62009-10-06 20:49:37 +02002162static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02002163{
Jens Axboe2f5cb732009-04-07 08:51:19 +02002164 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Jens Axboe2f5cb732009-04-07 08:51:19 +02002166 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02002167 * Drain async requests before we start sync IO
2168 */
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002169 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_driver[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02002170 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02002171
2172 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002173 * If this is an async queue and we have sync IO in flight, let it wait
2174 */
2175 if (cfqd->sync_flight && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002176 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002177
2178 max_dispatch = cfqd->cfq_quantum;
2179 if (cfq_class_idle(cfqq))
2180 max_dispatch = 1;
2181
2182 /*
2183 * Does this cfqq already have too much IO in flight?
2184 */
2185 if (cfqq->dispatched >= max_dispatch) {
2186 /*
2187 * idle queue must always only have a single IO in flight
2188 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02002189 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002190 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02002191
Jens Axboe2f5cb732009-04-07 08:51:19 +02002192 /*
2193 * We have other queues, don't allow more IO from this one
2194 */
2195 if (cfqd->busy_queues > 1)
Jens Axboe0b182d62009-10-06 20:49:37 +02002196 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11002197
Jens Axboe2f5cb732009-04-07 08:51:19 +02002198 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01002199 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02002200 */
Shaohua Li474b18c2009-12-03 12:58:05 +01002201 max_dispatch = -1;
Jens Axboe8e296752009-10-03 16:26:03 +02002202 }
2203
2204 /*
2205 * Async queues must wait a bit before being allowed dispatch.
2206 * We also ramp up the dispatch depth gradually for async IO,
2207 * based on the last sync IO we serviced
2208 */
Jens Axboe963b72f2009-10-03 19:42:18 +02002209 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Jens Axboe8e296752009-10-03 16:26:03 +02002210 unsigned long last_sync = jiffies - cfqd->last_end_sync_rq;
2211 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02002212
Jens Axboe61f0c1d2009-10-03 19:46:03 +02002213 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02002214 if (!depth && !cfqq->dispatched)
2215 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02002216 if (depth < max_dispatch)
2217 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 }
2219
Jens Axboe0b182d62009-10-06 20:49:37 +02002220 /*
2221 * If we're below the current max, allow a dispatch
2222 */
2223 return cfqq->dispatched < max_dispatch;
2224}
2225
2226/*
2227 * Dispatch a request from cfqq, moving them to the request queue
2228 * dispatch list.
2229 */
2230static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2231{
2232 struct request *rq;
2233
2234 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2235
2236 if (!cfq_may_dispatch(cfqd, cfqq))
2237 return false;
2238
2239 /*
2240 * follow expired path, else get first next available
2241 */
2242 rq = cfq_check_fifo(cfqq);
2243 if (!rq)
2244 rq = cfqq->next_rq;
2245
2246 /*
2247 * insert request into driver dispatch list
2248 */
2249 cfq_dispatch_insert(cfqd->queue, rq);
2250
2251 if (!cfqd->active_cic) {
2252 struct cfq_io_context *cic = RQ_CIC(rq);
2253
2254 atomic_long_inc(&cic->ioc->refcount);
2255 cfqd->active_cic = cic;
2256 }
2257
2258 return true;
2259}
2260
2261/*
2262 * Find the cfqq that we need to service and move a request from that to the
2263 * dispatch list
2264 */
2265static int cfq_dispatch_requests(struct request_queue *q, int force)
2266{
2267 struct cfq_data *cfqd = q->elevator->elevator_data;
2268 struct cfq_queue *cfqq;
2269
2270 if (!cfqd->busy_queues)
2271 return 0;
2272
2273 if (unlikely(force))
2274 return cfq_forced_dispatch(cfqd);
2275
2276 cfqq = cfq_select_queue(cfqd);
2277 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002278 return 0;
2279
Jens Axboe2f5cb732009-04-07 08:51:19 +02002280 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002281 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002282 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002283 if (!cfq_dispatch_request(cfqd, cfqq))
2284 return 0;
2285
Jens Axboe2f5cb732009-04-07 08:51:19 +02002286 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002287 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002288
2289 /*
2290 * expire an async queue immediately if it has used up its slice. idle
2291 * queue always expire after 1 dispatch round.
2292 */
2293 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2294 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2295 cfq_class_idle(cfqq))) {
2296 cfqq->slice_end = jiffies + 1;
2297 cfq_slice_expired(cfqd, 0);
2298 }
2299
Shan Weib217a902009-09-01 10:06:42 +02002300 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002301 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302}
2303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304/*
Jens Axboe5e705372006-07-13 12:39:25 +02002305 * task holds one reference to the queue, dropped when task exits. each rq
2306 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05002308 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 * queue lock must be held here.
2310 */
2311static void cfq_put_queue(struct cfq_queue *cfqq)
2312{
Jens Axboe22e2c502005-06-27 10:55:12 +02002313 struct cfq_data *cfqd = cfqq->cfqd;
Vivek Goyalb1c35762009-12-03 12:59:47 -05002314 struct cfq_group *cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02002315
2316 BUG_ON(atomic_read(&cfqq->ref) <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 if (!atomic_dec_and_test(&cfqq->ref))
2319 return;
2320
Jens Axboe7b679132008-05-30 12:23:07 +02002321 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002323 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002324 cfqg = cfqq->cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002326 if (unlikely(cfqd->active_queue == cfqq)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02002327 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002328 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002329 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002330
Vivek Goyalf04a6422009-12-03 12:59:40 -05002331 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 kmem_cache_free(cfq_pool, cfqq);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002333 cfq_put_cfqg(cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334}
2335
Jens Axboed6de8be2008-05-28 14:46:59 +02002336/*
2337 * Must always be called with the rcu_read_lock() held
2338 */
Jens Axboe07416d22008-05-07 09:17:12 +02002339static void
2340__call_for_each_cic(struct io_context *ioc,
2341 void (*func)(struct io_context *, struct cfq_io_context *))
2342{
2343 struct cfq_io_context *cic;
2344 struct hlist_node *n;
2345
2346 hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list)
2347 func(ioc, cic);
2348}
2349
Jens Axboe4ac845a2008-01-24 08:44:49 +01002350/*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002351 * Call func for each cic attached to this ioc.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002352 */
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002353static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002354call_for_each_cic(struct io_context *ioc,
2355 void (*func)(struct io_context *, struct cfq_io_context *))
2356{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002357 rcu_read_lock();
Jens Axboe07416d22008-05-07 09:17:12 +02002358 __call_for_each_cic(ioc, func);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002359 rcu_read_unlock();
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002360}
Jens Axboe4ac845a2008-01-24 08:44:49 +01002361
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002362static void cfq_cic_free_rcu(struct rcu_head *head)
2363{
2364 struct cfq_io_context *cic;
2365
2366 cic = container_of(head, struct cfq_io_context, rcu_head);
2367
2368 kmem_cache_free(cfq_ioc_pool, cic);
Tejun Heo245b2e72009-06-24 15:13:48 +09002369 elv_ioc_count_dec(cfq_ioc_count);
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002370
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002371 if (ioc_gone) {
2372 /*
2373 * CFQ scheduler is exiting, grab exit lock and check
2374 * the pending io context count. If it hits zero,
2375 * complete ioc_gone and set it back to NULL
2376 */
2377 spin_lock(&ioc_gone_lock);
Tejun Heo245b2e72009-06-24 15:13:48 +09002378 if (ioc_gone && !elv_ioc_count_read(cfq_ioc_count)) {
Jens Axboe9a11b4e2008-05-29 09:32:08 +02002379 complete(ioc_gone);
2380 ioc_gone = NULL;
2381 }
2382 spin_unlock(&ioc_gone_lock);
2383 }
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002384}
2385
2386static void cfq_cic_free(struct cfq_io_context *cic)
2387{
2388 call_rcu(&cic->rcu_head, cfq_cic_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002389}
2390
2391static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic)
2392{
2393 unsigned long flags;
2394
2395 BUG_ON(!cic->dead_key);
2396
2397 spin_lock_irqsave(&ioc->lock, flags);
2398 radix_tree_delete(&ioc->radix_root, cic->dead_key);
Jens Axboeffc4e752008-02-19 10:02:29 +01002399 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002400 spin_unlock_irqrestore(&ioc->lock, flags);
2401
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002402 cfq_cic_free(cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002403}
2404
Jens Axboed6de8be2008-05-28 14:46:59 +02002405/*
2406 * Must be called with rcu_read_lock() held or preemption otherwise disabled.
2407 * Only two callers of this - ->dtor() which is called with the rcu_read_lock(),
2408 * and ->trim() which is called with the task lock held
2409 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002410static void cfq_free_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002412 /*
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002413 * ioc->refcount is zero here, or we are called from elv_unregister(),
2414 * so no more cic's are allowed to be linked into this ioc. So it
2415 * should be ok to iterate over the known list, we will see all cic's
2416 * since no new ones are added.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002417 */
Jens Axboe07416d22008-05-07 09:17:12 +02002418 __call_for_each_cic(ioc, cic_free_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419}
2420
Jens Axboe89850f72006-07-22 16:48:31 +02002421static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2422{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002423 struct cfq_queue *__cfqq, *next;
2424
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002425 if (unlikely(cfqq == cfqd->active_queue)) {
Jens Axboe6084cdd2007-04-23 08:25:00 +02002426 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002427 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002428 }
Jens Axboe89850f72006-07-22 16:48:31 +02002429
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002430 /*
2431 * If this queue was scheduled to merge with another queue, be
2432 * sure to drop the reference taken on that queue (and others in
2433 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2434 */
2435 __cfqq = cfqq->new_cfqq;
2436 while (__cfqq) {
2437 if (__cfqq == cfqq) {
2438 WARN(1, "cfqq->new_cfqq loop detected\n");
2439 break;
2440 }
2441 next = __cfqq->new_cfqq;
2442 cfq_put_queue(__cfqq);
2443 __cfqq = next;
2444 }
2445
Jens Axboe89850f72006-07-22 16:48:31 +02002446 cfq_put_queue(cfqq);
2447}
2448
2449static void __cfq_exit_single_io_context(struct cfq_data *cfqd,
2450 struct cfq_io_context *cic)
2451{
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002452 struct io_context *ioc = cic->ioc;
2453
Jens Axboefc463792006-08-29 09:05:44 +02002454 list_del_init(&cic->queue_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002455
2456 /*
2457 * Make sure key == NULL is seen for dead queues
2458 */
Jens Axboefc463792006-08-29 09:05:44 +02002459 smp_wmb();
Jens Axboe4ac845a2008-01-24 08:44:49 +01002460 cic->dead_key = (unsigned long) cic->key;
Jens Axboefc463792006-08-29 09:05:44 +02002461 cic->key = NULL;
2462
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002463 if (ioc->ioc_data == cic)
2464 rcu_assign_pointer(ioc->ioc_data, NULL);
2465
Jens Axboeff6657c2009-04-08 10:58:57 +02002466 if (cic->cfqq[BLK_RW_ASYNC]) {
2467 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2468 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002469 }
2470
Jens Axboeff6657c2009-04-08 10:58:57 +02002471 if (cic->cfqq[BLK_RW_SYNC]) {
2472 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2473 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002474 }
Jens Axboe89850f72006-07-22 16:48:31 +02002475}
2476
Jens Axboe4ac845a2008-01-24 08:44:49 +01002477static void cfq_exit_single_io_context(struct io_context *ioc,
2478 struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002479{
Al Viro478a82b2006-03-18 13:25:24 -05002480 struct cfq_data *cfqd = cic->key;
Jens Axboe22e2c502005-06-27 10:55:12 +02002481
Jens Axboe89850f72006-07-22 16:48:31 +02002482 if (cfqd) {
Jens Axboe165125e2007-07-24 09:28:11 +02002483 struct request_queue *q = cfqd->queue;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002484 unsigned long flags;
Jens Axboe22e2c502005-06-27 10:55:12 +02002485
Jens Axboe4ac845a2008-01-24 08:44:49 +01002486 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboe62c1fe92008-12-15 21:19:25 +01002487
2488 /*
2489 * Ensure we get a fresh copy of the ->key to prevent
2490 * race between exiting task and queue
2491 */
2492 smp_read_barrier_depends();
2493 if (cic->key)
2494 __cfq_exit_single_io_context(cfqd, cic);
2495
Jens Axboe4ac845a2008-01-24 08:44:49 +01002496 spin_unlock_irqrestore(q->queue_lock, flags);
Al Viro12a05732006-03-18 13:38:01 -05002497 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002498}
2499
Jens Axboe498d3aa22007-04-26 12:54:48 +02002500/*
2501 * The process that ioc belongs to has exited, we need to clean up
2502 * and put the internal structures we have that belongs to that process.
2503 */
Jens Axboee2d74ac2006-03-28 08:59:01 +02002504static void cfq_exit_io_context(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002506 call_for_each_cic(ioc, cfq_exit_single_io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507}
2508
Jens Axboe22e2c502005-06-27 10:55:12 +02002509static struct cfq_io_context *
Al Viro8267e262005-10-21 03:20:53 -04002510cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
Jens Axboeb5deef92006-07-19 23:39:40 +02002512 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Christoph Lameter94f60302007-07-17 04:03:29 -07002514 cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO,
2515 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 if (cic) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002517 cic->last_end_request = jiffies;
Jens Axboe553698f2006-06-14 19:11:57 +02002518 INIT_LIST_HEAD(&cic->queue_list);
Jens Axboeffc4e752008-02-19 10:02:29 +01002519 INIT_HLIST_NODE(&cic->cic_list);
Jens Axboe22e2c502005-06-27 10:55:12 +02002520 cic->dtor = cfq_free_io_context;
2521 cic->exit = cfq_exit_io_context;
Tejun Heo245b2e72009-06-24 15:13:48 +09002522 elv_ioc_count_inc(cfq_ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 }
2524
2525 return cic;
2526}
2527
Jens Axboefd0928d2008-01-24 08:52:45 +01002528static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02002529{
2530 struct task_struct *tsk = current;
2531 int ioprio_class;
2532
Jens Axboe3b181522005-06-27 10:56:24 +02002533 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002534 return;
2535
Jens Axboefd0928d2008-01-24 08:52:45 +01002536 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002537 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002538 default:
2539 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2540 case IOPRIO_CLASS_NONE:
2541 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002542 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002543 */
2544 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002545 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002546 break;
2547 case IOPRIO_CLASS_RT:
2548 cfqq->ioprio = task_ioprio(ioc);
2549 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2550 break;
2551 case IOPRIO_CLASS_BE:
2552 cfqq->ioprio = task_ioprio(ioc);
2553 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2554 break;
2555 case IOPRIO_CLASS_IDLE:
2556 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2557 cfqq->ioprio = 7;
2558 cfq_clear_cfqq_idle_window(cfqq);
2559 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002560 }
2561
2562 /*
2563 * keep track of original prio settings in case we have to temporarily
2564 * elevate the priority of this queue
2565 */
2566 cfqq->org_ioprio = cfqq->ioprio;
2567 cfqq->org_ioprio_class = cfqq->ioprio_class;
Jens Axboe3b181522005-06-27 10:56:24 +02002568 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002569}
2570
Jens Axboefebffd62008-01-28 13:19:43 +01002571static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002572{
Al Viro478a82b2006-03-18 13:25:24 -05002573 struct cfq_data *cfqd = cic->key;
2574 struct cfq_queue *cfqq;
Jens Axboec1b707d2006-10-30 19:54:23 +01002575 unsigned long flags;
Jens Axboe35e60772006-06-14 09:10:45 +02002576
Jens Axboecaaa5f92006-06-16 11:23:00 +02002577 if (unlikely(!cfqd))
2578 return;
2579
Jens Axboec1b707d2006-10-30 19:54:23 +01002580 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002581
Jens Axboeff6657c2009-04-08 10:58:57 +02002582 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002583 if (cfqq) {
2584 struct cfq_queue *new_cfqq;
Jens Axboeff6657c2009-04-08 10:58:57 +02002585 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc,
2586 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002587 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002588 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002589 cfq_put_queue(cfqq);
2590 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002591 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002592
Jens Axboeff6657c2009-04-08 10:58:57 +02002593 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002594 if (cfqq)
2595 cfq_mark_cfqq_prio_changed(cfqq);
2596
Jens Axboec1b707d2006-10-30 19:54:23 +01002597 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02002598}
2599
Jens Axboefc463792006-08-29 09:05:44 +02002600static void cfq_ioc_set_ioprio(struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002602 call_for_each_cic(ioc, changed_ioprio);
Jens Axboefc463792006-08-29 09:05:44 +02002603 ioc->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
2605
Jens Axboed5036d72009-06-26 10:44:34 +02002606static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002607 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002608{
2609 RB_CLEAR_NODE(&cfqq->rb_node);
2610 RB_CLEAR_NODE(&cfqq->p_node);
2611 INIT_LIST_HEAD(&cfqq->fifo);
2612
2613 atomic_set(&cfqq->ref, 0);
2614 cfqq->cfqd = cfqd;
2615
2616 cfq_mark_cfqq_prio_changed(cfqq);
2617
2618 if (is_sync) {
2619 if (!cfq_class_idle(cfqq))
2620 cfq_mark_cfqq_idle_window(cfqq);
2621 cfq_mark_cfqq_sync(cfqq);
2622 }
2623 cfqq->pid = pid;
2624}
2625
Vivek Goyal246103332009-12-03 12:59:51 -05002626#ifdef CONFIG_CFQ_GROUP_IOSCHED
2627static void changed_cgroup(struct io_context *ioc, struct cfq_io_context *cic)
2628{
2629 struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1);
2630 struct cfq_data *cfqd = cic->key;
2631 unsigned long flags;
2632 struct request_queue *q;
2633
2634 if (unlikely(!cfqd))
2635 return;
2636
2637 q = cfqd->queue;
2638
2639 spin_lock_irqsave(q->queue_lock, flags);
2640
2641 if (sync_cfqq) {
2642 /*
2643 * Drop reference to sync queue. A new sync queue will be
2644 * assigned in new group upon arrival of a fresh request.
2645 */
2646 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2647 cic_set_cfqq(cic, NULL, 1);
2648 cfq_put_queue(sync_cfqq);
2649 }
2650
2651 spin_unlock_irqrestore(q->queue_lock, flags);
2652}
2653
2654static void cfq_ioc_set_cgroup(struct io_context *ioc)
2655{
2656 call_for_each_cic(ioc, changed_cgroup);
2657 ioc->cgroup_changed = 0;
2658}
2659#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002662cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01002663 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 struct cfq_queue *cfqq, *new_cfqq = NULL;
Vasily Tarasov91fac312007-04-25 12:29:51 +02002666 struct cfq_io_context *cic;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002667 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
2669retry:
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002670 cfqg = cfq_get_cfqg(cfqd, 1);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002671 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002672 /* cic always exists here */
2673 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Jens Axboe6118b702009-06-30 09:34:12 +02002675 /*
2676 * Always try a new alloc if we fell back to the OOM cfqq
2677 * originally, since it should just be a temporary situation.
2678 */
2679 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2680 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 if (new_cfqq) {
2682 cfqq = new_cfqq;
2683 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002684 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002686 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002687 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002688 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002690 if (new_cfqq)
2691 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002692 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002693 cfqq = kmem_cache_alloc_node(cfq_pool,
2694 gfp_mask | __GFP_ZERO,
2695 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Jens Axboe6118b702009-06-30 09:34:12 +02002698 if (cfqq) {
2699 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2700 cfq_init_prio_data(cfqq, ioc);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002701 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002702 cfq_log_cfqq(cfqd, cfqq, "alloced");
2703 } else
2704 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 }
2706
2707 if (new_cfqq)
2708 kmem_cache_free(cfq_pool, new_cfqq);
2709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 return cfqq;
2711}
2712
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002713static struct cfq_queue **
2714cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2715{
Jens Axboefe094d92008-01-31 13:08:54 +01002716 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002717 case IOPRIO_CLASS_RT:
2718 return &cfqd->async_cfqq[0][ioprio];
2719 case IOPRIO_CLASS_BE:
2720 return &cfqd->async_cfqq[1][ioprio];
2721 case IOPRIO_CLASS_IDLE:
2722 return &cfqd->async_idle_cfqq;
2723 default:
2724 BUG();
2725 }
2726}
2727
Jens Axboe15c31be2007-07-10 13:43:25 +02002728static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002729cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02002730 gfp_t gfp_mask)
2731{
Jens Axboefd0928d2008-01-24 08:52:45 +01002732 const int ioprio = task_ioprio(ioc);
2733 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002734 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002735 struct cfq_queue *cfqq = NULL;
2736
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002737 if (!is_sync) {
2738 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2739 cfqq = *async_cfqq;
2740 }
2741
Jens Axboe6118b702009-06-30 09:34:12 +02002742 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01002743 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002744
2745 /*
2746 * pin the queue now that it's allocated, scheduler exit will prune it
2747 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002748 if (!is_sync && !(*async_cfqq)) {
Jens Axboe15c31be2007-07-10 13:43:25 +02002749 atomic_inc(&cfqq->ref);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002750 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002751 }
2752
2753 atomic_inc(&cfqq->ref);
2754 return cfqq;
2755}
2756
Jens Axboe498d3aa22007-04-26 12:54:48 +02002757/*
2758 * We drop cfq io contexts lazily, so we may find a dead one.
2759 */
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002760static void
Jens Axboe4ac845a2008-01-24 08:44:49 +01002761cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc,
2762 struct cfq_io_context *cic)
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002763{
Jens Axboe4ac845a2008-01-24 08:44:49 +01002764 unsigned long flags;
2765
Jens Axboefc463792006-08-29 09:05:44 +02002766 WARN_ON(!list_empty(&cic->queue_list));
Jens Axboe597bc482007-04-24 21:23:53 +02002767
Jens Axboe4ac845a2008-01-24 08:44:49 +01002768 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe597bc482007-04-24 21:23:53 +02002769
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002770 BUG_ON(ioc->ioc_data == cic);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002771
2772 radix_tree_delete(&ioc->radix_root, (unsigned long) cfqd);
Jens Axboeffc4e752008-02-19 10:02:29 +01002773 hlist_del_rcu(&cic->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002774 spin_unlock_irqrestore(&ioc->lock, flags);
2775
2776 cfq_cic_free(cic);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002777}
2778
Jens Axboee2d74ac2006-03-28 08:59:01 +02002779static struct cfq_io_context *
Jens Axboe4ac845a2008-01-24 08:44:49 +01002780cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002781{
Jens Axboee2d74ac2006-03-28 08:59:01 +02002782 struct cfq_io_context *cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002783 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002784 void *k;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002785
Vasily Tarasov91fac312007-04-25 12:29:51 +02002786 if (unlikely(!ioc))
2787 return NULL;
2788
Jens Axboed6de8be2008-05-28 14:46:59 +02002789 rcu_read_lock();
2790
Jens Axboe597bc482007-04-24 21:23:53 +02002791 /*
2792 * we maintain a last-hit cache, to avoid browsing over the tree
2793 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01002794 cic = rcu_dereference(ioc->ioc_data);
Jens Axboed6de8be2008-05-28 14:46:59 +02002795 if (cic && cic->key == cfqd) {
2796 rcu_read_unlock();
Jens Axboe597bc482007-04-24 21:23:53 +02002797 return cic;
Jens Axboed6de8be2008-05-28 14:46:59 +02002798 }
Jens Axboe597bc482007-04-24 21:23:53 +02002799
Jens Axboe4ac845a2008-01-24 08:44:49 +01002800 do {
Jens Axboe4ac845a2008-01-24 08:44:49 +01002801 cic = radix_tree_lookup(&ioc->radix_root, (unsigned long) cfqd);
2802 rcu_read_unlock();
2803 if (!cic)
2804 break;
OGAWA Hirofumibe3b0752006-04-18 19:18:31 +02002805 /* ->key must be copied to avoid race with cfq_exit_queue() */
2806 k = cic->key;
2807 if (unlikely(!k)) {
Jens Axboe4ac845a2008-01-24 08:44:49 +01002808 cfq_drop_dead_cic(cfqd, ioc, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002809 rcu_read_lock();
Jens Axboe4ac845a2008-01-24 08:44:49 +01002810 continue;
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002811 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002812
Jens Axboed6de8be2008-05-28 14:46:59 +02002813 spin_lock_irqsave(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002814 rcu_assign_pointer(ioc->ioc_data, cic);
Jens Axboed6de8be2008-05-28 14:46:59 +02002815 spin_unlock_irqrestore(&ioc->lock, flags);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002816 break;
2817 } while (1);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002818
Jens Axboe4ac845a2008-01-24 08:44:49 +01002819 return cic;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002820}
2821
Jens Axboe4ac845a2008-01-24 08:44:49 +01002822/*
2823 * Add cic into ioc, using cfqd as the search key. This enables us to lookup
2824 * the process specific cfq io context when entered from the block layer.
2825 * Also adds the cic to a per-cfqd list, used when this queue is removed.
2826 */
Jens Axboefebffd62008-01-28 13:19:43 +01002827static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc,
2828 struct cfq_io_context *cic, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002829{
Jens Axboe0261d682006-10-30 19:07:48 +01002830 unsigned long flags;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002831 int ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002832
Jens Axboe4ac845a2008-01-24 08:44:49 +01002833 ret = radix_tree_preload(gfp_mask);
2834 if (!ret) {
2835 cic->ioc = ioc;
2836 cic->key = cfqd;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002837
Jens Axboe4ac845a2008-01-24 08:44:49 +01002838 spin_lock_irqsave(&ioc->lock, flags);
2839 ret = radix_tree_insert(&ioc->radix_root,
2840 (unsigned long) cfqd, cic);
Jens Axboeffc4e752008-02-19 10:02:29 +01002841 if (!ret)
2842 hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002843 spin_unlock_irqrestore(&ioc->lock, flags);
2844
2845 radix_tree_preload_end();
2846
2847 if (!ret) {
2848 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
2849 list_add(&cic->queue_list, &cfqd->cic_list);
2850 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
OGAWA Hirofumidbecf3a2006-04-18 09:45:18 +02002851 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02002852 }
2853
Jens Axboe4ac845a2008-01-24 08:44:49 +01002854 if (ret)
2855 printk(KERN_ERR "cfq: cic link failed!\n");
Jens Axboefc463792006-08-29 09:05:44 +02002856
Jens Axboe4ac845a2008-01-24 08:44:49 +01002857 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002858}
2859
Jens Axboe22e2c502005-06-27 10:55:12 +02002860/*
2861 * Setup general io context and cfq io context. There can be several cfq
2862 * io contexts per general io context, if this process is doing io to more
Jens Axboee2d74ac2006-03-28 08:59:01 +02002863 * than one device managed by cfq.
Jens Axboe22e2c502005-06-27 10:55:12 +02002864 */
2865static struct cfq_io_context *
Jens Axboee2d74ac2006-03-28 08:59:01 +02002866cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867{
Jens Axboe22e2c502005-06-27 10:55:12 +02002868 struct io_context *ioc = NULL;
2869 struct cfq_io_context *cic;
2870
2871 might_sleep_if(gfp_mask & __GFP_WAIT);
2872
Jens Axboeb5deef92006-07-19 23:39:40 +02002873 ioc = get_io_context(gfp_mask, cfqd->queue->node);
Jens Axboe22e2c502005-06-27 10:55:12 +02002874 if (!ioc)
2875 return NULL;
2876
Jens Axboe4ac845a2008-01-24 08:44:49 +01002877 cic = cfq_cic_lookup(cfqd, ioc);
Jens Axboee2d74ac2006-03-28 08:59:01 +02002878 if (cic)
2879 goto out;
Jens Axboe22e2c502005-06-27 10:55:12 +02002880
Jens Axboee2d74ac2006-03-28 08:59:01 +02002881 cic = cfq_alloc_io_context(cfqd, gfp_mask);
2882 if (cic == NULL)
2883 goto err;
Jens Axboe22e2c502005-06-27 10:55:12 +02002884
Jens Axboe4ac845a2008-01-24 08:44:49 +01002885 if (cfq_cic_link(cfqd, ioc, cic, gfp_mask))
2886 goto err_free;
2887
Jens Axboe22e2c502005-06-27 10:55:12 +02002888out:
Jens Axboefc463792006-08-29 09:05:44 +02002889 smp_read_barrier_depends();
2890 if (unlikely(ioc->ioprio_changed))
2891 cfq_ioc_set_ioprio(ioc);
2892
Vivek Goyal246103332009-12-03 12:59:51 -05002893#ifdef CONFIG_CFQ_GROUP_IOSCHED
2894 if (unlikely(ioc->cgroup_changed))
2895 cfq_ioc_set_cgroup(ioc);
2896#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02002897 return cic;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002898err_free:
2899 cfq_cic_free(cic);
Jens Axboe22e2c502005-06-27 10:55:12 +02002900err:
2901 put_io_context(ioc);
2902 return NULL;
2903}
2904
2905static void
2906cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic)
2907{
Jens Axboeaaf12282007-01-19 11:30:16 +11002908 unsigned long elapsed = jiffies - cic->last_end_request;
2909 unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02002910
2911 cic->ttime_samples = (7*cic->ttime_samples + 256) / 8;
2912 cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8;
2913 cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples;
2914}
2915
Jens Axboe206dc692006-03-28 13:03:44 +02002916static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002917cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02002918 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02002919{
2920 sector_t sdist;
2921 u64 total;
2922
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002923 if (!cfqq->last_request_pos)
Jeff Moyer4d00aa42009-04-21 07:25:04 +02002924 sdist = 0;
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002925 else if (cfqq->last_request_pos < blk_rq_pos(rq))
2926 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
Jens Axboe206dc692006-03-28 13:03:44 +02002927 else
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002928 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
Jens Axboe206dc692006-03-28 13:03:44 +02002929
2930 /*
2931 * Don't allow the seek distance to get too large from the
2932 * odd fragment, pagein, etc
2933 */
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002934 if (cfqq->seek_samples <= 60) /* second&third seek */
2935 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*1024);
Jens Axboe206dc692006-03-28 13:03:44 +02002936 else
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002937 sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*64);
Jens Axboe206dc692006-03-28 13:03:44 +02002938
Jeff Moyerb2c18e12009-10-23 17:14:49 -04002939 cfqq->seek_samples = (7*cfqq->seek_samples + 256) / 8;
2940 cfqq->seek_total = (7*cfqq->seek_total + (u64)256*sdist) / 8;
2941 total = cfqq->seek_total + (cfqq->seek_samples/2);
2942 do_div(total, cfqq->seek_samples);
2943 cfqq->seek_mean = (sector_t)total;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002944
2945 /*
2946 * If this cfqq is shared between multiple processes, check to
2947 * make sure that those processes are still issuing I/Os within
2948 * the mean seek distance. If not, it may be time to break the
2949 * queues apart again.
2950 */
2951 if (cfq_cfqq_coop(cfqq)) {
2952 if (CFQQ_SEEKY(cfqq) && !cfqq->seeky_start)
2953 cfqq->seeky_start = jiffies;
2954 else if (!CFQQ_SEEKY(cfqq))
2955 cfqq->seeky_start = 0;
2956 }
Jens Axboe206dc692006-03-28 13:03:44 +02002957}
Jens Axboe22e2c502005-06-27 10:55:12 +02002958
2959/*
2960 * Disable idle window if the process thinks too long or seeks so much that
2961 * it doesn't matter
2962 */
2963static void
2964cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
2965 struct cfq_io_context *cic)
2966{
Jens Axboe7b679132008-05-30 12:23:07 +02002967 int old_idle, enable_idle;
Jens Axboe1be92f2f2007-04-19 14:32:26 +02002968
Jens Axboe08717142008-01-28 11:38:15 +01002969 /*
2970 * Don't idle for async or idle io prio class
2971 */
2972 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f2f2007-04-19 14:32:26 +02002973 return;
2974
Jens Axboec265a7f2008-06-26 13:49:33 +02002975 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002976
Corrado Zoccolo76280af2009-11-26 10:02:58 +01002977 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
2978 cfq_mark_cfqq_deep(cfqq);
2979
Nikanth Karthikesan66dac982007-11-27 12:47:04 +01002980 if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle ||
Corrado Zoccolo76280af2009-11-26 10:02:58 +01002981 (!cfq_cfqq_deep(cfqq) && sample_valid(cfqq->seek_samples)
2982 && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02002983 enable_idle = 0;
2984 else if (sample_valid(cic->ttime_samples)) {
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002985 if (cic->ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02002986 enable_idle = 0;
2987 else
2988 enable_idle = 1;
2989 }
2990
Jens Axboe7b679132008-05-30 12:23:07 +02002991 if (old_idle != enable_idle) {
2992 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
2993 if (enable_idle)
2994 cfq_mark_cfqq_idle_window(cfqq);
2995 else
2996 cfq_clear_cfqq_idle_window(cfqq);
2997 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002998}
2999
Jens Axboe22e2c502005-06-27 10:55:12 +02003000/*
3001 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3002 * no or if we aren't sure, a 1 will cause a preempt.
3003 */
Jens Axboea6151c32009-10-07 20:02:57 +02003004static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02003005cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02003006 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003007{
Jens Axboe6d048f52007-04-25 12:44:27 +02003008 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003009
Jens Axboe6d048f52007-04-25 12:44:27 +02003010 cfqq = cfqd->active_queue;
3011 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02003012 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003013
Jens Axboe6d048f52007-04-25 12:44:27 +02003014 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003015 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003016
3017 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003018 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003019
Jens Axboe22e2c502005-06-27 10:55:12 +02003020 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02003021 * if the new request is sync, but the currently running queue is
3022 * not, let the sync request have priority.
3023 */
Jens Axboe5e705372006-07-13 12:39:25 +02003024 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003025 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003026
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003027 if (new_cfqq->cfqg != cfqq->cfqg)
3028 return false;
3029
3030 if (cfq_slice_used(cfqq))
3031 return true;
3032
3033 /* Allow preemption only if we are idling on sync-noidle tree */
3034 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
3035 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3036 new_cfqq->service_tree->count == 2 &&
3037 RB_EMPTY_ROOT(&cfqq->sort_list))
3038 return true;
3039
Jens Axboe374f84a2006-07-23 01:42:19 +02003040 /*
3041 * So both queues are sync. Let the new request get disk time if
3042 * it's a metadata request and the current queue is doing regular IO.
3043 */
3044 if (rq_is_meta(rq) && !cfqq->meta_pending)
Jens Axboee6ec4fe2009-11-03 20:21:35 +01003045 return true;
Jens Axboe22e2c502005-06-27 10:55:12 +02003046
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003047 /*
3048 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3049 */
3050 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003051 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003052
Jens Axboe1e3335d2007-02-14 19:59:49 +01003053 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003054 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003055
3056 /*
3057 * if this request is as-good as one we would expect from the
3058 * current cfqq, let it preempt
3059 */
Jens Axboee00ef792009-11-04 08:54:55 +01003060 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02003061 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003062
Jens Axboea6151c32009-10-07 20:02:57 +02003063 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003064}
3065
3066/*
3067 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3068 * let it have half of its nominal slice.
3069 */
3070static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3071{
Jens Axboe7b679132008-05-30 12:23:07 +02003072 cfq_log_cfqq(cfqd, cfqq, "preempt");
Jens Axboe6084cdd2007-04-23 08:25:00 +02003073 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003074
Jens Axboebf572252006-07-19 20:29:12 +02003075 /*
3076 * Put the new queue at the front of the of the current list,
3077 * so we know that it will be selected next.
3078 */
3079 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02003080
3081 cfq_service_tree_add(cfqd, cfqq, 1);
Jens Axboebf572252006-07-19 20:29:12 +02003082
Jens Axboe44f7c162007-01-19 11:51:58 +11003083 cfqq->slice_end = 0;
3084 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003085}
3086
3087/*
Jens Axboe5e705372006-07-13 12:39:25 +02003088 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02003089 * something we should do about it
3090 */
3091static void
Jens Axboe5e705372006-07-13 12:39:25 +02003092cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3093 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003094{
Jens Axboe5e705372006-07-13 12:39:25 +02003095 struct cfq_io_context *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003096
Aaron Carroll45333d52008-08-26 15:52:36 +02003097 cfqd->rq_queued++;
Jens Axboe374f84a2006-07-23 01:42:19 +02003098 if (rq_is_meta(rq))
3099 cfqq->meta_pending++;
3100
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003101 cfq_update_io_thinktime(cfqd, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003102 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003103 cfq_update_idle_window(cfqd, cfqq, cic);
3104
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003105 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003106
3107 if (cfqq == cfqd->active_queue) {
Vivek Goyalf75edf22009-12-03 12:59:53 -05003108 if (cfq_cfqq_wait_busy(cfqq)) {
3109 cfq_clear_cfqq_wait_busy(cfqq);
3110 cfq_mark_cfqq_wait_busy_done(cfqq);
3111 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003112 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003113 * Remember that we saw a request from this process, but
3114 * don't start queuing just yet. Otherwise we risk seeing lots
3115 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003116 * and merging. If the request is already larger than a single
3117 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003118 * merging is already done. Ditto for a busy system that
3119 * has other work pending, don't risk delaying until the
3120 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003121 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003122 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003123 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3124 cfqd->busy_queues > 1) {
Jens Axboed6ceb252009-04-14 14:18:16 +02003125 del_timer(&cfqd->idle_slice_timer);
Vivek Goyalbf7919372009-12-03 12:59:37 -05003126 __blk_run_queue(cfqd->queue);
3127 } else
3128 cfq_mark_cfqq_must_dispatch(cfqq);
Jens Axboed6ceb252009-04-14 14:18:16 +02003129 }
Jens Axboe5e705372006-07-13 12:39:25 +02003130 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003131 /*
3132 * not the active queue - expire current slice if it is
3133 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003134 * has some old slice time left and is of higher priority or
3135 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003136 */
3137 cfq_preempt_queue(cfqd, cfqq);
Tejun Heoa7f55792009-04-23 11:05:17 +09003138 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003139 }
3140}
3141
Jens Axboe165125e2007-07-24 09:28:11 +02003142static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003143{
Jens Axboeb4878f22005-10-20 16:42:29 +02003144 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003145 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003146
Jens Axboe7b679132008-05-30 12:23:07 +02003147 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Jens Axboefd0928d2008-01-24 08:52:45 +01003148 cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Jens Axboe30996f42009-10-05 11:03:39 +02003150 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02003151 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003152 cfq_add_rq_rb(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003153
Jens Axboe5e705372006-07-13 12:39:25 +02003154 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155}
3156
Aaron Carroll45333d52008-08-26 15:52:36 +02003157/*
3158 * Update hw_tag based on peak queue depth over 50 samples under
3159 * sufficient load.
3160 */
3161static void cfq_update_hw_tag(struct cfq_data *cfqd)
3162{
Shaohua Li1a1238a2009-10-27 08:46:23 +01003163 struct cfq_queue *cfqq = cfqd->active_queue;
3164
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003165 if (rq_in_driver(cfqd) > cfqd->hw_tag_est_depth)
3166 cfqd->hw_tag_est_depth = rq_in_driver(cfqd);
3167
3168 if (cfqd->hw_tag == 1)
3169 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02003170
3171 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Jens Axboe5ad531d2009-07-03 12:57:48 +02003172 rq_in_driver(cfqd) <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003173 return;
3174
Shaohua Li1a1238a2009-10-27 08:46:23 +01003175 /*
3176 * If active queue hasn't enough requests and can idle, cfq might not
3177 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3178 * case
3179 */
3180 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3181 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
3182 CFQ_HW_QUEUE_MIN && rq_in_driver(cfqd) < CFQ_HW_QUEUE_MIN)
3183 return;
3184
Aaron Carroll45333d52008-08-26 15:52:36 +02003185 if (cfqd->hw_tag_samples++ < 50)
3186 return;
3187
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003188 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003189 cfqd->hw_tag = 1;
3190 else
3191 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02003192}
3193
Jens Axboe165125e2007-07-24 09:28:11 +02003194static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195{
Jens Axboe5e705372006-07-13 12:39:25 +02003196 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003197 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02003198 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003199 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Jens Axboeb4878f22005-10-20 16:42:29 +02003201 now = jiffies;
Vivek Goyal2868ef72009-12-03 12:59:48 -05003202 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d", !!rq_noidle(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Aaron Carroll45333d52008-08-26 15:52:36 +02003204 cfq_update_hw_tag(cfqd);
3205
Jens Axboe5ad531d2009-07-03 12:57:48 +02003206 WARN_ON(!cfqd->rq_in_driver[sync]);
Jens Axboe6d048f52007-04-25 12:44:27 +02003207 WARN_ON(!cfqq->dispatched);
Jens Axboe5ad531d2009-07-03 12:57:48 +02003208 cfqd->rq_in_driver[sync]--;
Jens Axboe6d048f52007-04-25 12:44:27 +02003209 cfqq->dispatched--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
Jens Axboe3ed9a292007-04-23 08:33:33 +02003211 if (cfq_cfqq_sync(cfqq))
3212 cfqd->sync_flight--;
3213
Vivek Goyal365722b2009-10-03 15:21:27 +02003214 if (sync) {
Jens Axboe5e705372006-07-13 12:39:25 +02003215 RQ_CIC(rq)->last_end_request = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02003216 cfqd->last_end_sync_rq = now;
3217 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003218
3219 /*
3220 * If this is the active queue, check if it needs to be expired,
3221 * or if we want to idle in case it has no pending requests.
3222 */
3223 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02003224 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3225
Jens Axboe44f7c162007-01-19 11:51:58 +11003226 if (cfq_cfqq_slice_new(cfqq)) {
3227 cfq_set_prio_slice(cfqd, cfqq);
3228 cfq_clear_cfqq_slice_new(cfqq);
3229 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05003230
3231 /*
3232 * If this queue consumed its slice and this is last queue
3233 * in the group, wait for next request before we expire
3234 * the queue
3235 */
3236 if (cfq_slice_used(cfqq) && cfqq->cfqg->nr_cfqq == 1) {
3237 cfqq->slice_end = jiffies + cfqd->cfq_slice_idle;
3238 cfq_mark_cfqq_wait_busy(cfqq);
3239 }
3240
Jens Axboea36e71f2009-04-15 12:15:11 +02003241 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003242 * Idling is not enabled on:
3243 * - expired queues
3244 * - idle-priority queues
3245 * - async queues
3246 * - queues with still some requests queued
3247 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02003248 */
Jens Axboe08717142008-01-28 11:38:15 +01003249 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Jens Axboe6084cdd2007-04-23 08:25:00 +02003250 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003251 else if (sync && cfqq_empty &&
3252 !cfq_close_cooperator(cfqd, cfqq)) {
3253 cfqd->noidle_tree_requires_idle |= !rq_noidle(rq);
3254 /*
3255 * Idling is enabled for SYNC_WORKLOAD.
3256 * SYNC_NOIDLE_WORKLOAD idles at the end of the tree
3257 * only if we processed at least one !rq_noidle request
3258 */
3259 if (cfqd->serving_type == SYNC_WORKLOAD
3260 || cfqd->noidle_tree_requires_idle)
3261 cfq_arm_slice_timer(cfqd);
3262 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003263 }
Jens Axboe6d048f52007-04-25 12:44:27 +02003264
Jens Axboe5ad531d2009-07-03 12:57:48 +02003265 if (!rq_in_driver(cfqd))
Jens Axboe23e018a2009-10-05 08:52:35 +02003266 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267}
3268
Jens Axboe22e2c502005-06-27 10:55:12 +02003269/*
3270 * we temporarily boost lower priority queues if they are holding fs exclusive
3271 * resources. they are boosted to normal prio (CLASS_BE/4)
3272 */
3273static void cfq_prio_boost(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274{
Jens Axboe22e2c502005-06-27 10:55:12 +02003275 if (has_fs_excl()) {
3276 /*
3277 * boost idle prio on transactions that would lock out other
3278 * users of the filesystem
3279 */
3280 if (cfq_class_idle(cfqq))
3281 cfqq->ioprio_class = IOPRIO_CLASS_BE;
3282 if (cfqq->ioprio > IOPRIO_NORM)
3283 cfqq->ioprio = IOPRIO_NORM;
3284 } else {
3285 /*
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003286 * unboost the queue (if needed)
Jens Axboe22e2c502005-06-27 10:55:12 +02003287 */
Corrado Zoccolodddb7452009-11-02 10:40:37 +01003288 cfqq->ioprio_class = cfqq->org_ioprio_class;
3289 cfqq->ioprio = cfqq->org_ioprio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003291}
3292
Jens Axboe89850f72006-07-22 16:48:31 +02003293static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003294{
Jens Axboe1b379d82009-08-11 08:26:11 +02003295 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003296 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003297 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003298 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003299
3300 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003301}
3302
Jens Axboe165125e2007-07-24 09:28:11 +02003303static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003304{
3305 struct cfq_data *cfqd = q->elevator->elevator_data;
3306 struct task_struct *tsk = current;
Vasily Tarasov91fac312007-04-25 12:29:51 +02003307 struct cfq_io_context *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003308 struct cfq_queue *cfqq;
3309
3310 /*
3311 * don't force setup of a queue from here, as a call to may_queue
3312 * does not necessarily imply that a request actually will be queued.
3313 * so just lookup a possibly existing queue, or return 'may queue'
3314 * if that fails
3315 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003316 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003317 if (!cic)
3318 return ELV_MQUEUE_MAY;
3319
Jens Axboeb0b78f82009-04-08 10:56:08 +02003320 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003321 if (cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003322 cfq_init_prio_data(cfqq, cic->ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02003323 cfq_prio_boost(cfqq);
3324
Jens Axboe89850f72006-07-22 16:48:31 +02003325 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003326 }
3327
3328 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329}
3330
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331/*
3332 * queue lock held here
3333 */
Jens Axboebb37b942006-12-01 10:42:33 +01003334static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335{
Jens Axboe5e705372006-07-13 12:39:25 +02003336 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Jens Axboe5e705372006-07-13 12:39:25 +02003338 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003339 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Jens Axboe22e2c502005-06-27 10:55:12 +02003341 BUG_ON(!cfqq->allocated[rw]);
3342 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Jens Axboe5e705372006-07-13 12:39:25 +02003344 put_io_context(RQ_CIC(rq)->ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 rq->elevator_private = NULL;
Jens Axboe5e705372006-07-13 12:39:25 +02003347 rq->elevator_private2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 cfq_put_queue(cfqq);
3350 }
3351}
3352
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003353static struct cfq_queue *
3354cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic,
3355 struct cfq_queue *cfqq)
3356{
3357 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3358 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003359 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003360 cfq_put_queue(cfqq);
3361 return cic_to_cfqq(cic, 1);
3362}
3363
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003364static int should_split_cfqq(struct cfq_queue *cfqq)
3365{
3366 if (cfqq->seeky_start &&
3367 time_after(jiffies, cfqq->seeky_start + CFQQ_COOP_TOUT))
3368 return 1;
3369 return 0;
3370}
3371
3372/*
3373 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3374 * was the last process referring to said cfqq.
3375 */
3376static struct cfq_queue *
3377split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq)
3378{
3379 if (cfqq_process_refs(cfqq) == 1) {
3380 cfqq->seeky_start = 0;
3381 cfqq->pid = current->pid;
3382 cfq_clear_cfqq_coop(cfqq);
3383 return cfqq;
3384 }
3385
3386 cic_set_cfqq(cic, NULL, 1);
3387 cfq_put_queue(cfqq);
3388 return NULL;
3389}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003391 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003393static int
Jens Axboe165125e2007-07-24 09:28:11 +02003394cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395{
3396 struct cfq_data *cfqd = q->elevator->elevator_data;
3397 struct cfq_io_context *cic;
3398 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003399 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003400 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 unsigned long flags;
3402
3403 might_sleep_if(gfp_mask & __GFP_WAIT);
3404
Jens Axboee2d74ac2006-03-28 08:59:01 +02003405 cic = cfq_get_io_context(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02003406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 spin_lock_irqsave(q->queue_lock, flags);
3408
Jens Axboe22e2c502005-06-27 10:55:12 +02003409 if (!cic)
3410 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003412new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003413 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003414 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Jens Axboefd0928d2008-01-24 08:52:45 +01003415 cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003416 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003417 } else {
3418 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003419 * If the queue was seeky for too long, break it apart.
3420 */
3421 if (cfq_cfqq_coop(cfqq) && should_split_cfqq(cfqq)) {
3422 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3423 cfqq = split_cfqq(cic, cfqq);
3424 if (!cfqq)
3425 goto new_queue;
3426 }
3427
3428 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003429 * Check to see if this queue is scheduled to merge with
3430 * another, closely cooperating queue. The merging of
3431 * queues happens here as it must be done in process context.
3432 * The reference on new_cfqq was taken in merge_cfqqs.
3433 */
3434 if (cfqq->new_cfqq)
3435 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
3438 cfqq->allocated[rw]++;
Jens Axboe22e2c502005-06-27 10:55:12 +02003439 atomic_inc(&cfqq->ref);
Jens Axboe5e705372006-07-13 12:39:25 +02003440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 spin_unlock_irqrestore(q->queue_lock, flags);
3442
Jens Axboe5e705372006-07-13 12:39:25 +02003443 rq->elevator_private = cic;
3444 rq->elevator_private2 = cfqq;
3445 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02003446
Jens Axboe22e2c502005-06-27 10:55:12 +02003447queue_fail:
3448 if (cic)
3449 put_io_context(cic->ioc);
Jens Axboe89850f72006-07-22 16:48:31 +02003450
Jens Axboe23e018a2009-10-05 08:52:35 +02003451 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 spin_unlock_irqrestore(q->queue_lock, flags);
Jens Axboe7b679132008-05-30 12:23:07 +02003453 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 return 1;
3455}
3456
David Howells65f27f32006-11-22 14:55:48 +00003457static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003458{
David Howells65f27f32006-11-22 14:55:48 +00003459 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003460 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003461 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003462
Jens Axboe40bb54d2009-04-15 12:11:10 +02003463 spin_lock_irq(q->queue_lock);
Tejun Heoa7f55792009-04-23 11:05:17 +09003464 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003465 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003466}
3467
3468/*
3469 * Timer running if the active_queue is currently idling inside its time slice
3470 */
3471static void cfq_idle_slice_timer(unsigned long data)
3472{
3473 struct cfq_data *cfqd = (struct cfq_data *) data;
3474 struct cfq_queue *cfqq;
3475 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003476 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003477
Jens Axboe7b679132008-05-30 12:23:07 +02003478 cfq_log(cfqd, "idle timer fired");
3479
Jens Axboe22e2c502005-06-27 10:55:12 +02003480 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3481
Jens Axboefe094d92008-01-31 13:08:54 +01003482 cfqq = cfqd->active_queue;
3483 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003484 timed_out = 0;
3485
Jens Axboe22e2c502005-06-27 10:55:12 +02003486 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003487 * We saw a request before the queue expired, let it through
3488 */
3489 if (cfq_cfqq_must_dispatch(cfqq))
3490 goto out_kick;
3491
3492 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003493 * expired
3494 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003495 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003496 goto expire;
3497
3498 /*
3499 * only expire and reinvoke request handler, if there are
3500 * other queues with pending requests
3501 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003502 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003503 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003504
3505 /*
3506 * not expired and it has a request pending, let it dispatch
3507 */
Jens Axboe75e50982009-04-07 08:56:14 +02003508 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003509 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003510
3511 /*
3512 * Queue depth flag is reset only when the idle didn't succeed
3513 */
3514 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003515 }
3516expire:
Jens Axboe6084cdd2007-04-23 08:25:00 +02003517 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003518out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003519 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003520out_cont:
3521 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3522}
3523
Jens Axboe3b181522005-06-27 10:56:24 +02003524static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3525{
3526 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003527 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003528}
Jens Axboe22e2c502005-06-27 10:55:12 +02003529
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003530static void cfq_put_async_queues(struct cfq_data *cfqd)
3531{
3532 int i;
3533
3534 for (i = 0; i < IOPRIO_BE_NR; i++) {
3535 if (cfqd->async_cfqq[0][i])
3536 cfq_put_queue(cfqd->async_cfqq[0][i]);
3537 if (cfqd->async_cfqq[1][i])
3538 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003539 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003540
3541 if (cfqd->async_idle_cfqq)
3542 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003543}
3544
Jens Axboeb374d182008-10-31 10:05:07 +01003545static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546{
Jens Axboe22e2c502005-06-27 10:55:12 +02003547 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003548 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003549
Jens Axboe3b181522005-06-27 10:56:24 +02003550 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003551
Al Virod9ff4182006-03-18 13:51:22 -05003552 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003553
Al Virod9ff4182006-03-18 13:51:22 -05003554 if (cfqd->active_queue)
Jens Axboe6084cdd2007-04-23 08:25:00 +02003555 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003556
3557 while (!list_empty(&cfqd->cic_list)) {
Al Virod9ff4182006-03-18 13:51:22 -05003558 struct cfq_io_context *cic = list_entry(cfqd->cic_list.next,
3559 struct cfq_io_context,
3560 queue_list);
Jens Axboe89850f72006-07-22 16:48:31 +02003561
3562 __cfq_exit_single_io_context(cfqd, cic);
Al Virod9ff4182006-03-18 13:51:22 -05003563 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003564
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003565 cfq_put_async_queues(cfqd);
Vivek Goyalb1c35762009-12-03 12:59:47 -05003566 cfq_release_cfq_groups(cfqd);
3567 blkiocg_del_blkio_group(&cfqd->root_group.blkg);
Jens Axboe15c31be2007-07-10 13:43:25 +02003568
Al Virod9ff4182006-03-18 13:51:22 -05003569 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05003570
3571 cfq_shutdown_timer_wq(cfqd);
3572
Vivek Goyalb1c35762009-12-03 12:59:47 -05003573 /* Wait for cfqg->blkg->key accessors to exit their grace periods. */
3574 synchronize_rcu();
Al Viroa90d7422006-03-18 12:05:37 -05003575 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576}
3577
Jens Axboe165125e2007-07-24 09:28:11 +02003578static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579{
3580 struct cfq_data *cfqd;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003581 int i, j;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003582 struct cfq_group *cfqg;
Vivek Goyal615f0252009-12-03 12:59:39 -05003583 struct cfq_rb_root *st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Christoph Lameter94f60302007-07-17 04:03:29 -07003585 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02003587 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003589 /* Init root service tree */
3590 cfqd->grp_service_tree = CFQ_RB_ROOT;
3591
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003592 /* Init root group */
3593 cfqg = &cfqd->root_group;
Vivek Goyal615f0252009-12-03 12:59:39 -05003594 for_each_cfqg_st(cfqg, i, j, st)
3595 *st = CFQ_RB_ROOT;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003596 RB_CLEAR_NODE(&cfqg->rb_node);
Jens Axboe26a2ac02009-04-23 12:13:27 +02003597
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003598 /* Give preference to root group over other groups */
3599 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3600
Vivek Goyal25fb5162009-12-03 12:59:46 -05003601#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyalb1c35762009-12-03 12:59:47 -05003602 /*
3603 * Take a reference to root group which we never drop. This is just
3604 * to make sure that cfq_put_cfqg() does not try to kfree root group
3605 */
3606 atomic_set(&cfqg->ref, 1);
Vivek Goyal22084192009-12-03 12:59:49 -05003607 blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg, (void *)cfqd,
3608 0);
Vivek Goyal25fb5162009-12-03 12:59:46 -05003609#endif
Jens Axboe26a2ac02009-04-23 12:13:27 +02003610 /*
3611 * Not strictly needed (since RB_ROOT just clears the node and we
3612 * zeroed cfqd on alloc), but better be safe in case someone decides
3613 * to add magic to the rb code
3614 */
3615 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3616 cfqd->prio_trees[i] = RB_ROOT;
3617
Jens Axboe6118b702009-06-30 09:34:12 +02003618 /*
3619 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3620 * Grab a permanent reference to it, so that the normal code flow
3621 * will not attempt to free it.
3622 */
3623 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
3624 atomic_inc(&cfqd->oom_cfqq.ref);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003625 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
Jens Axboe6118b702009-06-30 09:34:12 +02003626
Al Virod9ff4182006-03-18 13:51:22 -05003627 INIT_LIST_HEAD(&cfqd->cic_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
Jens Axboe22e2c502005-06-27 10:55:12 +02003631 init_timer(&cfqd->idle_slice_timer);
3632 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3633 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3634
Jens Axboe23e018a2009-10-05 08:52:35 +02003635 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003636
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003638 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3639 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 cfqd->cfq_back_max = cfq_back_max;
3641 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003642 cfqd->cfq_slice[0] = cfq_slice_async;
3643 cfqd->cfq_slice[1] = cfq_slice_sync;
3644 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3645 cfqd->cfq_slice_idle = cfq_slice_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003646 cfqd->cfq_latency = 1;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003647 cfqd->hw_tag = -1;
Vivek Goyal365722b2009-10-03 15:21:27 +02003648 cfqd->last_end_sync_rq = jiffies;
Jens Axboebc1c1162006-06-08 08:49:06 +02003649 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650}
3651
3652static void cfq_slab_kill(void)
3653{
Jens Axboed6de8be2008-05-28 14:46:59 +02003654 /*
3655 * Caller already ensured that pending RCU callbacks are completed,
3656 * so we should have no busy allocations at this point.
3657 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 if (cfq_pool)
3659 kmem_cache_destroy(cfq_pool);
3660 if (cfq_ioc_pool)
3661 kmem_cache_destroy(cfq_ioc_pool);
3662}
3663
3664static int __init cfq_slab_setup(void)
3665{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003666 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 if (!cfq_pool)
3668 goto fail;
3669
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02003670 cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 if (!cfq_ioc_pool)
3672 goto fail;
3673
3674 return 0;
3675fail:
3676 cfq_slab_kill();
3677 return -ENOMEM;
3678}
3679
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680/*
3681 * sysfs parts below -->
3682 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683static ssize_t
3684cfq_var_show(unsigned int var, char *page)
3685{
3686 return sprintf(page, "%d\n", var);
3687}
3688
3689static ssize_t
3690cfq_var_store(unsigned int *var, const char *page, size_t count)
3691{
3692 char *p = (char *) page;
3693
3694 *var = simple_strtoul(p, &p, 10);
3695 return count;
3696}
3697
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003699static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003701 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 unsigned int __data = __VAR; \
3703 if (__CONV) \
3704 __data = jiffies_to_msecs(__data); \
3705 return cfq_var_show(__data, (page)); \
3706}
3707SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003708SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
3709SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05003710SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
3711SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003712SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
3713SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
3714SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
3715SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003716SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717#undef SHOW_FUNCTION
3718
3719#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003720static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003722 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 unsigned int __data; \
3724 int ret = cfq_var_store(&__data, (page), count); \
3725 if (__data < (MIN)) \
3726 __data = (MIN); \
3727 else if (__data > (MAX)) \
3728 __data = (MAX); \
3729 if (__CONV) \
3730 *(__PTR) = msecs_to_jiffies(__data); \
3731 else \
3732 *(__PTR) = __data; \
3733 return ret; \
3734}
3735STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003736STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
3737 UINT_MAX, 1);
3738STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
3739 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05003740STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01003741STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
3742 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003743STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
3744STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
3745STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01003746STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
3747 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003748STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749#undef STORE_FUNCTION
3750
Al Viroe572ec72006-03-18 22:27:18 -05003751#define CFQ_ATTR(name) \
3752 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02003753
Al Viroe572ec72006-03-18 22:27:18 -05003754static struct elv_fs_entry cfq_attrs[] = {
3755 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05003756 CFQ_ATTR(fifo_expire_sync),
3757 CFQ_ATTR(fifo_expire_async),
3758 CFQ_ATTR(back_seek_max),
3759 CFQ_ATTR(back_seek_penalty),
3760 CFQ_ATTR(slice_sync),
3761 CFQ_ATTR(slice_async),
3762 CFQ_ATTR(slice_async_rq),
3763 CFQ_ATTR(slice_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02003764 CFQ_ATTR(low_latency),
Al Viroe572ec72006-03-18 22:27:18 -05003765 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766};
3767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768static struct elevator_type iosched_cfq = {
3769 .ops = {
3770 .elevator_merge_fn = cfq_merge,
3771 .elevator_merged_fn = cfq_merged_request,
3772 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01003773 .elevator_allow_merge_fn = cfq_allow_merge,
Jens Axboeb4878f22005-10-20 16:42:29 +02003774 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02003776 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 .elevator_deactivate_req_fn = cfq_deactivate_request,
3778 .elevator_queue_empty_fn = cfq_queue_empty,
3779 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02003780 .elevator_former_req_fn = elv_rb_former_request,
3781 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 .elevator_set_req_fn = cfq_set_request,
3783 .elevator_put_req_fn = cfq_put_request,
3784 .elevator_may_queue_fn = cfq_may_queue,
3785 .elevator_init_fn = cfq_init_queue,
3786 .elevator_exit_fn = cfq_exit_queue,
Jens Axboefc463792006-08-29 09:05:44 +02003787 .trim = cfq_free_io_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 },
Al Viro3d1ab402006-03-18 18:35:43 -05003789 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 .elevator_name = "cfq",
3791 .elevator_owner = THIS_MODULE,
3792};
3793
3794static int __init cfq_init(void)
3795{
Jens Axboe22e2c502005-06-27 10:55:12 +02003796 /*
3797 * could be 0 on HZ < 1000 setups
3798 */
3799 if (!cfq_slice_async)
3800 cfq_slice_async = 1;
3801 if (!cfq_slice_idle)
3802 cfq_slice_idle = 1;
3803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 if (cfq_slab_setup())
3805 return -ENOMEM;
3806
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01003807 elv_register(&iosched_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01003809 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810}
3811
3812static void __exit cfq_exit(void)
3813{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07003814 DECLARE_COMPLETION_ONSTACK(all_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 elv_unregister(&iosched_cfq);
Al Viro334e94d2006-03-18 15:05:53 -05003816 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02003817 /* ioc_gone's update must be visible before reading ioc_count */
3818 smp_wmb();
Jens Axboed6de8be2008-05-28 14:46:59 +02003819
3820 /*
3821 * this also protects us from entering cfq_slab_kill() with
3822 * pending RCU callbacks
3823 */
Tejun Heo245b2e72009-06-24 15:13:48 +09003824 if (elv_ioc_count_read(cfq_ioc_count))
Jens Axboe9a11b4e2008-05-29 09:32:08 +02003825 wait_for_completion(&all_gone);
Christoph Hellwig83521d32005-10-30 15:01:39 -08003826 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827}
3828
3829module_init(cfq_init);
3830module_exit(cfq_exit);
3831
3832MODULE_AUTHOR("Jens Axboe");
3833MODULE_LICENSE("GPL");
3834MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");