blob: 048fa699adf9bd6660f06ca2bd17610fb85ddf8b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * CFQ, or complete fairness queueing, disk scheduler.
3 *
4 * Based on ideas from a previously unfinished io
5 * scheduler (round robin per-process disk scheduling) and Andrea Arcangeli.
6 *
Jens Axboe0fe23472006-09-04 15:41:16 +02007 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Al Viro1cc9be62006-03-18 12:29:52 -050011#include <linux/blkdev.h>
12#include <linux/elevator.h>
Randy Dunlapad5ebd22009-11-11 13:47:45 +010013#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/rbtree.h>
Jens Axboe22e2c502005-06-27 10:55:12 +020015#include <linux/ioprio.h>
Jens Axboe7b679132008-05-30 12:23:07 +020016#include <linux/blktrace_api.h>
Tejun Heo6e736be2011-12-14 00:33:38 +010017#include "blk.h"
Vivek Goyale98ef892010-06-18 10:39:47 -040018#include "cfq.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/*
21 * tunables
22 */
Jens Axboefe094d92008-01-31 13:08:54 +010023/* max queue in one round of service */
Shaohua Liabc3c742010-03-01 09:20:54 +010024static const int cfq_quantum = 8;
Arjan van de Ven64100092006-01-06 09:46:02 +010025static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 };
Jens Axboefe094d92008-01-31 13:08:54 +010026/* maximum backwards seek, in KiB */
27static const int cfq_back_max = 16 * 1024;
28/* penalty of a backwards seek */
29static const int cfq_back_penalty = 2;
Arjan van de Ven64100092006-01-06 09:46:02 +010030static const int cfq_slice_sync = HZ / 10;
Jens Axboe3b181522005-06-27 10:56:24 +020031static int cfq_slice_async = HZ / 25;
Arjan van de Ven64100092006-01-06 09:46:02 +010032static const int cfq_slice_async_rq = 2;
Jens Axboecaaa5f92006-06-16 11:23:00 +020033static int cfq_slice_idle = HZ / 125;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +020034static int cfq_group_idle = HZ / 125;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +010035static const int cfq_target_latency = HZ * 3/10; /* 300 ms */
36static const int cfq_hist_divisor = 4;
Jens Axboe22e2c502005-06-27 10:55:12 +020037
Jens Axboed9e76202007-04-20 14:27:50 +020038/*
Jens Axboe08717142008-01-28 11:38:15 +010039 * offset from end of service tree
Jens Axboed9e76202007-04-20 14:27:50 +020040 */
Jens Axboe08717142008-01-28 11:38:15 +010041#define CFQ_IDLE_DELAY (HZ / 5)
Jens Axboed9e76202007-04-20 14:27:50 +020042
43/*
44 * below this threshold, we consider thinktime immediate
45 */
46#define CFQ_MIN_TT (2)
47
Jens Axboe22e2c502005-06-27 10:55:12 +020048#define CFQ_SLICE_SCALE (5)
Aaron Carroll45333d52008-08-26 15:52:36 +020049#define CFQ_HW_QUEUE_MIN (5)
Vivek Goyal25bc6b02009-12-03 12:59:43 -050050#define CFQ_SERVICE_SHIFT 12
Jens Axboe22e2c502005-06-27 10:55:12 +020051
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010052#define CFQQ_SEEK_THR (sector_t)(8 * 100)
Shaohua Lie9ce3352010-03-19 08:03:04 +010053#define CFQQ_CLOSE_THR (sector_t)(8 * 1024)
Corrado Zoccolo41647e72010-02-27 19:45:40 +010054#define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32)
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +010055#define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8)
Shaohua Liae54abe2010-02-05 13:11:45 +010056
Tejun Heoa612fdd2011-12-14 00:33:41 +010057#define RQ_CIC(rq) icq_to_cic((rq)->elv.icq)
58#define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elv.priv[0])
59#define RQ_CFQG(rq) (struct cfq_group *) ((rq)->elv.priv[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Christoph Lametere18b8902006-12-06 20:33:20 -080061static struct kmem_cache *cfq_pool;
Tejun Heoc5869802011-12-14 00:33:41 +010062static struct kmem_cache *cfq_icq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Jens Axboe22e2c502005-06-27 10:55:12 +020064#define CFQ_PRIO_LISTS IOPRIO_BE_NR
65#define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
Jens Axboe22e2c502005-06-27 10:55:12 +020066#define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT)
67
Jens Axboe206dc692006-03-28 13:03:44 +020068#define sample_valid(samples) ((samples) > 80)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050069#define rb_entry_cfqg(node) rb_entry((node), struct cfq_group, rb_node)
Jens Axboe206dc692006-03-28 13:03:44 +020070
Tejun Heoc5869802011-12-14 00:33:41 +010071struct cfq_ttime {
72 unsigned long last_end_request;
73
74 unsigned long ttime_total;
75 unsigned long ttime_samples;
76 unsigned long ttime_mean;
77};
78
Jens Axboe22e2c502005-06-27 10:55:12 +020079/*
Jens Axboecc09e292007-04-26 12:53:50 +020080 * Most of our rbtree usage is for sorting with min extraction, so
81 * if we cache the leftmost node we don't have to walk down the tree
82 * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should
83 * move this into the elevator for the rq sorting as well.
84 */
85struct cfq_rb_root {
86 struct rb_root rb;
87 struct rb_node *left;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +010088 unsigned count;
Richard Kennedy73e9ffd2010-03-01 10:50:20 +010089 unsigned total_weight;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -050090 u64 min_vdisktime;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020091 struct cfq_ttime ttime;
Jens Axboecc09e292007-04-26 12:53:50 +020092};
Shaohua Lif5f2b6c2011-07-12 14:24:55 +020093#define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, \
94 .ttime = {.last_end_request = jiffies,},}
Jens Axboecc09e292007-04-26 12:53:50 +020095
96/*
Jens Axboe6118b702009-06-30 09:34:12 +020097 * Per process-grouping structure
98 */
99struct cfq_queue {
100 /* reference count */
Shaohua Li30d7b942011-01-07 08:46:59 +0100101 int ref;
Jens Axboe6118b702009-06-30 09:34:12 +0200102 /* various state flags, see below */
103 unsigned int flags;
104 /* parent cfq_data */
105 struct cfq_data *cfqd;
106 /* service_tree member */
107 struct rb_node rb_node;
108 /* service_tree key */
109 unsigned long rb_key;
110 /* prio tree member */
111 struct rb_node p_node;
112 /* prio tree root we belong to, if any */
113 struct rb_root *p_root;
114 /* sorted list of pending requests */
115 struct rb_root sort_list;
116 /* if fifo isn't expired, next request to serve */
117 struct request *next_rq;
118 /* requests queued in sort_list */
119 int queued[2];
120 /* currently allocated requests */
121 int allocated[2];
122 /* fifo list of requests in sort_list */
123 struct list_head fifo;
124
Vivek Goyaldae739e2009-12-03 12:59:45 -0500125 /* time when queue got scheduled in to dispatch first request. */
126 unsigned long dispatch_start;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500127 unsigned int allocated_slice;
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100128 unsigned int slice_dispatch;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500129 /* time when first request from queue completed and slice started. */
130 unsigned long slice_start;
Jens Axboe6118b702009-06-30 09:34:12 +0200131 unsigned long slice_end;
132 long slice_resid;
Jens Axboe6118b702009-06-30 09:34:12 +0200133
Christoph Hellwig65299a32011-08-23 14:50:29 +0200134 /* pending priority requests */
135 int prio_pending;
Jens Axboe6118b702009-06-30 09:34:12 +0200136 /* number of requests that are on the dispatch list or inside driver */
137 int dispatched;
138
139 /* io prio of this group */
140 unsigned short ioprio, org_ioprio;
Justin TerAvest4aede842011-07-12 08:31:45 +0200141 unsigned short ioprio_class;
Jens Axboe6118b702009-06-30 09:34:12 +0200142
Richard Kennedyc4081ba2010-02-22 13:49:24 +0100143 pid_t pid;
144
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +0100145 u32 seek_history;
Jeff Moyerb2c18e12009-10-23 17:14:49 -0400146 sector_t last_request_pos;
147
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100148 struct cfq_rb_root *service_tree;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -0400149 struct cfq_queue *new_cfqq;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500150 struct cfq_group *cfqg;
Vivek Goyalc4e78932010-08-23 12:25:03 +0200151 /* Number of sectors dispatched from queue in single dispatch round */
152 unsigned long nr_sectors;
Jens Axboe6118b702009-06-30 09:34:12 +0200153};
154
155/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100156 * First index in the service_trees.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100157 * IDLE is handled separately, so it has negative index
158 */
159enum wl_prio_t {
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100160 BE_WORKLOAD = 0,
Vivek Goyal615f0252009-12-03 12:59:39 -0500161 RT_WORKLOAD = 1,
162 IDLE_WORKLOAD = 2,
Vivek Goyalb4627322010-10-22 09:48:43 +0200163 CFQ_PRIO_NR,
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100164};
165
166/*
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100167 * Second index in the service_trees.
168 */
169enum wl_type_t {
170 ASYNC_WORKLOAD = 0,
171 SYNC_NOIDLE_WORKLOAD = 1,
172 SYNC_WORKLOAD = 2
173};
174
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500175/* This is per cgroup per device grouping structure */
176struct cfq_group {
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500177 /* group service_tree member */
178 struct rb_node rb_node;
179
180 /* group service_tree key */
181 u64 vdisktime;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500182 unsigned int weight;
Justin TerAvest8184f932011-03-17 16:12:36 +0100183 unsigned int new_weight;
184 bool needs_update;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500185
186 /* number of cfqq currently on this group */
187 int nr_cfqq;
188
Jens Axboe22e2c502005-06-27 10:55:12 +0200189 /*
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200190 * Per group busy queues average. Useful for workload slice calc. We
Vivek Goyalb4627322010-10-22 09:48:43 +0200191 * create the array for each prio class but at run time it is used
192 * only for RT and BE class and slot for IDLE class remains unused.
193 * This is primarily done to avoid confusion and a gcc warning.
194 */
195 unsigned int busy_queues_avg[CFQ_PRIO_NR];
196 /*
197 * rr lists of queues with requests. We maintain service trees for
198 * RT and BE classes. These trees are subdivided in subclasses
199 * of SYNC, SYNC_NOIDLE and ASYNC based on workload type. For IDLE
200 * class there is no subclassification and all the cfq queues go on
201 * a single tree service_tree_idle.
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100202 * Counts are embedded in the cfq_rb_root
Jens Axboe22e2c502005-06-27 10:55:12 +0200203 */
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100204 struct cfq_rb_root service_trees[2][3];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100205 struct cfq_rb_root service_tree_idle;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500206
207 unsigned long saved_workload_slice;
208 enum wl_type_t saved_workload;
209 enum wl_prio_t saved_serving_prio;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500210 struct blkio_group blkg;
211#ifdef CONFIG_CFQ_GROUP_IOSCHED
212 struct hlist_node cfqd_node;
Shaohua Li329a6782011-01-07 08:48:28 +0100213 int ref;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500214#endif
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200215 /* number of requests that are on the dispatch list or inside driver */
216 int dispatched;
Shaohua Li7700fc42011-07-12 14:24:56 +0200217 struct cfq_ttime ttime;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500218};
219
Tejun Heoc5869802011-12-14 00:33:41 +0100220struct cfq_io_cq {
221 struct io_cq icq; /* must be the first member */
222 struct cfq_queue *cfqq[2];
223 struct cfq_ttime ttime;
224};
225
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500226/*
227 * Per block device queue structure
228 */
229struct cfq_data {
230 struct request_queue *queue;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500231 /* Root service tree for cfq_groups */
232 struct cfq_rb_root grp_service_tree;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500233 struct cfq_group root_group;
234
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100235 /*
236 * The priority currently being served
237 */
238 enum wl_prio_t serving_prio;
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100239 enum wl_type_t serving_type;
240 unsigned long workload_expires;
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500241 struct cfq_group *serving_group;
Jens Axboea36e71f2009-04-15 12:15:11 +0200242
243 /*
244 * Each priority tree is sorted by next_request position. These
245 * trees are used when determining if two or more queues are
246 * interleaving requests (see cfq_close_cooperator).
247 */
248 struct rb_root prio_trees[CFQ_PRIO_LISTS];
249
Jens Axboe22e2c502005-06-27 10:55:12 +0200250 unsigned int busy_queues;
Shaohua Lief8a41d2011-03-07 09:26:29 +0100251 unsigned int busy_sync_queues;
Jens Axboe22e2c502005-06-27 10:55:12 +0200252
Corrado Zoccolo53c583d2010-02-28 19:45:05 +0100253 int rq_in_driver;
254 int rq_in_flight[2];
Aaron Carroll45333d52008-08-26 15:52:36 +0200255
256 /*
257 * queue-depth detection
258 */
259 int rq_queued;
Jens Axboe25776e32006-06-01 10:12:26 +0200260 int hw_tag;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +0100261 /*
262 * hw_tag can be
263 * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection)
264 * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth)
265 * 0 => no NCQ
266 */
267 int hw_tag_est_depth;
268 unsigned int hw_tag_samples;
Jens Axboe22e2c502005-06-27 10:55:12 +0200269
270 /*
Jens Axboe22e2c502005-06-27 10:55:12 +0200271 * idle window management
272 */
273 struct timer_list idle_slice_timer;
Jens Axboe23e018a2009-10-05 08:52:35 +0200274 struct work_struct unplug_work;
Jens Axboe22e2c502005-06-27 10:55:12 +0200275
276 struct cfq_queue *active_queue;
Tejun Heoc5869802011-12-14 00:33:41 +0100277 struct cfq_io_cq *active_cic;
Jens Axboe22e2c502005-06-27 10:55:12 +0200278
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +0200279 /*
280 * async queue for each priority case
281 */
282 struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR];
283 struct cfq_queue *async_idle_cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +0200284
Jens Axboe6d048f52007-04-25 12:44:27 +0200285 sector_t last_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /*
288 * tunables, see top of file
289 */
290 unsigned int cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +0200291 unsigned int cfq_fifo_expire[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 unsigned int cfq_back_penalty;
293 unsigned int cfq_back_max;
Jens Axboe22e2c502005-06-27 10:55:12 +0200294 unsigned int cfq_slice[2];
295 unsigned int cfq_slice_async_rq;
296 unsigned int cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +0200297 unsigned int cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +0200298 unsigned int cfq_latency;
Al Virod9ff4182006-03-18 13:51:22 -0500299
Jens Axboe6118b702009-06-30 09:34:12 +0200300 /*
301 * Fallback dummy cfqq for extreme OOM conditions
302 */
303 struct cfq_queue oom_cfqq;
Vivek Goyal365722b2009-10-03 15:21:27 +0200304
Corrado Zoccolo573412b2009-12-06 11:48:52 +0100305 unsigned long last_delayed_sync;
Vivek Goyal25fb5162009-12-03 12:59:46 -0500306
307 /* List of cfq groups being managed on this device*/
308 struct hlist_head cfqg_list;
Vivek Goyal56edf7d2011-05-19 15:38:22 -0400309
310 /* Number of groups which are on blkcg->blkg_list */
311 unsigned int nr_blkcg_linked_grps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312};
313
Vivek Goyal25fb5162009-12-03 12:59:46 -0500314static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd);
315
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500316static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg,
317 enum wl_prio_t prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -0500318 enum wl_type_t type)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100319{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500320 if (!cfqg)
321 return NULL;
322
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100323 if (prio == IDLE_WORKLOAD)
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500324 return &cfqg->service_tree_idle;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100325
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500326 return &cfqg->service_trees[prio][type];
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100327}
328
Jens Axboe3b181522005-06-27 10:56:24 +0200329enum cfqq_state_flags {
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100330 CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */
331 CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */
Jens Axboeb0291952009-04-07 11:38:31 +0200332 CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100333 CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */
Jens Axboeb0b8d7492007-01-19 11:35:30 +1100334 CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */
335 CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */
336 CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */
Jens Axboe44f7c162007-01-19 11:51:58 +1100337 CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */
Vasily Tarasov91fac312007-04-25 12:29:51 +0200338 CFQ_CFQQ_FLAG_sync, /* synchronous queue */
Jeff Moyerb3b6d042009-10-23 17:14:51 -0400339 CFQ_CFQQ_FLAG_coop, /* cfqq is shared */
Shaohua Liae54abe2010-02-05 13:11:45 +0100340 CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100341 CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */
Vivek Goyalf75edf22009-12-03 12:59:53 -0500342 CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */
Jens Axboe3b181522005-06-27 10:56:24 +0200343};
344
345#define CFQ_CFQQ_FNS(name) \
346static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \
347{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100348 (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200349} \
350static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \
351{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100352 (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \
Jens Axboe3b181522005-06-27 10:56:24 +0200353} \
354static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \
355{ \
Jens Axboefe094d92008-01-31 13:08:54 +0100356 return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \
Jens Axboe3b181522005-06-27 10:56:24 +0200357}
358
359CFQ_CFQQ_FNS(on_rr);
360CFQ_CFQQ_FNS(wait_request);
Jens Axboeb0291952009-04-07 11:38:31 +0200361CFQ_CFQQ_FNS(must_dispatch);
Jens Axboe3b181522005-06-27 10:56:24 +0200362CFQ_CFQQ_FNS(must_alloc_slice);
Jens Axboe3b181522005-06-27 10:56:24 +0200363CFQ_CFQQ_FNS(fifo_expire);
364CFQ_CFQQ_FNS(idle_window);
365CFQ_CFQQ_FNS(prio_changed);
Jens Axboe44f7c162007-01-19 11:51:58 +1100366CFQ_CFQQ_FNS(slice_new);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200367CFQ_CFQQ_FNS(sync);
Jens Axboea36e71f2009-04-15 12:15:11 +0200368CFQ_CFQQ_FNS(coop);
Shaohua Liae54abe2010-02-05 13:11:45 +0100369CFQ_CFQQ_FNS(split_coop);
Corrado Zoccolo76280af2009-11-26 10:02:58 +0100370CFQ_CFQQ_FNS(deep);
Vivek Goyalf75edf22009-12-03 12:59:53 -0500371CFQ_CFQQ_FNS(wait_busy);
Jens Axboe3b181522005-06-27 10:56:24 +0200372#undef CFQ_CFQQ_FNS
373
Vivek Goyalafc24d42010-04-26 19:27:56 +0200374#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyal2868ef72009-12-03 12:59:48 -0500375#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
376 blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \
377 cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200378 blkg_path(&(cfqq)->cfqg->blkg), ##args)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500379
380#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \
381 blk_add_trace_msg((cfqd)->queue, "%s " fmt, \
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200382 blkg_path(&(cfqg)->blkg), ##args) \
Vivek Goyal2868ef72009-12-03 12:59:48 -0500383
384#else
Jens Axboe7b679132008-05-30 12:23:07 +0200385#define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \
386 blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args)
Kyungmin Park4495a7d2011-05-31 10:04:09 +0200387#define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0)
Vivek Goyal2868ef72009-12-03 12:59:48 -0500388#endif
Jens Axboe7b679132008-05-30 12:23:07 +0200389#define cfq_log(cfqd, fmt, args...) \
390 blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args)
391
Vivek Goyal615f0252009-12-03 12:59:39 -0500392/* Traverses through cfq group service trees */
393#define for_each_cfqg_st(cfqg, i, j, st) \
394 for (i = 0; i <= IDLE_WORKLOAD; i++) \
395 for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\
396 : &cfqg->service_tree_idle; \
397 (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \
398 (i == IDLE_WORKLOAD && j == 0); \
399 j++, st = i < IDLE_WORKLOAD ? \
400 &cfqg->service_trees[i][j]: NULL) \
401
Shaohua Lif5f2b6c2011-07-12 14:24:55 +0200402static inline bool cfq_io_thinktime_big(struct cfq_data *cfqd,
403 struct cfq_ttime *ttime, bool group_idle)
404{
405 unsigned long slice;
406 if (!sample_valid(ttime->ttime_samples))
407 return false;
408 if (group_idle)
409 slice = cfqd->cfq_group_idle;
410 else
411 slice = cfqd->cfq_slice_idle;
412 return ttime->ttime_mean > slice;
413}
Vivek Goyal615f0252009-12-03 12:59:39 -0500414
Vivek Goyal02b35082010-08-23 12:23:53 +0200415static inline bool iops_mode(struct cfq_data *cfqd)
416{
417 /*
418 * If we are not idling on queues and it is a NCQ drive, parallel
419 * execution of requests is on and measuring time is not possible
420 * in most of the cases until and unless we drive shallower queue
421 * depths and that becomes a performance bottleneck. In such cases
422 * switch to start providing fairness in terms of number of IOs.
423 */
424 if (!cfqd->cfq_slice_idle && cfqd->hw_tag)
425 return true;
426 else
427 return false;
428}
429
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100430static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq)
431{
432 if (cfq_class_idle(cfqq))
433 return IDLE_WORKLOAD;
434 if (cfq_class_rt(cfqq))
435 return RT_WORKLOAD;
436 return BE_WORKLOAD;
437}
438
Corrado Zoccolo718eee02009-10-26 22:45:29 +0100439
440static enum wl_type_t cfqq_type(struct cfq_queue *cfqq)
441{
442 if (!cfq_cfqq_sync(cfqq))
443 return ASYNC_WORKLOAD;
444 if (!cfq_cfqq_idle_window(cfqq))
445 return SYNC_NOIDLE_WORKLOAD;
446 return SYNC_WORKLOAD;
447}
448
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500449static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl,
450 struct cfq_data *cfqd,
451 struct cfq_group *cfqg)
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100452{
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500453 if (wl == IDLE_WORKLOAD)
454 return cfqg->service_tree_idle.count;
455
456 return cfqg->service_trees[wl][ASYNC_WORKLOAD].count
457 + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count
458 + cfqg->service_trees[wl][SYNC_WORKLOAD].count;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +0100459}
460
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500461static inline int cfqg_busy_async_queues(struct cfq_data *cfqd,
462 struct cfq_group *cfqg)
463{
464 return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count
465 + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count;
466}
467
Jens Axboe165125e2007-07-24 09:28:11 +0200468static void cfq_dispatch_insert(struct request_queue *, struct request *);
Jens Axboea6151c32009-10-07 20:02:57 +0200469static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool,
Jens Axboefd0928d2008-01-24 08:52:45 +0100470 struct io_context *, gfp_t);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200471
Tejun Heoc5869802011-12-14 00:33:41 +0100472static inline struct cfq_io_cq *icq_to_cic(struct io_cq *icq)
473{
474 /* cic->icq is the first member, %NULL will convert to %NULL */
475 return container_of(icq, struct cfq_io_cq, icq);
476}
477
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100478static inline struct cfq_io_cq *cfq_cic_lookup(struct cfq_data *cfqd,
479 struct io_context *ioc)
480{
481 if (ioc)
482 return icq_to_cic(ioc_lookup_icq(ioc, cfqd->queue));
483 return NULL;
484}
485
Tejun Heoc5869802011-12-14 00:33:41 +0100486static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_cq *cic, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200487{
Jens Axboea6151c32009-10-07 20:02:57 +0200488 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200489}
490
Tejun Heoc5869802011-12-14 00:33:41 +0100491static inline void cic_set_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq,
492 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200493{
Jens Axboea6151c32009-10-07 20:02:57 +0200494 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200495}
496
Tejun Heoc5869802011-12-14 00:33:41 +0100497static inline struct cfq_data *cic_to_cfqd(struct cfq_io_cq *cic)
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400498{
Tejun Heoc5869802011-12-14 00:33:41 +0100499 return cic->icq.q->elevator->elevator_data;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400500}
501
Vasily Tarasov91fac312007-04-25 12:29:51 +0200502/*
503 * We regard a request as SYNC, if it's either a read or has the SYNC bit
504 * set (in which case it could also be direct WRITE).
505 */
Jens Axboea6151c32009-10-07 20:02:57 +0200506static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200507{
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200508 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200509}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700512 * scheduler run of queue, if there are requests pending and no one in the
513 * driver that will restart queueing
514 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200515static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700516{
Jens Axboe7b679132008-05-30 12:23:07 +0200517 if (cfqd->busy_queues) {
518 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200519 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200520 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700521}
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100524 * Scale schedule slice based on io priority. Use the sync time slice only
525 * if a queue is marked sync and has sync io queued. A sync queue with async
526 * io only, should not get full sync slice length.
527 */
Jens Axboea6151c32009-10-07 20:02:57 +0200528static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200529 unsigned short prio)
530{
531 const int base_slice = cfqd->cfq_slice[sync];
532
533 WARN_ON(prio >= IOPRIO_BE_NR);
534
535 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
536}
537
Jens Axboe44f7c162007-01-19 11:51:58 +1100538static inline int
539cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
540{
Jens Axboed9e76202007-04-20 14:27:50 +0200541 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100542}
543
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500544static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
545{
546 u64 d = delta << CFQ_SERVICE_SHIFT;
547
548 d = d * BLKIO_WEIGHT_DEFAULT;
549 do_div(d, cfqg->weight);
550 return d;
551}
552
553static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
554{
555 s64 delta = (s64)(vdisktime - min_vdisktime);
556 if (delta > 0)
557 min_vdisktime = vdisktime;
558
559 return min_vdisktime;
560}
561
562static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
563{
564 s64 delta = (s64)(vdisktime - min_vdisktime);
565 if (delta < 0)
566 min_vdisktime = vdisktime;
567
568 return min_vdisktime;
569}
570
571static void update_min_vdisktime(struct cfq_rb_root *st)
572{
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500573 struct cfq_group *cfqg;
574
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500575 if (st->left) {
576 cfqg = rb_entry_cfqg(st->left);
Gui Jianfenga6032712011-03-07 09:28:09 +0100577 st->min_vdisktime = max_vdisktime(st->min_vdisktime,
578 cfqg->vdisktime);
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500579 }
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500580}
581
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100582/*
583 * get averaged number of queues of RT/BE priority.
584 * average is updated, with a formula that gives more weight to higher numbers,
585 * to quickly follows sudden increases and decrease slowly
586 */
587
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500588static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
589 struct cfq_group *cfqg, bool rt)
Jens Axboe5869619c2009-10-28 09:27:07 +0100590{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100591 unsigned min_q, max_q;
592 unsigned mult = cfq_hist_divisor - 1;
593 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500594 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100595
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500596 min_q = min(cfqg->busy_queues_avg[rt], busy);
597 max_q = max(cfqg->busy_queues_avg[rt], busy);
598 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100599 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500600 return cfqg->busy_queues_avg[rt];
601}
602
603static inline unsigned
604cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
605{
606 struct cfq_rb_root *st = &cfqd->grp_service_tree;
607
608 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100609}
610
Shaohua Lic553f8e2011-01-14 08:41:03 +0100611static inline unsigned
Vivek Goyalba5bd522011-01-19 08:25:02 -0700612cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100613{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100614 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
615 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500616 /*
617 * interested queues (we consider only the ones with the same
618 * priority class in the cfq group)
619 */
620 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
621 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100622 unsigned sync_slice = cfqd->cfq_slice[1];
623 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500624 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
625
626 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100627 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
628 /* scale low_slice according to IO priority
629 * and sync vs async */
630 unsigned low_slice =
631 min(slice, base_low_slice * slice / sync_slice);
632 /* the adapted slice value is scaled to fit all iqs
633 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500634 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100635 low_slice);
636 }
637 }
Shaohua Lic553f8e2011-01-14 08:41:03 +0100638 return slice;
639}
640
641static inline void
642cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
643{
Vivek Goyalba5bd522011-01-19 08:25:02 -0700644 unsigned slice = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +0100645
Vivek Goyaldae739e2009-12-03 12:59:45 -0500646 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100647 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500648 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200649 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100650}
651
652/*
653 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
654 * isn't valid until the first request from the dispatch is activated
655 * and the slice time set.
656 */
Jens Axboea6151c32009-10-07 20:02:57 +0200657static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100658{
659 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +0100660 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100661 if (time_before(jiffies, cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +0100662 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100663
Shaohua Lic1e44752010-11-08 15:01:02 +0100664 return true;
Jens Axboe44f7c162007-01-19 11:51:58 +1100665}
666
667/*
Jens Axboe5e705372006-07-13 12:39:25 +0200668 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200670 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
Jens Axboe5e705372006-07-13 12:39:25 +0200672static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100673cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100675 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200677#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
678#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
679 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Jens Axboe5e705372006-07-13 12:39:25 +0200681 if (rq1 == NULL || rq1 == rq2)
682 return rq2;
683 if (rq2 == NULL)
684 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200685
Namhyung Kim229836b2011-05-24 10:23:21 +0200686 if (rq_is_sync(rq1) != rq_is_sync(rq2))
687 return rq_is_sync(rq1) ? rq1 : rq2;
688
Christoph Hellwig65299a32011-08-23 14:50:29 +0200689 if ((rq1->cmd_flags ^ rq2->cmd_flags) & REQ_PRIO)
690 return rq1->cmd_flags & REQ_PRIO ? rq1 : rq2;
Jens Axboeb53d1ed2011-08-19 08:34:48 +0200691
Tejun Heo83096eb2009-05-07 22:24:39 +0900692 s1 = blk_rq_pos(rq1);
693 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /*
696 * by definition, 1KiB is 2 sectors
697 */
698 back_max = cfqd->cfq_back_max * 2;
699
700 /*
701 * Strict one way elevator _except_ in the case where we allow
702 * short backward seeks which are biased as twice the cost of a
703 * similar forward seek.
704 */
705 if (s1 >= last)
706 d1 = s1 - last;
707 else if (s1 + back_max >= last)
708 d1 = (last - s1) * cfqd->cfq_back_penalty;
709 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200710 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 if (s2 >= last)
713 d2 = s2 - last;
714 else if (s2 + back_max >= last)
715 d2 = (last - s2) * cfqd->cfq_back_penalty;
716 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200717 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Andreas Mohre8a99052006-03-28 08:59:49 +0200721 /*
722 * By doing switch() on the bit mask "wrap" we avoid having to
723 * check two variables for all permutations: --> faster!
724 */
725 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200726 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200727 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200728 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200729 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200730 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200731 else {
732 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200733 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200734 else
Jens Axboe5e705372006-07-13 12:39:25 +0200735 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200736 }
737
738 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200739 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200740 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200741 return rq2;
742 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200743 default:
744 /*
745 * Since both rqs are wrapped,
746 * start with the one that's further behind head
747 * (--> only *one* back seek required),
748 * since back seek takes more time than forward.
749 */
750 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200751 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 else
Jens Axboe5e705372006-07-13 12:39:25 +0200753 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755}
756
Jens Axboe498d3aa22007-04-26 12:54:48 +0200757/*
758 * The below is leftmost cache rbtree addon
759 */
Jens Axboe08717142008-01-28 11:38:15 +0100760static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200761{
Vivek Goyal615f0252009-12-03 12:59:39 -0500762 /* Service tree is empty */
763 if (!root->count)
764 return NULL;
765
Jens Axboecc09e292007-04-26 12:53:50 +0200766 if (!root->left)
767 root->left = rb_first(&root->rb);
768
Jens Axboe08717142008-01-28 11:38:15 +0100769 if (root->left)
770 return rb_entry(root->left, struct cfq_queue, rb_node);
771
772 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200773}
774
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500775static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
776{
777 if (!root->left)
778 root->left = rb_first(&root->rb);
779
780 if (root->left)
781 return rb_entry_cfqg(root->left);
782
783 return NULL;
784}
785
Jens Axboea36e71f2009-04-15 12:15:11 +0200786static void rb_erase_init(struct rb_node *n, struct rb_root *root)
787{
788 rb_erase(n, root);
789 RB_CLEAR_NODE(n);
790}
791
Jens Axboecc09e292007-04-26 12:53:50 +0200792static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
793{
794 if (root->left == n)
795 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200796 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100797 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200798}
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800/*
801 * would be nice to take fifo expire time into account as well
802 */
Jens Axboe5e705372006-07-13 12:39:25 +0200803static struct request *
804cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
805 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Jens Axboe21183b02006-07-13 12:33:14 +0200807 struct rb_node *rbnext = rb_next(&last->rb_node);
808 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200809 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Jens Axboe21183b02006-07-13 12:33:14 +0200811 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200814 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200817 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200818 else {
819 rbnext = rb_first(&cfqq->sort_list);
820 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200821 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100824 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Jens Axboed9e76202007-04-20 14:27:50 +0200827static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
828 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Jens Axboed9e76202007-04-20 14:27:50 +0200830 /*
831 * just an approximation, should be ok.
832 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500833 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100834 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200835}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500837static inline s64
838cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
839{
840 return cfqg->vdisktime - st->min_vdisktime;
841}
842
843static void
844__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
845{
846 struct rb_node **node = &st->rb.rb_node;
847 struct rb_node *parent = NULL;
848 struct cfq_group *__cfqg;
849 s64 key = cfqg_key(st, cfqg);
850 int left = 1;
851
852 while (*node != NULL) {
853 parent = *node;
854 __cfqg = rb_entry_cfqg(parent);
855
856 if (key < cfqg_key(st, __cfqg))
857 node = &parent->rb_left;
858 else {
859 node = &parent->rb_right;
860 left = 0;
861 }
862 }
863
864 if (left)
865 st->left = &cfqg->rb_node;
866
867 rb_link_node(&cfqg->rb_node, parent, node);
868 rb_insert_color(&cfqg->rb_node, &st->rb);
869}
870
871static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100872cfq_update_group_weight(struct cfq_group *cfqg)
873{
874 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
875 if (cfqg->needs_update) {
876 cfqg->weight = cfqg->new_weight;
877 cfqg->needs_update = false;
878 }
879}
880
881static void
882cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
883{
884 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
885
886 cfq_update_group_weight(cfqg);
887 __cfq_group_service_tree_add(st, cfqg);
888 st->total_weight += cfqg->weight;
889}
890
891static void
892cfq_group_notify_queue_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500893{
894 struct cfq_rb_root *st = &cfqd->grp_service_tree;
895 struct cfq_group *__cfqg;
896 struct rb_node *n;
897
898 cfqg->nr_cfqq++;
Gui Jianfeng760701b2010-11-30 20:52:47 +0100899 if (!RB_EMPTY_NODE(&cfqg->rb_node))
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500900 return;
901
902 /*
903 * Currently put the group at the end. Later implement something
904 * so that groups get lesser vtime based on their weights, so that
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300905 * if group does not loose all if it was not continuously backlogged.
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500906 */
907 n = rb_last(&st->rb);
908 if (n) {
909 __cfqg = rb_entry_cfqg(n);
910 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
911 } else
912 cfqg->vdisktime = st->min_vdisktime;
Justin TerAvest8184f932011-03-17 16:12:36 +0100913 cfq_group_service_tree_add(st, cfqg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500914}
915
916static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100917cfq_group_service_tree_del(struct cfq_rb_root *st, struct cfq_group *cfqg)
918{
919 st->total_weight -= cfqg->weight;
920 if (!RB_EMPTY_NODE(&cfqg->rb_node))
921 cfq_rb_erase(&cfqg->rb_node, st);
922}
923
924static void
925cfq_group_notify_queue_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500926{
927 struct cfq_rb_root *st = &cfqd->grp_service_tree;
928
929 BUG_ON(cfqg->nr_cfqq < 1);
930 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500931
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500932 /* If there are other cfq queues under this group, don't delete it */
933 if (cfqg->nr_cfqq)
934 return;
935
Vivek Goyal2868ef72009-12-03 12:59:48 -0500936 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Justin TerAvest8184f932011-03-17 16:12:36 +0100937 cfq_group_service_tree_del(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500938 cfqg->saved_workload_slice = 0;
Vivek Goyale98ef892010-06-18 10:39:47 -0400939 cfq_blkiocg_update_dequeue_stats(&cfqg->blkg, 1);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500940}
941
Justin TerAvest167400d2011-03-12 16:54:00 +0100942static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq,
943 unsigned int *unaccounted_time)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500944{
Vivek Goyalf75edf22009-12-03 12:59:53 -0500945 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500946
947 /*
948 * Queue got expired before even a single request completed or
949 * got expired immediately after first request completion.
950 */
951 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
952 /*
953 * Also charge the seek time incurred to the group, otherwise
954 * if there are mutiple queues in the group, each can dispatch
955 * a single request on seeky media and cause lots of seek time
956 * and group will never know it.
957 */
958 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
959 1);
960 } else {
961 slice_used = jiffies - cfqq->slice_start;
Justin TerAvest167400d2011-03-12 16:54:00 +0100962 if (slice_used > cfqq->allocated_slice) {
963 *unaccounted_time = slice_used - cfqq->allocated_slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500964 slice_used = cfqq->allocated_slice;
Justin TerAvest167400d2011-03-12 16:54:00 +0100965 }
966 if (time_after(cfqq->slice_start, cfqq->dispatch_start))
967 *unaccounted_time += cfqq->slice_start -
968 cfqq->dispatch_start;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500969 }
970
Vivek Goyaldae739e2009-12-03 12:59:45 -0500971 return slice_used;
972}
973
974static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
Vivek Goyale5ff0822010-04-26 19:25:11 +0200975 struct cfq_queue *cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500976{
977 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Justin TerAvest167400d2011-03-12 16:54:00 +0100978 unsigned int used_sl, charge, unaccounted_sl = 0;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500979 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
980 - cfqg->service_tree_idle.count;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500981
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500982 BUG_ON(nr_sync < 0);
Justin TerAvest167400d2011-03-12 16:54:00 +0100983 used_sl = charge = cfq_cfqq_slice_usage(cfqq, &unaccounted_sl);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500984
Vivek Goyal02b35082010-08-23 12:23:53 +0200985 if (iops_mode(cfqd))
986 charge = cfqq->slice_dispatch;
987 else if (!cfq_cfqq_sync(cfqq) && !nr_sync)
988 charge = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500989
990 /* Can't update vdisktime while group is on service tree */
Justin TerAvest8184f932011-03-17 16:12:36 +0100991 cfq_group_service_tree_del(st, cfqg);
Vivek Goyal02b35082010-08-23 12:23:53 +0200992 cfqg->vdisktime += cfq_scale_slice(charge, cfqg);
Justin TerAvest8184f932011-03-17 16:12:36 +0100993 /* If a new weight was requested, update now, off tree */
994 cfq_group_service_tree_add(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500995
996 /* This group is being expired. Save the context */
997 if (time_after(cfqd->workload_expires, jiffies)) {
998 cfqg->saved_workload_slice = cfqd->workload_expires
999 - jiffies;
1000 cfqg->saved_workload = cfqd->serving_type;
1001 cfqg->saved_serving_prio = cfqd->serving_prio;
1002 } else
1003 cfqg->saved_workload_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -05001004
1005 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
1006 st->min_vdisktime);
Joe Perchesfd16d262011-06-13 10:42:49 +02001007 cfq_log_cfqq(cfqq->cfqd, cfqq,
1008 "sl_used=%u disp=%u charge=%u iops=%u sect=%lu",
1009 used_sl, cfqq->slice_dispatch, charge,
1010 iops_mode(cfqd), cfqq->nr_sectors);
Justin TerAvest167400d2011-03-12 16:54:00 +01001011 cfq_blkiocg_update_timeslice_used(&cfqg->blkg, used_sl,
1012 unaccounted_sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04001013 cfq_blkiocg_set_start_empty_time(&cfqg->blkg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001014}
1015
Vivek Goyal25fb5162009-12-03 12:59:46 -05001016#ifdef CONFIG_CFQ_GROUP_IOSCHED
1017static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg)
1018{
1019 if (blkg)
1020 return container_of(blkg, struct cfq_group, blkg);
1021 return NULL;
1022}
1023
Paul Bolle8aea4542011-06-06 05:07:54 +02001024static void cfq_update_blkio_group_weight(void *key, struct blkio_group *blkg,
1025 unsigned int weight)
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001026{
Justin TerAvest8184f932011-03-17 16:12:36 +01001027 struct cfq_group *cfqg = cfqg_of_blkg(blkg);
1028 cfqg->new_weight = weight;
1029 cfqg->needs_update = true;
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001030}
1031
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001032static void cfq_init_add_cfqg_lists(struct cfq_data *cfqd,
1033 struct cfq_group *cfqg, struct blkio_cgroup *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001034{
Vivek Goyal22084192009-12-03 12:59:49 -05001035 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
1036 unsigned int major, minor;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001037
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001038 /*
1039 * Add group onto cgroup list. It might happen that bdi->dev is
1040 * not initialized yet. Initialize this new group without major
1041 * and minor info and this info will be filled in once a new thread
1042 * comes for IO.
1043 */
1044 if (bdi->dev) {
Ricky Beniteza74b2ad2010-04-05 18:22:17 +02001045 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001046 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg,
1047 (void *)cfqd, MKDEV(major, minor));
1048 } else
1049 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg,
1050 (void *)cfqd, 0);
1051
1052 cfqd->nr_blkcg_linked_grps++;
1053 cfqg->weight = blkcg_get_weight(blkcg, cfqg->blkg.dev);
1054
1055 /* Add group on cfqd list */
1056 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
1057}
1058
1059/*
1060 * Should be called from sleepable context. No request queue lock as per
1061 * cpu stats are allocated dynamically and alloc_percpu needs to be called
1062 * from sleepable context.
1063 */
1064static struct cfq_group * cfq_alloc_cfqg(struct cfq_data *cfqd)
1065{
1066 struct cfq_group *cfqg = NULL;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001067 int i, j, ret;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001068 struct cfq_rb_root *st;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001069
1070 cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
1071 if (!cfqg)
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001072 return NULL;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001073
Vivek Goyal25fb5162009-12-03 12:59:46 -05001074 for_each_cfqg_st(cfqg, i, j, st)
1075 *st = CFQ_RB_ROOT;
1076 RB_CLEAR_NODE(&cfqg->rb_node);
1077
Shaohua Li7700fc42011-07-12 14:24:56 +02001078 cfqg->ttime.last_end_request = jiffies;
1079
Vivek Goyalb1c35762009-12-03 12:59:47 -05001080 /*
1081 * Take the initial reference that will be released on destroy
1082 * This can be thought of a joint reference by cgroup and
1083 * elevator which will be dropped by either elevator exit
1084 * or cgroup deletion path depending on who is exiting first.
1085 */
Shaohua Li329a6782011-01-07 08:48:28 +01001086 cfqg->ref = 1;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001087
1088 ret = blkio_alloc_blkg_stats(&cfqg->blkg);
1089 if (ret) {
1090 kfree(cfqg);
1091 return NULL;
1092 }
1093
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001094 return cfqg;
1095}
1096
1097static struct cfq_group *
1098cfq_find_cfqg(struct cfq_data *cfqd, struct blkio_cgroup *blkcg)
1099{
1100 struct cfq_group *cfqg = NULL;
1101 void *key = cfqd;
1102 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
1103 unsigned int major, minor;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001104
Vivek Goyal180be2a2010-09-14 08:47:11 +02001105 /*
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001106 * This is the common case when there are no blkio cgroups.
1107 * Avoid lookup in this case
Vivek Goyal180be2a2010-09-14 08:47:11 +02001108 */
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001109 if (blkcg == &blkio_root_cgroup)
1110 cfqg = &cfqd->root_group;
1111 else
1112 cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key));
1113
1114 if (cfqg && !cfqg->blkg.dev && bdi->dev && dev_name(bdi->dev)) {
Vivek Goyal180be2a2010-09-14 08:47:11 +02001115 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001116 cfqg->blkg.dev = MKDEV(major, minor);
1117 }
Vivek Goyal180be2a2010-09-14 08:47:11 +02001118
Vivek Goyal25fb5162009-12-03 12:59:46 -05001119 return cfqg;
1120}
1121
1122/*
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001123 * Search for the cfq group current task belongs to. request_queue lock must
1124 * be held.
Vivek Goyal25fb5162009-12-03 12:59:46 -05001125 */
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001126static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001127{
Vivek Goyal70087dc2011-05-16 15:24:08 +02001128 struct blkio_cgroup *blkcg;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001129 struct cfq_group *cfqg = NULL, *__cfqg = NULL;
1130 struct request_queue *q = cfqd->queue;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001131
1132 rcu_read_lock();
Vivek Goyal70087dc2011-05-16 15:24:08 +02001133 blkcg = task_blkio_cgroup(current);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001134 cfqg = cfq_find_cfqg(cfqd, blkcg);
1135 if (cfqg) {
1136 rcu_read_unlock();
1137 return cfqg;
1138 }
1139
1140 /*
1141 * Need to allocate a group. Allocation of group also needs allocation
1142 * of per cpu stats which in-turn takes a mutex() and can block. Hence
1143 * we need to drop rcu lock and queue_lock before we call alloc.
1144 *
1145 * Not taking any queue reference here and assuming that queue is
1146 * around by the time we return. CFQ queue allocation code does
1147 * the same. It might be racy though.
1148 */
1149
1150 rcu_read_unlock();
1151 spin_unlock_irq(q->queue_lock);
1152
1153 cfqg = cfq_alloc_cfqg(cfqd);
1154
1155 spin_lock_irq(q->queue_lock);
1156
1157 rcu_read_lock();
1158 blkcg = task_blkio_cgroup(current);
1159
1160 /*
1161 * If some other thread already allocated the group while we were
1162 * not holding queue lock, free up the group
1163 */
1164 __cfqg = cfq_find_cfqg(cfqd, blkcg);
1165
1166 if (__cfqg) {
1167 kfree(cfqg);
1168 rcu_read_unlock();
1169 return __cfqg;
1170 }
1171
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001172 if (!cfqg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001173 cfqg = &cfqd->root_group;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001174
1175 cfq_init_add_cfqg_lists(cfqd, cfqg, blkcg);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001176 rcu_read_unlock();
1177 return cfqg;
1178}
1179
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001180static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1181{
Shaohua Li329a6782011-01-07 08:48:28 +01001182 cfqg->ref++;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001183 return cfqg;
1184}
1185
Vivek Goyal25fb5162009-12-03 12:59:46 -05001186static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1187{
1188 /* Currently, all async queues are mapped to root group */
1189 if (!cfq_cfqq_sync(cfqq))
1190 cfqg = &cfqq->cfqd->root_group;
1191
1192 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001193 /* cfqq reference on cfqg */
Shaohua Li329a6782011-01-07 08:48:28 +01001194 cfqq->cfqg->ref++;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001195}
Vivek Goyalb1c35762009-12-03 12:59:47 -05001196
1197static void cfq_put_cfqg(struct cfq_group *cfqg)
1198{
1199 struct cfq_rb_root *st;
1200 int i, j;
1201
Shaohua Li329a6782011-01-07 08:48:28 +01001202 BUG_ON(cfqg->ref <= 0);
1203 cfqg->ref--;
1204 if (cfqg->ref)
Vivek Goyalb1c35762009-12-03 12:59:47 -05001205 return;
1206 for_each_cfqg_st(cfqg, i, j, st)
Gui Jianfengb54ce602010-11-30 20:52:46 +01001207 BUG_ON(!RB_EMPTY_ROOT(&st->rb));
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001208 free_percpu(cfqg->blkg.stats_cpu);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001209 kfree(cfqg);
1210}
1211
1212static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1213{
1214 /* Something wrong if we are trying to remove same group twice */
1215 BUG_ON(hlist_unhashed(&cfqg->cfqd_node));
1216
1217 hlist_del_init(&cfqg->cfqd_node);
1218
Vivek Goyala5395b82011-08-02 09:24:09 +02001219 BUG_ON(cfqd->nr_blkcg_linked_grps <= 0);
1220 cfqd->nr_blkcg_linked_grps--;
1221
Vivek Goyalb1c35762009-12-03 12:59:47 -05001222 /*
1223 * Put the reference taken at the time of creation so that when all
1224 * queues are gone, group can be destroyed.
1225 */
1226 cfq_put_cfqg(cfqg);
1227}
1228
1229static void cfq_release_cfq_groups(struct cfq_data *cfqd)
1230{
1231 struct hlist_node *pos, *n;
1232 struct cfq_group *cfqg;
1233
1234 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1235 /*
1236 * If cgroup removal path got to blk_group first and removed
1237 * it from cgroup list, then it will take care of destroying
1238 * cfqg also.
1239 */
Vivek Goyale98ef892010-06-18 10:39:47 -04001240 if (!cfq_blkiocg_del_blkio_group(&cfqg->blkg))
Vivek Goyalb1c35762009-12-03 12:59:47 -05001241 cfq_destroy_cfqg(cfqd, cfqg);
1242 }
1243}
1244
1245/*
1246 * Blk cgroup controller notification saying that blkio_group object is being
1247 * delinked as associated cgroup object is going away. That also means that
1248 * no new IO will come in this group. So get rid of this group as soon as
1249 * any pending IO in the group is finished.
1250 *
1251 * This function is called under rcu_read_lock(). key is the rcu protected
1252 * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu
1253 * read lock.
1254 *
1255 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
1256 * it should not be NULL as even if elevator was exiting, cgroup deltion
1257 * path got to it first.
1258 */
Paul Bolle8aea4542011-06-06 05:07:54 +02001259static void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
Vivek Goyalb1c35762009-12-03 12:59:47 -05001260{
1261 unsigned long flags;
1262 struct cfq_data *cfqd = key;
1263
1264 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1265 cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg));
1266 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1267}
1268
Vivek Goyal25fb5162009-12-03 12:59:46 -05001269#else /* GROUP_IOSCHED */
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001270static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001271{
1272 return &cfqd->root_group;
1273}
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001274
1275static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1276{
Dmitry Monakhov50eaeb32010-04-28 19:50:33 +02001277 return cfqg;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001278}
1279
Vivek Goyal25fb5162009-12-03 12:59:46 -05001280static inline void
1281cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1282 cfqq->cfqg = cfqg;
1283}
1284
Vivek Goyalb1c35762009-12-03 12:59:47 -05001285static void cfq_release_cfq_groups(struct cfq_data *cfqd) {}
1286static inline void cfq_put_cfqg(struct cfq_group *cfqg) {}
1287
Vivek Goyal25fb5162009-12-03 12:59:46 -05001288#endif /* GROUP_IOSCHED */
1289
Jens Axboe498d3aa22007-04-26 12:54:48 +02001290/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001291 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +02001292 * requests waiting to be processed. It is sorted in the order that
1293 * we will service the queues.
1294 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001295static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001296 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02001297{
Jens Axboe08717142008-01-28 11:38:15 +01001298 struct rb_node **p, *parent;
1299 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001300 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001301 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +02001302 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001303 int new_cfqq = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05001304
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001305 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
Vivek Goyal65b32a52009-12-16 17:52:59 -05001306 cfqq_type(cfqq));
Jens Axboe08717142008-01-28 11:38:15 +01001307 if (cfq_class_idle(cfqq)) {
1308 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001309 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +01001310 if (parent && parent != &cfqq->rb_node) {
1311 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1312 rb_key += __cfqq->rb_key;
1313 } else
1314 rb_key += jiffies;
1315 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02001316 /*
1317 * Get our rb key offset. Subtract any residual slice
1318 * value carried from last service. A negative resid
1319 * count indicates slice overrun, and this should position
1320 * the next service time further away in the tree.
1321 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001322 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02001323 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02001324 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001325 } else {
1326 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001327 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001328 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1329 }
Jens Axboed9e76202007-04-20 14:27:50 +02001330
1331 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05001332 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01001333 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001334 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01001335 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001336 if (rb_key == cfqq->rb_key &&
1337 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +02001338 return;
Jens Axboe53b037442006-07-28 09:48:51 +02001339
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001340 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1341 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001342 }
Jens Axboed9e76202007-04-20 14:27:50 +02001343
Jens Axboe498d3aa22007-04-26 12:54:48 +02001344 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01001345 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001346 cfqq->service_tree = service_tree;
1347 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02001348 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +02001349 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +02001350
Jens Axboed9e76202007-04-20 14:27:50 +02001351 parent = *p;
1352 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1353
Jens Axboe0c534e02007-04-18 20:01:57 +02001354 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001355 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02001356 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001357 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +02001358 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001359 else {
Jens Axboe67060e32007-04-18 20:13:32 +02001360 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02001361 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001362 }
Jens Axboe67060e32007-04-18 20:13:32 +02001363
1364 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +02001365 }
1366
Jens Axboecc09e292007-04-26 12:53:50 +02001367 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001368 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02001369
Jens Axboed9e76202007-04-20 14:27:50 +02001370 cfqq->rb_key = rb_key;
1371 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001372 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1373 service_tree->count++;
Namhyung Kim20359f22011-05-24 10:23:22 +02001374 if (add_front || !new_cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001375 return;
Justin TerAvest8184f932011-03-17 16:12:36 +01001376 cfq_group_notify_queue_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377}
1378
Jens Axboea36e71f2009-04-15 12:15:11 +02001379static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001380cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1381 sector_t sector, struct rb_node **ret_parent,
1382 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02001383{
Jens Axboea36e71f2009-04-15 12:15:11 +02001384 struct rb_node **p, *parent;
1385 struct cfq_queue *cfqq = NULL;
1386
1387 parent = NULL;
1388 p = &root->rb_node;
1389 while (*p) {
1390 struct rb_node **n;
1391
1392 parent = *p;
1393 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1394
1395 /*
1396 * Sort strictly based on sector. Smallest to the left,
1397 * largest to the right.
1398 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001399 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001400 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001401 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001402 n = &(*p)->rb_left;
1403 else
1404 break;
1405 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001406 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001407 }
1408
1409 *ret_parent = parent;
1410 if (rb_link)
1411 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001412 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001413}
1414
1415static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1416{
Jens Axboea36e71f2009-04-15 12:15:11 +02001417 struct rb_node **p, *parent;
1418 struct cfq_queue *__cfqq;
1419
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001420 if (cfqq->p_root) {
1421 rb_erase(&cfqq->p_node, cfqq->p_root);
1422 cfqq->p_root = NULL;
1423 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001424
1425 if (cfq_class_idle(cfqq))
1426 return;
1427 if (!cfqq->next_rq)
1428 return;
1429
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001430 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001431 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1432 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001433 if (!__cfqq) {
1434 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001435 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1436 } else
1437 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001438}
1439
Jens Axboe498d3aa22007-04-26 12:54:48 +02001440/*
1441 * Update cfqq's position in the service tree.
1442 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001443static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001444{
Jens Axboe6d048f52007-04-25 12:44:27 +02001445 /*
1446 * Resorting requires the cfqq to be on the RR list already.
1447 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001448 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001449 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001450 cfq_prio_tree_add(cfqd, cfqq);
1451 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001452}
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454/*
1455 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001456 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 */
Jens Axboefebffd62008-01-28 13:19:43 +01001458static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
Jens Axboe7b679132008-05-30 12:23:07 +02001460 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001461 BUG_ON(cfq_cfqq_on_rr(cfqq));
1462 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 cfqd->busy_queues++;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001464 if (cfq_cfqq_sync(cfqq))
1465 cfqd->busy_sync_queues++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Jens Axboeedd75ff2007-04-19 12:03:34 +02001467 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
Jens Axboe498d3aa22007-04-26 12:54:48 +02001470/*
1471 * Called when the cfqq no longer has requests pending, remove it from
1472 * the service tree.
1473 */
Jens Axboefebffd62008-01-28 13:19:43 +01001474static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Jens Axboe7b679132008-05-30 12:23:07 +02001476 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001477 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1478 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001480 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1481 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1482 cfqq->service_tree = NULL;
1483 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001484 if (cfqq->p_root) {
1485 rb_erase(&cfqq->p_node, cfqq->p_root);
1486 cfqq->p_root = NULL;
1487 }
Jens Axboed9e76202007-04-20 14:27:50 +02001488
Justin TerAvest8184f932011-03-17 16:12:36 +01001489 cfq_group_notify_queue_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 BUG_ON(!cfqd->busy_queues);
1491 cfqd->busy_queues--;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001492 if (cfq_cfqq_sync(cfqq))
1493 cfqd->busy_sync_queues--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
1496/*
1497 * rb tree support functions
1498 */
Jens Axboefebffd62008-01-28 13:19:43 +01001499static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
Jens Axboe5e705372006-07-13 12:39:25 +02001501 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001502 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Jens Axboeb4878f22005-10-20 16:42:29 +02001504 BUG_ON(!cfqq->queued[sync]);
1505 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Jens Axboe5e705372006-07-13 12:39:25 +02001507 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Vivek Goyalf04a6422009-12-03 12:59:40 -05001509 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1510 /*
1511 * Queue will be deleted from service tree when we actually
1512 * expire it later. Right now just remove it from prio tree
1513 * as it is empty.
1514 */
1515 if (cfqq->p_root) {
1516 rb_erase(&cfqq->p_node, cfqq->p_root);
1517 cfqq->p_root = NULL;
1518 }
1519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
1521
Jens Axboe5e705372006-07-13 12:39:25 +02001522static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
Jens Axboe5e705372006-07-13 12:39:25 +02001524 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 struct cfq_data *cfqd = cfqq->cfqd;
Jeff Moyer796d5112011-06-02 21:19:05 +02001526 struct request *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Jens Axboe5380a102006-07-13 12:37:56 +02001528 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Jeff Moyer796d5112011-06-02 21:19:05 +02001530 elv_rb_add(&cfqq->sort_list, rq);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001531
1532 if (!cfq_cfqq_on_rr(cfqq))
1533 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001534
1535 /*
1536 * check if this request is a better next-serve candidate
1537 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001538 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001539 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001540
1541 /*
1542 * adjust priority tree position, if ->next_rq changes
1543 */
1544 if (prev != cfqq->next_rq)
1545 cfq_prio_tree_add(cfqd, cfqq);
1546
Jens Axboe5044eed2007-04-25 11:53:48 +02001547 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Jens Axboefebffd62008-01-28 13:19:43 +01001550static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Jens Axboe5380a102006-07-13 12:37:56 +02001552 elv_rb_del(&cfqq->sort_list, rq);
1553 cfqq->queued[rq_is_sync(rq)]--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001554 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1555 rq_data_dir(rq), rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02001556 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04001557 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001558 &cfqq->cfqd->serving_group->blkg, rq_data_dir(rq),
1559 rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Jens Axboe206dc692006-03-28 13:03:44 +02001562static struct request *
1563cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Jens Axboe206dc692006-03-28 13:03:44 +02001565 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01001566 struct cfq_io_cq *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001567 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Jens Axboe4ac845a2008-01-24 08:44:49 +01001569 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001570 if (!cic)
1571 return NULL;
1572
1573 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001574 if (cfqq) {
1575 sector_t sector = bio->bi_sector + bio_sectors(bio);
1576
Jens Axboe21183b02006-07-13 12:33:14 +02001577 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return NULL;
1581}
1582
Jens Axboe165125e2007-07-24 09:28:11 +02001583static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001584{
1585 struct cfq_data *cfqd = q->elevator->elevator_data;
1586
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001587 cfqd->rq_in_driver++;
Jens Axboe7b679132008-05-30 12:23:07 +02001588 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001589 cfqd->rq_in_driver);
Jens Axboe25776e32006-06-01 10:12:26 +02001590
Tejun Heo5b936292009-05-07 22:24:38 +09001591 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001592}
1593
Jens Axboe165125e2007-07-24 09:28:11 +02001594static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Jens Axboe22e2c502005-06-27 10:55:12 +02001596 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001598 WARN_ON(!cfqd->rq_in_driver);
1599 cfqd->rq_in_driver--;
Jens Axboe7b679132008-05-30 12:23:07 +02001600 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001601 cfqd->rq_in_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602}
1603
Jens Axboeb4878f22005-10-20 16:42:29 +02001604static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
Jens Axboe5e705372006-07-13 12:39:25 +02001606 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001607
Jens Axboe5e705372006-07-13 12:39:25 +02001608 if (cfqq->next_rq == rq)
1609 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Jens Axboeb4878f22005-10-20 16:42:29 +02001611 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001612 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001613
Aaron Carroll45333d52008-08-26 15:52:36 +02001614 cfqq->cfqd->rq_queued--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001615 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1616 rq_data_dir(rq), rq_is_sync(rq));
Christoph Hellwig65299a32011-08-23 14:50:29 +02001617 if (rq->cmd_flags & REQ_PRIO) {
1618 WARN_ON(!cfqq->prio_pending);
1619 cfqq->prio_pending--;
Jens Axboeb53d1ed2011-08-19 08:34:48 +02001620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}
1622
Jens Axboe165125e2007-07-24 09:28:11 +02001623static int cfq_merge(struct request_queue *q, struct request **req,
1624 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
1626 struct cfq_data *cfqd = q->elevator->elevator_data;
1627 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Jens Axboe206dc692006-03-28 13:03:44 +02001629 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001630 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001631 *req = __rq;
1632 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
1634
1635 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
Jens Axboe165125e2007-07-24 09:28:11 +02001638static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001639 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
Jens Axboe21183b02006-07-13 12:33:14 +02001641 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001642 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Jens Axboe5e705372006-07-13 12:39:25 +02001644 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
1647
Divyesh Shah812d4022010-04-08 21:14:23 -07001648static void cfq_bio_merged(struct request_queue *q, struct request *req,
1649 struct bio *bio)
1650{
Vivek Goyale98ef892010-06-18 10:39:47 -04001651 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(req))->blkg,
1652 bio_data_dir(bio), cfq_bio_sync(bio));
Divyesh Shah812d4022010-04-08 21:14:23 -07001653}
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655static void
Jens Axboe165125e2007-07-24 09:28:11 +02001656cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 struct request *next)
1658{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001659 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001660 /*
1661 * reposition in fifo if next is older than rq
1662 */
1663 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001664 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001665 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001666 rq_set_fifo_time(rq, rq_fifo_time(next));
1667 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001668
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001669 if (cfqq->next_rq == next)
1670 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001671 cfq_remove_request(next);
Vivek Goyale98ef892010-06-18 10:39:47 -04001672 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(rq))->blkg,
1673 rq_data_dir(next), rq_is_sync(next));
Jens Axboe22e2c502005-06-27 10:55:12 +02001674}
1675
Jens Axboe165125e2007-07-24 09:28:11 +02001676static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001677 struct bio *bio)
1678{
1679 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heoc5869802011-12-14 00:33:41 +01001680 struct cfq_io_cq *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001681 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001682
1683 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001684 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001685 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001686 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001687 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001688
1689 /*
Tejun Heof1a4f4d2011-12-14 00:33:39 +01001690 * Lookup the cfqq that this bio will be queued with and allow
1691 * merge only if rq is queued there. This function can be called
1692 * from plug merge without queue_lock. In such cases, ioc of @rq
1693 * and %current are guaranteed to be equal. Avoid lookup which
1694 * requires queue_lock by using @rq's cic.
Jens Axboeda775262006-12-20 11:04:12 +01001695 */
Tejun Heoc5869802011-12-14 00:33:41 +01001696 if (current->io_context == RQ_CIC(rq)->icq.ioc) {
Tejun Heof1a4f4d2011-12-14 00:33:39 +01001697 cic = RQ_CIC(rq);
1698 } else {
1699 cic = cfq_cic_lookup(cfqd, current->io_context);
1700 if (!cic)
1701 return false;
1702 }
Jens Axboe719d3402006-12-22 09:38:53 +01001703
Vasily Tarasov91fac312007-04-25 12:29:51 +02001704 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001705 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001706}
1707
Divyesh Shah812df482010-04-08 21:15:35 -07001708static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1709{
1710 del_timer(&cfqd->idle_slice_timer);
Vivek Goyale98ef892010-06-18 10:39:47 -04001711 cfq_blkiocg_update_idle_time_stats(&cfqq->cfqg->blkg);
Divyesh Shah812df482010-04-08 21:15:35 -07001712}
1713
Jens Axboefebffd62008-01-28 13:19:43 +01001714static void __cfq_set_active_queue(struct cfq_data *cfqd,
1715 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001716{
1717 if (cfqq) {
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001718 cfq_log_cfqq(cfqd, cfqq, "set_active wl_prio:%d wl_type:%d",
1719 cfqd->serving_prio, cfqd->serving_type);
Justin TerAvest62a37f62011-03-23 08:25:44 +01001720 cfq_blkiocg_update_avg_queue_size_stats(&cfqq->cfqg->blkg);
1721 cfqq->slice_start = 0;
1722 cfqq->dispatch_start = jiffies;
1723 cfqq->allocated_slice = 0;
1724 cfqq->slice_end = 0;
1725 cfqq->slice_dispatch = 0;
1726 cfqq->nr_sectors = 0;
1727
1728 cfq_clear_cfqq_wait_request(cfqq);
1729 cfq_clear_cfqq_must_dispatch(cfqq);
1730 cfq_clear_cfqq_must_alloc_slice(cfqq);
1731 cfq_clear_cfqq_fifo_expire(cfqq);
1732 cfq_mark_cfqq_slice_new(cfqq);
1733
1734 cfq_del_timer(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001735 }
1736
1737 cfqd->active_queue = cfqq;
1738}
1739
1740/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001741 * current cfqq expired its slice (or was too idle), select new one
1742 */
1743static void
1744__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Vivek Goyale5ff0822010-04-26 19:25:11 +02001745 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001746{
Jens Axboe7b679132008-05-30 12:23:07 +02001747 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1748
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001749 if (cfq_cfqq_wait_request(cfqq))
Divyesh Shah812df482010-04-08 21:15:35 -07001750 cfq_del_timer(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001751
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001752 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05001753 cfq_clear_cfqq_wait_busy(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001754
1755 /*
Shaohua Liae54abe2010-02-05 13:11:45 +01001756 * If this cfqq is shared between multiple processes, check to
1757 * make sure that those processes are still issuing I/Os within
1758 * the mean seek distance. If not, it may be time to break the
1759 * queues apart again.
1760 */
1761 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
1762 cfq_mark_cfqq_split_coop(cfqq);
1763
1764 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001765 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001766 */
Shaohua Lic553f8e2011-01-14 08:41:03 +01001767 if (timed_out) {
1768 if (cfq_cfqq_slice_new(cfqq))
Vivek Goyalba5bd522011-01-19 08:25:02 -07001769 cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +01001770 else
1771 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001772 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1773 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001774
Vivek Goyale5ff0822010-04-26 19:25:11 +02001775 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001776
Vivek Goyalf04a6422009-12-03 12:59:40 -05001777 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1778 cfq_del_cfqq_rr(cfqd, cfqq);
1779
Jens Axboeedd75ff2007-04-19 12:03:34 +02001780 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001781
1782 if (cfqq == cfqd->active_queue)
1783 cfqd->active_queue = NULL;
1784
1785 if (cfqd->active_cic) {
Tejun Heoc5869802011-12-14 00:33:41 +01001786 put_io_context(cfqd->active_cic->icq.ioc, cfqd->queue);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001787 cfqd->active_cic = NULL;
1788 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001789}
1790
Vivek Goyale5ff0822010-04-26 19:25:11 +02001791static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001792{
1793 struct cfq_queue *cfqq = cfqd->active_queue;
1794
1795 if (cfqq)
Vivek Goyale5ff0822010-04-26 19:25:11 +02001796 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001797}
1798
Jens Axboe498d3aa22007-04-26 12:54:48 +02001799/*
1800 * Get next queue for service. Unless we have a queue preemption,
1801 * we'll simply select the first cfqq in the service tree.
1802 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001803static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001804{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001805 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001806 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -05001807 cfqd->serving_type);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001808
Vivek Goyalf04a6422009-12-03 12:59:40 -05001809 if (!cfqd->rq_queued)
1810 return NULL;
1811
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001812 /* There is nothing to dispatch */
1813 if (!service_tree)
1814 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001815 if (RB_EMPTY_ROOT(&service_tree->rb))
1816 return NULL;
1817 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001818}
1819
Vivek Goyalf04a6422009-12-03 12:59:40 -05001820static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1821{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001822 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05001823 struct cfq_queue *cfqq;
1824 int i, j;
1825 struct cfq_rb_root *st;
1826
1827 if (!cfqd->rq_queued)
1828 return NULL;
1829
Vivek Goyal25fb5162009-12-03 12:59:46 -05001830 cfqg = cfq_get_next_cfqg(cfqd);
1831 if (!cfqg)
1832 return NULL;
1833
Vivek Goyalf04a6422009-12-03 12:59:40 -05001834 for_each_cfqg_st(cfqg, i, j, st)
1835 if ((cfqq = cfq_rb_first(st)) != NULL)
1836 return cfqq;
1837 return NULL;
1838}
1839
Jens Axboe498d3aa22007-04-26 12:54:48 +02001840/*
1841 * Get and set a new active queue for service.
1842 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001843static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1844 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001845{
Jens Axboee00ef792009-11-04 08:54:55 +01001846 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001847 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001848
Jens Axboe22e2c502005-06-27 10:55:12 +02001849 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001850 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001851}
1852
Jens Axboed9e76202007-04-20 14:27:50 +02001853static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1854 struct request *rq)
1855{
Tejun Heo83096eb2009-05-07 22:24:39 +09001856 if (blk_rq_pos(rq) >= cfqd->last_position)
1857 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001858 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001859 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001860}
1861
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001862static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Shaohua Lie9ce3352010-03-19 08:03:04 +01001863 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001864{
Shaohua Lie9ce3352010-03-19 08:03:04 +01001865 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001866}
1867
Jens Axboea36e71f2009-04-15 12:15:11 +02001868static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1869 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001870{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001871 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001872 struct rb_node *parent, *node;
1873 struct cfq_queue *__cfqq;
1874 sector_t sector = cfqd->last_position;
1875
1876 if (RB_EMPTY_ROOT(root))
1877 return NULL;
1878
1879 /*
1880 * First, if we find a request starting at the end of the last
1881 * request, choose it.
1882 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001883 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001884 if (__cfqq)
1885 return __cfqq;
1886
1887 /*
1888 * If the exact sector wasn't found, the parent of the NULL leaf
1889 * will contain the closest sector.
1890 */
1891 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001892 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001893 return __cfqq;
1894
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001895 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001896 node = rb_next(&__cfqq->p_node);
1897 else
1898 node = rb_prev(&__cfqq->p_node);
1899 if (!node)
1900 return NULL;
1901
1902 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001903 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001904 return __cfqq;
1905
1906 return NULL;
1907}
1908
1909/*
1910 * cfqd - obvious
1911 * cur_cfqq - passed in so that we don't decide that the current queue is
1912 * closely cooperating with itself.
1913 *
1914 * So, basically we're assuming that that cur_cfqq has dispatched at least
1915 * one request, and that cfqd->last_position reflects a position on the disk
1916 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1917 * assumption.
1918 */
1919static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001920 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001921{
1922 struct cfq_queue *cfqq;
1923
Divyesh Shah39c01b22010-03-25 15:45:57 +01001924 if (cfq_class_idle(cur_cfqq))
1925 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001926 if (!cfq_cfqq_sync(cur_cfqq))
1927 return NULL;
1928 if (CFQQ_SEEKY(cur_cfqq))
1929 return NULL;
1930
Jens Axboea36e71f2009-04-15 12:15:11 +02001931 /*
Gui Jianfengb9d8f4c2009-12-08 08:54:17 +01001932 * Don't search priority tree if it's the only queue in the group.
1933 */
1934 if (cur_cfqq->cfqg->nr_cfqq == 1)
1935 return NULL;
1936
1937 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001938 * We should notice if some of the queues are cooperating, eg
1939 * working closely on the same area of the disk. In that case,
1940 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001941 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001942 cfqq = cfqq_close(cfqd, cur_cfqq);
1943 if (!cfqq)
1944 return NULL;
1945
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001946 /* If new queue belongs to different cfq_group, don't choose it */
1947 if (cur_cfqq->cfqg != cfqq->cfqg)
1948 return NULL;
1949
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001950 /*
1951 * It only makes sense to merge sync queues.
1952 */
1953 if (!cfq_cfqq_sync(cfqq))
1954 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001955 if (CFQQ_SEEKY(cfqq))
1956 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001957
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001958 /*
1959 * Do not merge queues of different priority classes
1960 */
1961 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1962 return NULL;
1963
Jens Axboea36e71f2009-04-15 12:15:11 +02001964 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001965}
1966
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001967/*
1968 * Determine whether we should enforce idle window for this queue.
1969 */
1970
1971static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1972{
1973 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001974 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001975
Vivek Goyalf04a6422009-12-03 12:59:40 -05001976 BUG_ON(!service_tree);
1977 BUG_ON(!service_tree->count);
1978
Vivek Goyalb6508c12010-08-23 12:23:33 +02001979 if (!cfqd->cfq_slice_idle)
1980 return false;
1981
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001982 /* We never do for idle class queues. */
1983 if (prio == IDLE_WORKLOAD)
1984 return false;
1985
1986 /* We do for queues that were marked with idle window flag. */
Shaohua Li3c764b72009-12-04 13:12:06 +01001987 if (cfq_cfqq_idle_window(cfqq) &&
1988 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001989 return true;
1990
1991 /*
1992 * Otherwise, we do only if they are the last ones
1993 * in their service tree.
1994 */
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02001995 if (service_tree->count == 1 && cfq_cfqq_sync(cfqq) &&
1996 !cfq_io_thinktime_big(cfqd, &service_tree->ttime, false))
Shaohua Lic1e44752010-11-08 15:01:02 +01001997 return true;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001998 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d",
1999 service_tree->count);
Shaohua Lic1e44752010-11-08 15:01:02 +01002000 return false;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01002001}
2002
Jens Axboe6d048f52007-04-25 12:44:27 +02002003static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002004{
Jens Axboe17926692007-01-19 11:59:30 +11002005 struct cfq_queue *cfqq = cfqd->active_queue;
Tejun Heoc5869802011-12-14 00:33:41 +01002006 struct cfq_io_cq *cic;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002007 unsigned long sl, group_idle = 0;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002008
Jens Axboea68bbddba2008-09-24 13:03:33 +02002009 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002010 * SSD device without seek penalty, disable idling. But only do so
2011 * for devices that support queuing, otherwise we still have a problem
2012 * with sync vs async workloads.
Jens Axboea68bbddba2008-09-24 13:03:33 +02002013 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002014 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbddba2008-09-24 13:03:33 +02002015 return;
2016
Jens Axboedd67d052006-06-21 09:36:18 +02002017 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02002018 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02002019
2020 /*
2021 * idle is disabled, either manually or by past process history
2022 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002023 if (!cfq_should_idle(cfqd, cfqq)) {
2024 /* no queue idling. Check for group idling */
2025 if (cfqd->cfq_group_idle)
2026 group_idle = cfqd->cfq_group_idle;
2027 else
2028 return;
2029 }
Jens Axboe6d048f52007-04-25 12:44:27 +02002030
Jens Axboe22e2c502005-06-27 10:55:12 +02002031 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002032 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02002033 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002034 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02002035 return;
2036
2037 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02002038 * task has exited, don't wait
2039 */
Jens Axboe206dc692006-03-28 13:03:44 +02002040 cic = cfqd->active_cic;
Tejun Heoc5869802011-12-14 00:33:41 +01002041 if (!cic || !atomic_read(&cic->icq.ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02002042 return;
2043
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002044 /*
2045 * If our average think time is larger than the remaining time
2046 * slice, then don't idle. This avoids overrunning the allotted
2047 * time slice.
2048 */
Shaohua Li383cd722011-07-12 14:24:35 +02002049 if (sample_valid(cic->ttime.ttime_samples) &&
2050 (cfqq->slice_end - jiffies < cic->ttime.ttime_mean)) {
Joe Perchesfd16d262011-06-13 10:42:49 +02002051 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%lu",
Shaohua Li383cd722011-07-12 14:24:35 +02002052 cic->ttime.ttime_mean);
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002053 return;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002054 }
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002055
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002056 /* There are other queues in the group, don't do group idle */
2057 if (group_idle && cfqq->cfqg->nr_cfqq > 1)
2058 return;
2059
Jens Axboe3b181522005-06-27 10:56:24 +02002060 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002061
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002062 if (group_idle)
2063 sl = cfqd->cfq_group_idle;
2064 else
2065 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02002066
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002067 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04002068 cfq_blkiocg_update_set_idle_time_stats(&cfqq->cfqg->blkg);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002069 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu group_idle: %d", sl,
2070 group_idle ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
Jens Axboe498d3aa22007-04-26 12:54:48 +02002073/*
2074 * Move request from internal lists to the request queue dispatch list.
2075 */
Jens Axboe165125e2007-07-24 09:28:11 +02002076static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
Jens Axboe3ed9a292007-04-23 08:33:33 +02002078 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02002079 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002080
Jens Axboe7b679132008-05-30 12:23:07 +02002081 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
2082
Jeff Moyer06d21882009-09-11 17:08:59 +02002083 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02002084 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002085 cfqq->dispatched++;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002086 (RQ_CFQG(rq))->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02002087 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02002088
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002089 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
Vivek Goyalc4e78932010-08-23 12:25:03 +02002090 cfqq->nr_sectors += blk_rq_sectors(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04002091 cfq_blkiocg_update_dispatch_stats(&cfqq->cfqg->blkg, blk_rq_bytes(rq),
Divyesh Shah84c124d2010-04-09 08:31:19 +02002092 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093}
2094
2095/*
2096 * return expired entry, or NULL to just start from scratch in rbtree
2097 */
Jens Axboefebffd62008-01-28 13:19:43 +01002098static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Jens Axboe30996f42009-10-05 11:03:39 +02002100 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Jens Axboe3b181522005-06-27 10:56:24 +02002102 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11002104
2105 cfq_mark_cfqq_fifo_expire(cfqq);
2106
Jens Axboe89850f72006-07-22 16:48:31 +02002107 if (list_empty(&cfqq->fifo))
2108 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Jens Axboe89850f72006-07-22 16:48:31 +02002110 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02002111 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02002112 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Jens Axboe30996f42009-10-05 11:03:39 +02002114 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002115 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
2117
Jens Axboe22e2c502005-06-27 10:55:12 +02002118static inline int
2119cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2120{
2121 const int base_rq = cfqd->cfq_slice_async_rq;
2122
2123 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
2124
Namhyung Kimb9f8ce02011-05-24 10:23:21 +02002125 return 2 * base_rq * (IOPRIO_BE_NR - cfqq->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002126}
2127
2128/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002129 * Must be called with the queue_lock held.
2130 */
2131static int cfqq_process_refs(struct cfq_queue *cfqq)
2132{
2133 int process_refs, io_refs;
2134
2135 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
Shaohua Li30d7b942011-01-07 08:46:59 +01002136 process_refs = cfqq->ref - io_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002137 BUG_ON(process_refs < 0);
2138 return process_refs;
2139}
2140
2141static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
2142{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002143 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002144 struct cfq_queue *__cfqq;
2145
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002146 /*
2147 * If there are no process references on the new_cfqq, then it is
2148 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
2149 * chain may have dropped their last reference (not just their
2150 * last process reference).
2151 */
2152 if (!cfqq_process_refs(new_cfqq))
2153 return;
2154
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002155 /* Avoid a circular list and skip interim queue merges */
2156 while ((__cfqq = new_cfqq->new_cfqq)) {
2157 if (__cfqq == cfqq)
2158 return;
2159 new_cfqq = __cfqq;
2160 }
2161
2162 process_refs = cfqq_process_refs(cfqq);
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002163 new_process_refs = cfqq_process_refs(new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002164 /*
2165 * If the process for the cfqq has gone away, there is no
2166 * sense in merging the queues.
2167 */
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002168 if (process_refs == 0 || new_process_refs == 0)
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002169 return;
2170
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002171 /*
2172 * Merge in the direction of the lesser amount of work.
2173 */
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002174 if (new_process_refs >= process_refs) {
2175 cfqq->new_cfqq = new_cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002176 new_cfqq->ref += process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002177 } else {
2178 new_cfqq->new_cfqq = cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002179 cfqq->ref += new_process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002180 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002181}
2182
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002183static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
Vivek Goyal65b32a52009-12-16 17:52:59 -05002184 struct cfq_group *cfqg, enum wl_prio_t prio)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002185{
2186 struct cfq_queue *queue;
2187 int i;
2188 bool key_valid = false;
2189 unsigned long lowest_key = 0;
2190 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2191
Vivek Goyal65b32a52009-12-16 17:52:59 -05002192 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2193 /* select the one with lowest rb_key */
2194 queue = cfq_rb_first(service_tree_for(cfqg, prio, i));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002195 if (queue &&
2196 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2197 lowest_key = queue->rb_key;
2198 cur_best = i;
2199 key_valid = true;
2200 }
2201 }
2202
2203 return cur_best;
2204}
2205
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002206static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002207{
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002208 unsigned slice;
2209 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002210 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002211 unsigned group_slice;
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002212 enum wl_prio_t original_prio = cfqd->serving_prio;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002213
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002214 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002215 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002216 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002217 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002218 cfqd->serving_prio = BE_WORKLOAD;
2219 else {
2220 cfqd->serving_prio = IDLE_WORKLOAD;
2221 cfqd->workload_expires = jiffies + 1;
2222 return;
2223 }
2224
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002225 if (original_prio != cfqd->serving_prio)
2226 goto new_workload;
2227
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002228 /*
2229 * For RT and BE, we have to choose also the type
2230 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2231 * expiration time
2232 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002233 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002234 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002235
2236 /*
Vivek Goyal65b32a52009-12-16 17:52:59 -05002237 * check workload expiration, and that we still have other queues ready
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002238 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002239 if (count && !time_after(jiffies, cfqd->workload_expires))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002240 return;
2241
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002242new_workload:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002243 /* otherwise select new workload type */
2244 cfqd->serving_type =
Vivek Goyal65b32a52009-12-16 17:52:59 -05002245 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio);
2246 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002247 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002248
2249 /*
2250 * the workload slice is computed as a fraction of target latency
2251 * proportional to the number of queues in that workload, over
2252 * all the queues in the same priority class
2253 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002254 group_slice = cfq_group_slice(cfqd, cfqg);
2255
2256 slice = group_slice * count /
2257 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2258 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002259
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002260 if (cfqd->serving_type == ASYNC_WORKLOAD) {
2261 unsigned int tmp;
2262
2263 /*
2264 * Async queues are currently system wide. Just taking
2265 * proportion of queues with-in same group will lead to higher
2266 * async ratio system wide as generally root group is going
2267 * to have higher weight. A more accurate thing would be to
2268 * calculate system wide asnc/sync ratio.
2269 */
2270 tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg);
2271 tmp = tmp/cfqd->busy_queues;
2272 slice = min_t(unsigned, slice, tmp);
2273
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002274 /* async workload slice is scaled down according to
2275 * the sync/async slice ratio. */
2276 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002277 } else
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002278 /* sync workload slice is at least 2 * cfq_slice_idle */
2279 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2280
2281 slice = max_t(unsigned, slice, CFQ_MIN_TT);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002282 cfq_log(cfqd, "workload slice:%d", slice);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002283 cfqd->workload_expires = jiffies + slice;
2284}
2285
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002286static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2287{
2288 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002289 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002290
2291 if (RB_EMPTY_ROOT(&st->rb))
2292 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002293 cfqg = cfq_rb_first_group(st);
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002294 update_min_vdisktime(st);
2295 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002296}
2297
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002298static void cfq_choose_cfqg(struct cfq_data *cfqd)
2299{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002300 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2301
2302 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002303
2304 /* Restore the workload type data */
2305 if (cfqg->saved_workload_slice) {
2306 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2307 cfqd->serving_type = cfqg->saved_workload;
2308 cfqd->serving_prio = cfqg->saved_serving_prio;
Gui Jianfeng66ae2912009-12-15 10:08:45 +01002309 } else
2310 cfqd->workload_expires = jiffies - 1;
2311
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002312 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002313}
2314
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002315/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02002316 * Select a queue for service. If we have a current active queue,
2317 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02002318 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002319static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002320{
Jens Axboea36e71f2009-04-15 12:15:11 +02002321 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002322
2323 cfqq = cfqd->active_queue;
2324 if (!cfqq)
2325 goto new_queue;
2326
Vivek Goyalf04a6422009-12-03 12:59:40 -05002327 if (!cfqd->rq_queued)
2328 return NULL;
Vivek Goyalc244bb52009-12-08 17:52:57 -05002329
2330 /*
2331 * We were waiting for group to get backlogged. Expire the queue
2332 */
2333 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2334 goto expire;
2335
Jens Axboe22e2c502005-06-27 10:55:12 +02002336 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002337 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02002338 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05002339 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2340 /*
2341 * If slice had not expired at the completion of last request
2342 * we might not have turned on wait_busy flag. Don't expire
2343 * the queue yet. Allow the group to get backlogged.
2344 *
2345 * The very fact that we have used the slice, that means we
2346 * have been idling all along on this queue and it should be
2347 * ok to wait for this request to complete.
2348 */
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002349 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2350 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2351 cfqq = NULL;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002352 goto keep_queue;
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002353 } else
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002354 goto check_group_idle;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002355 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002356
2357 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002358 * The active queue has requests and isn't expired, allow it to
2359 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02002360 */
Jens Axboedd67d052006-06-21 09:36:18 +02002361 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002362 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02002363
2364 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02002365 * If another queue has a request waiting within our mean seek
2366 * distance, let it run. The expire code will check for close
2367 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002368 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02002369 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002370 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002371 if (new_cfqq) {
2372 if (!cfqq->new_cfqq)
2373 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02002374 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002375 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002376
2377 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002378 * No requests pending. If the active queue still has requests in
2379 * flight or is idling for a new request, allow either of these
2380 * conditions to happen (or time out) before selecting a new queue.
2381 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002382 if (timer_pending(&cfqd->idle_slice_timer)) {
2383 cfqq = NULL;
2384 goto keep_queue;
2385 }
2386
Shaohua Li8e1ac662010-11-08 15:01:04 +01002387 /*
2388 * This is a deep seek queue, but the device is much faster than
2389 * the queue can deliver, don't idle
2390 **/
2391 if (CFQQ_SEEKY(cfqq) && cfq_cfqq_idle_window(cfqq) &&
2392 (cfq_cfqq_slice_new(cfqq) ||
2393 (cfqq->slice_end - jiffies > jiffies - cfqq->slice_start))) {
2394 cfq_clear_cfqq_deep(cfqq);
2395 cfq_clear_cfqq_idle_window(cfqq);
2396 }
2397
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002398 if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2399 cfqq = NULL;
2400 goto keep_queue;
2401 }
2402
2403 /*
2404 * If group idle is enabled and there are requests dispatched from
2405 * this group, wait for requests to complete.
2406 */
2407check_group_idle:
Shaohua Li7700fc42011-07-12 14:24:56 +02002408 if (cfqd->cfq_group_idle && cfqq->cfqg->nr_cfqq == 1 &&
2409 cfqq->cfqg->dispatched &&
2410 !cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02002411 cfqq = NULL;
2412 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002413 }
2414
Jens Axboe3b181522005-06-27 10:56:24 +02002415expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02002416 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02002417new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002418 /*
2419 * Current queue expired. Check if we have to switch to a new
2420 * service tree
2421 */
2422 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002423 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002424
Jens Axboea36e71f2009-04-15 12:15:11 +02002425 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002426keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02002427 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002428}
2429
Jens Axboefebffd62008-01-28 13:19:43 +01002430static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02002431{
2432 int dispatched = 0;
2433
2434 while (cfqq->next_rq) {
2435 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2436 dispatched++;
2437 }
2438
2439 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05002440
2441 /* By default cfqq is not expired if it is empty. Do it explicitly */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002442 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02002443 return dispatched;
2444}
2445
Jens Axboe498d3aa22007-04-26 12:54:48 +02002446/*
2447 * Drain our current requests. Used for barriers and when switching
2448 * io schedulers on-the-fly.
2449 */
Jens Axboed9e76202007-04-20 14:27:50 +02002450static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002451{
Jens Axboe08717142008-01-28 11:38:15 +01002452 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002453 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002454
Divyesh Shah3440c492010-04-09 09:29:57 +02002455 /* Expire the timeslice of the current active queue first */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002456 cfq_slice_expired(cfqd, 0);
Divyesh Shah3440c492010-04-09 09:29:57 +02002457 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
2458 __cfq_set_active_queue(cfqd, cfqq);
Vivek Goyalf04a6422009-12-03 12:59:40 -05002459 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Divyesh Shah3440c492010-04-09 09:29:57 +02002460 }
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002461
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002462 BUG_ON(cfqd->busy_queues);
2463
Jeff Moyer6923715a2009-06-12 15:29:30 +02002464 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002465 return dispatched;
2466}
2467
Shaohua Liabc3c742010-03-01 09:20:54 +01002468static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
2469 struct cfq_queue *cfqq)
2470{
2471 /* the queue hasn't finished any request, can't estimate */
2472 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +01002473 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002474 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
2475 cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +01002476 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002477
Shaohua Lic1e44752010-11-08 15:01:02 +01002478 return false;
Shaohua Liabc3c742010-03-01 09:20:54 +01002479}
2480
Jens Axboe0b182d62009-10-06 20:49:37 +02002481static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02002482{
Jens Axboe2f5cb732009-04-07 08:51:19 +02002483 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Jens Axboe2f5cb732009-04-07 08:51:19 +02002485 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02002486 * Drain async requests before we start sync IO
2487 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002488 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02002489 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02002490
2491 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002492 * If this is an async queue and we have sync IO in flight, let it wait
2493 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002494 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002495 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002496
Shaohua Liabc3c742010-03-01 09:20:54 +01002497 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002498 if (cfq_class_idle(cfqq))
2499 max_dispatch = 1;
2500
2501 /*
2502 * Does this cfqq already have too much IO in flight?
2503 */
2504 if (cfqq->dispatched >= max_dispatch) {
Shaohua Lief8a41d2011-03-07 09:26:29 +01002505 bool promote_sync = false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002506 /*
2507 * idle queue must always only have a single IO in flight
2508 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02002509 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002510 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02002511
Jens Axboe2f5cb732009-04-07 08:51:19 +02002512 /*
Li, Shaohuac4ade942011-03-23 08:30:34 +01002513 * If there is only one sync queue
2514 * we can ignore async queue here and give the sync
Shaohua Lief8a41d2011-03-07 09:26:29 +01002515 * queue no dispatch limit. The reason is a sync queue can
2516 * preempt async queue, limiting the sync queue doesn't make
2517 * sense. This is useful for aiostress test.
2518 */
Li, Shaohuac4ade942011-03-23 08:30:34 +01002519 if (cfq_cfqq_sync(cfqq) && cfqd->busy_sync_queues == 1)
2520 promote_sync = true;
Shaohua Lief8a41d2011-03-07 09:26:29 +01002521
2522 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002523 * We have other queues, don't allow more IO from this one
2524 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002525 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq) &&
2526 !promote_sync)
Jens Axboe0b182d62009-10-06 20:49:37 +02002527 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11002528
Jens Axboe2f5cb732009-04-07 08:51:19 +02002529 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01002530 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02002531 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002532 if (cfqd->busy_queues == 1 || promote_sync)
Shaohua Liabc3c742010-03-01 09:20:54 +01002533 max_dispatch = -1;
2534 else
2535 /*
2536 * Normally we start throttling cfqq when cfq_quantum/2
2537 * requests have been dispatched. But we can drive
2538 * deeper queue depths at the beginning of slice
2539 * subjected to upper limit of cfq_quantum.
2540 * */
2541 max_dispatch = cfqd->cfq_quantum;
Jens Axboe8e296752009-10-03 16:26:03 +02002542 }
2543
2544 /*
2545 * Async queues must wait a bit before being allowed dispatch.
2546 * We also ramp up the dispatch depth gradually for async IO,
2547 * based on the last sync IO we serviced
2548 */
Jens Axboe963b72f2009-10-03 19:42:18 +02002549 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Corrado Zoccolo573412b2009-12-06 11:48:52 +01002550 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
Jens Axboe8e296752009-10-03 16:26:03 +02002551 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02002552
Jens Axboe61f0c1d2009-10-03 19:46:03 +02002553 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02002554 if (!depth && !cfqq->dispatched)
2555 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02002556 if (depth < max_dispatch)
2557 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 }
2559
Jens Axboe0b182d62009-10-06 20:49:37 +02002560 /*
2561 * If we're below the current max, allow a dispatch
2562 */
2563 return cfqq->dispatched < max_dispatch;
2564}
2565
2566/*
2567 * Dispatch a request from cfqq, moving them to the request queue
2568 * dispatch list.
2569 */
2570static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2571{
2572 struct request *rq;
2573
2574 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2575
2576 if (!cfq_may_dispatch(cfqd, cfqq))
2577 return false;
2578
2579 /*
2580 * follow expired path, else get first next available
2581 */
2582 rq = cfq_check_fifo(cfqq);
2583 if (!rq)
2584 rq = cfqq->next_rq;
2585
2586 /*
2587 * insert request into driver dispatch list
2588 */
2589 cfq_dispatch_insert(cfqd->queue, rq);
2590
2591 if (!cfqd->active_cic) {
Tejun Heoc5869802011-12-14 00:33:41 +01002592 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe0b182d62009-10-06 20:49:37 +02002593
Tejun Heoc5869802011-12-14 00:33:41 +01002594 atomic_long_inc(&cic->icq.ioc->refcount);
Jens Axboe0b182d62009-10-06 20:49:37 +02002595 cfqd->active_cic = cic;
2596 }
2597
2598 return true;
2599}
2600
2601/*
2602 * Find the cfqq that we need to service and move a request from that to the
2603 * dispatch list
2604 */
2605static int cfq_dispatch_requests(struct request_queue *q, int force)
2606{
2607 struct cfq_data *cfqd = q->elevator->elevator_data;
2608 struct cfq_queue *cfqq;
2609
2610 if (!cfqd->busy_queues)
2611 return 0;
2612
2613 if (unlikely(force))
2614 return cfq_forced_dispatch(cfqd);
2615
2616 cfqq = cfq_select_queue(cfqd);
2617 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002618 return 0;
2619
Jens Axboe2f5cb732009-04-07 08:51:19 +02002620 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002621 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002622 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002623 if (!cfq_dispatch_request(cfqd, cfqq))
2624 return 0;
2625
Jens Axboe2f5cb732009-04-07 08:51:19 +02002626 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002627 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002628
2629 /*
2630 * expire an async queue immediately if it has used up its slice. idle
2631 * queue always expire after 1 dispatch round.
2632 */
2633 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2634 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2635 cfq_class_idle(cfqq))) {
2636 cfqq->slice_end = jiffies + 1;
Vivek Goyale5ff0822010-04-26 19:25:11 +02002637 cfq_slice_expired(cfqd, 0);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002638 }
2639
Shan Weib217a902009-09-01 10:06:42 +02002640 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002641 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642}
2643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644/*
Jens Axboe5e705372006-07-13 12:39:25 +02002645 * task holds one reference to the queue, dropped when task exits. each rq
2646 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05002648 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 * queue lock must be held here.
2650 */
2651static void cfq_put_queue(struct cfq_queue *cfqq)
2652{
Jens Axboe22e2c502005-06-27 10:55:12 +02002653 struct cfq_data *cfqd = cfqq->cfqd;
Justin TerAvest0bbfeb82011-03-01 15:05:08 -05002654 struct cfq_group *cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02002655
Shaohua Li30d7b942011-01-07 08:46:59 +01002656 BUG_ON(cfqq->ref <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Shaohua Li30d7b942011-01-07 08:46:59 +01002658 cfqq->ref--;
2659 if (cfqq->ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 return;
2661
Jens Axboe7b679132008-05-30 12:23:07 +02002662 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002664 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002665 cfqg = cfqq->cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002667 if (unlikely(cfqd->active_queue == cfqq)) {
Vivek Goyale5ff0822010-04-26 19:25:11 +02002668 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002669 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002670 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002671
Vivek Goyalf04a6422009-12-03 12:59:40 -05002672 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 kmem_cache_free(cfq_pool, cfqq);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002674 cfq_put_cfqg(cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675}
2676
Tejun Heoc5869802011-12-14 00:33:41 +01002677static void cfq_icq_free_rcu(struct rcu_head *head)
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002678{
Tejun Heoc5869802011-12-14 00:33:41 +01002679 kmem_cache_free(cfq_icq_pool,
2680 icq_to_cic(container_of(head, struct io_cq, rcu_head)));
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002681}
2682
Tejun Heoc5869802011-12-14 00:33:41 +01002683static void cfq_icq_free(struct io_cq *icq)
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002684{
Tejun Heoc5869802011-12-14 00:33:41 +01002685 call_rcu(&icq->rcu_head, cfq_icq_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002686}
2687
Tejun Heoc5869802011-12-14 00:33:41 +01002688static void cfq_release_icq(struct io_cq *icq)
Jens Axboe4ac845a2008-01-24 08:44:49 +01002689{
Tejun Heoc5869802011-12-14 00:33:41 +01002690 struct io_context *ioc = icq->ioc;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002691
Tejun Heoc5869802011-12-14 00:33:41 +01002692 radix_tree_delete(&ioc->icq_tree, icq->q->id);
2693 hlist_del(&icq->ioc_node);
2694 cfq_icq_free(icq);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002695}
2696
Shaohua Lid02a2c02010-05-25 10:16:53 +02002697static void cfq_put_cooperator(struct cfq_queue *cfqq)
Jens Axboe89850f72006-07-22 16:48:31 +02002698{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002699 struct cfq_queue *__cfqq, *next;
2700
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002701 /*
2702 * If this queue was scheduled to merge with another queue, be
2703 * sure to drop the reference taken on that queue (and others in
2704 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2705 */
2706 __cfqq = cfqq->new_cfqq;
2707 while (__cfqq) {
2708 if (__cfqq == cfqq) {
2709 WARN(1, "cfqq->new_cfqq loop detected\n");
2710 break;
2711 }
2712 next = __cfqq->new_cfqq;
2713 cfq_put_queue(__cfqq);
2714 __cfqq = next;
2715 }
Shaohua Lid02a2c02010-05-25 10:16:53 +02002716}
2717
2718static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2719{
2720 if (unlikely(cfqq == cfqd->active_queue)) {
2721 __cfq_slice_expired(cfqd, cfqq, 0);
2722 cfq_schedule_dispatch(cfqd);
2723 }
2724
2725 cfq_put_cooperator(cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002726
Jens Axboe89850f72006-07-22 16:48:31 +02002727 cfq_put_queue(cfqq);
2728}
2729
Tejun Heoc5869802011-12-14 00:33:41 +01002730static void cfq_exit_icq(struct io_cq *icq)
Jens Axboe89850f72006-07-22 16:48:31 +02002731{
Tejun Heoc5869802011-12-14 00:33:41 +01002732 struct cfq_io_cq *cic = icq_to_cic(icq);
Tejun Heo283287a2011-12-14 00:33:38 +01002733 struct cfq_data *cfqd = cic_to_cfqd(cic);
Tejun Heoc5869802011-12-14 00:33:41 +01002734 struct io_context *ioc = icq->ioc;
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002735
Tejun Heoc5869802011-12-14 00:33:41 +01002736 list_del_init(&icq->q_node);
Jens Axboefc463792006-08-29 09:05:44 +02002737
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002738 /*
Tejun Heoc5869802011-12-14 00:33:41 +01002739 * Both setting lookup hint to and clearing it from @icq are done
2740 * under queue_lock. If it's not pointing to @icq now, it never
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002741 * will. Hint assignment itself can race safely.
2742 */
Tejun Heoc5869802011-12-14 00:33:41 +01002743 if (rcu_dereference_raw(ioc->icq_hint) == icq)
2744 rcu_assign_pointer(ioc->icq_hint, NULL);
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002745
Jens Axboeff6657c2009-04-08 10:58:57 +02002746 if (cic->cfqq[BLK_RW_ASYNC]) {
2747 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2748 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002749 }
2750
Jens Axboeff6657c2009-04-08 10:58:57 +02002751 if (cic->cfqq[BLK_RW_SYNC]) {
2752 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2753 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002754 }
Jens Axboe89850f72006-07-22 16:48:31 +02002755}
2756
Tejun Heoc5869802011-12-14 00:33:41 +01002757static struct cfq_io_cq *cfq_alloc_cic(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758{
Tejun Heoc5869802011-12-14 00:33:41 +01002759 struct cfq_io_cq *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Tejun Heoc5869802011-12-14 00:33:41 +01002761 cic = kmem_cache_alloc_node(cfq_icq_pool, gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002762 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 if (cic) {
Shaohua Li383cd722011-07-12 14:24:35 +02002764 cic->ttime.last_end_request = jiffies;
Tejun Heoc5869802011-12-14 00:33:41 +01002765 INIT_LIST_HEAD(&cic->icq.q_node);
2766 INIT_HLIST_NODE(&cic->icq.ioc_node);
2767 cic->icq.exit = cfq_exit_icq;
2768 cic->icq.release = cfq_release_icq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 }
2770
2771 return cic;
2772}
2773
Jens Axboefd0928d2008-01-24 08:52:45 +01002774static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02002775{
2776 struct task_struct *tsk = current;
2777 int ioprio_class;
2778
Jens Axboe3b181522005-06-27 10:56:24 +02002779 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002780 return;
2781
Jens Axboefd0928d2008-01-24 08:52:45 +01002782 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002783 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002784 default:
2785 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2786 case IOPRIO_CLASS_NONE:
2787 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002788 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002789 */
2790 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002791 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002792 break;
2793 case IOPRIO_CLASS_RT:
2794 cfqq->ioprio = task_ioprio(ioc);
2795 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2796 break;
2797 case IOPRIO_CLASS_BE:
2798 cfqq->ioprio = task_ioprio(ioc);
2799 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2800 break;
2801 case IOPRIO_CLASS_IDLE:
2802 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2803 cfqq->ioprio = 7;
2804 cfq_clear_cfqq_idle_window(cfqq);
2805 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002806 }
2807
2808 /*
2809 * keep track of original prio settings in case we have to temporarily
2810 * elevate the priority of this queue
2811 */
2812 cfqq->org_ioprio = cfqq->ioprio;
Jens Axboe3b181522005-06-27 10:56:24 +02002813 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002814}
2815
Tejun Heoc5869802011-12-14 00:33:41 +01002816static void changed_ioprio(struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002817{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002818 struct cfq_data *cfqd = cic_to_cfqd(cic);
Al Viro478a82b2006-03-18 13:25:24 -05002819 struct cfq_queue *cfqq;
Jens Axboe35e60772006-06-14 09:10:45 +02002820
Jens Axboecaaa5f92006-06-16 11:23:00 +02002821 if (unlikely(!cfqd))
2822 return;
2823
Jens Axboeff6657c2009-04-08 10:58:57 +02002824 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002825 if (cfqq) {
2826 struct cfq_queue *new_cfqq;
Tejun Heoc5869802011-12-14 00:33:41 +01002827 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->icq.ioc,
Jens Axboeff6657c2009-04-08 10:58:57 +02002828 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002829 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002830 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002831 cfq_put_queue(cfqq);
2832 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002833 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002834
Jens Axboeff6657c2009-04-08 10:58:57 +02002835 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002836 if (cfqq)
2837 cfq_mark_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002838}
2839
Jens Axboed5036d72009-06-26 10:44:34 +02002840static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002841 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002842{
2843 RB_CLEAR_NODE(&cfqq->rb_node);
2844 RB_CLEAR_NODE(&cfqq->p_node);
2845 INIT_LIST_HEAD(&cfqq->fifo);
2846
Shaohua Li30d7b942011-01-07 08:46:59 +01002847 cfqq->ref = 0;
Jens Axboed5036d72009-06-26 10:44:34 +02002848 cfqq->cfqd = cfqd;
2849
2850 cfq_mark_cfqq_prio_changed(cfqq);
2851
2852 if (is_sync) {
2853 if (!cfq_class_idle(cfqq))
2854 cfq_mark_cfqq_idle_window(cfqq);
2855 cfq_mark_cfqq_sync(cfqq);
2856 }
2857 cfqq->pid = pid;
2858}
2859
Vivek Goyal246103332009-12-03 12:59:51 -05002860#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heoc5869802011-12-14 00:33:41 +01002861static void changed_cgroup(struct cfq_io_cq *cic)
Vivek Goyal246103332009-12-03 12:59:51 -05002862{
2863 struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002864 struct cfq_data *cfqd = cic_to_cfqd(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05002865 struct request_queue *q;
2866
2867 if (unlikely(!cfqd))
2868 return;
2869
2870 q = cfqd->queue;
2871
Vivek Goyal246103332009-12-03 12:59:51 -05002872 if (sync_cfqq) {
2873 /*
2874 * Drop reference to sync queue. A new sync queue will be
2875 * assigned in new group upon arrival of a fresh request.
2876 */
2877 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2878 cic_set_cfqq(cic, NULL, 1);
2879 cfq_put_queue(sync_cfqq);
2880 }
Vivek Goyal246103332009-12-03 12:59:51 -05002881}
Vivek Goyal246103332009-12-03 12:59:51 -05002882#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2883
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002885cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01002886 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 struct cfq_queue *cfqq, *new_cfqq = NULL;
Tejun Heoc5869802011-12-14 00:33:41 +01002889 struct cfq_io_cq *cic;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002890 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892retry:
Vivek Goyal3e59cf92011-05-19 15:38:21 -04002893 cfqg = cfq_get_cfqg(cfqd);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002894 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002895 /* cic always exists here */
2896 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Jens Axboe6118b702009-06-30 09:34:12 +02002898 /*
2899 * Always try a new alloc if we fell back to the OOM cfqq
2900 * originally, since it should just be a temporary situation.
2901 */
2902 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2903 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 if (new_cfqq) {
2905 cfqq = new_cfqq;
2906 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002907 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002909 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002910 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002911 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002913 if (new_cfqq)
2914 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002915 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002916 cfqq = kmem_cache_alloc_node(cfq_pool,
2917 gfp_mask | __GFP_ZERO,
2918 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Jens Axboe6118b702009-06-30 09:34:12 +02002921 if (cfqq) {
2922 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2923 cfq_init_prio_data(cfqq, ioc);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002924 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002925 cfq_log_cfqq(cfqd, cfqq, "alloced");
2926 } else
2927 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
2929
2930 if (new_cfqq)
2931 kmem_cache_free(cfq_pool, new_cfqq);
2932
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 return cfqq;
2934}
2935
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002936static struct cfq_queue **
2937cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2938{
Jens Axboefe094d92008-01-31 13:08:54 +01002939 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002940 case IOPRIO_CLASS_RT:
2941 return &cfqd->async_cfqq[0][ioprio];
2942 case IOPRIO_CLASS_BE:
2943 return &cfqd->async_cfqq[1][ioprio];
2944 case IOPRIO_CLASS_IDLE:
2945 return &cfqd->async_idle_cfqq;
2946 default:
2947 BUG();
2948 }
2949}
2950
Jens Axboe15c31be2007-07-10 13:43:25 +02002951static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002952cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02002953 gfp_t gfp_mask)
2954{
Jens Axboefd0928d2008-01-24 08:52:45 +01002955 const int ioprio = task_ioprio(ioc);
2956 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002957 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002958 struct cfq_queue *cfqq = NULL;
2959
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002960 if (!is_sync) {
2961 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2962 cfqq = *async_cfqq;
2963 }
2964
Jens Axboe6118b702009-06-30 09:34:12 +02002965 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01002966 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002967
2968 /*
2969 * pin the queue now that it's allocated, scheduler exit will prune it
2970 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002971 if (!is_sync && !(*async_cfqq)) {
Shaohua Li30d7b942011-01-07 08:46:59 +01002972 cfqq->ref++;
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002973 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002974 }
2975
Shaohua Li30d7b942011-01-07 08:46:59 +01002976 cfqq->ref++;
Jens Axboe15c31be2007-07-10 13:43:25 +02002977 return cfqq;
2978}
2979
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002980/**
Tejun Heoc5869802011-12-14 00:33:41 +01002981 * cfq_create_cic - create and link a cfq_io_cq
Tejun Heo216284c2011-12-14 00:33:38 +01002982 * @cfqd: cfqd of interest
2983 * @gfp_mask: allocation mask
2984 *
Tejun Heoc5869802011-12-14 00:33:41 +01002985 * Make sure cfq_io_cq linking %current->io_context and @cfqd exists. If
2986 * ioc and/or cic doesn't exist, they will be created using @gfp_mask.
Jens Axboe4ac845a2008-01-24 08:44:49 +01002987 */
Tejun Heo216284c2011-12-14 00:33:38 +01002988static int cfq_create_cic(struct cfq_data *cfqd, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002989{
Tejun Heo216284c2011-12-14 00:33:38 +01002990 struct request_queue *q = cfqd->queue;
Tejun Heoc5869802011-12-14 00:33:41 +01002991 struct io_cq *icq = NULL;
2992 struct cfq_io_cq *cic;
Tejun Heo216284c2011-12-14 00:33:38 +01002993 struct io_context *ioc;
2994 int ret = -ENOMEM;
2995
2996 might_sleep_if(gfp_mask & __GFP_WAIT);
2997
2998 /* allocate stuff */
Tejun Heof2dbd762011-12-14 00:33:40 +01002999 ioc = create_io_context(current, gfp_mask, q->node);
Tejun Heo216284c2011-12-14 00:33:38 +01003000 if (!ioc)
3001 goto out;
3002
Tejun Heoc5869802011-12-14 00:33:41 +01003003 cic = cfq_alloc_cic(cfqd, gfp_mask);
Tejun Heo216284c2011-12-14 00:33:38 +01003004 if (!cic)
3005 goto out;
Tejun Heoc5869802011-12-14 00:33:41 +01003006 icq = &cic->icq;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003007
Jens Axboe4ac845a2008-01-24 08:44:49 +01003008 ret = radix_tree_preload(gfp_mask);
Tejun Heo283287a2011-12-14 00:33:38 +01003009 if (ret)
3010 goto out;
3011
Tejun Heoc5869802011-12-14 00:33:41 +01003012 icq->ioc = ioc;
3013 icq->q = cfqd->queue;
Tejun Heo283287a2011-12-14 00:33:38 +01003014
Tejun Heoc5869802011-12-14 00:33:41 +01003015 /* lock both q and ioc and try to link @icq */
Tejun Heo216284c2011-12-14 00:33:38 +01003016 spin_lock_irq(q->queue_lock);
3017 spin_lock(&ioc->lock);
3018
Tejun Heoc5869802011-12-14 00:33:41 +01003019 ret = radix_tree_insert(&ioc->icq_tree, q->id, icq);
Tejun Heo216284c2011-12-14 00:33:38 +01003020 if (likely(!ret)) {
Tejun Heoc5869802011-12-14 00:33:41 +01003021 hlist_add_head(&icq->ioc_node, &ioc->icq_list);
Tejun Heoa612fdd2011-12-14 00:33:41 +01003022 list_add(&icq->q_node, &q->icq_list);
Tejun Heoc5869802011-12-14 00:33:41 +01003023 icq = NULL;
Tejun Heo216284c2011-12-14 00:33:38 +01003024 } else if (ret == -EEXIST) {
3025 /* someone else already did it */
3026 ret = 0;
3027 }
3028
3029 spin_unlock(&ioc->lock);
3030 spin_unlock_irq(q->queue_lock);
Tejun Heo283287a2011-12-14 00:33:38 +01003031
3032 radix_tree_preload_end();
Tejun Heo283287a2011-12-14 00:33:38 +01003033out:
Jens Axboe4ac845a2008-01-24 08:44:49 +01003034 if (ret)
Tejun Heoc5869802011-12-14 00:33:41 +01003035 printk(KERN_ERR "cfq: icq link failed!\n");
3036 if (icq)
3037 cfq_icq_free(icq);
Jens Axboe4ac845a2008-01-24 08:44:49 +01003038 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003039}
3040
Tejun Heo216284c2011-12-14 00:33:38 +01003041/**
Tejun Heoc5869802011-12-14 00:33:41 +01003042 * cfq_get_cic - acquire cfq_io_cq and bump refcnt on io_context
Tejun Heo216284c2011-12-14 00:33:38 +01003043 * @cfqd: cfqd to setup cic for
3044 * @gfp_mask: allocation mask
3045 *
Tejun Heoc5869802011-12-14 00:33:41 +01003046 * Return cfq_io_cq associating @cfqd and %current->io_context and
Tejun Heo216284c2011-12-14 00:33:38 +01003047 * bump refcnt on io_context. If ioc or cic doesn't exist, they're created
3048 * using @gfp_mask.
3049 *
3050 * Must be called under queue_lock which may be released and re-acquired.
3051 * This function also may sleep depending on @gfp_mask.
Jens Axboe22e2c502005-06-27 10:55:12 +02003052 */
Tejun Heoc5869802011-12-14 00:33:41 +01003053static struct cfq_io_cq *cfq_get_cic(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054{
Tejun Heo216284c2011-12-14 00:33:38 +01003055 struct request_queue *q = cfqd->queue;
Tejun Heoc5869802011-12-14 00:33:41 +01003056 struct cfq_io_cq *cic = NULL;
Tejun Heo216284c2011-12-14 00:33:38 +01003057 struct io_context *ioc;
3058 int err;
Jens Axboe22e2c502005-06-27 10:55:12 +02003059
Tejun Heo216284c2011-12-14 00:33:38 +01003060 lockdep_assert_held(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003061
Tejun Heo216284c2011-12-14 00:33:38 +01003062 while (true) {
3063 /* fast path */
3064 ioc = current->io_context;
3065 if (likely(ioc)) {
3066 cic = cfq_cic_lookup(cfqd, ioc);
3067 if (likely(cic))
3068 break;
3069 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003070
Tejun Heo216284c2011-12-14 00:33:38 +01003071 /* slow path - unlock, create missing ones and retry */
3072 spin_unlock_irq(q->queue_lock);
3073 err = cfq_create_cic(cfqd, gfp_mask);
3074 spin_lock_irq(q->queue_lock);
3075 if (err)
3076 return NULL;
3077 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003078
Tejun Heo216284c2011-12-14 00:33:38 +01003079 /* bump @ioc's refcnt and handle changed notifications */
Tejun Heo6e736be2011-12-14 00:33:38 +01003080 get_io_context(ioc);
3081
Tejun Heoc5869802011-12-14 00:33:41 +01003082 if (unlikely(cic->icq.changed)) {
3083 if (test_and_clear_bit(ICQ_IOPRIO_CHANGED, &cic->icq.changed))
Tejun Heodc869002011-12-14 00:33:38 +01003084 changed_ioprio(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05003085#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heoc5869802011-12-14 00:33:41 +01003086 if (test_and_clear_bit(ICQ_CGROUP_CHANGED, &cic->icq.changed))
Tejun Heodc869002011-12-14 00:33:38 +01003087 changed_cgroup(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05003088#endif
Tejun Heodc869002011-12-14 00:33:38 +01003089 }
3090
Jens Axboe22e2c502005-06-27 10:55:12 +02003091 return cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003092}
3093
3094static void
Shaohua Li383cd722011-07-12 14:24:35 +02003095__cfq_update_io_thinktime(struct cfq_ttime *ttime, unsigned long slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003096{
Shaohua Li383cd722011-07-12 14:24:35 +02003097 unsigned long elapsed = jiffies - ttime->last_end_request;
3098 elapsed = min(elapsed, 2UL * slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02003099
Shaohua Li383cd722011-07-12 14:24:35 +02003100 ttime->ttime_samples = (7*ttime->ttime_samples + 256) / 8;
3101 ttime->ttime_total = (7*ttime->ttime_total + 256*elapsed) / 8;
3102 ttime->ttime_mean = (ttime->ttime_total + 128) / ttime->ttime_samples;
3103}
3104
3105static void
3106cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01003107 struct cfq_io_cq *cic)
Shaohua Li383cd722011-07-12 14:24:35 +02003108{
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003109 if (cfq_cfqq_sync(cfqq)) {
Shaohua Li383cd722011-07-12 14:24:35 +02003110 __cfq_update_io_thinktime(&cic->ttime, cfqd->cfq_slice_idle);
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003111 __cfq_update_io_thinktime(&cfqq->service_tree->ttime,
3112 cfqd->cfq_slice_idle);
3113 }
Shaohua Li7700fc42011-07-12 14:24:56 +02003114#ifdef CONFIG_CFQ_GROUP_IOSCHED
3115 __cfq_update_io_thinktime(&cfqq->cfqg->ttime, cfqd->cfq_group_idle);
3116#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02003117}
3118
Jens Axboe206dc692006-03-28 13:03:44 +02003119static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003120cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02003121 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02003122{
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003123 sector_t sdist = 0;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003124 sector_t n_sec = blk_rq_sectors(rq);
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003125 if (cfqq->last_request_pos) {
3126 if (cfqq->last_request_pos < blk_rq_pos(rq))
3127 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
3128 else
3129 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
3130 }
Jens Axboe206dc692006-03-28 13:03:44 +02003131
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003132 cfqq->seek_history <<= 1;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003133 if (blk_queue_nonrot(cfqd->queue))
3134 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
3135 else
3136 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
Jens Axboe206dc692006-03-28 13:03:44 +02003137}
Jens Axboe22e2c502005-06-27 10:55:12 +02003138
3139/*
3140 * Disable idle window if the process thinks too long or seeks so much that
3141 * it doesn't matter
3142 */
3143static void
3144cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01003145 struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02003146{
Jens Axboe7b679132008-05-30 12:23:07 +02003147 int old_idle, enable_idle;
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003148
Jens Axboe08717142008-01-28 11:38:15 +01003149 /*
3150 * Don't idle for async or idle io prio class
3151 */
3152 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003153 return;
3154
Jens Axboec265a7f2008-06-26 13:49:33 +02003155 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003156
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003157 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3158 cfq_mark_cfqq_deep(cfqq);
3159
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003160 if (cfqq->next_rq && (cfqq->next_rq->cmd_flags & REQ_NOIDLE))
3161 enable_idle = 0;
Tejun Heoc5869802011-12-14 00:33:41 +01003162 else if (!atomic_read(&cic->icq.ioc->nr_tasks) ||
3163 !cfqd->cfq_slice_idle ||
3164 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02003165 enable_idle = 0;
Shaohua Li383cd722011-07-12 14:24:35 +02003166 else if (sample_valid(cic->ttime.ttime_samples)) {
3167 if (cic->ttime.ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003168 enable_idle = 0;
3169 else
3170 enable_idle = 1;
3171 }
3172
Jens Axboe7b679132008-05-30 12:23:07 +02003173 if (old_idle != enable_idle) {
3174 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3175 if (enable_idle)
3176 cfq_mark_cfqq_idle_window(cfqq);
3177 else
3178 cfq_clear_cfqq_idle_window(cfqq);
3179 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003180}
3181
Jens Axboe22e2c502005-06-27 10:55:12 +02003182/*
3183 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3184 * no or if we aren't sure, a 1 will cause a preempt.
3185 */
Jens Axboea6151c32009-10-07 20:02:57 +02003186static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02003187cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02003188 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003189{
Jens Axboe6d048f52007-04-25 12:44:27 +02003190 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003191
Jens Axboe6d048f52007-04-25 12:44:27 +02003192 cfqq = cfqd->active_queue;
3193 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02003194 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003195
Jens Axboe6d048f52007-04-25 12:44:27 +02003196 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003197 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003198
3199 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003200 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003201
Jens Axboe22e2c502005-06-27 10:55:12 +02003202 /*
Divyesh Shah875feb62010-01-06 18:58:20 -08003203 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3204 */
3205 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3206 return false;
3207
3208 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02003209 * if the new request is sync, but the currently running queue is
3210 * not, let the sync request have priority.
3211 */
Jens Axboe5e705372006-07-13 12:39:25 +02003212 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003213 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003214
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003215 if (new_cfqq->cfqg != cfqq->cfqg)
3216 return false;
3217
3218 if (cfq_slice_used(cfqq))
3219 return true;
3220
3221 /* Allow preemption only if we are idling on sync-noidle tree */
3222 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
3223 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3224 new_cfqq->service_tree->count == 2 &&
3225 RB_EMPTY_ROOT(&cfqq->sort_list))
3226 return true;
3227
Jens Axboe374f84a2006-07-23 01:42:19 +02003228 /*
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003229 * So both queues are sync. Let the new request get disk time if
3230 * it's a metadata request and the current queue is doing regular IO.
3231 */
Christoph Hellwig65299a32011-08-23 14:50:29 +02003232 if ((rq->cmd_flags & REQ_PRIO) && !cfqq->prio_pending)
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003233 return true;
3234
3235 /*
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003236 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3237 */
3238 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003239 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003240
Shaohua Lid2d59e12010-11-08 15:01:03 +01003241 /* An idle queue should not be idle now for some reason */
3242 if (RB_EMPTY_ROOT(&cfqq->sort_list) && !cfq_should_idle(cfqd, cfqq))
3243 return true;
3244
Jens Axboe1e3335d2007-02-14 19:59:49 +01003245 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003246 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003247
3248 /*
3249 * if this request is as-good as one we would expect from the
3250 * current cfqq, let it preempt
3251 */
Shaohua Lie9ce3352010-03-19 08:03:04 +01003252 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02003253 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003254
Jens Axboea6151c32009-10-07 20:02:57 +02003255 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003256}
3257
3258/*
3259 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3260 * let it have half of its nominal slice.
3261 */
3262static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3263{
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003264 struct cfq_queue *old_cfqq = cfqd->active_queue;
3265
Jens Axboe7b679132008-05-30 12:23:07 +02003266 cfq_log_cfqq(cfqd, cfqq, "preempt");
Vivek Goyale5ff0822010-04-26 19:25:11 +02003267 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003268
Jens Axboebf572252006-07-19 20:29:12 +02003269 /*
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003270 * workload type is changed, don't save slice, otherwise preempt
3271 * doesn't happen
3272 */
3273 if (cfqq_type(old_cfqq) != cfqq_type(cfqq))
3274 cfqq->cfqg->saved_workload_slice = 0;
3275
3276 /*
Jens Axboebf572252006-07-19 20:29:12 +02003277 * Put the new queue at the front of the of the current list,
3278 * so we know that it will be selected next.
3279 */
3280 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02003281
3282 cfq_service_tree_add(cfqd, cfqq, 1);
Justin TerAvesteda5e0c92011-03-22 21:26:49 +01003283
Justin TerAvest62a37f62011-03-23 08:25:44 +01003284 cfqq->slice_end = 0;
3285 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003286}
3287
3288/*
Jens Axboe5e705372006-07-13 12:39:25 +02003289 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02003290 * something we should do about it
3291 */
3292static void
Jens Axboe5e705372006-07-13 12:39:25 +02003293cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3294 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003295{
Tejun Heoc5869802011-12-14 00:33:41 +01003296 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003297
Aaron Carroll45333d52008-08-26 15:52:36 +02003298 cfqd->rq_queued++;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003299 if (rq->cmd_flags & REQ_PRIO)
3300 cfqq->prio_pending++;
Jens Axboe374f84a2006-07-23 01:42:19 +02003301
Shaohua Li383cd722011-07-12 14:24:35 +02003302 cfq_update_io_thinktime(cfqd, cfqq, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003303 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003304 cfq_update_idle_window(cfqd, cfqq, cic);
3305
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003306 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003307
3308 if (cfqq == cfqd->active_queue) {
3309 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003310 * Remember that we saw a request from this process, but
3311 * don't start queuing just yet. Otherwise we risk seeing lots
3312 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003313 * and merging. If the request is already larger than a single
3314 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003315 * merging is already done. Ditto for a busy system that
3316 * has other work pending, don't risk delaying until the
3317 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003318 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003319 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003320 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3321 cfqd->busy_queues > 1) {
Divyesh Shah812df482010-04-08 21:15:35 -07003322 cfq_del_timer(cfqd, cfqq);
Gui Jianfeng554554f2009-12-10 09:38:39 +01003323 cfq_clear_cfqq_wait_request(cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003324 __blk_run_queue(cfqd->queue);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003325 } else {
Vivek Goyale98ef892010-06-18 10:39:47 -04003326 cfq_blkiocg_update_idle_time_stats(
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003327 &cfqq->cfqg->blkg);
Vivek Goyalbf7919372009-12-03 12:59:37 -05003328 cfq_mark_cfqq_must_dispatch(cfqq);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003329 }
Jens Axboed6ceb252009-04-14 14:18:16 +02003330 }
Jens Axboe5e705372006-07-13 12:39:25 +02003331 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003332 /*
3333 * not the active queue - expire current slice if it is
3334 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003335 * has some old slice time left and is of higher priority or
3336 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003337 */
3338 cfq_preempt_queue(cfqd, cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003339 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003340 }
3341}
3342
Jens Axboe165125e2007-07-24 09:28:11 +02003343static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003344{
Jens Axboeb4878f22005-10-20 16:42:29 +02003345 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003346 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003347
Jens Axboe7b679132008-05-30 12:23:07 +02003348 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Tejun Heoc5869802011-12-14 00:33:41 +01003349 cfq_init_prio_data(cfqq, RQ_CIC(rq)->icq.ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
Jens Axboe30996f42009-10-05 11:03:39 +02003351 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02003352 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003353 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04003354 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -07003355 &cfqd->serving_group->blkg, rq_data_dir(rq),
3356 rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02003357 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358}
3359
Aaron Carroll45333d52008-08-26 15:52:36 +02003360/*
3361 * Update hw_tag based on peak queue depth over 50 samples under
3362 * sufficient load.
3363 */
3364static void cfq_update_hw_tag(struct cfq_data *cfqd)
3365{
Shaohua Li1a1238a2009-10-27 08:46:23 +01003366 struct cfq_queue *cfqq = cfqd->active_queue;
3367
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003368 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
3369 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003370
3371 if (cfqd->hw_tag == 1)
3372 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02003373
3374 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003375 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003376 return;
3377
Shaohua Li1a1238a2009-10-27 08:46:23 +01003378 /*
3379 * If active queue hasn't enough requests and can idle, cfq might not
3380 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3381 * case
3382 */
3383 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3384 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003385 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
Shaohua Li1a1238a2009-10-27 08:46:23 +01003386 return;
3387
Aaron Carroll45333d52008-08-26 15:52:36 +02003388 if (cfqd->hw_tag_samples++ < 50)
3389 return;
3390
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003391 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003392 cfqd->hw_tag = 1;
3393 else
3394 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02003395}
3396
Vivek Goyal7667aa02009-12-08 17:52:58 -05003397static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3398{
Tejun Heoc5869802011-12-14 00:33:41 +01003399 struct cfq_io_cq *cic = cfqd->active_cic;
Vivek Goyal7667aa02009-12-08 17:52:58 -05003400
Justin TerAvest02a8f012011-02-09 14:20:03 +01003401 /* If the queue already has requests, don't wait */
3402 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
3403 return false;
3404
Vivek Goyal7667aa02009-12-08 17:52:58 -05003405 /* If there are other queues in the group, don't wait */
3406 if (cfqq->cfqg->nr_cfqq > 1)
3407 return false;
3408
Shaohua Li7700fc42011-07-12 14:24:56 +02003409 /* the only queue in the group, but think time is big */
3410 if (cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true))
3411 return false;
3412
Vivek Goyal7667aa02009-12-08 17:52:58 -05003413 if (cfq_slice_used(cfqq))
3414 return true;
3415
3416 /* if slice left is less than think time, wait busy */
Shaohua Li383cd722011-07-12 14:24:35 +02003417 if (cic && sample_valid(cic->ttime.ttime_samples)
3418 && (cfqq->slice_end - jiffies < cic->ttime.ttime_mean))
Vivek Goyal7667aa02009-12-08 17:52:58 -05003419 return true;
3420
3421 /*
3422 * If think times is less than a jiffy than ttime_mean=0 and above
3423 * will not be true. It might happen that slice has not expired yet
3424 * but will expire soon (4-5 ns) during select_queue(). To cover the
3425 * case where think time is less than a jiffy, mark the queue wait
3426 * busy if only 1 jiffy is left in the slice.
3427 */
3428 if (cfqq->slice_end - jiffies == 1)
3429 return true;
3430
3431 return false;
3432}
3433
Jens Axboe165125e2007-07-24 09:28:11 +02003434static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435{
Jens Axboe5e705372006-07-13 12:39:25 +02003436 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003437 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02003438 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003439 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Jens Axboeb4878f22005-10-20 16:42:29 +02003441 now = jiffies;
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003442 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
3443 !!(rq->cmd_flags & REQ_NOIDLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Aaron Carroll45333d52008-08-26 15:52:36 +02003445 cfq_update_hw_tag(cfqd);
3446
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003447 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02003448 WARN_ON(!cfqq->dispatched);
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003449 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02003450 cfqq->dispatched--;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003451 (RQ_CFQG(rq))->dispatched--;
Vivek Goyale98ef892010-06-18 10:39:47 -04003452 cfq_blkiocg_update_completion_stats(&cfqq->cfqg->blkg,
3453 rq_start_time_ns(rq), rq_io_start_time_ns(rq),
3454 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003456 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
Jens Axboe3ed9a292007-04-23 08:33:33 +02003457
Vivek Goyal365722b2009-10-03 15:21:27 +02003458 if (sync) {
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003459 struct cfq_rb_root *service_tree;
3460
Shaohua Li383cd722011-07-12 14:24:35 +02003461 RQ_CIC(rq)->ttime.last_end_request = now;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003462
3463 if (cfq_cfqq_on_rr(cfqq))
3464 service_tree = cfqq->service_tree;
3465 else
3466 service_tree = service_tree_for(cfqq->cfqg,
3467 cfqq_prio(cfqq), cfqq_type(cfqq));
3468 service_tree->ttime.last_end_request = now;
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003469 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3470 cfqd->last_delayed_sync = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02003471 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003472
Shaohua Li7700fc42011-07-12 14:24:56 +02003473#ifdef CONFIG_CFQ_GROUP_IOSCHED
3474 cfqq->cfqg->ttime.last_end_request = now;
3475#endif
3476
Jens Axboecaaa5f92006-06-16 11:23:00 +02003477 /*
3478 * If this is the active queue, check if it needs to be expired,
3479 * or if we want to idle in case it has no pending requests.
3480 */
3481 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02003482 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3483
Jens Axboe44f7c162007-01-19 11:51:58 +11003484 if (cfq_cfqq_slice_new(cfqq)) {
3485 cfq_set_prio_slice(cfqd, cfqq);
3486 cfq_clear_cfqq_slice_new(cfqq);
3487 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05003488
3489 /*
Vivek Goyal7667aa02009-12-08 17:52:58 -05003490 * Should we wait for next request to come in before we expire
3491 * the queue.
Vivek Goyalf75edf22009-12-03 12:59:53 -05003492 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05003493 if (cfq_should_wait_busy(cfqd, cfqq)) {
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003494 unsigned long extend_sl = cfqd->cfq_slice_idle;
3495 if (!cfqd->cfq_slice_idle)
3496 extend_sl = cfqd->cfq_group_idle;
3497 cfqq->slice_end = jiffies + extend_sl;
Vivek Goyalf75edf22009-12-03 12:59:53 -05003498 cfq_mark_cfqq_wait_busy(cfqq);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01003499 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
Vivek Goyalf75edf22009-12-03 12:59:53 -05003500 }
3501
Jens Axboea36e71f2009-04-15 12:15:11 +02003502 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003503 * Idling is not enabled on:
3504 * - expired queues
3505 * - idle-priority queues
3506 * - async queues
3507 * - queues with still some requests queued
3508 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02003509 */
Jens Axboe08717142008-01-28 11:38:15 +01003510 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Vivek Goyale5ff0822010-04-26 19:25:11 +02003511 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003512 else if (sync && cfqq_empty &&
3513 !cfq_close_cooperator(cfqd, cfqq)) {
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003514 cfq_arm_slice_timer(cfqd);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003515 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003516 }
Jens Axboe6d048f52007-04-25 12:44:27 +02003517
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003518 if (!cfqd->rq_in_driver)
Jens Axboe23e018a2009-10-05 08:52:35 +02003519 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520}
3521
Jens Axboe89850f72006-07-22 16:48:31 +02003522static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003523{
Jens Axboe1b379d82009-08-11 08:26:11 +02003524 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003525 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003526 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003527 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003528
3529 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003530}
3531
Jens Axboe165125e2007-07-24 09:28:11 +02003532static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003533{
3534 struct cfq_data *cfqd = q->elevator->elevator_data;
3535 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01003536 struct cfq_io_cq *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003537 struct cfq_queue *cfqq;
3538
3539 /*
3540 * don't force setup of a queue from here, as a call to may_queue
3541 * does not necessarily imply that a request actually will be queued.
3542 * so just lookup a possibly existing queue, or return 'may queue'
3543 * if that fails
3544 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003545 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003546 if (!cic)
3547 return ELV_MQUEUE_MAY;
3548
Jens Axboeb0b78f82009-04-08 10:56:08 +02003549 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003550 if (cfqq) {
Tejun Heoc5869802011-12-14 00:33:41 +01003551 cfq_init_prio_data(cfqq, cic->icq.ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02003552
Jens Axboe89850f72006-07-22 16:48:31 +02003553 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003554 }
3555
3556 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557}
3558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559/*
3560 * queue lock held here
3561 */
Jens Axboebb37b942006-12-01 10:42:33 +01003562static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563{
Jens Axboe5e705372006-07-13 12:39:25 +02003564 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Jens Axboe5e705372006-07-13 12:39:25 +02003566 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003567 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
Jens Axboe22e2c502005-06-27 10:55:12 +02003569 BUG_ON(!cfqq->allocated[rw]);
3570 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Tejun Heoc5869802011-12-14 00:33:41 +01003572 put_io_context(RQ_CIC(rq)->icq.ioc, cfqq->cfqd->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003574 /* Put down rq reference on cfqg */
3575 cfq_put_cfqg(RQ_CFQG(rq));
Tejun Heoa612fdd2011-12-14 00:33:41 +01003576 rq->elv.priv[0] = NULL;
3577 rq->elv.priv[1] = NULL;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003578
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 cfq_put_queue(cfqq);
3580 }
3581}
3582
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003583static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01003584cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_cq *cic,
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003585 struct cfq_queue *cfqq)
3586{
3587 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3588 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003589 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003590 cfq_put_queue(cfqq);
3591 return cic_to_cfqq(cic, 1);
3592}
3593
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003594/*
3595 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3596 * was the last process referring to said cfqq.
3597 */
3598static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01003599split_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq)
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003600{
3601 if (cfqq_process_refs(cfqq) == 1) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003602 cfqq->pid = current->pid;
3603 cfq_clear_cfqq_coop(cfqq);
Shaohua Liae54abe2010-02-05 13:11:45 +01003604 cfq_clear_cfqq_split_coop(cfqq);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003605 return cfqq;
3606 }
3607
3608 cic_set_cfqq(cic, NULL, 1);
Shaohua Lid02a2c02010-05-25 10:16:53 +02003609
3610 cfq_put_cooperator(cfqq);
3611
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003612 cfq_put_queue(cfqq);
3613 return NULL;
3614}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003616 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003618static int
Jens Axboe165125e2007-07-24 09:28:11 +02003619cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620{
3621 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heoc5869802011-12-14 00:33:41 +01003622 struct cfq_io_cq *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003624 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003625 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
3627 might_sleep_if(gfp_mask & __GFP_WAIT);
3628
Tejun Heo216284c2011-12-14 00:33:38 +01003629 spin_lock_irq(q->queue_lock);
Tejun Heoc5869802011-12-14 00:33:41 +01003630 cic = cfq_get_cic(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02003631 if (!cic)
3632 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003634new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003635 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003636 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Tejun Heoc5869802011-12-14 00:33:41 +01003637 cfqq = cfq_get_queue(cfqd, is_sync, cic->icq.ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003638 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003639 } else {
3640 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003641 * If the queue was seeky for too long, break it apart.
3642 */
Shaohua Liae54abe2010-02-05 13:11:45 +01003643 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003644 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3645 cfqq = split_cfqq(cic, cfqq);
3646 if (!cfqq)
3647 goto new_queue;
3648 }
3649
3650 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003651 * Check to see if this queue is scheduled to merge with
3652 * another, closely cooperating queue. The merging of
3653 * queues happens here as it must be done in process context.
3654 * The reference on new_cfqq was taken in merge_cfqqs.
3655 */
3656 if (cfqq->new_cfqq)
3657 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
3660 cfqq->allocated[rw]++;
Jens Axboe5e705372006-07-13 12:39:25 +02003661
Jens Axboe6fae9c22011-03-01 15:04:39 -05003662 cfqq->ref++;
Tejun Heoa612fdd2011-12-14 00:33:41 +01003663 rq->elv.icq = &cic->icq;
3664 rq->elv.priv[0] = cfqq;
3665 rq->elv.priv[1] = cfq_ref_get_cfqg(cfqq->cfqg);
Tejun Heo216284c2011-12-14 00:33:38 +01003666 spin_unlock_irq(q->queue_lock);
Jens Axboe5e705372006-07-13 12:39:25 +02003667 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02003668
Jens Axboe22e2c502005-06-27 10:55:12 +02003669queue_fail:
Jens Axboe23e018a2009-10-05 08:52:35 +02003670 cfq_schedule_dispatch(cfqd);
Tejun Heo216284c2011-12-14 00:33:38 +01003671 spin_unlock_irq(q->queue_lock);
Jens Axboe7b679132008-05-30 12:23:07 +02003672 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 return 1;
3674}
3675
David Howells65f27f32006-11-22 14:55:48 +00003676static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003677{
David Howells65f27f32006-11-22 14:55:48 +00003678 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003679 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003680 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003681
Jens Axboe40bb54d2009-04-15 12:11:10 +02003682 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003683 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003684 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003685}
3686
3687/*
3688 * Timer running if the active_queue is currently idling inside its time slice
3689 */
3690static void cfq_idle_slice_timer(unsigned long data)
3691{
3692 struct cfq_data *cfqd = (struct cfq_data *) data;
3693 struct cfq_queue *cfqq;
3694 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003695 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003696
Jens Axboe7b679132008-05-30 12:23:07 +02003697 cfq_log(cfqd, "idle timer fired");
3698
Jens Axboe22e2c502005-06-27 10:55:12 +02003699 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3700
Jens Axboefe094d92008-01-31 13:08:54 +01003701 cfqq = cfqd->active_queue;
3702 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003703 timed_out = 0;
3704
Jens Axboe22e2c502005-06-27 10:55:12 +02003705 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003706 * We saw a request before the queue expired, let it through
3707 */
3708 if (cfq_cfqq_must_dispatch(cfqq))
3709 goto out_kick;
3710
3711 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003712 * expired
3713 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003714 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003715 goto expire;
3716
3717 /*
3718 * only expire and reinvoke request handler, if there are
3719 * other queues with pending requests
3720 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003721 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003722 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003723
3724 /*
3725 * not expired and it has a request pending, let it dispatch
3726 */
Jens Axboe75e50982009-04-07 08:56:14 +02003727 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003728 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003729
3730 /*
3731 * Queue depth flag is reset only when the idle didn't succeed
3732 */
3733 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003734 }
3735expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02003736 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003737out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003738 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003739out_cont:
3740 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3741}
3742
Jens Axboe3b181522005-06-27 10:56:24 +02003743static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3744{
3745 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003746 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003747}
Jens Axboe22e2c502005-06-27 10:55:12 +02003748
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003749static void cfq_put_async_queues(struct cfq_data *cfqd)
3750{
3751 int i;
3752
3753 for (i = 0; i < IOPRIO_BE_NR; i++) {
3754 if (cfqd->async_cfqq[0][i])
3755 cfq_put_queue(cfqd->async_cfqq[0][i]);
3756 if (cfqd->async_cfqq[1][i])
3757 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003758 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003759
3760 if (cfqd->async_idle_cfqq)
3761 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003762}
3763
Jens Axboeb374d182008-10-31 10:05:07 +01003764static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765{
Jens Axboe22e2c502005-06-27 10:55:12 +02003766 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003767 struct request_queue *q = cfqd->queue;
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003768 bool wait = false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003769
Jens Axboe3b181522005-06-27 10:56:24 +02003770 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003771
Al Virod9ff4182006-03-18 13:51:22 -05003772 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003773
Al Virod9ff4182006-03-18 13:51:22 -05003774 if (cfqd->active_queue)
Vivek Goyale5ff0822010-04-26 19:25:11 +02003775 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003776
Tejun Heoa612fdd2011-12-14 00:33:41 +01003777 while (!list_empty(&q->icq_list)) {
3778 struct io_cq *icq = list_entry(q->icq_list.next,
Tejun Heoc5869802011-12-14 00:33:41 +01003779 struct io_cq, q_node);
3780 struct io_context *ioc = icq->ioc;
Jens Axboe89850f72006-07-22 16:48:31 +02003781
Tejun Heob2efa052011-12-14 00:33:39 +01003782 spin_lock(&ioc->lock);
Tejun Heoc5869802011-12-14 00:33:41 +01003783 cfq_exit_icq(icq);
3784 cfq_release_icq(icq);
Tejun Heob2efa052011-12-14 00:33:39 +01003785 spin_unlock(&ioc->lock);
Al Virod9ff4182006-03-18 13:51:22 -05003786 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003787
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003788 cfq_put_async_queues(cfqd);
Vivek Goyalb1c35762009-12-03 12:59:47 -05003789 cfq_release_cfq_groups(cfqd);
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003790
3791 /*
3792 * If there are groups which we could not unlink from blkcg list,
3793 * wait for a rcu period for them to be freed.
3794 */
3795 if (cfqd->nr_blkcg_linked_grps)
3796 wait = true;
Jens Axboe15c31be2007-07-10 13:43:25 +02003797
Al Virod9ff4182006-03-18 13:51:22 -05003798 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05003799
3800 cfq_shutdown_timer_wq(cfqd);
3801
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003802 /*
3803 * Wait for cfqg->blkg->key accessors to exit their grace periods.
3804 * Do this wait only if there are other unlinked groups out
3805 * there. This can happen if cgroup deletion path claimed the
3806 * responsibility of cleaning up a group before queue cleanup code
3807 * get to the group.
3808 *
3809 * Do not call synchronize_rcu() unconditionally as there are drivers
3810 * which create/delete request queue hundreds of times during scan/boot
3811 * and synchronize_rcu() can take significant time and slow down boot.
3812 */
3813 if (wait)
3814 synchronize_rcu();
Vivek Goyal2abae552011-05-23 10:02:19 +02003815
3816#ifdef CONFIG_CFQ_GROUP_IOSCHED
3817 /* Free up per cpu stats for root group */
3818 free_percpu(cfqd->root_group.blkg.stats_cpu);
3819#endif
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003820 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821}
3822
Jens Axboe165125e2007-07-24 09:28:11 +02003823static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824{
3825 struct cfq_data *cfqd;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003826 int i, j;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003827 struct cfq_group *cfqg;
Vivek Goyal615f0252009-12-03 12:59:39 -05003828 struct cfq_rb_root *st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Christoph Lameter94f60302007-07-17 04:03:29 -07003830 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Tejun Heoa73f7302011-12-14 00:33:37 +01003831 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02003832 return NULL;
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003833
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003834 /* Init root service tree */
3835 cfqd->grp_service_tree = CFQ_RB_ROOT;
3836
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003837 /* Init root group */
3838 cfqg = &cfqd->root_group;
Vivek Goyal615f0252009-12-03 12:59:39 -05003839 for_each_cfqg_st(cfqg, i, j, st)
3840 *st = CFQ_RB_ROOT;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003841 RB_CLEAR_NODE(&cfqg->rb_node);
Jens Axboe26a2ac02009-04-23 12:13:27 +02003842
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003843 /* Give preference to root group over other groups */
3844 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3845
Vivek Goyal25fb5162009-12-03 12:59:46 -05003846#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyalb1c35762009-12-03 12:59:47 -05003847 /*
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003848 * Set root group reference to 2. One reference will be dropped when
3849 * all groups on cfqd->cfqg_list are being deleted during queue exit.
3850 * Other reference will remain there as we don't want to delete this
3851 * group as it is statically allocated and gets destroyed when
3852 * throtl_data goes away.
Vivek Goyalb1c35762009-12-03 12:59:47 -05003853 */
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003854 cfqg->ref = 2;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003855
3856 if (blkio_alloc_blkg_stats(&cfqg->blkg)) {
3857 kfree(cfqg);
3858 kfree(cfqd);
3859 return NULL;
3860 }
3861
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003862 rcu_read_lock();
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003863
Vivek Goyale98ef892010-06-18 10:39:47 -04003864 cfq_blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg,
3865 (void *)cfqd, 0);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003866 rcu_read_unlock();
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003867 cfqd->nr_blkcg_linked_grps++;
3868
3869 /* Add group on cfqd->cfqg_list */
3870 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
Vivek Goyal25fb5162009-12-03 12:59:46 -05003871#endif
Jens Axboe26a2ac02009-04-23 12:13:27 +02003872 /*
3873 * Not strictly needed (since RB_ROOT just clears the node and we
3874 * zeroed cfqd on alloc), but better be safe in case someone decides
3875 * to add magic to the rb code
3876 */
3877 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3878 cfqd->prio_trees[i] = RB_ROOT;
3879
Jens Axboe6118b702009-06-30 09:34:12 +02003880 /*
3881 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3882 * Grab a permanent reference to it, so that the normal code flow
3883 * will not attempt to free it.
3884 */
3885 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
Shaohua Li30d7b942011-01-07 08:46:59 +01003886 cfqd->oom_cfqq.ref++;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003887 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
Jens Axboe6118b702009-06-30 09:34:12 +02003888
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890
Jens Axboe22e2c502005-06-27 10:55:12 +02003891 init_timer(&cfqd->idle_slice_timer);
3892 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3893 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3894
Jens Axboe23e018a2009-10-05 08:52:35 +02003895 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003896
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003898 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3899 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 cfqd->cfq_back_max = cfq_back_max;
3901 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003902 cfqd->cfq_slice[0] = cfq_slice_async;
3903 cfqd->cfq_slice[1] = cfq_slice_sync;
3904 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3905 cfqd->cfq_slice_idle = cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003906 cfqd->cfq_group_idle = cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003907 cfqd->cfq_latency = 1;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003908 cfqd->hw_tag = -1;
Corrado Zoccoloedc71132009-12-09 20:56:04 +01003909 /*
3910 * we optimistically start assuming sync ops weren't delayed in last
3911 * second, in order to have larger depth for async operations.
3912 */
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003913 cfqd->last_delayed_sync = jiffies - HZ;
Jens Axboebc1c1162006-06-08 08:49:06 +02003914 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915}
3916
3917static void cfq_slab_kill(void)
3918{
Jens Axboed6de8be2008-05-28 14:46:59 +02003919 /*
3920 * Caller already ensured that pending RCU callbacks are completed,
3921 * so we should have no busy allocations at this point.
3922 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 if (cfq_pool)
3924 kmem_cache_destroy(cfq_pool);
Tejun Heoc5869802011-12-14 00:33:41 +01003925 if (cfq_icq_pool)
3926 kmem_cache_destroy(cfq_icq_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927}
3928
3929static int __init cfq_slab_setup(void)
3930{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003931 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 if (!cfq_pool)
3933 goto fail;
3934
Tejun Heoc5869802011-12-14 00:33:41 +01003935 cfq_icq_pool = KMEM_CACHE(cfq_io_cq, 0);
3936 if (!cfq_icq_pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 goto fail;
3938
3939 return 0;
3940fail:
3941 cfq_slab_kill();
3942 return -ENOMEM;
3943}
3944
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945/*
3946 * sysfs parts below -->
3947 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948static ssize_t
3949cfq_var_show(unsigned int var, char *page)
3950{
3951 return sprintf(page, "%d\n", var);
3952}
3953
3954static ssize_t
3955cfq_var_store(unsigned int *var, const char *page, size_t count)
3956{
3957 char *p = (char *) page;
3958
3959 *var = simple_strtoul(p, &p, 10);
3960 return count;
3961}
3962
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003964static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003966 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 unsigned int __data = __VAR; \
3968 if (__CONV) \
3969 __data = jiffies_to_msecs(__data); \
3970 return cfq_var_show(__data, (page)); \
3971}
3972SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003973SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
3974SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05003975SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
3976SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02003977SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003978SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003979SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
3980SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
3981SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02003982SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983#undef SHOW_FUNCTION
3984
3985#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003986static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003988 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 unsigned int __data; \
3990 int ret = cfq_var_store(&__data, (page), count); \
3991 if (__data < (MIN)) \
3992 __data = (MIN); \
3993 else if (__data > (MAX)) \
3994 __data = (MAX); \
3995 if (__CONV) \
3996 *(__PTR) = msecs_to_jiffies(__data); \
3997 else \
3998 *(__PTR) = __data; \
3999 return ret; \
4000}
4001STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004002STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
4003 UINT_MAX, 1);
4004STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
4005 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05004006STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004007STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
4008 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004009STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004010STORE_FUNCTION(cfq_group_idle_store, &cfqd->cfq_group_idle, 0, UINT_MAX, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02004011STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
4012STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01004013STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
4014 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02004015STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016#undef STORE_FUNCTION
4017
Al Viroe572ec72006-03-18 22:27:18 -05004018#define CFQ_ATTR(name) \
4019 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02004020
Al Viroe572ec72006-03-18 22:27:18 -05004021static struct elv_fs_entry cfq_attrs[] = {
4022 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05004023 CFQ_ATTR(fifo_expire_sync),
4024 CFQ_ATTR(fifo_expire_async),
4025 CFQ_ATTR(back_seek_max),
4026 CFQ_ATTR(back_seek_penalty),
4027 CFQ_ATTR(slice_sync),
4028 CFQ_ATTR(slice_async),
4029 CFQ_ATTR(slice_async_rq),
4030 CFQ_ATTR(slice_idle),
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004031 CFQ_ATTR(group_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02004032 CFQ_ATTR(low_latency),
Al Viroe572ec72006-03-18 22:27:18 -05004033 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034};
4035
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036static struct elevator_type iosched_cfq = {
4037 .ops = {
4038 .elevator_merge_fn = cfq_merge,
4039 .elevator_merged_fn = cfq_merged_request,
4040 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01004041 .elevator_allow_merge_fn = cfq_allow_merge,
Divyesh Shah812d4022010-04-08 21:14:23 -07004042 .elevator_bio_merged_fn = cfq_bio_merged,
Jens Axboeb4878f22005-10-20 16:42:29 +02004043 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02004045 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 .elevator_deactivate_req_fn = cfq_deactivate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02004048 .elevator_former_req_fn = elv_rb_former_request,
4049 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 .elevator_set_req_fn = cfq_set_request,
4051 .elevator_put_req_fn = cfq_put_request,
4052 .elevator_may_queue_fn = cfq_may_queue,
4053 .elevator_init_fn = cfq_init_queue,
4054 .elevator_exit_fn = cfq_exit_queue,
4055 },
Al Viro3d1ab402006-03-18 18:35:43 -05004056 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 .elevator_name = "cfq",
4058 .elevator_owner = THIS_MODULE,
4059};
4060
Vivek Goyal3e252062009-12-04 10:36:42 -05004061#ifdef CONFIG_CFQ_GROUP_IOSCHED
4062static struct blkio_policy_type blkio_policy_cfq = {
4063 .ops = {
4064 .blkio_unlink_group_fn = cfq_unlink_blkio_group,
4065 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
4066 },
Vivek Goyal062a6442010-09-15 17:06:33 -04004067 .plid = BLKIO_POLICY_PROP,
Vivek Goyal3e252062009-12-04 10:36:42 -05004068};
4069#else
4070static struct blkio_policy_type blkio_policy_cfq;
4071#endif
4072
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073static int __init cfq_init(void)
4074{
Jens Axboe22e2c502005-06-27 10:55:12 +02004075 /*
4076 * could be 0 on HZ < 1000 setups
4077 */
4078 if (!cfq_slice_async)
4079 cfq_slice_async = 1;
4080 if (!cfq_slice_idle)
4081 cfq_slice_idle = 1;
4082
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004083#ifdef CONFIG_CFQ_GROUP_IOSCHED
4084 if (!cfq_group_idle)
4085 cfq_group_idle = 1;
4086#else
4087 cfq_group_idle = 0;
4088#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 if (cfq_slab_setup())
4090 return -ENOMEM;
4091
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004092 elv_register(&iosched_cfq);
Vivek Goyal3e252062009-12-04 10:36:42 -05004093 blkio_policy_register(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004095 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096}
4097
4098static void __exit cfq_exit(void)
4099{
Vivek Goyal3e252062009-12-04 10:36:42 -05004100 blkio_policy_unregister(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 elv_unregister(&iosched_cfq);
Tejun Heob50b6362011-12-14 00:33:39 +01004102 rcu_barrier(); /* make sure all cic RCU frees are complete */
Christoph Hellwig83521d32005-10-30 15:01:39 -08004103 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104}
4105
4106module_init(cfq_init);
4107module_exit(cfq_exit);
4108
4109MODULE_AUTHOR("Jens Axboe");
4110MODULE_LICENSE("GPL");
4111MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");