blob: 9bc5ecc1b336d6fe8b89e4a965b85782ca5a86ef [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);
Tejun Heoc5869802011-12-14 00:33:41 +0100471static struct cfq_io_cq *cfq_cic_lookup(struct cfq_data *, struct io_context *);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200472
Tejun Heoc5869802011-12-14 00:33:41 +0100473static inline struct cfq_io_cq *icq_to_cic(struct io_cq *icq)
474{
475 /* cic->icq is the first member, %NULL will convert to %NULL */
476 return container_of(icq, struct cfq_io_cq, icq);
477}
478
479static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_cq *cic, bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200480{
Jens Axboea6151c32009-10-07 20:02:57 +0200481 return cic->cfqq[is_sync];
Vasily Tarasov91fac312007-04-25 12:29:51 +0200482}
483
Tejun Heoc5869802011-12-14 00:33:41 +0100484static inline void cic_set_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq,
485 bool is_sync)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200486{
Jens Axboea6151c32009-10-07 20:02:57 +0200487 cic->cfqq[is_sync] = cfqq;
Vasily Tarasov91fac312007-04-25 12:29:51 +0200488}
489
Tejun Heoc5869802011-12-14 00:33:41 +0100490static inline struct cfq_data *cic_to_cfqd(struct cfq_io_cq *cic)
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400491{
Tejun Heoc5869802011-12-14 00:33:41 +0100492 return cic->icq.q->elevator->elevator_data;
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +0400493}
494
Vasily Tarasov91fac312007-04-25 12:29:51 +0200495/*
496 * We regard a request as SYNC, if it's either a read or has the SYNC bit
497 * set (in which case it could also be direct WRITE).
498 */
Jens Axboea6151c32009-10-07 20:02:57 +0200499static inline bool cfq_bio_sync(struct bio *bio)
Vasily Tarasov91fac312007-04-25 12:29:51 +0200500{
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200501 return bio_data_dir(bio) == READ || (bio->bi_rw & REQ_SYNC);
Vasily Tarasov91fac312007-04-25 12:29:51 +0200502}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/*
Andrew Morton99f95e52005-06-27 20:14:05 -0700505 * scheduler run of queue, if there are requests pending and no one in the
506 * driver that will restart queueing
507 */
Jens Axboe23e018a2009-10-05 08:52:35 +0200508static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
Andrew Morton99f95e52005-06-27 20:14:05 -0700509{
Jens Axboe7b679132008-05-30 12:23:07 +0200510 if (cfqd->busy_queues) {
511 cfq_log(cfqd, "schedule dispatch");
Jens Axboe23e018a2009-10-05 08:52:35 +0200512 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
Jens Axboe7b679132008-05-30 12:23:07 +0200513 }
Andrew Morton99f95e52005-06-27 20:14:05 -0700514}
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516/*
Jens Axboe44f7c162007-01-19 11:51:58 +1100517 * Scale schedule slice based on io priority. Use the sync time slice only
518 * if a queue is marked sync and has sync io queued. A sync queue with async
519 * io only, should not get full sync slice length.
520 */
Jens Axboea6151c32009-10-07 20:02:57 +0200521static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync,
Jens Axboed9e76202007-04-20 14:27:50 +0200522 unsigned short prio)
523{
524 const int base_slice = cfqd->cfq_slice[sync];
525
526 WARN_ON(prio >= IOPRIO_BE_NR);
527
528 return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio));
529}
530
Jens Axboe44f7c162007-01-19 11:51:58 +1100531static inline int
532cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
533{
Jens Axboed9e76202007-04-20 14:27:50 +0200534 return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio);
Jens Axboe44f7c162007-01-19 11:51:58 +1100535}
536
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500537static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg)
538{
539 u64 d = delta << CFQ_SERVICE_SHIFT;
540
541 d = d * BLKIO_WEIGHT_DEFAULT;
542 do_div(d, cfqg->weight);
543 return d;
544}
545
546static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime)
547{
548 s64 delta = (s64)(vdisktime - min_vdisktime);
549 if (delta > 0)
550 min_vdisktime = vdisktime;
551
552 return min_vdisktime;
553}
554
555static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime)
556{
557 s64 delta = (s64)(vdisktime - min_vdisktime);
558 if (delta < 0)
559 min_vdisktime = vdisktime;
560
561 return min_vdisktime;
562}
563
564static void update_min_vdisktime(struct cfq_rb_root *st)
565{
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500566 struct cfq_group *cfqg;
567
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500568 if (st->left) {
569 cfqg = rb_entry_cfqg(st->left);
Gui Jianfenga6032712011-03-07 09:28:09 +0100570 st->min_vdisktime = max_vdisktime(st->min_vdisktime,
571 cfqg->vdisktime);
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500572 }
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500573}
574
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100575/*
576 * get averaged number of queues of RT/BE priority.
577 * average is updated, with a formula that gives more weight to higher numbers,
578 * to quickly follows sudden increases and decrease slowly
579 */
580
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500581static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd,
582 struct cfq_group *cfqg, bool rt)
Jens Axboe5869619c2009-10-28 09:27:07 +0100583{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100584 unsigned min_q, max_q;
585 unsigned mult = cfq_hist_divisor - 1;
586 unsigned round = cfq_hist_divisor / 2;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500587 unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg);
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100588
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500589 min_q = min(cfqg->busy_queues_avg[rt], busy);
590 max_q = max(cfqg->busy_queues_avg[rt], busy);
591 cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) /
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100592 cfq_hist_divisor;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500593 return cfqg->busy_queues_avg[rt];
594}
595
596static inline unsigned
597cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
598{
599 struct cfq_rb_root *st = &cfqd->grp_service_tree;
600
601 return cfq_target_latency * cfqg->weight / st->total_weight;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100602}
603
Shaohua Lic553f8e2011-01-14 08:41:03 +0100604static inline unsigned
Vivek Goyalba5bd522011-01-19 08:25:02 -0700605cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100606{
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100607 unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
608 if (cfqd->cfq_latency) {
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500609 /*
610 * interested queues (we consider only the ones with the same
611 * priority class in the cfq group)
612 */
613 unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg,
614 cfq_class_rt(cfqq));
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100615 unsigned sync_slice = cfqd->cfq_slice[1];
616 unsigned expect_latency = sync_slice * iq;
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500617 unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg);
618
619 if (expect_latency > group_slice) {
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100620 unsigned base_low_slice = 2 * cfqd->cfq_slice_idle;
621 /* scale low_slice according to IO priority
622 * and sync vs async */
623 unsigned low_slice =
624 min(slice, base_low_slice * slice / sync_slice);
625 /* the adapted slice value is scaled to fit all iqs
626 * into the target latency */
Vivek Goyal58ff82f2009-12-03 12:59:44 -0500627 slice = max(slice * group_slice / expect_latency,
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100628 low_slice);
629 }
630 }
Shaohua Lic553f8e2011-01-14 08:41:03 +0100631 return slice;
632}
633
634static inline void
635cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
636{
Vivek Goyalba5bd522011-01-19 08:25:02 -0700637 unsigned slice = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +0100638
Vivek Goyaldae739e2009-12-03 12:59:45 -0500639 cfqq->slice_start = jiffies;
Corrado Zoccolo5db5d642009-10-26 22:44:04 +0100640 cfqq->slice_end = jiffies + slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500641 cfqq->allocated_slice = slice;
Jens Axboe7b679132008-05-30 12:23:07 +0200642 cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies);
Jens Axboe44f7c162007-01-19 11:51:58 +1100643}
644
645/*
646 * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end
647 * isn't valid until the first request from the dispatch is activated
648 * and the slice time set.
649 */
Jens Axboea6151c32009-10-07 20:02:57 +0200650static inline bool cfq_slice_used(struct cfq_queue *cfqq)
Jens Axboe44f7c162007-01-19 11:51:58 +1100651{
652 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +0100653 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100654 if (time_before(jiffies, cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +0100655 return false;
Jens Axboe44f7c162007-01-19 11:51:58 +1100656
Shaohua Lic1e44752010-11-08 15:01:02 +0100657 return true;
Jens Axboe44f7c162007-01-19 11:51:58 +1100658}
659
660/*
Jens Axboe5e705372006-07-13 12:39:25 +0200661 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 * We choose the request that is closest to the head right now. Distance
Andreas Mohre8a99052006-03-28 08:59:49 +0200663 * behind the head is penalized and only allowed to a certain extent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
Jens Axboe5e705372006-07-13 12:39:25 +0200665static struct request *
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100666cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100668 sector_t s1, s2, d1 = 0, d2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 unsigned long back_max;
Andreas Mohre8a99052006-03-28 08:59:49 +0200670#define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */
671#define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */
672 unsigned wrap = 0; /* bit mask: requests behind the disk head? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Jens Axboe5e705372006-07-13 12:39:25 +0200674 if (rq1 == NULL || rq1 == rq2)
675 return rq2;
676 if (rq2 == NULL)
677 return rq1;
Jens Axboe9c2c38a2005-08-24 14:57:54 +0200678
Namhyung Kim229836b2011-05-24 10:23:21 +0200679 if (rq_is_sync(rq1) != rq_is_sync(rq2))
680 return rq_is_sync(rq1) ? rq1 : rq2;
681
Christoph Hellwig65299a32011-08-23 14:50:29 +0200682 if ((rq1->cmd_flags ^ rq2->cmd_flags) & REQ_PRIO)
683 return rq1->cmd_flags & REQ_PRIO ? rq1 : rq2;
Jens Axboeb53d1ed2011-08-19 08:34:48 +0200684
Tejun Heo83096eb2009-05-07 22:24:39 +0900685 s1 = blk_rq_pos(rq1);
686 s2 = blk_rq_pos(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 /*
689 * by definition, 1KiB is 2 sectors
690 */
691 back_max = cfqd->cfq_back_max * 2;
692
693 /*
694 * Strict one way elevator _except_ in the case where we allow
695 * short backward seeks which are biased as twice the cost of a
696 * similar forward seek.
697 */
698 if (s1 >= last)
699 d1 = s1 - last;
700 else if (s1 + back_max >= last)
701 d1 = (last - s1) * cfqd->cfq_back_penalty;
702 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200703 wrap |= CFQ_RQ1_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 if (s2 >= last)
706 d2 = s2 - last;
707 else if (s2 + back_max >= last)
708 d2 = (last - s2) * cfqd->cfq_back_penalty;
709 else
Andreas Mohre8a99052006-03-28 08:59:49 +0200710 wrap |= CFQ_RQ2_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 /* Found required data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Andreas Mohre8a99052006-03-28 08:59:49 +0200714 /*
715 * By doing switch() on the bit mask "wrap" we avoid having to
716 * check two variables for all permutations: --> faster!
717 */
718 switch (wrap) {
Jens Axboe5e705372006-07-13 12:39:25 +0200719 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200720 if (d1 < d2)
Jens Axboe5e705372006-07-13 12:39:25 +0200721 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200722 else if (d2 < d1)
Jens Axboe5e705372006-07-13 12:39:25 +0200723 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200724 else {
725 if (s1 >= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200726 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200727 else
Jens Axboe5e705372006-07-13 12:39:25 +0200728 return rq2;
Andreas Mohre8a99052006-03-28 08:59:49 +0200729 }
730
731 case CFQ_RQ2_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200732 return rq1;
Andreas Mohre8a99052006-03-28 08:59:49 +0200733 case CFQ_RQ1_WRAP:
Jens Axboe5e705372006-07-13 12:39:25 +0200734 return rq2;
735 case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */
Andreas Mohre8a99052006-03-28 08:59:49 +0200736 default:
737 /*
738 * Since both rqs are wrapped,
739 * start with the one that's further behind head
740 * (--> only *one* back seek required),
741 * since back seek takes more time than forward.
742 */
743 if (s1 <= s2)
Jens Axboe5e705372006-07-13 12:39:25 +0200744 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 else
Jens Axboe5e705372006-07-13 12:39:25 +0200746 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748}
749
Jens Axboe498d3aa22007-04-26 12:54:48 +0200750/*
751 * The below is leftmost cache rbtree addon
752 */
Jens Axboe08717142008-01-28 11:38:15 +0100753static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root)
Jens Axboecc09e292007-04-26 12:53:50 +0200754{
Vivek Goyal615f0252009-12-03 12:59:39 -0500755 /* Service tree is empty */
756 if (!root->count)
757 return NULL;
758
Jens Axboecc09e292007-04-26 12:53:50 +0200759 if (!root->left)
760 root->left = rb_first(&root->rb);
761
Jens Axboe08717142008-01-28 11:38:15 +0100762 if (root->left)
763 return rb_entry(root->left, struct cfq_queue, rb_node);
764
765 return NULL;
Jens Axboecc09e292007-04-26 12:53:50 +0200766}
767
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500768static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root)
769{
770 if (!root->left)
771 root->left = rb_first(&root->rb);
772
773 if (root->left)
774 return rb_entry_cfqg(root->left);
775
776 return NULL;
777}
778
Jens Axboea36e71f2009-04-15 12:15:11 +0200779static void rb_erase_init(struct rb_node *n, struct rb_root *root)
780{
781 rb_erase(n, root);
782 RB_CLEAR_NODE(n);
783}
784
Jens Axboecc09e292007-04-26 12:53:50 +0200785static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root)
786{
787 if (root->left == n)
788 root->left = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +0200789 rb_erase_init(n, &root->rb);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +0100790 --root->count;
Jens Axboecc09e292007-04-26 12:53:50 +0200791}
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793/*
794 * would be nice to take fifo expire time into account as well
795 */
Jens Axboe5e705372006-07-13 12:39:25 +0200796static struct request *
797cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
798 struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Jens Axboe21183b02006-07-13 12:33:14 +0200800 struct rb_node *rbnext = rb_next(&last->rb_node);
801 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe5e705372006-07-13 12:39:25 +0200802 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Jens Axboe21183b02006-07-13 12:33:14 +0200804 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 if (rbprev)
Jens Axboe5e705372006-07-13 12:39:25 +0200807 prev = rb_entry_rq(rbprev);
Jens Axboe21183b02006-07-13 12:33:14 +0200808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (rbnext)
Jens Axboe5e705372006-07-13 12:39:25 +0200810 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200811 else {
812 rbnext = rb_first(&cfqq->sort_list);
813 if (rbnext && rbnext != &last->rb_node)
Jens Axboe5e705372006-07-13 12:39:25 +0200814 next = rb_entry_rq(rbnext);
Jens Axboe21183b02006-07-13 12:33:14 +0200815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +0100817 return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Jens Axboed9e76202007-04-20 14:27:50 +0200820static unsigned long cfq_slice_offset(struct cfq_data *cfqd,
821 struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Jens Axboed9e76202007-04-20 14:27:50 +0200823 /*
824 * just an approximation, should be ok.
825 */
Vivek Goyalcdb16e82009-12-03 12:59:38 -0500826 return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) -
Jens Axboe464191c2009-11-30 09:38:13 +0100827 cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio));
Jens Axboed9e76202007-04-20 14:27:50 +0200828}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500830static inline s64
831cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg)
832{
833 return cfqg->vdisktime - st->min_vdisktime;
834}
835
836static void
837__cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
838{
839 struct rb_node **node = &st->rb.rb_node;
840 struct rb_node *parent = NULL;
841 struct cfq_group *__cfqg;
842 s64 key = cfqg_key(st, cfqg);
843 int left = 1;
844
845 while (*node != NULL) {
846 parent = *node;
847 __cfqg = rb_entry_cfqg(parent);
848
849 if (key < cfqg_key(st, __cfqg))
850 node = &parent->rb_left;
851 else {
852 node = &parent->rb_right;
853 left = 0;
854 }
855 }
856
857 if (left)
858 st->left = &cfqg->rb_node;
859
860 rb_link_node(&cfqg->rb_node, parent, node);
861 rb_insert_color(&cfqg->rb_node, &st->rb);
862}
863
864static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100865cfq_update_group_weight(struct cfq_group *cfqg)
866{
867 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
868 if (cfqg->needs_update) {
869 cfqg->weight = cfqg->new_weight;
870 cfqg->needs_update = false;
871 }
872}
873
874static void
875cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg)
876{
877 BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node));
878
879 cfq_update_group_weight(cfqg);
880 __cfq_group_service_tree_add(st, cfqg);
881 st->total_weight += cfqg->weight;
882}
883
884static void
885cfq_group_notify_queue_add(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500886{
887 struct cfq_rb_root *st = &cfqd->grp_service_tree;
888 struct cfq_group *__cfqg;
889 struct rb_node *n;
890
891 cfqg->nr_cfqq++;
Gui Jianfeng760701b2010-11-30 20:52:47 +0100892 if (!RB_EMPTY_NODE(&cfqg->rb_node))
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500893 return;
894
895 /*
896 * Currently put the group at the end. Later implement something
897 * so that groups get lesser vtime based on their weights, so that
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300898 * if group does not loose all if it was not continuously backlogged.
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500899 */
900 n = rb_last(&st->rb);
901 if (n) {
902 __cfqg = rb_entry_cfqg(n);
903 cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY;
904 } else
905 cfqg->vdisktime = st->min_vdisktime;
Justin TerAvest8184f932011-03-17 16:12:36 +0100906 cfq_group_service_tree_add(st, cfqg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500907}
908
909static void
Justin TerAvest8184f932011-03-17 16:12:36 +0100910cfq_group_service_tree_del(struct cfq_rb_root *st, struct cfq_group *cfqg)
911{
912 st->total_weight -= cfqg->weight;
913 if (!RB_EMPTY_NODE(&cfqg->rb_node))
914 cfq_rb_erase(&cfqg->rb_node, st);
915}
916
917static void
918cfq_group_notify_queue_del(struct cfq_data *cfqd, struct cfq_group *cfqg)
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500919{
920 struct cfq_rb_root *st = &cfqd->grp_service_tree;
921
922 BUG_ON(cfqg->nr_cfqq < 1);
923 cfqg->nr_cfqq--;
Vivek Goyal25bc6b02009-12-03 12:59:43 -0500924
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -0500925 /* If there are other cfq queues under this group, don't delete it */
926 if (cfqg->nr_cfqq)
927 return;
928
Vivek Goyal2868ef72009-12-03 12:59:48 -0500929 cfq_log_cfqg(cfqd, cfqg, "del_from_rr group");
Justin TerAvest8184f932011-03-17 16:12:36 +0100930 cfq_group_service_tree_del(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500931 cfqg->saved_workload_slice = 0;
Vivek Goyale98ef892010-06-18 10:39:47 -0400932 cfq_blkiocg_update_dequeue_stats(&cfqg->blkg, 1);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500933}
934
Justin TerAvest167400d2011-03-12 16:54:00 +0100935static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq,
936 unsigned int *unaccounted_time)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500937{
Vivek Goyalf75edf22009-12-03 12:59:53 -0500938 unsigned int slice_used;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500939
940 /*
941 * Queue got expired before even a single request completed or
942 * got expired immediately after first request completion.
943 */
944 if (!cfqq->slice_start || cfqq->slice_start == jiffies) {
945 /*
946 * Also charge the seek time incurred to the group, otherwise
947 * if there are mutiple queues in the group, each can dispatch
948 * a single request on seeky media and cause lots of seek time
949 * and group will never know it.
950 */
951 slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start),
952 1);
953 } else {
954 slice_used = jiffies - cfqq->slice_start;
Justin TerAvest167400d2011-03-12 16:54:00 +0100955 if (slice_used > cfqq->allocated_slice) {
956 *unaccounted_time = slice_used - cfqq->allocated_slice;
Vivek Goyalf75edf22009-12-03 12:59:53 -0500957 slice_used = cfqq->allocated_slice;
Justin TerAvest167400d2011-03-12 16:54:00 +0100958 }
959 if (time_after(cfqq->slice_start, cfqq->dispatch_start))
960 *unaccounted_time += cfqq->slice_start -
961 cfqq->dispatch_start;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500962 }
963
Vivek Goyaldae739e2009-12-03 12:59:45 -0500964 return slice_used;
965}
966
967static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg,
Vivek Goyale5ff0822010-04-26 19:25:11 +0200968 struct cfq_queue *cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -0500969{
970 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Justin TerAvest167400d2011-03-12 16:54:00 +0100971 unsigned int used_sl, charge, unaccounted_sl = 0;
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500972 int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg)
973 - cfqg->service_tree_idle.count;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500974
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500975 BUG_ON(nr_sync < 0);
Justin TerAvest167400d2011-03-12 16:54:00 +0100976 used_sl = charge = cfq_cfqq_slice_usage(cfqq, &unaccounted_sl);
Vivek Goyalf26bd1f2009-12-03 12:59:54 -0500977
Vivek Goyal02b35082010-08-23 12:23:53 +0200978 if (iops_mode(cfqd))
979 charge = cfqq->slice_dispatch;
980 else if (!cfq_cfqq_sync(cfqq) && !nr_sync)
981 charge = cfqq->allocated_slice;
Vivek Goyaldae739e2009-12-03 12:59:45 -0500982
983 /* Can't update vdisktime while group is on service tree */
Justin TerAvest8184f932011-03-17 16:12:36 +0100984 cfq_group_service_tree_del(st, cfqg);
Vivek Goyal02b35082010-08-23 12:23:53 +0200985 cfqg->vdisktime += cfq_scale_slice(charge, cfqg);
Justin TerAvest8184f932011-03-17 16:12:36 +0100986 /* If a new weight was requested, update now, off tree */
987 cfq_group_service_tree_add(st, cfqg);
Vivek Goyaldae739e2009-12-03 12:59:45 -0500988
989 /* This group is being expired. Save the context */
990 if (time_after(cfqd->workload_expires, jiffies)) {
991 cfqg->saved_workload_slice = cfqd->workload_expires
992 - jiffies;
993 cfqg->saved_workload = cfqd->serving_type;
994 cfqg->saved_serving_prio = cfqd->serving_prio;
995 } else
996 cfqg->saved_workload_slice = 0;
Vivek Goyal2868ef72009-12-03 12:59:48 -0500997
998 cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime,
999 st->min_vdisktime);
Joe Perchesfd16d262011-06-13 10:42:49 +02001000 cfq_log_cfqq(cfqq->cfqd, cfqq,
1001 "sl_used=%u disp=%u charge=%u iops=%u sect=%lu",
1002 used_sl, cfqq->slice_dispatch, charge,
1003 iops_mode(cfqd), cfqq->nr_sectors);
Justin TerAvest167400d2011-03-12 16:54:00 +01001004 cfq_blkiocg_update_timeslice_used(&cfqg->blkg, used_sl,
1005 unaccounted_sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04001006 cfq_blkiocg_set_start_empty_time(&cfqg->blkg);
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001007}
1008
Vivek Goyal25fb5162009-12-03 12:59:46 -05001009#ifdef CONFIG_CFQ_GROUP_IOSCHED
1010static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg)
1011{
1012 if (blkg)
1013 return container_of(blkg, struct cfq_group, blkg);
1014 return NULL;
1015}
1016
Paul Bolle8aea4542011-06-06 05:07:54 +02001017static void cfq_update_blkio_group_weight(void *key, struct blkio_group *blkg,
1018 unsigned int weight)
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001019{
Justin TerAvest8184f932011-03-17 16:12:36 +01001020 struct cfq_group *cfqg = cfqg_of_blkg(blkg);
1021 cfqg->new_weight = weight;
1022 cfqg->needs_update = true;
Vivek Goyalf8d461d2009-12-03 12:59:52 -05001023}
1024
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001025static void cfq_init_add_cfqg_lists(struct cfq_data *cfqd,
1026 struct cfq_group *cfqg, struct blkio_cgroup *blkcg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001027{
Vivek Goyal22084192009-12-03 12:59:49 -05001028 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
1029 unsigned int major, minor;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001030
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001031 /*
1032 * Add group onto cgroup list. It might happen that bdi->dev is
1033 * not initialized yet. Initialize this new group without major
1034 * and minor info and this info will be filled in once a new thread
1035 * comes for IO.
1036 */
1037 if (bdi->dev) {
Ricky Beniteza74b2ad2010-04-05 18:22:17 +02001038 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001039 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg,
1040 (void *)cfqd, MKDEV(major, minor));
1041 } else
1042 cfq_blkiocg_add_blkio_group(blkcg, &cfqg->blkg,
1043 (void *)cfqd, 0);
1044
1045 cfqd->nr_blkcg_linked_grps++;
1046 cfqg->weight = blkcg_get_weight(blkcg, cfqg->blkg.dev);
1047
1048 /* Add group on cfqd list */
1049 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
1050}
1051
1052/*
1053 * Should be called from sleepable context. No request queue lock as per
1054 * cpu stats are allocated dynamically and alloc_percpu needs to be called
1055 * from sleepable context.
1056 */
1057static struct cfq_group * cfq_alloc_cfqg(struct cfq_data *cfqd)
1058{
1059 struct cfq_group *cfqg = NULL;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001060 int i, j, ret;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001061 struct cfq_rb_root *st;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001062
1063 cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
1064 if (!cfqg)
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001065 return NULL;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001066
Vivek Goyal25fb5162009-12-03 12:59:46 -05001067 for_each_cfqg_st(cfqg, i, j, st)
1068 *st = CFQ_RB_ROOT;
1069 RB_CLEAR_NODE(&cfqg->rb_node);
1070
Shaohua Li7700fc42011-07-12 14:24:56 +02001071 cfqg->ttime.last_end_request = jiffies;
1072
Vivek Goyalb1c35762009-12-03 12:59:47 -05001073 /*
1074 * Take the initial reference that will be released on destroy
1075 * This can be thought of a joint reference by cgroup and
1076 * elevator which will be dropped by either elevator exit
1077 * or cgroup deletion path depending on who is exiting first.
1078 */
Shaohua Li329a6782011-01-07 08:48:28 +01001079 cfqg->ref = 1;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001080
1081 ret = blkio_alloc_blkg_stats(&cfqg->blkg);
1082 if (ret) {
1083 kfree(cfqg);
1084 return NULL;
1085 }
1086
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001087 return cfqg;
1088}
1089
1090static struct cfq_group *
1091cfq_find_cfqg(struct cfq_data *cfqd, struct blkio_cgroup *blkcg)
1092{
1093 struct cfq_group *cfqg = NULL;
1094 void *key = cfqd;
1095 struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info;
1096 unsigned int major, minor;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001097
Vivek Goyal180be2a2010-09-14 08:47:11 +02001098 /*
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001099 * This is the common case when there are no blkio cgroups.
1100 * Avoid lookup in this case
Vivek Goyal180be2a2010-09-14 08:47:11 +02001101 */
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001102 if (blkcg == &blkio_root_cgroup)
1103 cfqg = &cfqd->root_group;
1104 else
1105 cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key));
1106
1107 if (cfqg && !cfqg->blkg.dev && bdi->dev && dev_name(bdi->dev)) {
Vivek Goyal180be2a2010-09-14 08:47:11 +02001108 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001109 cfqg->blkg.dev = MKDEV(major, minor);
1110 }
Vivek Goyal180be2a2010-09-14 08:47:11 +02001111
Vivek Goyal25fb5162009-12-03 12:59:46 -05001112 return cfqg;
1113}
1114
1115/*
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001116 * Search for the cfq group current task belongs to. request_queue lock must
1117 * be held.
Vivek Goyal25fb5162009-12-03 12:59:46 -05001118 */
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001119static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001120{
Vivek Goyal70087dc2011-05-16 15:24:08 +02001121 struct blkio_cgroup *blkcg;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001122 struct cfq_group *cfqg = NULL, *__cfqg = NULL;
1123 struct request_queue *q = cfqd->queue;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001124
1125 rcu_read_lock();
Vivek Goyal70087dc2011-05-16 15:24:08 +02001126 blkcg = task_blkio_cgroup(current);
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001127 cfqg = cfq_find_cfqg(cfqd, blkcg);
1128 if (cfqg) {
1129 rcu_read_unlock();
1130 return cfqg;
1131 }
1132
1133 /*
1134 * Need to allocate a group. Allocation of group also needs allocation
1135 * of per cpu stats which in-turn takes a mutex() and can block. Hence
1136 * we need to drop rcu lock and queue_lock before we call alloc.
1137 *
1138 * Not taking any queue reference here and assuming that queue is
1139 * around by the time we return. CFQ queue allocation code does
1140 * the same. It might be racy though.
1141 */
1142
1143 rcu_read_unlock();
1144 spin_unlock_irq(q->queue_lock);
1145
1146 cfqg = cfq_alloc_cfqg(cfqd);
1147
1148 spin_lock_irq(q->queue_lock);
1149
1150 rcu_read_lock();
1151 blkcg = task_blkio_cgroup(current);
1152
1153 /*
1154 * If some other thread already allocated the group while we were
1155 * not holding queue lock, free up the group
1156 */
1157 __cfqg = cfq_find_cfqg(cfqd, blkcg);
1158
1159 if (__cfqg) {
1160 kfree(cfqg);
1161 rcu_read_unlock();
1162 return __cfqg;
1163 }
1164
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001165 if (!cfqg)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001166 cfqg = &cfqd->root_group;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001167
1168 cfq_init_add_cfqg_lists(cfqd, cfqg, blkcg);
Vivek Goyal25fb5162009-12-03 12:59:46 -05001169 rcu_read_unlock();
1170 return cfqg;
1171}
1172
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001173static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1174{
Shaohua Li329a6782011-01-07 08:48:28 +01001175 cfqg->ref++;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001176 return cfqg;
1177}
1178
Vivek Goyal25fb5162009-12-03 12:59:46 -05001179static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg)
1180{
1181 /* Currently, all async queues are mapped to root group */
1182 if (!cfq_cfqq_sync(cfqq))
1183 cfqg = &cfqq->cfqd->root_group;
1184
1185 cfqq->cfqg = cfqg;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001186 /* cfqq reference on cfqg */
Shaohua Li329a6782011-01-07 08:48:28 +01001187 cfqq->cfqg->ref++;
Vivek Goyal25fb5162009-12-03 12:59:46 -05001188}
Vivek Goyalb1c35762009-12-03 12:59:47 -05001189
1190static void cfq_put_cfqg(struct cfq_group *cfqg)
1191{
1192 struct cfq_rb_root *st;
1193 int i, j;
1194
Shaohua Li329a6782011-01-07 08:48:28 +01001195 BUG_ON(cfqg->ref <= 0);
1196 cfqg->ref--;
1197 if (cfqg->ref)
Vivek Goyalb1c35762009-12-03 12:59:47 -05001198 return;
1199 for_each_cfqg_st(cfqg, i, j, st)
Gui Jianfengb54ce602010-11-30 20:52:46 +01001200 BUG_ON(!RB_EMPTY_ROOT(&st->rb));
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001201 free_percpu(cfqg->blkg.stats_cpu);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001202 kfree(cfqg);
1203}
1204
1205static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1206{
1207 /* Something wrong if we are trying to remove same group twice */
1208 BUG_ON(hlist_unhashed(&cfqg->cfqd_node));
1209
1210 hlist_del_init(&cfqg->cfqd_node);
1211
Vivek Goyala5395b82011-08-02 09:24:09 +02001212 BUG_ON(cfqd->nr_blkcg_linked_grps <= 0);
1213 cfqd->nr_blkcg_linked_grps--;
1214
Vivek Goyalb1c35762009-12-03 12:59:47 -05001215 /*
1216 * Put the reference taken at the time of creation so that when all
1217 * queues are gone, group can be destroyed.
1218 */
1219 cfq_put_cfqg(cfqg);
1220}
1221
1222static void cfq_release_cfq_groups(struct cfq_data *cfqd)
1223{
1224 struct hlist_node *pos, *n;
1225 struct cfq_group *cfqg;
1226
1227 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1228 /*
1229 * If cgroup removal path got to blk_group first and removed
1230 * it from cgroup list, then it will take care of destroying
1231 * cfqg also.
1232 */
Vivek Goyale98ef892010-06-18 10:39:47 -04001233 if (!cfq_blkiocg_del_blkio_group(&cfqg->blkg))
Vivek Goyalb1c35762009-12-03 12:59:47 -05001234 cfq_destroy_cfqg(cfqd, cfqg);
1235 }
1236}
1237
1238/*
1239 * Blk cgroup controller notification saying that blkio_group object is being
1240 * delinked as associated cgroup object is going away. That also means that
1241 * no new IO will come in this group. So get rid of this group as soon as
1242 * any pending IO in the group is finished.
1243 *
1244 * This function is called under rcu_read_lock(). key is the rcu protected
1245 * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu
1246 * read lock.
1247 *
1248 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
1249 * it should not be NULL as even if elevator was exiting, cgroup deltion
1250 * path got to it first.
1251 */
Paul Bolle8aea4542011-06-06 05:07:54 +02001252static void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
Vivek Goyalb1c35762009-12-03 12:59:47 -05001253{
1254 unsigned long flags;
1255 struct cfq_data *cfqd = key;
1256
1257 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
1258 cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg));
1259 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1260}
1261
Vivek Goyal25fb5162009-12-03 12:59:46 -05001262#else /* GROUP_IOSCHED */
Vivek Goyal3e59cf92011-05-19 15:38:21 -04001263static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd)
Vivek Goyal25fb5162009-12-03 12:59:46 -05001264{
1265 return &cfqd->root_group;
1266}
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001267
1268static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg)
1269{
Dmitry Monakhov50eaeb32010-04-28 19:50:33 +02001270 return cfqg;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001271}
1272
Vivek Goyal25fb5162009-12-03 12:59:46 -05001273static inline void
1274cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) {
1275 cfqq->cfqg = cfqg;
1276}
1277
Vivek Goyalb1c35762009-12-03 12:59:47 -05001278static void cfq_release_cfq_groups(struct cfq_data *cfqd) {}
1279static inline void cfq_put_cfqg(struct cfq_group *cfqg) {}
1280
Vivek Goyal25fb5162009-12-03 12:59:46 -05001281#endif /* GROUP_IOSCHED */
1282
Jens Axboe498d3aa22007-04-26 12:54:48 +02001283/*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001284 * The cfqd->service_trees holds all pending cfq_queue's that have
Jens Axboe498d3aa22007-04-26 12:54:48 +02001285 * requests waiting to be processed. It is sorted in the order that
1286 * we will service the queues.
1287 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001288static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02001289 bool add_front)
Jens Axboed9e76202007-04-20 14:27:50 +02001290{
Jens Axboe08717142008-01-28 11:38:15 +01001291 struct rb_node **p, *parent;
1292 struct cfq_queue *__cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02001293 unsigned long rb_key;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001294 struct cfq_rb_root *service_tree;
Jens Axboe498d3aa22007-04-26 12:54:48 +02001295 int left;
Vivek Goyaldae739e2009-12-03 12:59:45 -05001296 int new_cfqq = 1;
Vivek Goyalae30c282009-12-03 12:59:55 -05001297
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001298 service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq),
Vivek Goyal65b32a52009-12-16 17:52:59 -05001299 cfqq_type(cfqq));
Jens Axboe08717142008-01-28 11:38:15 +01001300 if (cfq_class_idle(cfqq)) {
1301 rb_key = CFQ_IDLE_DELAY;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001302 parent = rb_last(&service_tree->rb);
Jens Axboe08717142008-01-28 11:38:15 +01001303 if (parent && parent != &cfqq->rb_node) {
1304 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1305 rb_key += __cfqq->rb_key;
1306 } else
1307 rb_key += jiffies;
1308 } else if (!add_front) {
Jens Axboeb9c89462009-10-06 20:53:44 +02001309 /*
1310 * Get our rb key offset. Subtract any residual slice
1311 * value carried from last service. A negative resid
1312 * count indicates slice overrun, and this should position
1313 * the next service time further away in the tree.
1314 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001315 rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies;
Jens Axboeb9c89462009-10-06 20:53:44 +02001316 rb_key -= cfqq->slice_resid;
Jens Axboeedd75ff2007-04-19 12:03:34 +02001317 cfqq->slice_resid = 0;
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001318 } else {
1319 rb_key = -HZ;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001320 __cfqq = cfq_rb_first(service_tree);
Corrado Zoccolo48e025e2009-10-05 08:49:23 +02001321 rb_key += __cfqq ? __cfqq->rb_key : jiffies;
1322 }
Jens Axboed9e76202007-04-20 14:27:50 +02001323
1324 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
Vivek Goyaldae739e2009-12-03 12:59:45 -05001325 new_cfqq = 0;
Jens Axboe99f96282007-02-05 11:56:25 +01001326 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001327 * same position, nothing more to do
Jens Axboe99f96282007-02-05 11:56:25 +01001328 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001329 if (rb_key == cfqq->rb_key &&
1330 cfqq->service_tree == service_tree)
Jens Axboed9e76202007-04-20 14:27:50 +02001331 return;
Jens Axboe53b037442006-07-28 09:48:51 +02001332
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001333 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1334 cfqq->service_tree = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02001335 }
Jens Axboed9e76202007-04-20 14:27:50 +02001336
Jens Axboe498d3aa22007-04-26 12:54:48 +02001337 left = 1;
Jens Axboe08717142008-01-28 11:38:15 +01001338 parent = NULL;
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001339 cfqq->service_tree = service_tree;
1340 p = &service_tree->rb.rb_node;
Jens Axboed9e76202007-04-20 14:27:50 +02001341 while (*p) {
Jens Axboe67060e32007-04-18 20:13:32 +02001342 struct rb_node **n;
Jens Axboecc09e292007-04-26 12:53:50 +02001343
Jens Axboed9e76202007-04-20 14:27:50 +02001344 parent = *p;
1345 __cfqq = rb_entry(parent, struct cfq_queue, rb_node);
1346
Jens Axboe0c534e02007-04-18 20:01:57 +02001347 /*
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001348 * sort by key, that represents service time.
Jens Axboe0c534e02007-04-18 20:01:57 +02001349 */
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001350 if (time_before(rb_key, __cfqq->rb_key))
Jens Axboe67060e32007-04-18 20:13:32 +02001351 n = &(*p)->rb_left;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001352 else {
Jens Axboe67060e32007-04-18 20:13:32 +02001353 n = &(*p)->rb_right;
Jens Axboecc09e292007-04-26 12:53:50 +02001354 left = 0;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001355 }
Jens Axboe67060e32007-04-18 20:13:32 +02001356
1357 p = n;
Jens Axboed9e76202007-04-20 14:27:50 +02001358 }
1359
Jens Axboecc09e292007-04-26 12:53:50 +02001360 if (left)
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001361 service_tree->left = &cfqq->rb_node;
Jens Axboecc09e292007-04-26 12:53:50 +02001362
Jens Axboed9e76202007-04-20 14:27:50 +02001363 cfqq->rb_key = rb_key;
1364 rb_link_node(&cfqq->rb_node, parent, p);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001365 rb_insert_color(&cfqq->rb_node, &service_tree->rb);
1366 service_tree->count++;
Namhyung Kim20359f22011-05-24 10:23:22 +02001367 if (add_front || !new_cfqq)
Vivek Goyaldae739e2009-12-03 12:59:45 -05001368 return;
Justin TerAvest8184f932011-03-17 16:12:36 +01001369 cfq_group_notify_queue_add(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
Jens Axboea36e71f2009-04-15 12:15:11 +02001372static struct cfq_queue *
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001373cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root,
1374 sector_t sector, struct rb_node **ret_parent,
1375 struct rb_node ***rb_link)
Jens Axboea36e71f2009-04-15 12:15:11 +02001376{
Jens Axboea36e71f2009-04-15 12:15:11 +02001377 struct rb_node **p, *parent;
1378 struct cfq_queue *cfqq = NULL;
1379
1380 parent = NULL;
1381 p = &root->rb_node;
1382 while (*p) {
1383 struct rb_node **n;
1384
1385 parent = *p;
1386 cfqq = rb_entry(parent, struct cfq_queue, p_node);
1387
1388 /*
1389 * Sort strictly based on sector. Smallest to the left,
1390 * largest to the right.
1391 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001392 if (sector > blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001393 n = &(*p)->rb_right;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001394 else if (sector < blk_rq_pos(cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001395 n = &(*p)->rb_left;
1396 else
1397 break;
1398 p = n;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001399 cfqq = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001400 }
1401
1402 *ret_parent = parent;
1403 if (rb_link)
1404 *rb_link = p;
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001405 return cfqq;
Jens Axboea36e71f2009-04-15 12:15:11 +02001406}
1407
1408static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1409{
Jens Axboea36e71f2009-04-15 12:15:11 +02001410 struct rb_node **p, *parent;
1411 struct cfq_queue *__cfqq;
1412
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001413 if (cfqq->p_root) {
1414 rb_erase(&cfqq->p_node, cfqq->p_root);
1415 cfqq->p_root = NULL;
1416 }
Jens Axboea36e71f2009-04-15 12:15:11 +02001417
1418 if (cfq_class_idle(cfqq))
1419 return;
1420 if (!cfqq->next_rq)
1421 return;
1422
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001423 cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio];
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001424 __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root,
1425 blk_rq_pos(cfqq->next_rq), &parent, &p);
Jens Axboe3ac6c9f2009-04-23 12:14:56 +02001426 if (!__cfqq) {
1427 rb_link_node(&cfqq->p_node, parent, p);
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001428 rb_insert_color(&cfqq->p_node, cfqq->p_root);
1429 } else
1430 cfqq->p_root = NULL;
Jens Axboea36e71f2009-04-15 12:15:11 +02001431}
1432
Jens Axboe498d3aa22007-04-26 12:54:48 +02001433/*
1434 * Update cfqq's position in the service tree.
1435 */
Jens Axboeedd75ff2007-04-19 12:03:34 +02001436static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001437{
Jens Axboe6d048f52007-04-25 12:44:27 +02001438 /*
1439 * Resorting requires the cfqq to be on the RR list already.
1440 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001441 if (cfq_cfqq_on_rr(cfqq)) {
Jens Axboeedd75ff2007-04-19 12:03:34 +02001442 cfq_service_tree_add(cfqd, cfqq, 0);
Jens Axboea36e71f2009-04-15 12:15:11 +02001443 cfq_prio_tree_add(cfqd, cfqq);
1444 }
Jens Axboe6d048f52007-04-25 12:44:27 +02001445}
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447/*
1448 * add to busy list of queues for service, trying to be fair in ordering
Jens Axboe22e2c502005-06-27 10:55:12 +02001449 * the pending list according to last request service
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 */
Jens Axboefebffd62008-01-28 13:19:43 +01001451static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
Jens Axboe7b679132008-05-30 12:23:07 +02001453 cfq_log_cfqq(cfqd, cfqq, "add_to_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001454 BUG_ON(cfq_cfqq_on_rr(cfqq));
1455 cfq_mark_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 cfqd->busy_queues++;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001457 if (cfq_cfqq_sync(cfqq))
1458 cfqd->busy_sync_queues++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Jens Axboeedd75ff2007-04-19 12:03:34 +02001460 cfq_resort_rr_list(cfqd, cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
Jens Axboe498d3aa22007-04-26 12:54:48 +02001463/*
1464 * Called when the cfqq no longer has requests pending, remove it from
1465 * the service tree.
1466 */
Jens Axboefebffd62008-01-28 13:19:43 +01001467static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
Jens Axboe7b679132008-05-30 12:23:07 +02001469 cfq_log_cfqq(cfqd, cfqq, "del_from_rr");
Jens Axboe3b181522005-06-27 10:56:24 +02001470 BUG_ON(!cfq_cfqq_on_rr(cfqq));
1471 cfq_clear_cfqq_on_rr(cfqq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01001473 if (!RB_EMPTY_NODE(&cfqq->rb_node)) {
1474 cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree);
1475 cfqq->service_tree = NULL;
1476 }
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001477 if (cfqq->p_root) {
1478 rb_erase(&cfqq->p_node, cfqq->p_root);
1479 cfqq->p_root = NULL;
1480 }
Jens Axboed9e76202007-04-20 14:27:50 +02001481
Justin TerAvest8184f932011-03-17 16:12:36 +01001482 cfq_group_notify_queue_del(cfqd, cfqq->cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 BUG_ON(!cfqd->busy_queues);
1484 cfqd->busy_queues--;
Shaohua Lief8a41d2011-03-07 09:26:29 +01001485 if (cfq_cfqq_sync(cfqq))
1486 cfqd->busy_sync_queues--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
1489/*
1490 * rb tree support functions
1491 */
Jens Axboefebffd62008-01-28 13:19:43 +01001492static void cfq_del_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Jens Axboe5e705372006-07-13 12:39:25 +02001494 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe5e705372006-07-13 12:39:25 +02001495 const int sync = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Jens Axboeb4878f22005-10-20 16:42:29 +02001497 BUG_ON(!cfqq->queued[sync]);
1498 cfqq->queued[sync]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Jens Axboe5e705372006-07-13 12:39:25 +02001500 elv_rb_del(&cfqq->sort_list, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Vivek Goyalf04a6422009-12-03 12:59:40 -05001502 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) {
1503 /*
1504 * Queue will be deleted from service tree when we actually
1505 * expire it later. Right now just remove it from prio tree
1506 * as it is empty.
1507 */
1508 if (cfqq->p_root) {
1509 rb_erase(&cfqq->p_node, cfqq->p_root);
1510 cfqq->p_root = NULL;
1511 }
1512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
Jens Axboe5e705372006-07-13 12:39:25 +02001515static void cfq_add_rq_rb(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Jens Axboe5e705372006-07-13 12:39:25 +02001517 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 struct cfq_data *cfqd = cfqq->cfqd;
Jeff Moyer796d5112011-06-02 21:19:05 +02001519 struct request *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Jens Axboe5380a102006-07-13 12:37:56 +02001521 cfqq->queued[rq_is_sync(rq)]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Jeff Moyer796d5112011-06-02 21:19:05 +02001523 elv_rb_add(&cfqq->sort_list, rq);
Jens Axboe5fccbf62006-10-31 14:21:55 +01001524
1525 if (!cfq_cfqq_on_rr(cfqq))
1526 cfq_add_cfqq_rr(cfqd, cfqq);
Jens Axboe5044eed2007-04-25 11:53:48 +02001527
1528 /*
1529 * check if this request is a better next-serve candidate
1530 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001531 prev = cfqq->next_rq;
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001532 cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position);
Jens Axboea36e71f2009-04-15 12:15:11 +02001533
1534 /*
1535 * adjust priority tree position, if ->next_rq changes
1536 */
1537 if (prev != cfqq->next_rq)
1538 cfq_prio_tree_add(cfqd, cfqq);
1539
Jens Axboe5044eed2007-04-25 11:53:48 +02001540 BUG_ON(!cfqq->next_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
Jens Axboefebffd62008-01-28 13:19:43 +01001543static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Jens Axboe5380a102006-07-13 12:37:56 +02001545 elv_rb_del(&cfqq->sort_list, rq);
1546 cfqq->queued[rq_is_sync(rq)]--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001547 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1548 rq_data_dir(rq), rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02001549 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04001550 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02001551 &cfqq->cfqd->serving_group->blkg, rq_data_dir(rq),
1552 rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
Jens Axboe206dc692006-03-28 13:03:44 +02001555static struct request *
1556cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Jens Axboe206dc692006-03-28 13:03:44 +02001558 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01001559 struct cfq_io_cq *cic;
Jens Axboe206dc692006-03-28 13:03:44 +02001560 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Jens Axboe4ac845a2008-01-24 08:44:49 +01001562 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02001563 if (!cic)
1564 return NULL;
1565
1566 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboe89850f72006-07-22 16:48:31 +02001567 if (cfqq) {
1568 sector_t sector = bio->bi_sector + bio_sectors(bio);
1569
Jens Axboe21183b02006-07-13 12:33:14 +02001570 return elv_rb_find(&cfqq->sort_list, sector);
Jens Axboe89850f72006-07-22 16:48:31 +02001571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 return NULL;
1574}
1575
Jens Axboe165125e2007-07-24 09:28:11 +02001576static void cfq_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001577{
1578 struct cfq_data *cfqd = q->elevator->elevator_data;
1579
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001580 cfqd->rq_in_driver++;
Jens Axboe7b679132008-05-30 12:23:07 +02001581 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001582 cfqd->rq_in_driver);
Jens Axboe25776e32006-06-01 10:12:26 +02001583
Tejun Heo5b936292009-05-07 22:24:38 +09001584 cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02001585}
1586
Jens Axboe165125e2007-07-24 09:28:11 +02001587static void cfq_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Jens Axboe22e2c502005-06-27 10:55:12 +02001589 struct cfq_data *cfqd = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001591 WARN_ON(!cfqd->rq_in_driver);
1592 cfqd->rq_in_driver--;
Jens Axboe7b679132008-05-30 12:23:07 +02001593 cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d",
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01001594 cfqd->rq_in_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
Jens Axboeb4878f22005-10-20 16:42:29 +02001597static void cfq_remove_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
Jens Axboe5e705372006-07-13 12:39:25 +02001599 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe21183b02006-07-13 12:33:14 +02001600
Jens Axboe5e705372006-07-13 12:39:25 +02001601 if (cfqq->next_rq == rq)
1602 cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Jens Axboeb4878f22005-10-20 16:42:29 +02001604 list_del_init(&rq->queuelist);
Jens Axboe5e705372006-07-13 12:39:25 +02001605 cfq_del_rq_rb(rq);
Jens Axboe374f84a2006-07-23 01:42:19 +02001606
Aaron Carroll45333d52008-08-26 15:52:36 +02001607 cfqq->cfqd->rq_queued--;
Vivek Goyale98ef892010-06-18 10:39:47 -04001608 cfq_blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg,
1609 rq_data_dir(rq), rq_is_sync(rq));
Christoph Hellwig65299a32011-08-23 14:50:29 +02001610 if (rq->cmd_flags & REQ_PRIO) {
1611 WARN_ON(!cfqq->prio_pending);
1612 cfqq->prio_pending--;
Jens Axboeb53d1ed2011-08-19 08:34:48 +02001613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
Jens Axboe165125e2007-07-24 09:28:11 +02001616static int cfq_merge(struct request_queue *q, struct request **req,
1617 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
1619 struct cfq_data *cfqd = q->elevator->elevator_data;
1620 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Jens Axboe206dc692006-03-28 13:03:44 +02001622 __rq = cfq_find_rq_fmerge(cfqd, bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02001623 if (__rq && elv_rq_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +02001624 *req = __rq;
1625 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
1627
1628 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
1630
Jens Axboe165125e2007-07-24 09:28:11 +02001631static void cfq_merged_request(struct request_queue *q, struct request *req,
Jens Axboe21183b02006-07-13 12:33:14 +02001632 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
Jens Axboe21183b02006-07-13 12:33:14 +02001634 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe5e705372006-07-13 12:39:25 +02001635 struct cfq_queue *cfqq = RQ_CFQQ(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Jens Axboe5e705372006-07-13 12:39:25 +02001637 cfq_reposition_rq_rb(cfqq, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640
Divyesh Shah812d4022010-04-08 21:14:23 -07001641static void cfq_bio_merged(struct request_queue *q, struct request *req,
1642 struct bio *bio)
1643{
Vivek Goyale98ef892010-06-18 10:39:47 -04001644 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(req))->blkg,
1645 bio_data_dir(bio), cfq_bio_sync(bio));
Divyesh Shah812d4022010-04-08 21:14:23 -07001646}
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648static void
Jens Axboe165125e2007-07-24 09:28:11 +02001649cfq_merged_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 struct request *next)
1651{
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001652 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001653 /*
1654 * reposition in fifo if next is older than rq
1655 */
1656 if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
Jens Axboe30996f42009-10-05 11:03:39 +02001657 time_before(rq_fifo_time(next), rq_fifo_time(rq))) {
Jens Axboe22e2c502005-06-27 10:55:12 +02001658 list_move(&rq->queuelist, &next->queuelist);
Jens Axboe30996f42009-10-05 11:03:39 +02001659 rq_set_fifo_time(rq, rq_fifo_time(next));
1660 }
Jens Axboe22e2c502005-06-27 10:55:12 +02001661
Corrado Zoccolocf7c25c2009-11-08 17:16:46 +01001662 if (cfqq->next_rq == next)
1663 cfqq->next_rq = rq;
Jens Axboeb4878f22005-10-20 16:42:29 +02001664 cfq_remove_request(next);
Vivek Goyale98ef892010-06-18 10:39:47 -04001665 cfq_blkiocg_update_io_merged_stats(&(RQ_CFQG(rq))->blkg,
1666 rq_data_dir(next), rq_is_sync(next));
Jens Axboe22e2c502005-06-27 10:55:12 +02001667}
1668
Jens Axboe165125e2007-07-24 09:28:11 +02001669static int cfq_allow_merge(struct request_queue *q, struct request *rq,
Jens Axboeda775262006-12-20 11:04:12 +01001670 struct bio *bio)
1671{
1672 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heoc5869802011-12-14 00:33:41 +01001673 struct cfq_io_cq *cic;
Jens Axboeda775262006-12-20 11:04:12 +01001674 struct cfq_queue *cfqq;
Jens Axboeda775262006-12-20 11:04:12 +01001675
1676 /*
Jens Axboeec8acb62007-01-02 18:32:11 +01001677 * Disallow merge of a sync bio into an async request.
Jens Axboeda775262006-12-20 11:04:12 +01001678 */
Vasily Tarasov91fac312007-04-25 12:29:51 +02001679 if (cfq_bio_sync(bio) && !rq_is_sync(rq))
Jens Axboea6151c32009-10-07 20:02:57 +02001680 return false;
Jens Axboeda775262006-12-20 11:04:12 +01001681
1682 /*
Tejun Heof1a4f4d2011-12-14 00:33:39 +01001683 * Lookup the cfqq that this bio will be queued with and allow
1684 * merge only if rq is queued there. This function can be called
1685 * from plug merge without queue_lock. In such cases, ioc of @rq
1686 * and %current are guaranteed to be equal. Avoid lookup which
1687 * requires queue_lock by using @rq's cic.
Jens Axboeda775262006-12-20 11:04:12 +01001688 */
Tejun Heoc5869802011-12-14 00:33:41 +01001689 if (current->io_context == RQ_CIC(rq)->icq.ioc) {
Tejun Heof1a4f4d2011-12-14 00:33:39 +01001690 cic = RQ_CIC(rq);
1691 } else {
1692 cic = cfq_cic_lookup(cfqd, current->io_context);
1693 if (!cic)
1694 return false;
1695 }
Jens Axboe719d3402006-12-22 09:38:53 +01001696
Vasily Tarasov91fac312007-04-25 12:29:51 +02001697 cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio));
Jens Axboea6151c32009-10-07 20:02:57 +02001698 return cfqq == RQ_CFQQ(rq);
Jens Axboeda775262006-12-20 11:04:12 +01001699}
1700
Divyesh Shah812df482010-04-08 21:15:35 -07001701static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1702{
1703 del_timer(&cfqd->idle_slice_timer);
Vivek Goyale98ef892010-06-18 10:39:47 -04001704 cfq_blkiocg_update_idle_time_stats(&cfqq->cfqg->blkg);
Divyesh Shah812df482010-04-08 21:15:35 -07001705}
1706
Jens Axboefebffd62008-01-28 13:19:43 +01001707static void __cfq_set_active_queue(struct cfq_data *cfqd,
1708 struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02001709{
1710 if (cfqq) {
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001711 cfq_log_cfqq(cfqd, cfqq, "set_active wl_prio:%d wl_type:%d",
1712 cfqd->serving_prio, cfqd->serving_type);
Justin TerAvest62a37f62011-03-23 08:25:44 +01001713 cfq_blkiocg_update_avg_queue_size_stats(&cfqq->cfqg->blkg);
1714 cfqq->slice_start = 0;
1715 cfqq->dispatch_start = jiffies;
1716 cfqq->allocated_slice = 0;
1717 cfqq->slice_end = 0;
1718 cfqq->slice_dispatch = 0;
1719 cfqq->nr_sectors = 0;
1720
1721 cfq_clear_cfqq_wait_request(cfqq);
1722 cfq_clear_cfqq_must_dispatch(cfqq);
1723 cfq_clear_cfqq_must_alloc_slice(cfqq);
1724 cfq_clear_cfqq_fifo_expire(cfqq);
1725 cfq_mark_cfqq_slice_new(cfqq);
1726
1727 cfq_del_timer(cfqd, cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02001728 }
1729
1730 cfqd->active_queue = cfqq;
1731}
1732
1733/*
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001734 * current cfqq expired its slice (or was too idle), select new one
1735 */
1736static void
1737__cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Vivek Goyale5ff0822010-04-26 19:25:11 +02001738 bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001739{
Jens Axboe7b679132008-05-30 12:23:07 +02001740 cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out);
1741
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001742 if (cfq_cfqq_wait_request(cfqq))
Divyesh Shah812df482010-04-08 21:15:35 -07001743 cfq_del_timer(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001744
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001745 cfq_clear_cfqq_wait_request(cfqq);
Vivek Goyalf75edf22009-12-03 12:59:53 -05001746 cfq_clear_cfqq_wait_busy(cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001747
1748 /*
Shaohua Liae54abe2010-02-05 13:11:45 +01001749 * If this cfqq is shared between multiple processes, check to
1750 * make sure that those processes are still issuing I/Os within
1751 * the mean seek distance. If not, it may be time to break the
1752 * queues apart again.
1753 */
1754 if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq))
1755 cfq_mark_cfqq_split_coop(cfqq);
1756
1757 /*
Jens Axboe6084cdd2007-04-23 08:25:00 +02001758 * store what was left of this slice, if the queue idled/timed out
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001759 */
Shaohua Lic553f8e2011-01-14 08:41:03 +01001760 if (timed_out) {
1761 if (cfq_cfqq_slice_new(cfqq))
Vivek Goyalba5bd522011-01-19 08:25:02 -07001762 cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq);
Shaohua Lic553f8e2011-01-14 08:41:03 +01001763 else
1764 cfqq->slice_resid = cfqq->slice_end - jiffies;
Jens Axboe7b679132008-05-30 12:23:07 +02001765 cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
1766 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001767
Vivek Goyale5ff0822010-04-26 19:25:11 +02001768 cfq_group_served(cfqd, cfqq->cfqg, cfqq);
Vivek Goyaldae739e2009-12-03 12:59:45 -05001769
Vivek Goyalf04a6422009-12-03 12:59:40 -05001770 if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list))
1771 cfq_del_cfqq_rr(cfqd, cfqq);
1772
Jens Axboeedd75ff2007-04-19 12:03:34 +02001773 cfq_resort_rr_list(cfqd, cfqq);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001774
1775 if (cfqq == cfqd->active_queue)
1776 cfqd->active_queue = NULL;
1777
1778 if (cfqd->active_cic) {
Tejun Heoc5869802011-12-14 00:33:41 +01001779 put_io_context(cfqd->active_cic->icq.ioc, cfqd->queue);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001780 cfqd->active_cic = NULL;
1781 }
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001782}
1783
Vivek Goyale5ff0822010-04-26 19:25:11 +02001784static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out)
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001785{
1786 struct cfq_queue *cfqq = cfqd->active_queue;
1787
1788 if (cfqq)
Vivek Goyale5ff0822010-04-26 19:25:11 +02001789 __cfq_slice_expired(cfqd, cfqq, timed_out);
Jens Axboe7b14e3b2006-02-28 09:35:11 +01001790}
1791
Jens Axboe498d3aa22007-04-26 12:54:48 +02001792/*
1793 * Get next queue for service. Unless we have a queue preemption,
1794 * we'll simply select the first cfqq in the service tree.
1795 */
Jens Axboe6d048f52007-04-25 12:44:27 +02001796static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001797{
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001798 struct cfq_rb_root *service_tree =
Vivek Goyalcdb16e82009-12-03 12:59:38 -05001799 service_tree_for(cfqd->serving_group, cfqd->serving_prio,
Vivek Goyal65b32a52009-12-16 17:52:59 -05001800 cfqd->serving_type);
Jens Axboeedd75ff2007-04-19 12:03:34 +02001801
Vivek Goyalf04a6422009-12-03 12:59:40 -05001802 if (!cfqd->rq_queued)
1803 return NULL;
1804
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05001805 /* There is nothing to dispatch */
1806 if (!service_tree)
1807 return NULL;
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001808 if (RB_EMPTY_ROOT(&service_tree->rb))
1809 return NULL;
1810 return cfq_rb_first(service_tree);
Jens Axboe6d048f52007-04-25 12:44:27 +02001811}
1812
Vivek Goyalf04a6422009-12-03 12:59:40 -05001813static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd)
1814{
Vivek Goyal25fb5162009-12-03 12:59:46 -05001815 struct cfq_group *cfqg;
Vivek Goyalf04a6422009-12-03 12:59:40 -05001816 struct cfq_queue *cfqq;
1817 int i, j;
1818 struct cfq_rb_root *st;
1819
1820 if (!cfqd->rq_queued)
1821 return NULL;
1822
Vivek Goyal25fb5162009-12-03 12:59:46 -05001823 cfqg = cfq_get_next_cfqg(cfqd);
1824 if (!cfqg)
1825 return NULL;
1826
Vivek Goyalf04a6422009-12-03 12:59:40 -05001827 for_each_cfqg_st(cfqg, i, j, st)
1828 if ((cfqq = cfq_rb_first(st)) != NULL)
1829 return cfqq;
1830 return NULL;
1831}
1832
Jens Axboe498d3aa22007-04-26 12:54:48 +02001833/*
1834 * Get and set a new active queue for service.
1835 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001836static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd,
1837 struct cfq_queue *cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001838{
Jens Axboee00ef792009-11-04 08:54:55 +01001839 if (!cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001840 cfqq = cfq_get_next_queue(cfqd);
Jens Axboe6d048f52007-04-25 12:44:27 +02001841
Jens Axboe22e2c502005-06-27 10:55:12 +02001842 __cfq_set_active_queue(cfqd, cfqq);
Jens Axboe3b181522005-06-27 10:56:24 +02001843 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02001844}
1845
Jens Axboed9e76202007-04-20 14:27:50 +02001846static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd,
1847 struct request *rq)
1848{
Tejun Heo83096eb2009-05-07 22:24:39 +09001849 if (blk_rq_pos(rq) >= cfqd->last_position)
1850 return blk_rq_pos(rq) - cfqd->last_position;
Jens Axboed9e76202007-04-20 14:27:50 +02001851 else
Tejun Heo83096eb2009-05-07 22:24:39 +09001852 return cfqd->last_position - blk_rq_pos(rq);
Jens Axboed9e76202007-04-20 14:27:50 +02001853}
1854
Jeff Moyerb2c18e12009-10-23 17:14:49 -04001855static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Shaohua Lie9ce3352010-03-19 08:03:04 +01001856 struct request *rq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001857{
Shaohua Lie9ce3352010-03-19 08:03:04 +01001858 return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR;
Jens Axboe6d048f52007-04-25 12:44:27 +02001859}
1860
Jens Axboea36e71f2009-04-15 12:15:11 +02001861static struct cfq_queue *cfqq_close(struct cfq_data *cfqd,
1862 struct cfq_queue *cur_cfqq)
Jens Axboe6d048f52007-04-25 12:44:27 +02001863{
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001864 struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio];
Jens Axboea36e71f2009-04-15 12:15:11 +02001865 struct rb_node *parent, *node;
1866 struct cfq_queue *__cfqq;
1867 sector_t sector = cfqd->last_position;
1868
1869 if (RB_EMPTY_ROOT(root))
1870 return NULL;
1871
1872 /*
1873 * First, if we find a request starting at the end of the last
1874 * request, choose it.
1875 */
Jens Axboef2d1f0a2009-04-23 12:19:38 +02001876 __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL);
Jens Axboea36e71f2009-04-15 12:15:11 +02001877 if (__cfqq)
1878 return __cfqq;
1879
1880 /*
1881 * If the exact sector wasn't found, the parent of the NULL leaf
1882 * will contain the closest sector.
1883 */
1884 __cfqq = rb_entry(parent, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001885 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001886 return __cfqq;
1887
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001888 if (blk_rq_pos(__cfqq->next_rq) < sector)
Jens Axboea36e71f2009-04-15 12:15:11 +02001889 node = rb_next(&__cfqq->p_node);
1890 else
1891 node = rb_prev(&__cfqq->p_node);
1892 if (!node)
1893 return NULL;
1894
1895 __cfqq = rb_entry(node, struct cfq_queue, p_node);
Shaohua Lie9ce3352010-03-19 08:03:04 +01001896 if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq))
Jens Axboea36e71f2009-04-15 12:15:11 +02001897 return __cfqq;
1898
1899 return NULL;
1900}
1901
1902/*
1903 * cfqd - obvious
1904 * cur_cfqq - passed in so that we don't decide that the current queue is
1905 * closely cooperating with itself.
1906 *
1907 * So, basically we're assuming that that cur_cfqq has dispatched at least
1908 * one request, and that cfqd->last_position reflects a position on the disk
1909 * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid
1910 * assumption.
1911 */
1912static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd,
Jeff Moyerb3b6d042009-10-23 17:14:51 -04001913 struct cfq_queue *cur_cfqq)
Jens Axboea36e71f2009-04-15 12:15:11 +02001914{
1915 struct cfq_queue *cfqq;
1916
Divyesh Shah39c01b22010-03-25 15:45:57 +01001917 if (cfq_class_idle(cur_cfqq))
1918 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001919 if (!cfq_cfqq_sync(cur_cfqq))
1920 return NULL;
1921 if (CFQQ_SEEKY(cur_cfqq))
1922 return NULL;
1923
Jens Axboea36e71f2009-04-15 12:15:11 +02001924 /*
Gui Jianfengb9d8f4c2009-12-08 08:54:17 +01001925 * Don't search priority tree if it's the only queue in the group.
1926 */
1927 if (cur_cfqq->cfqg->nr_cfqq == 1)
1928 return NULL;
1929
1930 /*
Jens Axboed9e76202007-04-20 14:27:50 +02001931 * We should notice if some of the queues are cooperating, eg
1932 * working closely on the same area of the disk. In that case,
1933 * we can group them together and don't waste time idling.
Jens Axboe6d048f52007-04-25 12:44:27 +02001934 */
Jens Axboea36e71f2009-04-15 12:15:11 +02001935 cfqq = cfqq_close(cfqd, cur_cfqq);
1936 if (!cfqq)
1937 return NULL;
1938
Vivek Goyal8682e1f2009-12-03 12:59:50 -05001939 /* If new queue belongs to different cfq_group, don't choose it */
1940 if (cur_cfqq->cfqg != cfqq->cfqg)
1941 return NULL;
1942
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001943 /*
1944 * It only makes sense to merge sync queues.
1945 */
1946 if (!cfq_cfqq_sync(cfqq))
1947 return NULL;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04001948 if (CFQQ_SEEKY(cfqq))
1949 return NULL;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04001950
Corrado Zoccoloc0324a02009-10-27 19:16:03 +01001951 /*
1952 * Do not merge queues of different priority classes
1953 */
1954 if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq))
1955 return NULL;
1956
Jens Axboea36e71f2009-04-15 12:15:11 +02001957 return cfqq;
Jens Axboe6d048f52007-04-25 12:44:27 +02001958}
1959
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001960/*
1961 * Determine whether we should enforce idle window for this queue.
1962 */
1963
1964static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq)
1965{
1966 enum wl_prio_t prio = cfqq_prio(cfqq);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01001967 struct cfq_rb_root *service_tree = cfqq->service_tree;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001968
Vivek Goyalf04a6422009-12-03 12:59:40 -05001969 BUG_ON(!service_tree);
1970 BUG_ON(!service_tree->count);
1971
Vivek Goyalb6508c12010-08-23 12:23:33 +02001972 if (!cfqd->cfq_slice_idle)
1973 return false;
1974
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001975 /* We never do for idle class queues. */
1976 if (prio == IDLE_WORKLOAD)
1977 return false;
1978
1979 /* We do for queues that were marked with idle window flag. */
Shaohua Li3c764b72009-12-04 13:12:06 +01001980 if (cfq_cfqq_idle_window(cfqq) &&
1981 !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag))
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001982 return true;
1983
1984 /*
1985 * Otherwise, we do only if they are the last ones
1986 * in their service tree.
1987 */
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02001988 if (service_tree->count == 1 && cfq_cfqq_sync(cfqq) &&
1989 !cfq_io_thinktime_big(cfqd, &service_tree->ttime, false))
Shaohua Lic1e44752010-11-08 15:01:02 +01001990 return true;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01001991 cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d",
1992 service_tree->count);
Shaohua Lic1e44752010-11-08 15:01:02 +01001993 return false;
Corrado Zoccoloa6d44e92009-10-26 22:45:11 +01001994}
1995
Jens Axboe6d048f52007-04-25 12:44:27 +02001996static void cfq_arm_slice_timer(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02001997{
Jens Axboe17926692007-01-19 11:59:30 +11001998 struct cfq_queue *cfqq = cfqd->active_queue;
Tejun Heoc5869802011-12-14 00:33:41 +01001999 struct cfq_io_cq *cic;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002000 unsigned long sl, group_idle = 0;
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002001
Jens Axboea68bbddba2008-09-24 13:03:33 +02002002 /*
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002003 * SSD device without seek penalty, disable idling. But only do so
2004 * for devices that support queuing, otherwise we still have a problem
2005 * with sync vs async workloads.
Jens Axboea68bbddba2008-09-24 13:03:33 +02002006 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +02002007 if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)
Jens Axboea68bbddba2008-09-24 13:03:33 +02002008 return;
2009
Jens Axboedd67d052006-06-21 09:36:18 +02002010 WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
Jens Axboe6d048f52007-04-25 12:44:27 +02002011 WARN_ON(cfq_cfqq_slice_new(cfqq));
Jens Axboe22e2c502005-06-27 10:55:12 +02002012
2013 /*
2014 * idle is disabled, either manually or by past process history
2015 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002016 if (!cfq_should_idle(cfqd, cfqq)) {
2017 /* no queue idling. Check for group idling */
2018 if (cfqd->cfq_group_idle)
2019 group_idle = cfqd->cfq_group_idle;
2020 else
2021 return;
2022 }
Jens Axboe6d048f52007-04-25 12:44:27 +02002023
Jens Axboe22e2c502005-06-27 10:55:12 +02002024 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002025 * still active requests from this queue, don't idle
Jens Axboe7b679132008-05-30 12:23:07 +02002026 */
Corrado Zoccolo8e550632009-11-26 10:02:58 +01002027 if (cfqq->dispatched)
Jens Axboe7b679132008-05-30 12:23:07 +02002028 return;
2029
2030 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02002031 * task has exited, don't wait
2032 */
Jens Axboe206dc692006-03-28 13:03:44 +02002033 cic = cfqd->active_cic;
Tejun Heoc5869802011-12-14 00:33:41 +01002034 if (!cic || !atomic_read(&cic->icq.ioc->nr_tasks))
Jens Axboe6d048f52007-04-25 12:44:27 +02002035 return;
2036
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002037 /*
2038 * If our average think time is larger than the remaining time
2039 * slice, then don't idle. This avoids overrunning the allotted
2040 * time slice.
2041 */
Shaohua Li383cd722011-07-12 14:24:35 +02002042 if (sample_valid(cic->ttime.ttime_samples) &&
2043 (cfqq->slice_end - jiffies < cic->ttime.ttime_mean)) {
Joe Perchesfd16d262011-06-13 10:42:49 +02002044 cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%lu",
Shaohua Li383cd722011-07-12 14:24:35 +02002045 cic->ttime.ttime_mean);
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002046 return;
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002047 }
Corrado Zoccolo355b6592009-10-08 08:43:32 +02002048
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002049 /* There are other queues in the group, don't do group idle */
2050 if (group_idle && cfqq->cfqg->nr_cfqq > 1)
2051 return;
2052
Jens Axboe3b181522005-06-27 10:56:24 +02002053 cfq_mark_cfqq_wait_request(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002054
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002055 if (group_idle)
2056 sl = cfqd->cfq_group_idle;
2057 else
2058 sl = cfqd->cfq_slice_idle;
Jens Axboe206dc692006-03-28 13:03:44 +02002059
Jens Axboe7b14e3b2006-02-28 09:35:11 +01002060 mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
Vivek Goyale98ef892010-06-18 10:39:47 -04002061 cfq_blkiocg_update_set_idle_time_stats(&cfqq->cfqg->blkg);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002062 cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu group_idle: %d", sl,
2063 group_idle ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
Jens Axboe498d3aa22007-04-26 12:54:48 +02002066/*
2067 * Move request from internal lists to the request queue dispatch list.
2068 */
Jens Axboe165125e2007-07-24 09:28:11 +02002069static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Jens Axboe3ed9a292007-04-23 08:33:33 +02002071 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02002072 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002073
Jens Axboe7b679132008-05-30 12:23:07 +02002074 cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");
2075
Jeff Moyer06d21882009-09-11 17:08:59 +02002076 cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
Jens Axboe5380a102006-07-13 12:37:56 +02002077 cfq_remove_request(rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002078 cfqq->dispatched++;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002079 (RQ_CFQG(rq))->dispatched++;
Jens Axboe5380a102006-07-13 12:37:56 +02002080 elv_dispatch_sort(q, rq);
Jens Axboe3ed9a292007-04-23 08:33:33 +02002081
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002082 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++;
Vivek Goyalc4e78932010-08-23 12:25:03 +02002083 cfqq->nr_sectors += blk_rq_sectors(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04002084 cfq_blkiocg_update_dispatch_stats(&cfqq->cfqg->blkg, blk_rq_bytes(rq),
Divyesh Shah84c124d2010-04-09 08:31:19 +02002085 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
2088/*
2089 * return expired entry, or NULL to just start from scratch in rbtree
2090 */
Jens Axboefebffd62008-01-28 13:19:43 +01002091static struct request *cfq_check_fifo(struct cfq_queue *cfqq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
Jens Axboe30996f42009-10-05 11:03:39 +02002093 struct request *rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Jens Axboe3b181522005-06-27 10:56:24 +02002095 if (cfq_cfqq_fifo_expire(cfqq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 return NULL;
Jens Axboecb887412007-01-19 12:01:16 +11002097
2098 cfq_mark_cfqq_fifo_expire(cfqq);
2099
Jens Axboe89850f72006-07-22 16:48:31 +02002100 if (list_empty(&cfqq->fifo))
2101 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Jens Axboe89850f72006-07-22 16:48:31 +02002103 rq = rq_entry_fifo(cfqq->fifo.next);
Jens Axboe30996f42009-10-05 11:03:39 +02002104 if (time_before(jiffies, rq_fifo_time(rq)))
Jens Axboe7b679132008-05-30 12:23:07 +02002105 rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Jens Axboe30996f42009-10-05 11:03:39 +02002107 cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq);
Jens Axboe6d048f52007-04-25 12:44:27 +02002108 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
2110
Jens Axboe22e2c502005-06-27 10:55:12 +02002111static inline int
2112cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2113{
2114 const int base_rq = cfqd->cfq_slice_async_rq;
2115
2116 WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR);
2117
Namhyung Kimb9f8ce02011-05-24 10:23:21 +02002118 return 2 * base_rq * (IOPRIO_BE_NR - cfqq->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002119}
2120
2121/*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002122 * Must be called with the queue_lock held.
2123 */
2124static int cfqq_process_refs(struct cfq_queue *cfqq)
2125{
2126 int process_refs, io_refs;
2127
2128 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE];
Shaohua Li30d7b942011-01-07 08:46:59 +01002129 process_refs = cfqq->ref - io_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002130 BUG_ON(process_refs < 0);
2131 return process_refs;
2132}
2133
2134static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq)
2135{
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002136 int process_refs, new_process_refs;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002137 struct cfq_queue *__cfqq;
2138
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002139 /*
2140 * If there are no process references on the new_cfqq, then it is
2141 * unsafe to follow the ->new_cfqq chain as other cfqq's in the
2142 * chain may have dropped their last reference (not just their
2143 * last process reference).
2144 */
2145 if (!cfqq_process_refs(new_cfqq))
2146 return;
2147
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002148 /* Avoid a circular list and skip interim queue merges */
2149 while ((__cfqq = new_cfqq->new_cfqq)) {
2150 if (__cfqq == cfqq)
2151 return;
2152 new_cfqq = __cfqq;
2153 }
2154
2155 process_refs = cfqq_process_refs(cfqq);
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002156 new_process_refs = cfqq_process_refs(new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002157 /*
2158 * If the process for the cfqq has gone away, there is no
2159 * sense in merging the queues.
2160 */
Jeff Moyerc10b61f2010-06-17 10:19:11 -04002161 if (process_refs == 0 || new_process_refs == 0)
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002162 return;
2163
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002164 /*
2165 * Merge in the direction of the lesser amount of work.
2166 */
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002167 if (new_process_refs >= process_refs) {
2168 cfqq->new_cfqq = new_cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002169 new_cfqq->ref += process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002170 } else {
2171 new_cfqq->new_cfqq = cfqq;
Shaohua Li30d7b942011-01-07 08:46:59 +01002172 cfqq->ref += new_process_refs;
Jeff Moyere6c5bc72009-10-23 17:14:52 -04002173 }
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002174}
2175
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002176static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd,
Vivek Goyal65b32a52009-12-16 17:52:59 -05002177 struct cfq_group *cfqg, enum wl_prio_t prio)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002178{
2179 struct cfq_queue *queue;
2180 int i;
2181 bool key_valid = false;
2182 unsigned long lowest_key = 0;
2183 enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD;
2184
Vivek Goyal65b32a52009-12-16 17:52:59 -05002185 for (i = 0; i <= SYNC_WORKLOAD; ++i) {
2186 /* select the one with lowest rb_key */
2187 queue = cfq_rb_first(service_tree_for(cfqg, prio, i));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002188 if (queue &&
2189 (!key_valid || time_before(queue->rb_key, lowest_key))) {
2190 lowest_key = queue->rb_key;
2191 cur_best = i;
2192 key_valid = true;
2193 }
2194 }
2195
2196 return cur_best;
2197}
2198
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002199static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg)
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002200{
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002201 unsigned slice;
2202 unsigned count;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002203 struct cfq_rb_root *st;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002204 unsigned group_slice;
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002205 enum wl_prio_t original_prio = cfqd->serving_prio;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002206
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002207 /* Choose next priority. RT > BE > IDLE */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002208 if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002209 cfqd->serving_prio = RT_WORKLOAD;
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002210 else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002211 cfqd->serving_prio = BE_WORKLOAD;
2212 else {
2213 cfqd->serving_prio = IDLE_WORKLOAD;
2214 cfqd->workload_expires = jiffies + 1;
2215 return;
2216 }
2217
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002218 if (original_prio != cfqd->serving_prio)
2219 goto new_workload;
2220
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002221 /*
2222 * For RT and BE, we have to choose also the type
2223 * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload
2224 * expiration time
2225 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002226 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002227 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002228
2229 /*
Vivek Goyal65b32a52009-12-16 17:52:59 -05002230 * check workload expiration, and that we still have other queues ready
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002231 */
Vivek Goyal65b32a52009-12-16 17:52:59 -05002232 if (count && !time_after(jiffies, cfqd->workload_expires))
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002233 return;
2234
Shaohua Li writese4ea0c12010-12-13 14:32:22 +01002235new_workload:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002236 /* otherwise select new workload type */
2237 cfqd->serving_type =
Vivek Goyal65b32a52009-12-16 17:52:59 -05002238 cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio);
2239 st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002240 count = st->count;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002241
2242 /*
2243 * the workload slice is computed as a fraction of target latency
2244 * proportional to the number of queues in that workload, over
2245 * all the queues in the same priority class
2246 */
Vivek Goyal58ff82f2009-12-03 12:59:44 -05002247 group_slice = cfq_group_slice(cfqd, cfqg);
2248
2249 slice = group_slice * count /
2250 max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio],
2251 cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg));
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002252
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002253 if (cfqd->serving_type == ASYNC_WORKLOAD) {
2254 unsigned int tmp;
2255
2256 /*
2257 * Async queues are currently system wide. Just taking
2258 * proportion of queues with-in same group will lead to higher
2259 * async ratio system wide as generally root group is going
2260 * to have higher weight. A more accurate thing would be to
2261 * calculate system wide asnc/sync ratio.
2262 */
2263 tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg);
2264 tmp = tmp/cfqd->busy_queues;
2265 slice = min_t(unsigned, slice, tmp);
2266
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002267 /* async workload slice is scaled down according to
2268 * the sync/async slice ratio. */
2269 slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1];
Vivek Goyalf26bd1f2009-12-03 12:59:54 -05002270 } else
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002271 /* sync workload slice is at least 2 * cfq_slice_idle */
2272 slice = max(slice, 2 * cfqd->cfq_slice_idle);
2273
2274 slice = max_t(unsigned, slice, CFQ_MIN_TT);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01002275 cfq_log(cfqd, "workload slice:%d", slice);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002276 cfqd->workload_expires = jiffies + slice;
2277}
2278
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002279static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd)
2280{
2281 struct cfq_rb_root *st = &cfqd->grp_service_tree;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002282 struct cfq_group *cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002283
2284 if (RB_EMPTY_ROOT(&st->rb))
2285 return NULL;
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002286 cfqg = cfq_rb_first_group(st);
Vivek Goyal25bc6b02009-12-03 12:59:43 -05002287 update_min_vdisktime(st);
2288 return cfqg;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002289}
2290
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002291static void cfq_choose_cfqg(struct cfq_data *cfqd)
2292{
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002293 struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd);
2294
2295 cfqd->serving_group = cfqg;
Vivek Goyaldae739e2009-12-03 12:59:45 -05002296
2297 /* Restore the workload type data */
2298 if (cfqg->saved_workload_slice) {
2299 cfqd->workload_expires = jiffies + cfqg->saved_workload_slice;
2300 cfqd->serving_type = cfqg->saved_workload;
2301 cfqd->serving_prio = cfqg->saved_serving_prio;
Gui Jianfeng66ae2912009-12-15 10:08:45 +01002302 } else
2303 cfqd->workload_expires = jiffies - 1;
2304
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05002305 choose_service_tree(cfqd, cfqg);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002306}
2307
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002308/*
Jens Axboe498d3aa22007-04-26 12:54:48 +02002309 * Select a queue for service. If we have a current active queue,
2310 * check whether to continue servicing it, or retrieve and set a new one.
Jens Axboe22e2c502005-06-27 10:55:12 +02002311 */
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002312static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd)
Jens Axboe22e2c502005-06-27 10:55:12 +02002313{
Jens Axboea36e71f2009-04-15 12:15:11 +02002314 struct cfq_queue *cfqq, *new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002315
2316 cfqq = cfqd->active_queue;
2317 if (!cfqq)
2318 goto new_queue;
2319
Vivek Goyalf04a6422009-12-03 12:59:40 -05002320 if (!cfqd->rq_queued)
2321 return NULL;
Vivek Goyalc244bb52009-12-08 17:52:57 -05002322
2323 /*
2324 * We were waiting for group to get backlogged. Expire the queue
2325 */
2326 if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list))
2327 goto expire;
2328
Jens Axboe22e2c502005-06-27 10:55:12 +02002329 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002330 * The active queue has run out of time, expire it and select new.
Jens Axboe22e2c502005-06-27 10:55:12 +02002331 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05002332 if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) {
2333 /*
2334 * If slice had not expired at the completion of last request
2335 * we might not have turned on wait_busy flag. Don't expire
2336 * the queue yet. Allow the group to get backlogged.
2337 *
2338 * The very fact that we have used the slice, that means we
2339 * have been idling all along on this queue and it should be
2340 * ok to wait for this request to complete.
2341 */
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002342 if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list)
2343 && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2344 cfqq = NULL;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002345 goto keep_queue;
Vivek Goyal82bbbf22009-12-10 19:25:41 +01002346 } else
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002347 goto check_group_idle;
Vivek Goyal7667aa02009-12-08 17:52:58 -05002348 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002349
2350 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002351 * The active queue has requests and isn't expired, allow it to
2352 * dispatch.
Jens Axboe22e2c502005-06-27 10:55:12 +02002353 */
Jens Axboedd67d052006-06-21 09:36:18 +02002354 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02002355 goto keep_queue;
Jens Axboe6d048f52007-04-25 12:44:27 +02002356
2357 /*
Jens Axboea36e71f2009-04-15 12:15:11 +02002358 * If another queue has a request waiting within our mean seek
2359 * distance, let it run. The expire code will check for close
2360 * cooperators and put the close queue at the front of the service
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002361 * tree. If possible, merge the expiring queue with the new cfqq.
Jens Axboea36e71f2009-04-15 12:15:11 +02002362 */
Jeff Moyerb3b6d042009-10-23 17:14:51 -04002363 new_cfqq = cfq_close_cooperator(cfqd, cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002364 if (new_cfqq) {
2365 if (!cfqq->new_cfqq)
2366 cfq_setup_merge(cfqq, new_cfqq);
Jens Axboea36e71f2009-04-15 12:15:11 +02002367 goto expire;
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002368 }
Jens Axboea36e71f2009-04-15 12:15:11 +02002369
2370 /*
Jens Axboe6d048f52007-04-25 12:44:27 +02002371 * No requests pending. If the active queue still has requests in
2372 * flight or is idling for a new request, allow either of these
2373 * conditions to happen (or time out) before selecting a new queue.
2374 */
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002375 if (timer_pending(&cfqd->idle_slice_timer)) {
2376 cfqq = NULL;
2377 goto keep_queue;
2378 }
2379
Shaohua Li8e1ac662010-11-08 15:01:04 +01002380 /*
2381 * This is a deep seek queue, but the device is much faster than
2382 * the queue can deliver, don't idle
2383 **/
2384 if (CFQQ_SEEKY(cfqq) && cfq_cfqq_idle_window(cfqq) &&
2385 (cfq_cfqq_slice_new(cfqq) ||
2386 (cfqq->slice_end - jiffies > jiffies - cfqq->slice_start))) {
2387 cfq_clear_cfqq_deep(cfqq);
2388 cfq_clear_cfqq_idle_window(cfqq);
2389 }
2390
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02002391 if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) {
2392 cfqq = NULL;
2393 goto keep_queue;
2394 }
2395
2396 /*
2397 * If group idle is enabled and there are requests dispatched from
2398 * this group, wait for requests to complete.
2399 */
2400check_group_idle:
Shaohua Li7700fc42011-07-12 14:24:56 +02002401 if (cfqd->cfq_group_idle && cfqq->cfqg->nr_cfqq == 1 &&
2402 cfqq->cfqg->dispatched &&
2403 !cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) {
Jens Axboecaaa5f92006-06-16 11:23:00 +02002404 cfqq = NULL;
2405 goto keep_queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02002406 }
2407
Jens Axboe3b181522005-06-27 10:56:24 +02002408expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02002409 cfq_slice_expired(cfqd, 0);
Jens Axboe3b181522005-06-27 10:56:24 +02002410new_queue:
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002411 /*
2412 * Current queue expired. Check if we have to switch to a new
2413 * service tree
2414 */
2415 if (!new_cfqq)
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002416 cfq_choose_cfqg(cfqd);
Corrado Zoccolo718eee02009-10-26 22:45:29 +01002417
Jens Axboea36e71f2009-04-15 12:15:11 +02002418 cfqq = cfq_set_active_queue(cfqd, new_cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002419keep_queue:
Jens Axboe3b181522005-06-27 10:56:24 +02002420 return cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02002421}
2422
Jens Axboefebffd62008-01-28 13:19:43 +01002423static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq)
Jens Axboed9e76202007-04-20 14:27:50 +02002424{
2425 int dispatched = 0;
2426
2427 while (cfqq->next_rq) {
2428 cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq);
2429 dispatched++;
2430 }
2431
2432 BUG_ON(!list_empty(&cfqq->fifo));
Vivek Goyalf04a6422009-12-03 12:59:40 -05002433
2434 /* By default cfqq is not expired if it is empty. Do it explicitly */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002435 __cfq_slice_expired(cfqq->cfqd, cfqq, 0);
Jens Axboed9e76202007-04-20 14:27:50 +02002436 return dispatched;
2437}
2438
Jens Axboe498d3aa22007-04-26 12:54:48 +02002439/*
2440 * Drain our current requests. Used for barriers and when switching
2441 * io schedulers on-the-fly.
2442 */
Jens Axboed9e76202007-04-20 14:27:50 +02002443static int cfq_forced_dispatch(struct cfq_data *cfqd)
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002444{
Jens Axboe08717142008-01-28 11:38:15 +01002445 struct cfq_queue *cfqq;
Jens Axboed9e76202007-04-20 14:27:50 +02002446 int dispatched = 0;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002447
Divyesh Shah3440c492010-04-09 09:29:57 +02002448 /* Expire the timeslice of the current active queue first */
Vivek Goyale5ff0822010-04-26 19:25:11 +02002449 cfq_slice_expired(cfqd, 0);
Divyesh Shah3440c492010-04-09 09:29:57 +02002450 while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) {
2451 __cfq_set_active_queue(cfqd, cfqq);
Vivek Goyalf04a6422009-12-03 12:59:40 -05002452 dispatched += __cfq_forced_dispatch_cfqq(cfqq);
Divyesh Shah3440c492010-04-09 09:29:57 +02002453 }
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002454
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002455 BUG_ON(cfqd->busy_queues);
2456
Jeff Moyer6923715a2009-06-12 15:29:30 +02002457 cfq_log(cfqd, "forced_dispatch=%d", dispatched);
Tejun Heo1b5ed5e12005-11-10 08:49:19 +01002458 return dispatched;
2459}
2460
Shaohua Liabc3c742010-03-01 09:20:54 +01002461static inline bool cfq_slice_used_soon(struct cfq_data *cfqd,
2462 struct cfq_queue *cfqq)
2463{
2464 /* the queue hasn't finished any request, can't estimate */
2465 if (cfq_cfqq_slice_new(cfqq))
Shaohua Lic1e44752010-11-08 15:01:02 +01002466 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002467 if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched,
2468 cfqq->slice_end))
Shaohua Lic1e44752010-11-08 15:01:02 +01002469 return true;
Shaohua Liabc3c742010-03-01 09:20:54 +01002470
Shaohua Lic1e44752010-11-08 15:01:02 +01002471 return false;
Shaohua Liabc3c742010-03-01 09:20:54 +01002472}
2473
Jens Axboe0b182d62009-10-06 20:49:37 +02002474static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq)
Jens Axboe2f5cb732009-04-07 08:51:19 +02002475{
Jens Axboe2f5cb732009-04-07 08:51:19 +02002476 unsigned int max_dispatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Jens Axboe2f5cb732009-04-07 08:51:19 +02002478 /*
Jens Axboe5ad531d2009-07-03 12:57:48 +02002479 * Drain async requests before we start sync IO
2480 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002481 if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC])
Jens Axboe0b182d62009-10-06 20:49:37 +02002482 return false;
Jens Axboe5ad531d2009-07-03 12:57:48 +02002483
2484 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002485 * If this is an async queue and we have sync IO in flight, let it wait
2486 */
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01002487 if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002488 return false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002489
Shaohua Liabc3c742010-03-01 09:20:54 +01002490 max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002491 if (cfq_class_idle(cfqq))
2492 max_dispatch = 1;
2493
2494 /*
2495 * Does this cfqq already have too much IO in flight?
2496 */
2497 if (cfqq->dispatched >= max_dispatch) {
Shaohua Lief8a41d2011-03-07 09:26:29 +01002498 bool promote_sync = false;
Jens Axboe2f5cb732009-04-07 08:51:19 +02002499 /*
2500 * idle queue must always only have a single IO in flight
2501 */
Jens Axboe3ed9a292007-04-23 08:33:33 +02002502 if (cfq_class_idle(cfqq))
Jens Axboe0b182d62009-10-06 20:49:37 +02002503 return false;
Jens Axboe3ed9a292007-04-23 08:33:33 +02002504
Jens Axboe2f5cb732009-04-07 08:51:19 +02002505 /*
Li, Shaohuac4ade942011-03-23 08:30:34 +01002506 * If there is only one sync queue
2507 * we can ignore async queue here and give the sync
Shaohua Lief8a41d2011-03-07 09:26:29 +01002508 * queue no dispatch limit. The reason is a sync queue can
2509 * preempt async queue, limiting the sync queue doesn't make
2510 * sense. This is useful for aiostress test.
2511 */
Li, Shaohuac4ade942011-03-23 08:30:34 +01002512 if (cfq_cfqq_sync(cfqq) && cfqd->busy_sync_queues == 1)
2513 promote_sync = true;
Shaohua Lief8a41d2011-03-07 09:26:29 +01002514
2515 /*
Jens Axboe2f5cb732009-04-07 08:51:19 +02002516 * We have other queues, don't allow more IO from this one
2517 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002518 if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq) &&
2519 !promote_sync)
Jens Axboe0b182d62009-10-06 20:49:37 +02002520 return false;
Jens Axboe9ede2092007-01-19 12:11:44 +11002521
Jens Axboe2f5cb732009-04-07 08:51:19 +02002522 /*
Shaohua Li474b18c2009-12-03 12:58:05 +01002523 * Sole queue user, no limit
Vivek Goyal365722b2009-10-03 15:21:27 +02002524 */
Shaohua Lief8a41d2011-03-07 09:26:29 +01002525 if (cfqd->busy_queues == 1 || promote_sync)
Shaohua Liabc3c742010-03-01 09:20:54 +01002526 max_dispatch = -1;
2527 else
2528 /*
2529 * Normally we start throttling cfqq when cfq_quantum/2
2530 * requests have been dispatched. But we can drive
2531 * deeper queue depths at the beginning of slice
2532 * subjected to upper limit of cfq_quantum.
2533 * */
2534 max_dispatch = cfqd->cfq_quantum;
Jens Axboe8e296752009-10-03 16:26:03 +02002535 }
2536
2537 /*
2538 * Async queues must wait a bit before being allowed dispatch.
2539 * We also ramp up the dispatch depth gradually for async IO,
2540 * based on the last sync IO we serviced
2541 */
Jens Axboe963b72f2009-10-03 19:42:18 +02002542 if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) {
Corrado Zoccolo573412b2009-12-06 11:48:52 +01002543 unsigned long last_sync = jiffies - cfqd->last_delayed_sync;
Jens Axboe8e296752009-10-03 16:26:03 +02002544 unsigned int depth;
Vivek Goyal365722b2009-10-03 15:21:27 +02002545
Jens Axboe61f0c1d2009-10-03 19:46:03 +02002546 depth = last_sync / cfqd->cfq_slice[1];
Jens Axboee00c54c2009-10-04 20:36:19 +02002547 if (!depth && !cfqq->dispatched)
2548 depth = 1;
Jens Axboe8e296752009-10-03 16:26:03 +02002549 if (depth < max_dispatch)
2550 max_dispatch = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 }
2552
Jens Axboe0b182d62009-10-06 20:49:37 +02002553 /*
2554 * If we're below the current max, allow a dispatch
2555 */
2556 return cfqq->dispatched < max_dispatch;
2557}
2558
2559/*
2560 * Dispatch a request from cfqq, moving them to the request queue
2561 * dispatch list.
2562 */
2563static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2564{
2565 struct request *rq;
2566
2567 BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list));
2568
2569 if (!cfq_may_dispatch(cfqd, cfqq))
2570 return false;
2571
2572 /*
2573 * follow expired path, else get first next available
2574 */
2575 rq = cfq_check_fifo(cfqq);
2576 if (!rq)
2577 rq = cfqq->next_rq;
2578
2579 /*
2580 * insert request into driver dispatch list
2581 */
2582 cfq_dispatch_insert(cfqd->queue, rq);
2583
2584 if (!cfqd->active_cic) {
Tejun Heoc5869802011-12-14 00:33:41 +01002585 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe0b182d62009-10-06 20:49:37 +02002586
Tejun Heoc5869802011-12-14 00:33:41 +01002587 atomic_long_inc(&cic->icq.ioc->refcount);
Jens Axboe0b182d62009-10-06 20:49:37 +02002588 cfqd->active_cic = cic;
2589 }
2590
2591 return true;
2592}
2593
2594/*
2595 * Find the cfqq that we need to service and move a request from that to the
2596 * dispatch list
2597 */
2598static int cfq_dispatch_requests(struct request_queue *q, int force)
2599{
2600 struct cfq_data *cfqd = q->elevator->elevator_data;
2601 struct cfq_queue *cfqq;
2602
2603 if (!cfqd->busy_queues)
2604 return 0;
2605
2606 if (unlikely(force))
2607 return cfq_forced_dispatch(cfqd);
2608
2609 cfqq = cfq_select_queue(cfqd);
2610 if (!cfqq)
Jens Axboe8e296752009-10-03 16:26:03 +02002611 return 0;
2612
Jens Axboe2f5cb732009-04-07 08:51:19 +02002613 /*
Jens Axboe0b182d62009-10-06 20:49:37 +02002614 * Dispatch a request from this cfqq, if it is allowed
Jens Axboe2f5cb732009-04-07 08:51:19 +02002615 */
Jens Axboe0b182d62009-10-06 20:49:37 +02002616 if (!cfq_dispatch_request(cfqd, cfqq))
2617 return 0;
2618
Jens Axboe2f5cb732009-04-07 08:51:19 +02002619 cfqq->slice_dispatch++;
Jens Axboeb0291952009-04-07 11:38:31 +02002620 cfq_clear_cfqq_must_dispatch(cfqq);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002621
2622 /*
2623 * expire an async queue immediately if it has used up its slice. idle
2624 * queue always expire after 1 dispatch round.
2625 */
2626 if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) &&
2627 cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) ||
2628 cfq_class_idle(cfqq))) {
2629 cfqq->slice_end = jiffies + 1;
Vivek Goyale5ff0822010-04-26 19:25:11 +02002630 cfq_slice_expired(cfqd, 0);
Jens Axboe2f5cb732009-04-07 08:51:19 +02002631 }
2632
Shan Weib217a902009-09-01 10:06:42 +02002633 cfq_log_cfqq(cfqd, cfqq, "dispatched a request");
Jens Axboe2f5cb732009-04-07 08:51:19 +02002634 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635}
2636
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637/*
Jens Axboe5e705372006-07-13 12:39:25 +02002638 * task holds one reference to the queue, dropped when task exits. each rq
2639 * in-flight on this queue also holds a reference, dropped when rq is freed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 *
Vivek Goyalb1c35762009-12-03 12:59:47 -05002641 * Each cfq queue took a reference on the parent group. Drop it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 * queue lock must be held here.
2643 */
2644static void cfq_put_queue(struct cfq_queue *cfqq)
2645{
Jens Axboe22e2c502005-06-27 10:55:12 +02002646 struct cfq_data *cfqd = cfqq->cfqd;
Justin TerAvest0bbfeb82011-03-01 15:05:08 -05002647 struct cfq_group *cfqg;
Jens Axboe22e2c502005-06-27 10:55:12 +02002648
Shaohua Li30d7b942011-01-07 08:46:59 +01002649 BUG_ON(cfqq->ref <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Shaohua Li30d7b942011-01-07 08:46:59 +01002651 cfqq->ref--;
2652 if (cfqq->ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 return;
2654
Jens Axboe7b679132008-05-30 12:23:07 +02002655 cfq_log_cfqq(cfqd, cfqq, "put_queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 BUG_ON(rb_first(&cfqq->sort_list));
Jens Axboe22e2c502005-06-27 10:55:12 +02002657 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002658 cfqg = cfqq->cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002660 if (unlikely(cfqd->active_queue == cfqq)) {
Vivek Goyale5ff0822010-04-26 19:25:11 +02002661 __cfq_slice_expired(cfqd, cfqq, 0);
Jens Axboe23e018a2009-10-05 08:52:35 +02002662 cfq_schedule_dispatch(cfqd);
Jens Axboe28f95cbc2007-01-19 12:09:53 +11002663 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002664
Vivek Goyalf04a6422009-12-03 12:59:40 -05002665 BUG_ON(cfq_cfqq_on_rr(cfqq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 kmem_cache_free(cfq_pool, cfqq);
Vivek Goyalb1c35762009-12-03 12:59:47 -05002667 cfq_put_cfqg(cfqg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668}
2669
Tejun Heoc5869802011-12-14 00:33:41 +01002670static void cfq_icq_free_rcu(struct rcu_head *head)
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002671{
Tejun Heoc5869802011-12-14 00:33:41 +01002672 kmem_cache_free(cfq_icq_pool,
2673 icq_to_cic(container_of(head, struct io_cq, rcu_head)));
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002674}
2675
Tejun Heoc5869802011-12-14 00:33:41 +01002676static void cfq_icq_free(struct io_cq *icq)
Fabio Checconi34e6bbf2008-04-02 14:31:02 +02002677{
Tejun Heoc5869802011-12-14 00:33:41 +01002678 call_rcu(&icq->rcu_head, cfq_icq_free_rcu);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002679}
2680
Tejun Heoc5869802011-12-14 00:33:41 +01002681static void cfq_release_icq(struct io_cq *icq)
Jens Axboe4ac845a2008-01-24 08:44:49 +01002682{
Tejun Heoc5869802011-12-14 00:33:41 +01002683 struct io_context *ioc = icq->ioc;
Jens Axboe4ac845a2008-01-24 08:44:49 +01002684
Tejun Heoc5869802011-12-14 00:33:41 +01002685 radix_tree_delete(&ioc->icq_tree, icq->q->id);
2686 hlist_del(&icq->ioc_node);
2687 cfq_icq_free(icq);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002688}
2689
Shaohua Lid02a2c02010-05-25 10:16:53 +02002690static void cfq_put_cooperator(struct cfq_queue *cfqq)
Jens Axboe89850f72006-07-22 16:48:31 +02002691{
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002692 struct cfq_queue *__cfqq, *next;
2693
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002694 /*
2695 * If this queue was scheduled to merge with another queue, be
2696 * sure to drop the reference taken on that queue (and others in
2697 * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs.
2698 */
2699 __cfqq = cfqq->new_cfqq;
2700 while (__cfqq) {
2701 if (__cfqq == cfqq) {
2702 WARN(1, "cfqq->new_cfqq loop detected\n");
2703 break;
2704 }
2705 next = __cfqq->new_cfqq;
2706 cfq_put_queue(__cfqq);
2707 __cfqq = next;
2708 }
Shaohua Lid02a2c02010-05-25 10:16:53 +02002709}
2710
2711static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq)
2712{
2713 if (unlikely(cfqq == cfqd->active_queue)) {
2714 __cfq_slice_expired(cfqd, cfqq, 0);
2715 cfq_schedule_dispatch(cfqd);
2716 }
2717
2718 cfq_put_cooperator(cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04002719
Jens Axboe89850f72006-07-22 16:48:31 +02002720 cfq_put_queue(cfqq);
2721}
2722
Tejun Heoc5869802011-12-14 00:33:41 +01002723static void cfq_exit_icq(struct io_cq *icq)
Jens Axboe89850f72006-07-22 16:48:31 +02002724{
Tejun Heoc5869802011-12-14 00:33:41 +01002725 struct cfq_io_cq *cic = icq_to_cic(icq);
Tejun Heo283287a2011-12-14 00:33:38 +01002726 struct cfq_data *cfqd = cic_to_cfqd(cic);
Tejun Heoc5869802011-12-14 00:33:41 +01002727 struct io_context *ioc = icq->ioc;
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002728
Tejun Heoc5869802011-12-14 00:33:41 +01002729 list_del_init(&icq->q_node);
Jens Axboefc463792006-08-29 09:05:44 +02002730
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002731 /*
Tejun Heoc5869802011-12-14 00:33:41 +01002732 * Both setting lookup hint to and clearing it from @icq are done
2733 * under queue_lock. If it's not pointing to @icq now, it never
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002734 * will. Hint assignment itself can race safely.
2735 */
Tejun Heoc5869802011-12-14 00:33:41 +01002736 if (rcu_dereference_raw(ioc->icq_hint) == icq)
2737 rcu_assign_pointer(ioc->icq_hint, NULL);
Fabio Checconi4faa3c82008-04-10 08:28:01 +02002738
Jens Axboeff6657c2009-04-08 10:58:57 +02002739 if (cic->cfqq[BLK_RW_ASYNC]) {
2740 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]);
2741 cic->cfqq[BLK_RW_ASYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002742 }
2743
Jens Axboeff6657c2009-04-08 10:58:57 +02002744 if (cic->cfqq[BLK_RW_SYNC]) {
2745 cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]);
2746 cic->cfqq[BLK_RW_SYNC] = NULL;
Jens Axboe89850f72006-07-22 16:48:31 +02002747 }
Jens Axboe89850f72006-07-22 16:48:31 +02002748}
2749
Tejun Heoc5869802011-12-14 00:33:41 +01002750static struct cfq_io_cq *cfq_alloc_cic(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751{
Tejun Heoc5869802011-12-14 00:33:41 +01002752 struct cfq_io_cq *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Tejun Heoc5869802011-12-14 00:33:41 +01002754 cic = kmem_cache_alloc_node(cfq_icq_pool, gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002755 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (cic) {
Shaohua Li383cd722011-07-12 14:24:35 +02002757 cic->ttime.last_end_request = jiffies;
Tejun Heoc5869802011-12-14 00:33:41 +01002758 INIT_LIST_HEAD(&cic->icq.q_node);
2759 INIT_HLIST_NODE(&cic->icq.ioc_node);
2760 cic->icq.exit = cfq_exit_icq;
2761 cic->icq.release = cfq_release_icq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 }
2763
2764 return cic;
2765}
2766
Jens Axboefd0928d2008-01-24 08:52:45 +01002767static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc)
Jens Axboe22e2c502005-06-27 10:55:12 +02002768{
2769 struct task_struct *tsk = current;
2770 int ioprio_class;
2771
Jens Axboe3b181522005-06-27 10:56:24 +02002772 if (!cfq_cfqq_prio_changed(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02002773 return;
2774
Jens Axboefd0928d2008-01-24 08:52:45 +01002775 ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002776 switch (ioprio_class) {
Jens Axboefe094d92008-01-31 13:08:54 +01002777 default:
2778 printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
2779 case IOPRIO_CLASS_NONE:
2780 /*
Jens Axboe6d63c272008-05-07 09:51:23 +02002781 * no prio set, inherit CPU scheduling settings
Jens Axboefe094d92008-01-31 13:08:54 +01002782 */
2783 cfqq->ioprio = task_nice_ioprio(tsk);
Jens Axboe6d63c272008-05-07 09:51:23 +02002784 cfqq->ioprio_class = task_nice_ioclass(tsk);
Jens Axboefe094d92008-01-31 13:08:54 +01002785 break;
2786 case IOPRIO_CLASS_RT:
2787 cfqq->ioprio = task_ioprio(ioc);
2788 cfqq->ioprio_class = IOPRIO_CLASS_RT;
2789 break;
2790 case IOPRIO_CLASS_BE:
2791 cfqq->ioprio = task_ioprio(ioc);
2792 cfqq->ioprio_class = IOPRIO_CLASS_BE;
2793 break;
2794 case IOPRIO_CLASS_IDLE:
2795 cfqq->ioprio_class = IOPRIO_CLASS_IDLE;
2796 cfqq->ioprio = 7;
2797 cfq_clear_cfqq_idle_window(cfqq);
2798 break;
Jens Axboe22e2c502005-06-27 10:55:12 +02002799 }
2800
2801 /*
2802 * keep track of original prio settings in case we have to temporarily
2803 * elevate the priority of this queue
2804 */
2805 cfqq->org_ioprio = cfqq->ioprio;
Jens Axboe3b181522005-06-27 10:56:24 +02002806 cfq_clear_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002807}
2808
Tejun Heoc5869802011-12-14 00:33:41 +01002809static void changed_ioprio(struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02002810{
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002811 struct cfq_data *cfqd = cic_to_cfqd(cic);
Al Viro478a82b2006-03-18 13:25:24 -05002812 struct cfq_queue *cfqq;
Jens Axboe35e60772006-06-14 09:10:45 +02002813
Jens Axboecaaa5f92006-06-16 11:23:00 +02002814 if (unlikely(!cfqd))
2815 return;
2816
Jens Axboeff6657c2009-04-08 10:58:57 +02002817 cfqq = cic->cfqq[BLK_RW_ASYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002818 if (cfqq) {
2819 struct cfq_queue *new_cfqq;
Tejun Heoc5869802011-12-14 00:33:41 +01002820 new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->icq.ioc,
Jens Axboeff6657c2009-04-08 10:58:57 +02002821 GFP_ATOMIC);
Jens Axboecaaa5f92006-06-16 11:23:00 +02002822 if (new_cfqq) {
Jens Axboeff6657c2009-04-08 10:58:57 +02002823 cic->cfqq[BLK_RW_ASYNC] = new_cfqq;
Jens Axboecaaa5f92006-06-16 11:23:00 +02002824 cfq_put_queue(cfqq);
2825 }
Jens Axboe22e2c502005-06-27 10:55:12 +02002826 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02002827
Jens Axboeff6657c2009-04-08 10:58:57 +02002828 cfqq = cic->cfqq[BLK_RW_SYNC];
Jens Axboecaaa5f92006-06-16 11:23:00 +02002829 if (cfqq)
2830 cfq_mark_cfqq_prio_changed(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02002831}
2832
Jens Axboed5036d72009-06-26 10:44:34 +02002833static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboea6151c32009-10-07 20:02:57 +02002834 pid_t pid, bool is_sync)
Jens Axboed5036d72009-06-26 10:44:34 +02002835{
2836 RB_CLEAR_NODE(&cfqq->rb_node);
2837 RB_CLEAR_NODE(&cfqq->p_node);
2838 INIT_LIST_HEAD(&cfqq->fifo);
2839
Shaohua Li30d7b942011-01-07 08:46:59 +01002840 cfqq->ref = 0;
Jens Axboed5036d72009-06-26 10:44:34 +02002841 cfqq->cfqd = cfqd;
2842
2843 cfq_mark_cfqq_prio_changed(cfqq);
2844
2845 if (is_sync) {
2846 if (!cfq_class_idle(cfqq))
2847 cfq_mark_cfqq_idle_window(cfqq);
2848 cfq_mark_cfqq_sync(cfqq);
2849 }
2850 cfqq->pid = pid;
2851}
2852
Vivek Goyal246103332009-12-03 12:59:51 -05002853#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heoc5869802011-12-14 00:33:41 +01002854static void changed_cgroup(struct cfq_io_cq *cic)
Vivek Goyal246103332009-12-03 12:59:51 -05002855{
2856 struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1);
Konstantin Khlebnikovbca4b912010-05-20 23:21:34 +04002857 struct cfq_data *cfqd = cic_to_cfqd(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05002858 struct request_queue *q;
2859
2860 if (unlikely(!cfqd))
2861 return;
2862
2863 q = cfqd->queue;
2864
Vivek Goyal246103332009-12-03 12:59:51 -05002865 if (sync_cfqq) {
2866 /*
2867 * Drop reference to sync queue. A new sync queue will be
2868 * assigned in new group upon arrival of a fresh request.
2869 */
2870 cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup");
2871 cic_set_cfqq(cic, NULL, 1);
2872 cfq_put_queue(sync_cfqq);
2873 }
Vivek Goyal246103332009-12-03 12:59:51 -05002874}
Vivek Goyal246103332009-12-03 12:59:51 -05002875#endif /* CONFIG_CFQ_GROUP_IOSCHED */
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002878cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
Jens Axboefd0928d2008-01-24 08:52:45 +01002879 struct io_context *ioc, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 struct cfq_queue *cfqq, *new_cfqq = NULL;
Tejun Heoc5869802011-12-14 00:33:41 +01002882 struct cfq_io_cq *cic;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002883 struct cfq_group *cfqg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
2885retry:
Vivek Goyal3e59cf92011-05-19 15:38:21 -04002886 cfqg = cfq_get_cfqg(cfqd);
Jens Axboe4ac845a2008-01-24 08:44:49 +01002887 cic = cfq_cic_lookup(cfqd, ioc);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002888 /* cic always exists here */
2889 cfqq = cic_to_cfqq(cic, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Jens Axboe6118b702009-06-30 09:34:12 +02002891 /*
2892 * Always try a new alloc if we fell back to the OOM cfqq
2893 * originally, since it should just be a temporary situation.
2894 */
2895 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
2896 cfqq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 if (new_cfqq) {
2898 cfqq = new_cfqq;
2899 new_cfqq = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02002900 } else if (gfp_mask & __GFP_WAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 spin_unlock_irq(cfqd->queue->queue_lock);
Christoph Lameter94f60302007-07-17 04:03:29 -07002902 new_cfqq = kmem_cache_alloc_node(cfq_pool,
Jens Axboe6118b702009-06-30 09:34:12 +02002903 gfp_mask | __GFP_ZERO,
Christoph Lameter94f60302007-07-17 04:03:29 -07002904 cfqd->queue->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 spin_lock_irq(cfqd->queue->queue_lock);
Jens Axboe6118b702009-06-30 09:34:12 +02002906 if (new_cfqq)
2907 goto retry;
Jens Axboe22e2c502005-06-27 10:55:12 +02002908 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07002909 cfqq = kmem_cache_alloc_node(cfq_pool,
2910 gfp_mask | __GFP_ZERO,
2911 cfqd->queue->node);
Kiyoshi Ueda db3b5842005-06-17 16:15:10 +02002912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
Jens Axboe6118b702009-06-30 09:34:12 +02002914 if (cfqq) {
2915 cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
2916 cfq_init_prio_data(cfqq, ioc);
Vivek Goyalcdb16e82009-12-03 12:59:38 -05002917 cfq_link_cfqq_cfqg(cfqq, cfqg);
Jens Axboe6118b702009-06-30 09:34:12 +02002918 cfq_log_cfqq(cfqd, cfqq, "alloced");
2919 } else
2920 cfqq = &cfqd->oom_cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 }
2922
2923 if (new_cfqq)
2924 kmem_cache_free(cfq_pool, new_cfqq);
2925
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 return cfqq;
2927}
2928
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002929static struct cfq_queue **
2930cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
2931{
Jens Axboefe094d92008-01-31 13:08:54 +01002932 switch (ioprio_class) {
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002933 case IOPRIO_CLASS_RT:
2934 return &cfqd->async_cfqq[0][ioprio];
2935 case IOPRIO_CLASS_BE:
2936 return &cfqd->async_cfqq[1][ioprio];
2937 case IOPRIO_CLASS_IDLE:
2938 return &cfqd->async_idle_cfqq;
2939 default:
2940 BUG();
2941 }
2942}
2943
Jens Axboe15c31be2007-07-10 13:43:25 +02002944static struct cfq_queue *
Jens Axboea6151c32009-10-07 20:02:57 +02002945cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc,
Jens Axboe15c31be2007-07-10 13:43:25 +02002946 gfp_t gfp_mask)
2947{
Jens Axboefd0928d2008-01-24 08:52:45 +01002948 const int ioprio = task_ioprio(ioc);
2949 const int ioprio_class = task_ioprio_class(ioc);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002950 struct cfq_queue **async_cfqq = NULL;
Jens Axboe15c31be2007-07-10 13:43:25 +02002951 struct cfq_queue *cfqq = NULL;
2952
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002953 if (!is_sync) {
2954 async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);
2955 cfqq = *async_cfqq;
2956 }
2957
Jens Axboe6118b702009-06-30 09:34:12 +02002958 if (!cfqq)
Jens Axboefd0928d2008-01-24 08:52:45 +01002959 cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask);
Jens Axboe15c31be2007-07-10 13:43:25 +02002960
2961 /*
2962 * pin the queue now that it's allocated, scheduler exit will prune it
2963 */
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002964 if (!is_sync && !(*async_cfqq)) {
Shaohua Li30d7b942011-01-07 08:46:59 +01002965 cfqq->ref++;
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02002966 *async_cfqq = cfqq;
Jens Axboe15c31be2007-07-10 13:43:25 +02002967 }
2968
Shaohua Li30d7b942011-01-07 08:46:59 +01002969 cfqq->ref++;
Jens Axboe15c31be2007-07-10 13:43:25 +02002970 return cfqq;
2971}
2972
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002973/**
Tejun Heoc5869802011-12-14 00:33:41 +01002974 * cfq_cic_lookup - lookup cfq_io_cq
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002975 * @cfqd: the associated cfq_data
2976 * @ioc: the associated io_context
2977 *
Tejun Heoc5869802011-12-14 00:33:41 +01002978 * Look up cfq_io_cq associated with @cfqd - @ioc pair. Must be called
2979 * with queue_lock held.
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002980 */
Tejun Heoc5869802011-12-14 00:33:41 +01002981static struct cfq_io_cq *
Jens Axboe4ac845a2008-01-24 08:44:49 +01002982cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc)
Jens Axboee2d74ac2006-03-28 08:59:01 +02002983{
Tejun Heo12380332011-12-14 00:33:40 +01002984 struct request_queue *q = cfqd->queue;
Tejun Heoc5869802011-12-14 00:33:41 +01002985 struct io_cq *icq;
Jens Axboee2d74ac2006-03-28 08:59:01 +02002986
Tejun Heof1a4f4d2011-12-14 00:33:39 +01002987 lockdep_assert_held(cfqd->queue->queue_lock);
Vasily Tarasov91fac312007-04-25 12:29:51 +02002988 if (unlikely(!ioc))
2989 return NULL;
2990
Jens Axboe597bc482007-04-24 21:23:53 +02002991 /*
Tejun Heoc5869802011-12-14 00:33:41 +01002992 * icq's are indexed from @ioc using radix tree and hint pointer,
Tejun Heob9a19202011-12-14 00:33:39 +01002993 * both of which are protected with RCU. All removals are done
2994 * holding both q and ioc locks, and we're holding q lock - if we
Tejun Heoc5869802011-12-14 00:33:41 +01002995 * find a icq which points to us, it's guaranteed to be valid.
Jens Axboe597bc482007-04-24 21:23:53 +02002996 */
Tejun Heob9a19202011-12-14 00:33:39 +01002997 rcu_read_lock();
Tejun Heoc5869802011-12-14 00:33:41 +01002998 icq = rcu_dereference(ioc->icq_hint);
2999 if (icq && icq->q == q)
Tejun Heof1a4f4d2011-12-14 00:33:39 +01003000 goto out;
Jens Axboe597bc482007-04-24 21:23:53 +02003001
Tejun Heoc5869802011-12-14 00:33:41 +01003002 icq = radix_tree_lookup(&ioc->icq_tree, cfqd->queue->id);
3003 if (icq && icq->q == q)
3004 rcu_assign_pointer(ioc->icq_hint, icq); /* allowed to race */
Tejun Heob9a19202011-12-14 00:33:39 +01003005 else
Tejun Heoc5869802011-12-14 00:33:41 +01003006 icq = NULL;
Tejun Heof1a4f4d2011-12-14 00:33:39 +01003007out:
3008 rcu_read_unlock();
Tejun Heoc5869802011-12-14 00:33:41 +01003009 return icq_to_cic(icq);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003010}
3011
Tejun Heo216284c2011-12-14 00:33:38 +01003012/**
Tejun Heoc5869802011-12-14 00:33:41 +01003013 * cfq_create_cic - create and link a cfq_io_cq
Tejun Heo216284c2011-12-14 00:33:38 +01003014 * @cfqd: cfqd of interest
3015 * @gfp_mask: allocation mask
3016 *
Tejun Heoc5869802011-12-14 00:33:41 +01003017 * Make sure cfq_io_cq linking %current->io_context and @cfqd exists. If
3018 * ioc and/or cic doesn't exist, they will be created using @gfp_mask.
Jens Axboe4ac845a2008-01-24 08:44:49 +01003019 */
Tejun Heo216284c2011-12-14 00:33:38 +01003020static int cfq_create_cic(struct cfq_data *cfqd, gfp_t gfp_mask)
Jens Axboee2d74ac2006-03-28 08:59:01 +02003021{
Tejun Heo216284c2011-12-14 00:33:38 +01003022 struct request_queue *q = cfqd->queue;
Tejun Heoc5869802011-12-14 00:33:41 +01003023 struct io_cq *icq = NULL;
3024 struct cfq_io_cq *cic;
Tejun Heo216284c2011-12-14 00:33:38 +01003025 struct io_context *ioc;
3026 int ret = -ENOMEM;
3027
3028 might_sleep_if(gfp_mask & __GFP_WAIT);
3029
3030 /* allocate stuff */
Tejun Heof2dbd762011-12-14 00:33:40 +01003031 ioc = create_io_context(current, gfp_mask, q->node);
Tejun Heo216284c2011-12-14 00:33:38 +01003032 if (!ioc)
3033 goto out;
3034
Tejun Heoc5869802011-12-14 00:33:41 +01003035 cic = cfq_alloc_cic(cfqd, gfp_mask);
Tejun Heo216284c2011-12-14 00:33:38 +01003036 if (!cic)
3037 goto out;
Tejun Heoc5869802011-12-14 00:33:41 +01003038 icq = &cic->icq;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003039
Jens Axboe4ac845a2008-01-24 08:44:49 +01003040 ret = radix_tree_preload(gfp_mask);
Tejun Heo283287a2011-12-14 00:33:38 +01003041 if (ret)
3042 goto out;
3043
Tejun Heoc5869802011-12-14 00:33:41 +01003044 icq->ioc = ioc;
3045 icq->q = cfqd->queue;
Tejun Heo283287a2011-12-14 00:33:38 +01003046
Tejun Heoc5869802011-12-14 00:33:41 +01003047 /* lock both q and ioc and try to link @icq */
Tejun Heo216284c2011-12-14 00:33:38 +01003048 spin_lock_irq(q->queue_lock);
3049 spin_lock(&ioc->lock);
3050
Tejun Heoc5869802011-12-14 00:33:41 +01003051 ret = radix_tree_insert(&ioc->icq_tree, q->id, icq);
Tejun Heo216284c2011-12-14 00:33:38 +01003052 if (likely(!ret)) {
Tejun Heoc5869802011-12-14 00:33:41 +01003053 hlist_add_head(&icq->ioc_node, &ioc->icq_list);
Tejun Heoa612fdd2011-12-14 00:33:41 +01003054 list_add(&icq->q_node, &q->icq_list);
Tejun Heoc5869802011-12-14 00:33:41 +01003055 icq = NULL;
Tejun Heo216284c2011-12-14 00:33:38 +01003056 } else if (ret == -EEXIST) {
3057 /* someone else already did it */
3058 ret = 0;
3059 }
3060
3061 spin_unlock(&ioc->lock);
3062 spin_unlock_irq(q->queue_lock);
Tejun Heo283287a2011-12-14 00:33:38 +01003063
3064 radix_tree_preload_end();
Tejun Heo283287a2011-12-14 00:33:38 +01003065out:
Jens Axboe4ac845a2008-01-24 08:44:49 +01003066 if (ret)
Tejun Heoc5869802011-12-14 00:33:41 +01003067 printk(KERN_ERR "cfq: icq link failed!\n");
3068 if (icq)
3069 cfq_icq_free(icq);
Jens Axboe4ac845a2008-01-24 08:44:49 +01003070 return ret;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003071}
3072
Tejun Heo216284c2011-12-14 00:33:38 +01003073/**
Tejun Heoc5869802011-12-14 00:33:41 +01003074 * cfq_get_cic - acquire cfq_io_cq and bump refcnt on io_context
Tejun Heo216284c2011-12-14 00:33:38 +01003075 * @cfqd: cfqd to setup cic for
3076 * @gfp_mask: allocation mask
3077 *
Tejun Heoc5869802011-12-14 00:33:41 +01003078 * Return cfq_io_cq associating @cfqd and %current->io_context and
Tejun Heo216284c2011-12-14 00:33:38 +01003079 * bump refcnt on io_context. If ioc or cic doesn't exist, they're created
3080 * using @gfp_mask.
3081 *
3082 * Must be called under queue_lock which may be released and re-acquired.
3083 * This function also may sleep depending on @gfp_mask.
Jens Axboe22e2c502005-06-27 10:55:12 +02003084 */
Tejun Heoc5869802011-12-14 00:33:41 +01003085static struct cfq_io_cq *cfq_get_cic(struct cfq_data *cfqd, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
Tejun Heo216284c2011-12-14 00:33:38 +01003087 struct request_queue *q = cfqd->queue;
Tejun Heoc5869802011-12-14 00:33:41 +01003088 struct cfq_io_cq *cic = NULL;
Tejun Heo216284c2011-12-14 00:33:38 +01003089 struct io_context *ioc;
3090 int err;
Jens Axboe22e2c502005-06-27 10:55:12 +02003091
Tejun Heo216284c2011-12-14 00:33:38 +01003092 lockdep_assert_held(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003093
Tejun Heo216284c2011-12-14 00:33:38 +01003094 while (true) {
3095 /* fast path */
3096 ioc = current->io_context;
3097 if (likely(ioc)) {
3098 cic = cfq_cic_lookup(cfqd, ioc);
3099 if (likely(cic))
3100 break;
3101 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003102
Tejun Heo216284c2011-12-14 00:33:38 +01003103 /* slow path - unlock, create missing ones and retry */
3104 spin_unlock_irq(q->queue_lock);
3105 err = cfq_create_cic(cfqd, gfp_mask);
3106 spin_lock_irq(q->queue_lock);
3107 if (err)
3108 return NULL;
3109 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003110
Tejun Heo216284c2011-12-14 00:33:38 +01003111 /* bump @ioc's refcnt and handle changed notifications */
Tejun Heo6e736be2011-12-14 00:33:38 +01003112 get_io_context(ioc);
3113
Tejun Heoc5869802011-12-14 00:33:41 +01003114 if (unlikely(cic->icq.changed)) {
3115 if (test_and_clear_bit(ICQ_IOPRIO_CHANGED, &cic->icq.changed))
Tejun Heodc869002011-12-14 00:33:38 +01003116 changed_ioprio(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05003117#ifdef CONFIG_CFQ_GROUP_IOSCHED
Tejun Heoc5869802011-12-14 00:33:41 +01003118 if (test_and_clear_bit(ICQ_CGROUP_CHANGED, &cic->icq.changed))
Tejun Heodc869002011-12-14 00:33:38 +01003119 changed_cgroup(cic);
Vivek Goyal246103332009-12-03 12:59:51 -05003120#endif
Tejun Heodc869002011-12-14 00:33:38 +01003121 }
3122
Jens Axboe22e2c502005-06-27 10:55:12 +02003123 return cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003124}
3125
3126static void
Shaohua Li383cd722011-07-12 14:24:35 +02003127__cfq_update_io_thinktime(struct cfq_ttime *ttime, unsigned long slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003128{
Shaohua Li383cd722011-07-12 14:24:35 +02003129 unsigned long elapsed = jiffies - ttime->last_end_request;
3130 elapsed = min(elapsed, 2UL * slice_idle);
Jens Axboe22e2c502005-06-27 10:55:12 +02003131
Shaohua Li383cd722011-07-12 14:24:35 +02003132 ttime->ttime_samples = (7*ttime->ttime_samples + 256) / 8;
3133 ttime->ttime_total = (7*ttime->ttime_total + 256*elapsed) / 8;
3134 ttime->ttime_mean = (ttime->ttime_total + 128) / ttime->ttime_samples;
3135}
3136
3137static void
3138cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01003139 struct cfq_io_cq *cic)
Shaohua Li383cd722011-07-12 14:24:35 +02003140{
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003141 if (cfq_cfqq_sync(cfqq)) {
Shaohua Li383cd722011-07-12 14:24:35 +02003142 __cfq_update_io_thinktime(&cic->ttime, cfqd->cfq_slice_idle);
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003143 __cfq_update_io_thinktime(&cfqq->service_tree->ttime,
3144 cfqd->cfq_slice_idle);
3145 }
Shaohua Li7700fc42011-07-12 14:24:56 +02003146#ifdef CONFIG_CFQ_GROUP_IOSCHED
3147 __cfq_update_io_thinktime(&cfqq->cfqg->ttime, cfqd->cfq_group_idle);
3148#endif
Jens Axboe22e2c502005-06-27 10:55:12 +02003149}
3150
Jens Axboe206dc692006-03-28 13:03:44 +02003151static void
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003152cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Jens Axboe6d048f52007-04-25 12:44:27 +02003153 struct request *rq)
Jens Axboe206dc692006-03-28 13:03:44 +02003154{
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003155 sector_t sdist = 0;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003156 sector_t n_sec = blk_rq_sectors(rq);
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003157 if (cfqq->last_request_pos) {
3158 if (cfqq->last_request_pos < blk_rq_pos(rq))
3159 sdist = blk_rq_pos(rq) - cfqq->last_request_pos;
3160 else
3161 sdist = cfqq->last_request_pos - blk_rq_pos(rq);
3162 }
Jens Axboe206dc692006-03-28 13:03:44 +02003163
Corrado Zoccolo3dde36d2010-02-27 19:45:39 +01003164 cfqq->seek_history <<= 1;
Corrado Zoccolo41647e72010-02-27 19:45:40 +01003165 if (blk_queue_nonrot(cfqd->queue))
3166 cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT);
3167 else
3168 cfqq->seek_history |= (sdist > CFQQ_SEEK_THR);
Jens Axboe206dc692006-03-28 13:03:44 +02003169}
Jens Axboe22e2c502005-06-27 10:55:12 +02003170
3171/*
3172 * Disable idle window if the process thinks too long or seeks so much that
3173 * it doesn't matter
3174 */
3175static void
3176cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
Tejun Heoc5869802011-12-14 00:33:41 +01003177 struct cfq_io_cq *cic)
Jens Axboe22e2c502005-06-27 10:55:12 +02003178{
Jens Axboe7b679132008-05-30 12:23:07 +02003179 int old_idle, enable_idle;
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003180
Jens Axboe08717142008-01-28 11:38:15 +01003181 /*
3182 * Don't idle for async or idle io prio class
3183 */
3184 if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq))
Jens Axboe1be92f2f2007-04-19 14:32:26 +02003185 return;
3186
Jens Axboec265a7f2008-06-26 13:49:33 +02003187 enable_idle = old_idle = cfq_cfqq_idle_window(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003188
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003189 if (cfqq->queued[0] + cfqq->queued[1] >= 4)
3190 cfq_mark_cfqq_deep(cfqq);
3191
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003192 if (cfqq->next_rq && (cfqq->next_rq->cmd_flags & REQ_NOIDLE))
3193 enable_idle = 0;
Tejun Heoc5869802011-12-14 00:33:41 +01003194 else if (!atomic_read(&cic->icq.ioc->nr_tasks) ||
3195 !cfqd->cfq_slice_idle ||
3196 (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq)))
Jens Axboe22e2c502005-06-27 10:55:12 +02003197 enable_idle = 0;
Shaohua Li383cd722011-07-12 14:24:35 +02003198 else if (sample_valid(cic->ttime.ttime_samples)) {
3199 if (cic->ttime.ttime_mean > cfqd->cfq_slice_idle)
Jens Axboe22e2c502005-06-27 10:55:12 +02003200 enable_idle = 0;
3201 else
3202 enable_idle = 1;
3203 }
3204
Jens Axboe7b679132008-05-30 12:23:07 +02003205 if (old_idle != enable_idle) {
3206 cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle);
3207 if (enable_idle)
3208 cfq_mark_cfqq_idle_window(cfqq);
3209 else
3210 cfq_clear_cfqq_idle_window(cfqq);
3211 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003212}
3213
Jens Axboe22e2c502005-06-27 10:55:12 +02003214/*
3215 * Check if new_cfqq should preempt the currently active queue. Return 0 for
3216 * no or if we aren't sure, a 1 will cause a preempt.
3217 */
Jens Axboea6151c32009-10-07 20:02:57 +02003218static bool
Jens Axboe22e2c502005-06-27 10:55:12 +02003219cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq,
Jens Axboe5e705372006-07-13 12:39:25 +02003220 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003221{
Jens Axboe6d048f52007-04-25 12:44:27 +02003222 struct cfq_queue *cfqq;
Jens Axboe22e2c502005-06-27 10:55:12 +02003223
Jens Axboe6d048f52007-04-25 12:44:27 +02003224 cfqq = cfqd->active_queue;
3225 if (!cfqq)
Jens Axboea6151c32009-10-07 20:02:57 +02003226 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003227
Jens Axboe6d048f52007-04-25 12:44:27 +02003228 if (cfq_class_idle(new_cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003229 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003230
3231 if (cfq_class_idle(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003232 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003233
Jens Axboe22e2c502005-06-27 10:55:12 +02003234 /*
Divyesh Shah875feb62010-01-06 18:58:20 -08003235 * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice.
3236 */
3237 if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq))
3238 return false;
3239
3240 /*
Jens Axboe374f84a2006-07-23 01:42:19 +02003241 * if the new request is sync, but the currently running queue is
3242 * not, let the sync request have priority.
3243 */
Jens Axboe5e705372006-07-13 12:39:25 +02003244 if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003245 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003246
Vivek Goyal8682e1f2009-12-03 12:59:50 -05003247 if (new_cfqq->cfqg != cfqq->cfqg)
3248 return false;
3249
3250 if (cfq_slice_used(cfqq))
3251 return true;
3252
3253 /* Allow preemption only if we are idling on sync-noidle tree */
3254 if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD &&
3255 cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD &&
3256 new_cfqq->service_tree->count == 2 &&
3257 RB_EMPTY_ROOT(&cfqq->sort_list))
3258 return true;
3259
Jens Axboe374f84a2006-07-23 01:42:19 +02003260 /*
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003261 * So both queues are sync. Let the new request get disk time if
3262 * it's a metadata request and the current queue is doing regular IO.
3263 */
Christoph Hellwig65299a32011-08-23 14:50:29 +02003264 if ((rq->cmd_flags & REQ_PRIO) && !cfqq->prio_pending)
Jens Axboeb53d1ed2011-08-19 08:34:48 +02003265 return true;
3266
3267 /*
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003268 * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice.
3269 */
3270 if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003271 return true;
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003272
Shaohua Lid2d59e12010-11-08 15:01:03 +01003273 /* An idle queue should not be idle now for some reason */
3274 if (RB_EMPTY_ROOT(&cfqq->sort_list) && !cfq_should_idle(cfqd, cfqq))
3275 return true;
3276
Jens Axboe1e3335d2007-02-14 19:59:49 +01003277 if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq))
Jens Axboea6151c32009-10-07 20:02:57 +02003278 return false;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003279
3280 /*
3281 * if this request is as-good as one we would expect from the
3282 * current cfqq, let it preempt
3283 */
Shaohua Lie9ce3352010-03-19 08:03:04 +01003284 if (cfq_rq_close(cfqd, cfqq, rq))
Jens Axboea6151c32009-10-07 20:02:57 +02003285 return true;
Jens Axboe1e3335d2007-02-14 19:59:49 +01003286
Jens Axboea6151c32009-10-07 20:02:57 +02003287 return false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003288}
3289
3290/*
3291 * cfqq preempts the active queue. if we allowed preempt with no slice left,
3292 * let it have half of its nominal slice.
3293 */
3294static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3295{
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003296 struct cfq_queue *old_cfqq = cfqd->active_queue;
3297
Jens Axboe7b679132008-05-30 12:23:07 +02003298 cfq_log_cfqq(cfqd, cfqq, "preempt");
Vivek Goyale5ff0822010-04-26 19:25:11 +02003299 cfq_slice_expired(cfqd, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003300
Jens Axboebf572252006-07-19 20:29:12 +02003301 /*
Shaohua Lif8ae6e32011-01-14 08:41:02 +01003302 * workload type is changed, don't save slice, otherwise preempt
3303 * doesn't happen
3304 */
3305 if (cfqq_type(old_cfqq) != cfqq_type(cfqq))
3306 cfqq->cfqg->saved_workload_slice = 0;
3307
3308 /*
Jens Axboebf572252006-07-19 20:29:12 +02003309 * Put the new queue at the front of the of the current list,
3310 * so we know that it will be selected next.
3311 */
3312 BUG_ON(!cfq_cfqq_on_rr(cfqq));
Jens Axboeedd75ff2007-04-19 12:03:34 +02003313
3314 cfq_service_tree_add(cfqd, cfqq, 1);
Justin TerAvesteda5e0c2011-03-22 21:26:49 +01003315
Justin TerAvest62a37f62011-03-23 08:25:44 +01003316 cfqq->slice_end = 0;
3317 cfq_mark_cfqq_slice_new(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003318}
3319
3320/*
Jens Axboe5e705372006-07-13 12:39:25 +02003321 * Called when a new fs request (rq) is added (to cfqq). Check if there's
Jens Axboe22e2c502005-06-27 10:55:12 +02003322 * something we should do about it
3323 */
3324static void
Jens Axboe5e705372006-07-13 12:39:25 +02003325cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq,
3326 struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003327{
Tejun Heoc5869802011-12-14 00:33:41 +01003328 struct cfq_io_cq *cic = RQ_CIC(rq);
Jens Axboe12e9fdd2006-06-01 10:09:56 +02003329
Aaron Carroll45333d52008-08-26 15:52:36 +02003330 cfqd->rq_queued++;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003331 if (rq->cmd_flags & REQ_PRIO)
3332 cfqq->prio_pending++;
Jens Axboe374f84a2006-07-23 01:42:19 +02003333
Shaohua Li383cd722011-07-12 14:24:35 +02003334 cfq_update_io_thinktime(cfqd, cfqq, cic);
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003335 cfq_update_io_seektime(cfqd, cfqq, rq);
Jens Axboe9c2c38a2005-08-24 14:57:54 +02003336 cfq_update_idle_window(cfqd, cfqq, cic);
3337
Jeff Moyerb2c18e12009-10-23 17:14:49 -04003338 cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003339
3340 if (cfqq == cfqd->active_queue) {
3341 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003342 * Remember that we saw a request from this process, but
3343 * don't start queuing just yet. Otherwise we risk seeing lots
3344 * of tiny requests, because we disrupt the normal plugging
Jens Axboed6ceb252009-04-14 14:18:16 +02003345 * and merging. If the request is already larger than a single
3346 * page, let it rip immediately. For that case we assume that
Jens Axboe2d870722009-04-15 12:12:46 +02003347 * merging is already done. Ditto for a busy system that
3348 * has other work pending, don't risk delaying until the
3349 * idle timer unplug to continue working.
Jens Axboe22e2c502005-06-27 10:55:12 +02003350 */
Jens Axboed6ceb252009-04-14 14:18:16 +02003351 if (cfq_cfqq_wait_request(cfqq)) {
Jens Axboe2d870722009-04-15 12:12:46 +02003352 if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE ||
3353 cfqd->busy_queues > 1) {
Divyesh Shah812df482010-04-08 21:15:35 -07003354 cfq_del_timer(cfqd, cfqq);
Gui Jianfeng554554f2009-12-10 09:38:39 +01003355 cfq_clear_cfqq_wait_request(cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003356 __blk_run_queue(cfqd->queue);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003357 } else {
Vivek Goyale98ef892010-06-18 10:39:47 -04003358 cfq_blkiocg_update_idle_time_stats(
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003359 &cfqq->cfqg->blkg);
Vivek Goyalbf7919372009-12-03 12:59:37 -05003360 cfq_mark_cfqq_must_dispatch(cfqq);
Divyesh Shaha11cdaa2010-04-13 19:59:17 +02003361 }
Jens Axboed6ceb252009-04-14 14:18:16 +02003362 }
Jens Axboe5e705372006-07-13 12:39:25 +02003363 } else if (cfq_should_preempt(cfqd, cfqq, rq)) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003364 /*
3365 * not the active queue - expire current slice if it is
3366 * idle and has expired it's mean thinktime or this new queue
Divyesh Shah3a9a3f62009-01-30 12:46:41 +01003367 * has some old slice time left and is of higher priority or
3368 * this new queue is RT and the current one is BE
Jens Axboe22e2c502005-06-27 10:55:12 +02003369 */
3370 cfq_preempt_queue(cfqd, cfqq);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003371 __blk_run_queue(cfqd->queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003372 }
3373}
3374
Jens Axboe165125e2007-07-24 09:28:11 +02003375static void cfq_insert_request(struct request_queue *q, struct request *rq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003376{
Jens Axboeb4878f22005-10-20 16:42:29 +02003377 struct cfq_data *cfqd = q->elevator->elevator_data;
Jens Axboe5e705372006-07-13 12:39:25 +02003378 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003379
Jens Axboe7b679132008-05-30 12:23:07 +02003380 cfq_log_cfqq(cfqd, cfqq, "insert_request");
Tejun Heoc5869802011-12-14 00:33:41 +01003381 cfq_init_prio_data(cfqq, RQ_CIC(rq)->icq.ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Jens Axboe30996f42009-10-05 11:03:39 +02003383 rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]);
Jens Axboe22e2c502005-06-27 10:55:12 +02003384 list_add_tail(&rq->queuelist, &cfqq->fifo);
Corrado Zoccoloaa6f6a32009-10-26 22:44:33 +01003385 cfq_add_rq_rb(rq);
Vivek Goyale98ef892010-06-18 10:39:47 -04003386 cfq_blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -07003387 &cfqd->serving_group->blkg, rq_data_dir(rq),
3388 rq_is_sync(rq));
Jens Axboe5e705372006-07-13 12:39:25 +02003389 cfq_rq_enqueued(cfqd, cfqq, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390}
3391
Aaron Carroll45333d52008-08-26 15:52:36 +02003392/*
3393 * Update hw_tag based on peak queue depth over 50 samples under
3394 * sufficient load.
3395 */
3396static void cfq_update_hw_tag(struct cfq_data *cfqd)
3397{
Shaohua Li1a1238a2009-10-27 08:46:23 +01003398 struct cfq_queue *cfqq = cfqd->active_queue;
3399
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003400 if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth)
3401 cfqd->hw_tag_est_depth = cfqd->rq_in_driver;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003402
3403 if (cfqd->hw_tag == 1)
3404 return;
Aaron Carroll45333d52008-08-26 15:52:36 +02003405
3406 if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN &&
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003407 cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003408 return;
3409
Shaohua Li1a1238a2009-10-27 08:46:23 +01003410 /*
3411 * If active queue hasn't enough requests and can idle, cfq might not
3412 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
3413 * case
3414 */
3415 if (cfqq && cfq_cfqq_idle_window(cfqq) &&
3416 cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] <
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003417 CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN)
Shaohua Li1a1238a2009-10-27 08:46:23 +01003418 return;
3419
Aaron Carroll45333d52008-08-26 15:52:36 +02003420 if (cfqd->hw_tag_samples++ < 50)
3421 return;
3422
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003423 if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN)
Aaron Carroll45333d52008-08-26 15:52:36 +02003424 cfqd->hw_tag = 1;
3425 else
3426 cfqd->hw_tag = 0;
Aaron Carroll45333d52008-08-26 15:52:36 +02003427}
3428
Vivek Goyal7667aa02009-12-08 17:52:58 -05003429static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq)
3430{
Tejun Heoc5869802011-12-14 00:33:41 +01003431 struct cfq_io_cq *cic = cfqd->active_cic;
Vivek Goyal7667aa02009-12-08 17:52:58 -05003432
Justin TerAvest02a8f012011-02-09 14:20:03 +01003433 /* If the queue already has requests, don't wait */
3434 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
3435 return false;
3436
Vivek Goyal7667aa02009-12-08 17:52:58 -05003437 /* If there are other queues in the group, don't wait */
3438 if (cfqq->cfqg->nr_cfqq > 1)
3439 return false;
3440
Shaohua Li7700fc42011-07-12 14:24:56 +02003441 /* the only queue in the group, but think time is big */
3442 if (cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true))
3443 return false;
3444
Vivek Goyal7667aa02009-12-08 17:52:58 -05003445 if (cfq_slice_used(cfqq))
3446 return true;
3447
3448 /* if slice left is less than think time, wait busy */
Shaohua Li383cd722011-07-12 14:24:35 +02003449 if (cic && sample_valid(cic->ttime.ttime_samples)
3450 && (cfqq->slice_end - jiffies < cic->ttime.ttime_mean))
Vivek Goyal7667aa02009-12-08 17:52:58 -05003451 return true;
3452
3453 /*
3454 * If think times is less than a jiffy than ttime_mean=0 and above
3455 * will not be true. It might happen that slice has not expired yet
3456 * but will expire soon (4-5 ns) during select_queue(). To cover the
3457 * case where think time is less than a jiffy, mark the queue wait
3458 * busy if only 1 jiffy is left in the slice.
3459 */
3460 if (cfqq->slice_end - jiffies == 1)
3461 return true;
3462
3463 return false;
3464}
3465
Jens Axboe165125e2007-07-24 09:28:11 +02003466static void cfq_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467{
Jens Axboe5e705372006-07-13 12:39:25 +02003468 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003469 struct cfq_data *cfqd = cfqq->cfqd;
Jens Axboe5380a102006-07-13 12:37:56 +02003470 const int sync = rq_is_sync(rq);
Jens Axboeb4878f22005-10-20 16:42:29 +02003471 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Jens Axboeb4878f22005-10-20 16:42:29 +02003473 now = jiffies;
Christoph Hellwig33659eb2010-08-07 18:17:56 +02003474 cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d",
3475 !!(rq->cmd_flags & REQ_NOIDLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Aaron Carroll45333d52008-08-26 15:52:36 +02003477 cfq_update_hw_tag(cfqd);
3478
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003479 WARN_ON(!cfqd->rq_in_driver);
Jens Axboe6d048f52007-04-25 12:44:27 +02003480 WARN_ON(!cfqq->dispatched);
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003481 cfqd->rq_in_driver--;
Jens Axboe6d048f52007-04-25 12:44:27 +02003482 cfqq->dispatched--;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003483 (RQ_CFQG(rq))->dispatched--;
Vivek Goyale98ef892010-06-18 10:39:47 -04003484 cfq_blkiocg_update_completion_stats(&cfqq->cfqg->blkg,
3485 rq_start_time_ns(rq), rq_io_start_time_ns(rq),
3486 rq_data_dir(rq), rq_is_sync(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003488 cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--;
Jens Axboe3ed9a292007-04-23 08:33:33 +02003489
Vivek Goyal365722b2009-10-03 15:21:27 +02003490 if (sync) {
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003491 struct cfq_rb_root *service_tree;
3492
Shaohua Li383cd722011-07-12 14:24:35 +02003493 RQ_CIC(rq)->ttime.last_end_request = now;
Shaohua Lif5f2b6c2011-07-12 14:24:55 +02003494
3495 if (cfq_cfqq_on_rr(cfqq))
3496 service_tree = cfqq->service_tree;
3497 else
3498 service_tree = service_tree_for(cfqq->cfqg,
3499 cfqq_prio(cfqq), cfqq_type(cfqq));
3500 service_tree->ttime.last_end_request = now;
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003501 if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now))
3502 cfqd->last_delayed_sync = now;
Vivek Goyal365722b2009-10-03 15:21:27 +02003503 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003504
Shaohua Li7700fc42011-07-12 14:24:56 +02003505#ifdef CONFIG_CFQ_GROUP_IOSCHED
3506 cfqq->cfqg->ttime.last_end_request = now;
3507#endif
3508
Jens Axboecaaa5f92006-06-16 11:23:00 +02003509 /*
3510 * If this is the active queue, check if it needs to be expired,
3511 * or if we want to idle in case it has no pending requests.
3512 */
3513 if (cfqd->active_queue == cfqq) {
Jens Axboea36e71f2009-04-15 12:15:11 +02003514 const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list);
3515
Jens Axboe44f7c162007-01-19 11:51:58 +11003516 if (cfq_cfqq_slice_new(cfqq)) {
3517 cfq_set_prio_slice(cfqd, cfqq);
3518 cfq_clear_cfqq_slice_new(cfqq);
3519 }
Vivek Goyalf75edf22009-12-03 12:59:53 -05003520
3521 /*
Vivek Goyal7667aa02009-12-08 17:52:58 -05003522 * Should we wait for next request to come in before we expire
3523 * the queue.
Vivek Goyalf75edf22009-12-03 12:59:53 -05003524 */
Vivek Goyal7667aa02009-12-08 17:52:58 -05003525 if (cfq_should_wait_busy(cfqd, cfqq)) {
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003526 unsigned long extend_sl = cfqd->cfq_slice_idle;
3527 if (!cfqd->cfq_slice_idle)
3528 extend_sl = cfqd->cfq_group_idle;
3529 cfqq->slice_end = jiffies + extend_sl;
Vivek Goyalf75edf22009-12-03 12:59:53 -05003530 cfq_mark_cfqq_wait_busy(cfqq);
Divyesh Shahb1ffe732010-03-25 15:45:03 +01003531 cfq_log_cfqq(cfqd, cfqq, "will busy wait");
Vivek Goyalf75edf22009-12-03 12:59:53 -05003532 }
3533
Jens Axboea36e71f2009-04-15 12:15:11 +02003534 /*
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003535 * Idling is not enabled on:
3536 * - expired queues
3537 * - idle-priority queues
3538 * - async queues
3539 * - queues with still some requests queued
3540 * - when there is a close cooperator
Jens Axboea36e71f2009-04-15 12:15:11 +02003541 */
Jens Axboe08717142008-01-28 11:38:15 +01003542 if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq))
Vivek Goyale5ff0822010-04-26 19:25:11 +02003543 cfq_slice_expired(cfqd, 1);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003544 else if (sync && cfqq_empty &&
3545 !cfq_close_cooperator(cfqd, cfqq)) {
Corrado Zoccolo749ef9f2010-09-20 15:24:50 +02003546 cfq_arm_slice_timer(cfqd);
Corrado Zoccolo8e550632009-11-26 10:02:58 +01003547 }
Jens Axboecaaa5f92006-06-16 11:23:00 +02003548 }
Jens Axboe6d048f52007-04-25 12:44:27 +02003549
Corrado Zoccolo53c583d2010-02-28 19:45:05 +01003550 if (!cfqd->rq_in_driver)
Jens Axboe23e018a2009-10-05 08:52:35 +02003551 cfq_schedule_dispatch(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552}
3553
Jens Axboe89850f72006-07-22 16:48:31 +02003554static inline int __cfq_may_queue(struct cfq_queue *cfqq)
Jens Axboe22e2c502005-06-27 10:55:12 +02003555{
Jens Axboe1b379d82009-08-11 08:26:11 +02003556 if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) {
Jens Axboe3b181522005-06-27 10:56:24 +02003557 cfq_mark_cfqq_must_alloc_slice(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003558 return ELV_MQUEUE_MUST;
Jens Axboe3b181522005-06-27 10:56:24 +02003559 }
Jens Axboe22e2c502005-06-27 10:55:12 +02003560
3561 return ELV_MQUEUE_MAY;
Jens Axboe22e2c502005-06-27 10:55:12 +02003562}
3563
Jens Axboe165125e2007-07-24 09:28:11 +02003564static int cfq_may_queue(struct request_queue *q, int rw)
Jens Axboe22e2c502005-06-27 10:55:12 +02003565{
3566 struct cfq_data *cfqd = q->elevator->elevator_data;
3567 struct task_struct *tsk = current;
Tejun Heoc5869802011-12-14 00:33:41 +01003568 struct cfq_io_cq *cic;
Jens Axboe22e2c502005-06-27 10:55:12 +02003569 struct cfq_queue *cfqq;
3570
3571 /*
3572 * don't force setup of a queue from here, as a call to may_queue
3573 * does not necessarily imply that a request actually will be queued.
3574 * so just lookup a possibly existing queue, or return 'may queue'
3575 * if that fails
3576 */
Jens Axboe4ac845a2008-01-24 08:44:49 +01003577 cic = cfq_cic_lookup(cfqd, tsk->io_context);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003578 if (!cic)
3579 return ELV_MQUEUE_MAY;
3580
Jens Axboeb0b78f82009-04-08 10:56:08 +02003581 cfqq = cic_to_cfqq(cic, rw_is_sync(rw));
Jens Axboe22e2c502005-06-27 10:55:12 +02003582 if (cfqq) {
Tejun Heoc5869802011-12-14 00:33:41 +01003583 cfq_init_prio_data(cfqq, cic->icq.ioc);
Jens Axboe22e2c502005-06-27 10:55:12 +02003584
Jens Axboe89850f72006-07-22 16:48:31 +02003585 return __cfq_may_queue(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003586 }
3587
3588 return ELV_MQUEUE_MAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589}
3590
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591/*
3592 * queue lock held here
3593 */
Jens Axboebb37b942006-12-01 10:42:33 +01003594static void cfq_put_request(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595{
Jens Axboe5e705372006-07-13 12:39:25 +02003596 struct cfq_queue *cfqq = RQ_CFQQ(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
Jens Axboe5e705372006-07-13 12:39:25 +02003598 if (cfqq) {
Jens Axboe22e2c502005-06-27 10:55:12 +02003599 const int rw = rq_data_dir(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
Jens Axboe22e2c502005-06-27 10:55:12 +02003601 BUG_ON(!cfqq->allocated[rw]);
3602 cfqq->allocated[rw]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Tejun Heoc5869802011-12-14 00:33:41 +01003604 put_io_context(RQ_CIC(rq)->icq.ioc, cfqq->cfqd->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003606 /* Put down rq reference on cfqg */
3607 cfq_put_cfqg(RQ_CFQG(rq));
Tejun Heoa612fdd2011-12-14 00:33:41 +01003608 rq->elv.priv[0] = NULL;
3609 rq->elv.priv[1] = NULL;
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +02003610
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 cfq_put_queue(cfqq);
3612 }
3613}
3614
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003615static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01003616cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_cq *cic,
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003617 struct cfq_queue *cfqq)
3618{
3619 cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq);
3620 cic_set_cfqq(cic, cfqq->new_cfqq, 1);
Jeff Moyerb3b6d042009-10-23 17:14:51 -04003621 cfq_mark_cfqq_coop(cfqq->new_cfqq);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003622 cfq_put_queue(cfqq);
3623 return cic_to_cfqq(cic, 1);
3624}
3625
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003626/*
3627 * Returns NULL if a new cfqq should be allocated, or the old cfqq if this
3628 * was the last process referring to said cfqq.
3629 */
3630static struct cfq_queue *
Tejun Heoc5869802011-12-14 00:33:41 +01003631split_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq)
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003632{
3633 if (cfqq_process_refs(cfqq) == 1) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003634 cfqq->pid = current->pid;
3635 cfq_clear_cfqq_coop(cfqq);
Shaohua Liae54abe2010-02-05 13:11:45 +01003636 cfq_clear_cfqq_split_coop(cfqq);
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003637 return cfqq;
3638 }
3639
3640 cic_set_cfqq(cic, NULL, 1);
Shaohua Lid02a2c02010-05-25 10:16:53 +02003641
3642 cfq_put_cooperator(cfqq);
3643
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003644 cfq_put_queue(cfqq);
3645 return NULL;
3646}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647/*
Jens Axboe22e2c502005-06-27 10:55:12 +02003648 * Allocate cfq data structures associated with this request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 */
Jens Axboe22e2c502005-06-27 10:55:12 +02003650static int
Jens Axboe165125e2007-07-24 09:28:11 +02003651cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652{
3653 struct cfq_data *cfqd = q->elevator->elevator_data;
Tejun Heoc5869802011-12-14 00:33:41 +01003654 struct cfq_io_cq *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 const int rw = rq_data_dir(rq);
Jens Axboea6151c32009-10-07 20:02:57 +02003656 const bool is_sync = rq_is_sync(rq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003657 struct cfq_queue *cfqq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
3659 might_sleep_if(gfp_mask & __GFP_WAIT);
3660
Tejun Heo216284c2011-12-14 00:33:38 +01003661 spin_lock_irq(q->queue_lock);
Tejun Heoc5869802011-12-14 00:33:41 +01003662 cic = cfq_get_cic(cfqd, gfp_mask);
Jens Axboe22e2c502005-06-27 10:55:12 +02003663 if (!cic)
3664 goto queue_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003666new_queue:
Vasily Tarasov91fac312007-04-25 12:29:51 +02003667 cfqq = cic_to_cfqq(cic, is_sync);
Vivek Goyal32f2e802009-07-09 22:13:16 +02003668 if (!cfqq || cfqq == &cfqd->oom_cfqq) {
Tejun Heoc5869802011-12-14 00:33:41 +01003669 cfqq = cfq_get_queue(cfqd, is_sync, cic->icq.ioc, gfp_mask);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003670 cic_set_cfqq(cic, cfqq, is_sync);
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003671 } else {
3672 /*
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003673 * If the queue was seeky for too long, break it apart.
3674 */
Shaohua Liae54abe2010-02-05 13:11:45 +01003675 if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) {
Jeff Moyere6c5bc72009-10-23 17:14:52 -04003676 cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq");
3677 cfqq = split_cfqq(cic, cfqq);
3678 if (!cfqq)
3679 goto new_queue;
3680 }
3681
3682 /*
Jeff Moyerdf5fe3e2009-10-23 17:14:50 -04003683 * Check to see if this queue is scheduled to merge with
3684 * another, closely cooperating queue. The merging of
3685 * queues happens here as it must be done in process context.
3686 * The reference on new_cfqq was taken in merge_cfqqs.
3687 */
3688 if (cfqq->new_cfqq)
3689 cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq);
Vasily Tarasov91fac312007-04-25 12:29:51 +02003690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
3692 cfqq->allocated[rw]++;
Jens Axboe5e705372006-07-13 12:39:25 +02003693
Jens Axboe6fae9c22011-03-01 15:04:39 -05003694 cfqq->ref++;
Tejun Heoa612fdd2011-12-14 00:33:41 +01003695 rq->elv.icq = &cic->icq;
3696 rq->elv.priv[0] = cfqq;
3697 rq->elv.priv[1] = cfq_ref_get_cfqg(cfqq->cfqg);
Tejun Heo216284c2011-12-14 00:33:38 +01003698 spin_unlock_irq(q->queue_lock);
Jens Axboe5e705372006-07-13 12:39:25 +02003699 return 0;
Jens Axboe3b181522005-06-27 10:56:24 +02003700
Jens Axboe22e2c502005-06-27 10:55:12 +02003701queue_fail:
Jens Axboe23e018a2009-10-05 08:52:35 +02003702 cfq_schedule_dispatch(cfqd);
Tejun Heo216284c2011-12-14 00:33:38 +01003703 spin_unlock_irq(q->queue_lock);
Jens Axboe7b679132008-05-30 12:23:07 +02003704 cfq_log(cfqd, "set_request fail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 return 1;
3706}
3707
David Howells65f27f32006-11-22 14:55:48 +00003708static void cfq_kick_queue(struct work_struct *work)
Jens Axboe22e2c502005-06-27 10:55:12 +02003709{
David Howells65f27f32006-11-22 14:55:48 +00003710 struct cfq_data *cfqd =
Jens Axboe23e018a2009-10-05 08:52:35 +02003711 container_of(work, struct cfq_data, unplug_work);
Jens Axboe165125e2007-07-24 09:28:11 +02003712 struct request_queue *q = cfqd->queue;
Jens Axboe22e2c502005-06-27 10:55:12 +02003713
Jens Axboe40bb54d2009-04-15 12:11:10 +02003714 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003715 __blk_run_queue(cfqd->queue);
Jens Axboe40bb54d2009-04-15 12:11:10 +02003716 spin_unlock_irq(q->queue_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +02003717}
3718
3719/*
3720 * Timer running if the active_queue is currently idling inside its time slice
3721 */
3722static void cfq_idle_slice_timer(unsigned long data)
3723{
3724 struct cfq_data *cfqd = (struct cfq_data *) data;
3725 struct cfq_queue *cfqq;
3726 unsigned long flags;
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003727 int timed_out = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +02003728
Jens Axboe7b679132008-05-30 12:23:07 +02003729 cfq_log(cfqd, "idle timer fired");
3730
Jens Axboe22e2c502005-06-27 10:55:12 +02003731 spin_lock_irqsave(cfqd->queue->queue_lock, flags);
3732
Jens Axboefe094d92008-01-31 13:08:54 +01003733 cfqq = cfqd->active_queue;
3734 if (cfqq) {
Jens Axboe3c6bd2f2007-01-19 12:06:33 +11003735 timed_out = 0;
3736
Jens Axboe22e2c502005-06-27 10:55:12 +02003737 /*
Jens Axboeb0291952009-04-07 11:38:31 +02003738 * We saw a request before the queue expired, let it through
3739 */
3740 if (cfq_cfqq_must_dispatch(cfqq))
3741 goto out_kick;
3742
3743 /*
Jens Axboe22e2c502005-06-27 10:55:12 +02003744 * expired
3745 */
Jens Axboe44f7c162007-01-19 11:51:58 +11003746 if (cfq_slice_used(cfqq))
Jens Axboe22e2c502005-06-27 10:55:12 +02003747 goto expire;
3748
3749 /*
3750 * only expire and reinvoke request handler, if there are
3751 * other queues with pending requests
3752 */
Jens Axboecaaa5f92006-06-16 11:23:00 +02003753 if (!cfqd->busy_queues)
Jens Axboe22e2c502005-06-27 10:55:12 +02003754 goto out_cont;
Jens Axboe22e2c502005-06-27 10:55:12 +02003755
3756 /*
3757 * not expired and it has a request pending, let it dispatch
3758 */
Jens Axboe75e50982009-04-07 08:56:14 +02003759 if (!RB_EMPTY_ROOT(&cfqq->sort_list))
Jens Axboe22e2c502005-06-27 10:55:12 +02003760 goto out_kick;
Corrado Zoccolo76280af2009-11-26 10:02:58 +01003761
3762 /*
3763 * Queue depth flag is reset only when the idle didn't succeed
3764 */
3765 cfq_clear_cfqq_deep(cfqq);
Jens Axboe22e2c502005-06-27 10:55:12 +02003766 }
3767expire:
Vivek Goyale5ff0822010-04-26 19:25:11 +02003768 cfq_slice_expired(cfqd, timed_out);
Jens Axboe22e2c502005-06-27 10:55:12 +02003769out_kick:
Jens Axboe23e018a2009-10-05 08:52:35 +02003770 cfq_schedule_dispatch(cfqd);
Jens Axboe22e2c502005-06-27 10:55:12 +02003771out_cont:
3772 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
3773}
3774
Jens Axboe3b181522005-06-27 10:56:24 +02003775static void cfq_shutdown_timer_wq(struct cfq_data *cfqd)
3776{
3777 del_timer_sync(&cfqd->idle_slice_timer);
Jens Axboe23e018a2009-10-05 08:52:35 +02003778 cancel_work_sync(&cfqd->unplug_work);
Jens Axboe3b181522005-06-27 10:56:24 +02003779}
Jens Axboe22e2c502005-06-27 10:55:12 +02003780
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003781static void cfq_put_async_queues(struct cfq_data *cfqd)
3782{
3783 int i;
3784
3785 for (i = 0; i < IOPRIO_BE_NR; i++) {
3786 if (cfqd->async_cfqq[0][i])
3787 cfq_put_queue(cfqd->async_cfqq[0][i]);
3788 if (cfqd->async_cfqq[1][i])
3789 cfq_put_queue(cfqd->async_cfqq[1][i]);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003790 }
Oleg Nesterov2389d1e2007-11-05 08:58:05 +01003791
3792 if (cfqd->async_idle_cfqq)
3793 cfq_put_queue(cfqd->async_idle_cfqq);
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003794}
3795
Jens Axboeb374d182008-10-31 10:05:07 +01003796static void cfq_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797{
Jens Axboe22e2c502005-06-27 10:55:12 +02003798 struct cfq_data *cfqd = e->elevator_data;
Jens Axboe165125e2007-07-24 09:28:11 +02003799 struct request_queue *q = cfqd->queue;
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003800 bool wait = false;
Jens Axboe22e2c502005-06-27 10:55:12 +02003801
Jens Axboe3b181522005-06-27 10:56:24 +02003802 cfq_shutdown_timer_wq(cfqd);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003803
Al Virod9ff4182006-03-18 13:51:22 -05003804 spin_lock_irq(q->queue_lock);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003805
Al Virod9ff4182006-03-18 13:51:22 -05003806 if (cfqd->active_queue)
Vivek Goyale5ff0822010-04-26 19:25:11 +02003807 __cfq_slice_expired(cfqd, cfqd->active_queue, 0);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003808
Tejun Heoa612fdd2011-12-14 00:33:41 +01003809 while (!list_empty(&q->icq_list)) {
3810 struct io_cq *icq = list_entry(q->icq_list.next,
Tejun Heoc5869802011-12-14 00:33:41 +01003811 struct io_cq, q_node);
3812 struct io_context *ioc = icq->ioc;
Jens Axboe89850f72006-07-22 16:48:31 +02003813
Tejun Heob2efa052011-12-14 00:33:39 +01003814 spin_lock(&ioc->lock);
Tejun Heoc5869802011-12-14 00:33:41 +01003815 cfq_exit_icq(icq);
3816 cfq_release_icq(icq);
Tejun Heob2efa052011-12-14 00:33:39 +01003817 spin_unlock(&ioc->lock);
Al Virod9ff4182006-03-18 13:51:22 -05003818 }
Jens Axboee2d74ac2006-03-28 08:59:01 +02003819
Vasily Tarasovc2dea2d2007-07-20 10:06:38 +02003820 cfq_put_async_queues(cfqd);
Vivek Goyalb1c35762009-12-03 12:59:47 -05003821 cfq_release_cfq_groups(cfqd);
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003822
3823 /*
3824 * If there are groups which we could not unlink from blkcg list,
3825 * wait for a rcu period for them to be freed.
3826 */
3827 if (cfqd->nr_blkcg_linked_grps)
3828 wait = true;
Jens Axboe15c31be2007-07-10 13:43:25 +02003829
Al Virod9ff4182006-03-18 13:51:22 -05003830 spin_unlock_irq(q->queue_lock);
Al Viroa90d7422006-03-18 12:05:37 -05003831
3832 cfq_shutdown_timer_wq(cfqd);
3833
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003834 /*
3835 * Wait for cfqg->blkg->key accessors to exit their grace periods.
3836 * Do this wait only if there are other unlinked groups out
3837 * there. This can happen if cgroup deletion path claimed the
3838 * responsibility of cleaning up a group before queue cleanup code
3839 * get to the group.
3840 *
3841 * Do not call synchronize_rcu() unconditionally as there are drivers
3842 * which create/delete request queue hundreds of times during scan/boot
3843 * and synchronize_rcu() can take significant time and slow down boot.
3844 */
3845 if (wait)
3846 synchronize_rcu();
Vivek Goyal2abae552011-05-23 10:02:19 +02003847
3848#ifdef CONFIG_CFQ_GROUP_IOSCHED
3849 /* Free up per cpu stats for root group */
3850 free_percpu(cfqd->root_group.blkg.stats_cpu);
3851#endif
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003852 kfree(cfqd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853}
3854
Jens Axboe165125e2007-07-24 09:28:11 +02003855static void *cfq_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
3857 struct cfq_data *cfqd;
Corrado Zoccolo718eee02009-10-26 22:45:29 +01003858 int i, j;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003859 struct cfq_group *cfqg;
Vivek Goyal615f0252009-12-03 12:59:39 -05003860 struct cfq_rb_root *st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Christoph Lameter94f60302007-07-17 04:03:29 -07003862 cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node);
Tejun Heoa73f7302011-12-14 00:33:37 +01003863 if (!cfqd)
Jens Axboebc1c1162006-06-08 08:49:06 +02003864 return NULL;
Konstantin Khlebnikov80b15c72010-05-20 23:21:41 +04003865
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003866 /* Init root service tree */
3867 cfqd->grp_service_tree = CFQ_RB_ROOT;
3868
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003869 /* Init root group */
3870 cfqg = &cfqd->root_group;
Vivek Goyal615f0252009-12-03 12:59:39 -05003871 for_each_cfqg_st(cfqg, i, j, st)
3872 *st = CFQ_RB_ROOT;
Vivek Goyal1fa8f6d2009-12-03 12:59:41 -05003873 RB_CLEAR_NODE(&cfqg->rb_node);
Jens Axboe26a2ac02009-04-23 12:13:27 +02003874
Vivek Goyal25bc6b02009-12-03 12:59:43 -05003875 /* Give preference to root group over other groups */
3876 cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT;
3877
Vivek Goyal25fb5162009-12-03 12:59:46 -05003878#ifdef CONFIG_CFQ_GROUP_IOSCHED
Vivek Goyalb1c35762009-12-03 12:59:47 -05003879 /*
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003880 * Set root group reference to 2. One reference will be dropped when
3881 * all groups on cfqd->cfqg_list are being deleted during queue exit.
3882 * Other reference will remain there as we don't want to delete this
3883 * group as it is statically allocated and gets destroyed when
3884 * throtl_data goes away.
Vivek Goyalb1c35762009-12-03 12:59:47 -05003885 */
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003886 cfqg->ref = 2;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003887
3888 if (blkio_alloc_blkg_stats(&cfqg->blkg)) {
3889 kfree(cfqg);
3890 kfree(cfqd);
3891 return NULL;
3892 }
3893
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003894 rcu_read_lock();
Vivek Goyal5624a4e2011-05-19 15:38:28 -04003895
Vivek Goyale98ef892010-06-18 10:39:47 -04003896 cfq_blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg,
3897 (void *)cfqd, 0);
Vivek Goyaldcf097b2010-04-22 11:54:52 -04003898 rcu_read_unlock();
Vivek Goyal56edf7d2011-05-19 15:38:22 -04003899 cfqd->nr_blkcg_linked_grps++;
3900
3901 /* Add group on cfqd->cfqg_list */
3902 hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list);
Vivek Goyal25fb5162009-12-03 12:59:46 -05003903#endif
Jens Axboe26a2ac02009-04-23 12:13:27 +02003904 /*
3905 * Not strictly needed (since RB_ROOT just clears the node and we
3906 * zeroed cfqd on alloc), but better be safe in case someone decides
3907 * to add magic to the rb code
3908 */
3909 for (i = 0; i < CFQ_PRIO_LISTS; i++)
3910 cfqd->prio_trees[i] = RB_ROOT;
3911
Jens Axboe6118b702009-06-30 09:34:12 +02003912 /*
3913 * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues.
3914 * Grab a permanent reference to it, so that the normal code flow
3915 * will not attempt to free it.
3916 */
3917 cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0);
Shaohua Li30d7b942011-01-07 08:46:59 +01003918 cfqd->oom_cfqq.ref++;
Vivek Goyalcdb16e82009-12-03 12:59:38 -05003919 cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group);
Jens Axboe6118b702009-06-30 09:34:12 +02003920
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 cfqd->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Jens Axboe22e2c502005-06-27 10:55:12 +02003923 init_timer(&cfqd->idle_slice_timer);
3924 cfqd->idle_slice_timer.function = cfq_idle_slice_timer;
3925 cfqd->idle_slice_timer.data = (unsigned long) cfqd;
3926
Jens Axboe23e018a2009-10-05 08:52:35 +02003927 INIT_WORK(&cfqd->unplug_work, cfq_kick_queue);
Jens Axboe22e2c502005-06-27 10:55:12 +02003928
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 cfqd->cfq_quantum = cfq_quantum;
Jens Axboe22e2c502005-06-27 10:55:12 +02003930 cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0];
3931 cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 cfqd->cfq_back_max = cfq_back_max;
3933 cfqd->cfq_back_penalty = cfq_back_penalty;
Jens Axboe22e2c502005-06-27 10:55:12 +02003934 cfqd->cfq_slice[0] = cfq_slice_async;
3935 cfqd->cfq_slice[1] = cfq_slice_sync;
3936 cfqd->cfq_slice_async_rq = cfq_slice_async_rq;
3937 cfqd->cfq_slice_idle = cfq_slice_idle;
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02003938 cfqd->cfq_group_idle = cfq_group_idle;
Jens Axboe963b72f2009-10-03 19:42:18 +02003939 cfqd->cfq_latency = 1;
Corrado Zoccoloe459dd02009-11-26 10:02:57 +01003940 cfqd->hw_tag = -1;
Corrado Zoccoloedc71132009-12-09 20:56:04 +01003941 /*
3942 * we optimistically start assuming sync ops weren't delayed in last
3943 * second, in order to have larger depth for async operations.
3944 */
Corrado Zoccolo573412b2009-12-06 11:48:52 +01003945 cfqd->last_delayed_sync = jiffies - HZ;
Jens Axboebc1c1162006-06-08 08:49:06 +02003946 return cfqd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947}
3948
3949static void cfq_slab_kill(void)
3950{
Jens Axboed6de8be2008-05-28 14:46:59 +02003951 /*
3952 * Caller already ensured that pending RCU callbacks are completed,
3953 * so we should have no busy allocations at this point.
3954 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 if (cfq_pool)
3956 kmem_cache_destroy(cfq_pool);
Tejun Heoc5869802011-12-14 00:33:41 +01003957 if (cfq_icq_pool)
3958 kmem_cache_destroy(cfq_icq_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959}
3960
3961static int __init cfq_slab_setup(void)
3962{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07003963 cfq_pool = KMEM_CACHE(cfq_queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 if (!cfq_pool)
3965 goto fail;
3966
Tejun Heoc5869802011-12-14 00:33:41 +01003967 cfq_icq_pool = KMEM_CACHE(cfq_io_cq, 0);
3968 if (!cfq_icq_pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 goto fail;
3970
3971 return 0;
3972fail:
3973 cfq_slab_kill();
3974 return -ENOMEM;
3975}
3976
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977/*
3978 * sysfs parts below -->
3979 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980static ssize_t
3981cfq_var_show(unsigned int var, char *page)
3982{
3983 return sprintf(page, "%d\n", var);
3984}
3985
3986static ssize_t
3987cfq_var_store(unsigned int *var, const char *page, size_t count)
3988{
3989 char *p = (char *) page;
3990
3991 *var = simple_strtoul(p, &p, 10);
3992 return count;
3993}
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995#define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01003996static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997{ \
Al Viro3d1ab402006-03-18 18:35:43 -05003998 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 unsigned int __data = __VAR; \
4000 if (__CONV) \
4001 __data = jiffies_to_msecs(__data); \
4002 return cfq_var_show(__data, (page)); \
4003}
4004SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004005SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1);
4006SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1);
Al Viroe572ec72006-03-18 22:27:18 -05004007SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0);
4008SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004009SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004010SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02004011SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1);
4012SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1);
4013SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02004014SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015#undef SHOW_FUNCTION
4016
4017#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
Jens Axboeb374d182008-10-31 10:05:07 +01004018static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019{ \
Al Viro3d1ab402006-03-18 18:35:43 -05004020 struct cfq_data *cfqd = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 unsigned int __data; \
4022 int ret = cfq_var_store(&__data, (page), count); \
4023 if (__data < (MIN)) \
4024 __data = (MIN); \
4025 else if (__data > (MAX)) \
4026 __data = (MAX); \
4027 if (__CONV) \
4028 *(__PTR) = msecs_to_jiffies(__data); \
4029 else \
4030 *(__PTR) = __data; \
4031 return ret; \
4032}
4033STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004034STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1,
4035 UINT_MAX, 1);
4036STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1,
4037 UINT_MAX, 1);
Al Viroe572ec72006-03-18 22:27:18 -05004038STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0);
Jens Axboefe094d92008-01-31 13:08:54 +01004039STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1,
4040 UINT_MAX, 0);
Jens Axboe22e2c502005-06-27 10:55:12 +02004041STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1);
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004042STORE_FUNCTION(cfq_group_idle_store, &cfqd->cfq_group_idle, 0, UINT_MAX, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02004043STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1);
4044STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1);
Jens Axboefe094d92008-01-31 13:08:54 +01004045STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1,
4046 UINT_MAX, 0);
Jens Axboe963b72f2009-10-03 19:42:18 +02004047STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048#undef STORE_FUNCTION
4049
Al Viroe572ec72006-03-18 22:27:18 -05004050#define CFQ_ATTR(name) \
4051 __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store)
Jens Axboe3b181522005-06-27 10:56:24 +02004052
Al Viroe572ec72006-03-18 22:27:18 -05004053static struct elv_fs_entry cfq_attrs[] = {
4054 CFQ_ATTR(quantum),
Al Viroe572ec72006-03-18 22:27:18 -05004055 CFQ_ATTR(fifo_expire_sync),
4056 CFQ_ATTR(fifo_expire_async),
4057 CFQ_ATTR(back_seek_max),
4058 CFQ_ATTR(back_seek_penalty),
4059 CFQ_ATTR(slice_sync),
4060 CFQ_ATTR(slice_async),
4061 CFQ_ATTR(slice_async_rq),
4062 CFQ_ATTR(slice_idle),
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004063 CFQ_ATTR(group_idle),
Jens Axboe963b72f2009-10-03 19:42:18 +02004064 CFQ_ATTR(low_latency),
Al Viroe572ec72006-03-18 22:27:18 -05004065 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066};
4067
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068static struct elevator_type iosched_cfq = {
4069 .ops = {
4070 .elevator_merge_fn = cfq_merge,
4071 .elevator_merged_fn = cfq_merged_request,
4072 .elevator_merge_req_fn = cfq_merged_requests,
Jens Axboeda775262006-12-20 11:04:12 +01004073 .elevator_allow_merge_fn = cfq_allow_merge,
Divyesh Shah812d4022010-04-08 21:14:23 -07004074 .elevator_bio_merged_fn = cfq_bio_merged,
Jens Axboeb4878f22005-10-20 16:42:29 +02004075 .elevator_dispatch_fn = cfq_dispatch_requests,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 .elevator_add_req_fn = cfq_insert_request,
Jens Axboeb4878f22005-10-20 16:42:29 +02004077 .elevator_activate_req_fn = cfq_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 .elevator_deactivate_req_fn = cfq_deactivate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 .elevator_completed_req_fn = cfq_completed_request,
Jens Axboe21183b02006-07-13 12:33:14 +02004080 .elevator_former_req_fn = elv_rb_former_request,
4081 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 .elevator_set_req_fn = cfq_set_request,
4083 .elevator_put_req_fn = cfq_put_request,
4084 .elevator_may_queue_fn = cfq_may_queue,
4085 .elevator_init_fn = cfq_init_queue,
4086 .elevator_exit_fn = cfq_exit_queue,
4087 },
Al Viro3d1ab402006-03-18 18:35:43 -05004088 .elevator_attrs = cfq_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 .elevator_name = "cfq",
4090 .elevator_owner = THIS_MODULE,
4091};
4092
Vivek Goyal3e252062009-12-04 10:36:42 -05004093#ifdef CONFIG_CFQ_GROUP_IOSCHED
4094static struct blkio_policy_type blkio_policy_cfq = {
4095 .ops = {
4096 .blkio_unlink_group_fn = cfq_unlink_blkio_group,
4097 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
4098 },
Vivek Goyal062a6442010-09-15 17:06:33 -04004099 .plid = BLKIO_POLICY_PROP,
Vivek Goyal3e252062009-12-04 10:36:42 -05004100};
4101#else
4102static struct blkio_policy_type blkio_policy_cfq;
4103#endif
4104
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105static int __init cfq_init(void)
4106{
Jens Axboe22e2c502005-06-27 10:55:12 +02004107 /*
4108 * could be 0 on HZ < 1000 setups
4109 */
4110 if (!cfq_slice_async)
4111 cfq_slice_async = 1;
4112 if (!cfq_slice_idle)
4113 cfq_slice_idle = 1;
4114
Vivek Goyal80bdf0c2010-08-23 12:24:26 +02004115#ifdef CONFIG_CFQ_GROUP_IOSCHED
4116 if (!cfq_group_idle)
4117 cfq_group_idle = 1;
4118#else
4119 cfq_group_idle = 0;
4120#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 if (cfq_slab_setup())
4122 return -ENOMEM;
4123
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004124 elv_register(&iosched_cfq);
Vivek Goyal3e252062009-12-04 10:36:42 -05004125 blkio_policy_register(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01004127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128}
4129
4130static void __exit cfq_exit(void)
4131{
Vivek Goyal3e252062009-12-04 10:36:42 -05004132 blkio_policy_unregister(&blkio_policy_cfq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 elv_unregister(&iosched_cfq);
Tejun Heob50b6362011-12-14 00:33:39 +01004134 rcu_barrier(); /* make sure all cic RCU frees are complete */
Christoph Hellwig83521d32005-10-30 15:01:39 -08004135 cfq_slab_kill();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136}
4137
4138module_init(cfq_init);
4139module_exit(cfq_exit);
4140
4141MODULE_AUTHOR("Jens Axboe");
4142MODULE_LICENSE("GPL");
4143MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler");