]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
1da177e4 LT |
2 | * 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 | * | |
0fe23479 | 7 | * Copyright (C) 2003 Jens Axboe <[email protected]> |
1da177e4 | 8 | */ |
1da177e4 | 9 | #include <linux/module.h> |
5a0e3ad6 | 10 | #include <linux/slab.h> |
1cc9be68 AV |
11 | #include <linux/blkdev.h> |
12 | #include <linux/elevator.h> | |
ad5ebd2f | 13 | #include <linux/jiffies.h> |
1da177e4 | 14 | #include <linux/rbtree.h> |
22e2c507 | 15 | #include <linux/ioprio.h> |
7b679138 | 16 | #include <linux/blktrace_api.h> |
25bc6b07 | 17 | #include "blk-cgroup.h" |
1da177e4 LT |
18 | |
19 | /* | |
20 | * tunables | |
21 | */ | |
fe094d98 | 22 | /* max queue in one round of service */ |
abc3c744 | 23 | static const int cfq_quantum = 8; |
64100099 | 24 | static const int cfq_fifo_expire[2] = { HZ / 4, HZ / 8 }; |
fe094d98 JA |
25 | /* maximum backwards seek, in KiB */ |
26 | static const int cfq_back_max = 16 * 1024; | |
27 | /* penalty of a backwards seek */ | |
28 | static const int cfq_back_penalty = 2; | |
64100099 | 29 | static const int cfq_slice_sync = HZ / 10; |
3b18152c | 30 | static int cfq_slice_async = HZ / 25; |
64100099 | 31 | static const int cfq_slice_async_rq = 2; |
caaa5f9f | 32 | static int cfq_slice_idle = HZ / 125; |
5db5d642 CZ |
33 | static const int cfq_target_latency = HZ * 3/10; /* 300 ms */ |
34 | static const int cfq_hist_divisor = 4; | |
22e2c507 | 35 | |
d9e7620e | 36 | /* |
0871714e | 37 | * offset from end of service tree |
d9e7620e | 38 | */ |
0871714e | 39 | #define CFQ_IDLE_DELAY (HZ / 5) |
d9e7620e JA |
40 | |
41 | /* | |
42 | * below this threshold, we consider thinktime immediate | |
43 | */ | |
44 | #define CFQ_MIN_TT (2) | |
45 | ||
22e2c507 | 46 | #define CFQ_SLICE_SCALE (5) |
45333d5a | 47 | #define CFQ_HW_QUEUE_MIN (5) |
25bc6b07 | 48 | #define CFQ_SERVICE_SHIFT 12 |
22e2c507 | 49 | |
3dde36dd | 50 | #define CFQQ_SEEK_THR (sector_t)(8 * 100) |
e9ce335d | 51 | #define CFQQ_CLOSE_THR (sector_t)(8 * 1024) |
41647e7a | 52 | #define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32) |
3dde36dd | 53 | #define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8) |
ae54abed | 54 | |
fe094d98 JA |
55 | #define RQ_CIC(rq) \ |
56 | ((struct cfq_io_context *) (rq)->elevator_private) | |
7b679138 | 57 | #define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elevator_private2) |
7f1dc8a2 | 58 | #define RQ_CFQG(rq) (struct cfq_group *) ((rq)->elevator_private3) |
1da177e4 | 59 | |
e18b890b CL |
60 | static struct kmem_cache *cfq_pool; |
61 | static struct kmem_cache *cfq_ioc_pool; | |
1da177e4 | 62 | |
245b2e70 | 63 | static DEFINE_PER_CPU(unsigned long, cfq_ioc_count); |
334e94de | 64 | static struct completion *ioc_gone; |
9a11b4ed | 65 | static DEFINE_SPINLOCK(ioc_gone_lock); |
334e94de | 66 | |
22e2c507 JA |
67 | #define CFQ_PRIO_LISTS IOPRIO_BE_NR |
68 | #define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE) | |
22e2c507 JA |
69 | #define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT) |
70 | ||
206dc69b | 71 | #define sample_valid(samples) ((samples) > 80) |
1fa8f6d6 | 72 | #define rb_entry_cfqg(node) rb_entry((node), struct cfq_group, rb_node) |
206dc69b | 73 | |
cc09e299 JA |
74 | /* |
75 | * Most of our rbtree usage is for sorting with min extraction, so | |
76 | * if we cache the leftmost node we don't have to walk down the tree | |
77 | * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should | |
78 | * move this into the elevator for the rq sorting as well. | |
79 | */ | |
80 | struct cfq_rb_root { | |
81 | struct rb_root rb; | |
82 | struct rb_node *left; | |
aa6f6a3d | 83 | unsigned count; |
73e9ffdd | 84 | unsigned total_weight; |
1fa8f6d6 | 85 | u64 min_vdisktime; |
25bc6b07 | 86 | struct rb_node *active; |
cc09e299 | 87 | }; |
73e9ffdd RK |
88 | #define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, .left = NULL, \ |
89 | .count = 0, .min_vdisktime = 0, } | |
cc09e299 | 90 | |
6118b70b JA |
91 | /* |
92 | * Per process-grouping structure | |
93 | */ | |
94 | struct cfq_queue { | |
95 | /* reference count */ | |
96 | atomic_t ref; | |
97 | /* various state flags, see below */ | |
98 | unsigned int flags; | |
99 | /* parent cfq_data */ | |
100 | struct cfq_data *cfqd; | |
101 | /* service_tree member */ | |
102 | struct rb_node rb_node; | |
103 | /* service_tree key */ | |
104 | unsigned long rb_key; | |
105 | /* prio tree member */ | |
106 | struct rb_node p_node; | |
107 | /* prio tree root we belong to, if any */ | |
108 | struct rb_root *p_root; | |
109 | /* sorted list of pending requests */ | |
110 | struct rb_root sort_list; | |
111 | /* if fifo isn't expired, next request to serve */ | |
112 | struct request *next_rq; | |
113 | /* requests queued in sort_list */ | |
114 | int queued[2]; | |
115 | /* currently allocated requests */ | |
116 | int allocated[2]; | |
117 | /* fifo list of requests in sort_list */ | |
118 | struct list_head fifo; | |
119 | ||
dae739eb VG |
120 | /* time when queue got scheduled in to dispatch first request. */ |
121 | unsigned long dispatch_start; | |
f75edf2d | 122 | unsigned int allocated_slice; |
c4081ba5 | 123 | unsigned int slice_dispatch; |
dae739eb VG |
124 | /* time when first request from queue completed and slice started. */ |
125 | unsigned long slice_start; | |
6118b70b JA |
126 | unsigned long slice_end; |
127 | long slice_resid; | |
6118b70b JA |
128 | |
129 | /* pending metadata requests */ | |
130 | int meta_pending; | |
131 | /* number of requests that are on the dispatch list or inside driver */ | |
132 | int dispatched; | |
133 | ||
134 | /* io prio of this group */ | |
135 | unsigned short ioprio, org_ioprio; | |
136 | unsigned short ioprio_class, org_ioprio_class; | |
137 | ||
c4081ba5 RK |
138 | pid_t pid; |
139 | ||
3dde36dd | 140 | u32 seek_history; |
b2c18e1e JM |
141 | sector_t last_request_pos; |
142 | ||
aa6f6a3d | 143 | struct cfq_rb_root *service_tree; |
df5fe3e8 | 144 | struct cfq_queue *new_cfqq; |
cdb16e8f | 145 | struct cfq_group *cfqg; |
ae30c286 | 146 | struct cfq_group *orig_cfqg; |
6118b70b JA |
147 | }; |
148 | ||
c0324a02 | 149 | /* |
718eee05 | 150 | * First index in the service_trees. |
c0324a02 CZ |
151 | * IDLE is handled separately, so it has negative index |
152 | */ | |
153 | enum wl_prio_t { | |
c0324a02 | 154 | BE_WORKLOAD = 0, |
615f0259 VG |
155 | RT_WORKLOAD = 1, |
156 | IDLE_WORKLOAD = 2, | |
c0324a02 CZ |
157 | }; |
158 | ||
718eee05 CZ |
159 | /* |
160 | * Second index in the service_trees. | |
161 | */ | |
162 | enum wl_type_t { | |
163 | ASYNC_WORKLOAD = 0, | |
164 | SYNC_NOIDLE_WORKLOAD = 1, | |
165 | SYNC_WORKLOAD = 2 | |
166 | }; | |
167 | ||
cdb16e8f VG |
168 | /* This is per cgroup per device grouping structure */ |
169 | struct cfq_group { | |
1fa8f6d6 VG |
170 | /* group service_tree member */ |
171 | struct rb_node rb_node; | |
172 | ||
173 | /* group service_tree key */ | |
174 | u64 vdisktime; | |
25bc6b07 | 175 | unsigned int weight; |
1fa8f6d6 VG |
176 | bool on_st; |
177 | ||
178 | /* number of cfqq currently on this group */ | |
179 | int nr_cfqq; | |
180 | ||
58ff82f3 VG |
181 | /* Per group busy queus average. Useful for workload slice calc. */ |
182 | unsigned int busy_queues_avg[2]; | |
cdb16e8f VG |
183 | /* |
184 | * rr lists of queues with requests, onle rr for each priority class. | |
185 | * Counts are embedded in the cfq_rb_root | |
186 | */ | |
187 | struct cfq_rb_root service_trees[2][3]; | |
188 | struct cfq_rb_root service_tree_idle; | |
dae739eb VG |
189 | |
190 | unsigned long saved_workload_slice; | |
191 | enum wl_type_t saved_workload; | |
192 | enum wl_prio_t saved_serving_prio; | |
25fb5169 VG |
193 | struct blkio_group blkg; |
194 | #ifdef CONFIG_CFQ_GROUP_IOSCHED | |
195 | struct hlist_node cfqd_node; | |
b1c35769 | 196 | atomic_t ref; |
25fb5169 | 197 | #endif |
cdb16e8f | 198 | }; |
718eee05 | 199 | |
22e2c507 JA |
200 | /* |
201 | * Per block device queue structure | |
202 | */ | |
1da177e4 | 203 | struct cfq_data { |
165125e1 | 204 | struct request_queue *queue; |
1fa8f6d6 VG |
205 | /* Root service tree for cfq_groups */ |
206 | struct cfq_rb_root grp_service_tree; | |
cdb16e8f | 207 | struct cfq_group root_group; |
22e2c507 | 208 | |
c0324a02 CZ |
209 | /* |
210 | * The priority currently being served | |
22e2c507 | 211 | */ |
c0324a02 | 212 | enum wl_prio_t serving_prio; |
718eee05 CZ |
213 | enum wl_type_t serving_type; |
214 | unsigned long workload_expires; | |
cdb16e8f | 215 | struct cfq_group *serving_group; |
8e550632 | 216 | bool noidle_tree_requires_idle; |
a36e71f9 JA |
217 | |
218 | /* | |
219 | * Each priority tree is sorted by next_request position. These | |
220 | * trees are used when determining if two or more queues are | |
221 | * interleaving requests (see cfq_close_cooperator). | |
222 | */ | |
223 | struct rb_root prio_trees[CFQ_PRIO_LISTS]; | |
224 | ||
22e2c507 JA |
225 | unsigned int busy_queues; |
226 | ||
53c583d2 CZ |
227 | int rq_in_driver; |
228 | int rq_in_flight[2]; | |
45333d5a AC |
229 | |
230 | /* | |
231 | * queue-depth detection | |
232 | */ | |
233 | int rq_queued; | |
25776e35 | 234 | int hw_tag; |
e459dd08 CZ |
235 | /* |
236 | * hw_tag can be | |
237 | * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection) | |
238 | * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth) | |
239 | * 0 => no NCQ | |
240 | */ | |
241 | int hw_tag_est_depth; | |
242 | unsigned int hw_tag_samples; | |
1da177e4 | 243 | |
22e2c507 JA |
244 | /* |
245 | * idle window management | |
246 | */ | |
247 | struct timer_list idle_slice_timer; | |
23e018a1 | 248 | struct work_struct unplug_work; |
1da177e4 | 249 | |
22e2c507 JA |
250 | struct cfq_queue *active_queue; |
251 | struct cfq_io_context *active_cic; | |
22e2c507 | 252 | |
c2dea2d1 VT |
253 | /* |
254 | * async queue for each priority case | |
255 | */ | |
256 | struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR]; | |
257 | struct cfq_queue *async_idle_cfqq; | |
15c31be4 | 258 | |
6d048f53 | 259 | sector_t last_position; |
1da177e4 | 260 | |
1da177e4 LT |
261 | /* |
262 | * tunables, see top of file | |
263 | */ | |
264 | unsigned int cfq_quantum; | |
22e2c507 | 265 | unsigned int cfq_fifo_expire[2]; |
1da177e4 LT |
266 | unsigned int cfq_back_penalty; |
267 | unsigned int cfq_back_max; | |
22e2c507 JA |
268 | unsigned int cfq_slice[2]; |
269 | unsigned int cfq_slice_async_rq; | |
270 | unsigned int cfq_slice_idle; | |
963b72fc | 271 | unsigned int cfq_latency; |
ae30c286 | 272 | unsigned int cfq_group_isolation; |
d9ff4187 AV |
273 | |
274 | struct list_head cic_list; | |
1da177e4 | 275 | |
6118b70b JA |
276 | /* |
277 | * Fallback dummy cfqq for extreme OOM conditions | |
278 | */ | |
279 | struct cfq_queue oom_cfqq; | |
365722bb | 280 | |
573412b2 | 281 | unsigned long last_delayed_sync; |
25fb5169 VG |
282 | |
283 | /* List of cfq groups being managed on this device*/ | |
284 | struct hlist_head cfqg_list; | |
bb729bc9 | 285 | struct rcu_head rcu; |
1da177e4 LT |
286 | }; |
287 | ||
25fb5169 VG |
288 | static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd); |
289 | ||
cdb16e8f VG |
290 | static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg, |
291 | enum wl_prio_t prio, | |
65b32a57 | 292 | enum wl_type_t type) |
c0324a02 | 293 | { |
1fa8f6d6 VG |
294 | if (!cfqg) |
295 | return NULL; | |
296 | ||
c0324a02 | 297 | if (prio == IDLE_WORKLOAD) |
cdb16e8f | 298 | return &cfqg->service_tree_idle; |
c0324a02 | 299 | |
cdb16e8f | 300 | return &cfqg->service_trees[prio][type]; |
c0324a02 CZ |
301 | } |
302 | ||
3b18152c | 303 | enum cfqq_state_flags { |
b0b8d749 JA |
304 | CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */ |
305 | CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */ | |
b029195d | 306 | CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */ |
b0b8d749 | 307 | CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */ |
b0b8d749 JA |
308 | CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */ |
309 | CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */ | |
310 | CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */ | |
44f7c160 | 311 | CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */ |
91fac317 | 312 | CFQ_CFQQ_FLAG_sync, /* synchronous queue */ |
b3b6d040 | 313 | CFQ_CFQQ_FLAG_coop, /* cfqq is shared */ |
ae54abed | 314 | CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */ |
76280aff | 315 | CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */ |
f75edf2d | 316 | CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */ |
3b18152c JA |
317 | }; |
318 | ||
319 | #define CFQ_CFQQ_FNS(name) \ | |
320 | static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \ | |
321 | { \ | |
fe094d98 | 322 | (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \ |
3b18152c JA |
323 | } \ |
324 | static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \ | |
325 | { \ | |
fe094d98 | 326 | (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \ |
3b18152c JA |
327 | } \ |
328 | static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \ | |
329 | { \ | |
fe094d98 | 330 | return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \ |
3b18152c JA |
331 | } |
332 | ||
333 | CFQ_CFQQ_FNS(on_rr); | |
334 | CFQ_CFQQ_FNS(wait_request); | |
b029195d | 335 | CFQ_CFQQ_FNS(must_dispatch); |
3b18152c | 336 | CFQ_CFQQ_FNS(must_alloc_slice); |
3b18152c JA |
337 | CFQ_CFQQ_FNS(fifo_expire); |
338 | CFQ_CFQQ_FNS(idle_window); | |
339 | CFQ_CFQQ_FNS(prio_changed); | |
44f7c160 | 340 | CFQ_CFQQ_FNS(slice_new); |
91fac317 | 341 | CFQ_CFQQ_FNS(sync); |
a36e71f9 | 342 | CFQ_CFQQ_FNS(coop); |
ae54abed | 343 | CFQ_CFQQ_FNS(split_coop); |
76280aff | 344 | CFQ_CFQQ_FNS(deep); |
f75edf2d | 345 | CFQ_CFQQ_FNS(wait_busy); |
3b18152c JA |
346 | #undef CFQ_CFQQ_FNS |
347 | ||
2868ef7b VG |
348 | #ifdef CONFIG_DEBUG_CFQ_IOSCHED |
349 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \ | |
350 | blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \ | |
351 | cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \ | |
352 | blkg_path(&(cfqq)->cfqg->blkg), ##args); | |
353 | ||
354 | #define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \ | |
355 | blk_add_trace_msg((cfqd)->queue, "%s " fmt, \ | |
356 | blkg_path(&(cfqg)->blkg), ##args); \ | |
357 | ||
358 | #else | |
7b679138 JA |
359 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \ |
360 | blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args) | |
2868ef7b VG |
361 | #define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0); |
362 | #endif | |
7b679138 JA |
363 | #define cfq_log(cfqd, fmt, args...) \ |
364 | blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args) | |
365 | ||
615f0259 VG |
366 | /* Traverses through cfq group service trees */ |
367 | #define for_each_cfqg_st(cfqg, i, j, st) \ | |
368 | for (i = 0; i <= IDLE_WORKLOAD; i++) \ | |
369 | for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\ | |
370 | : &cfqg->service_tree_idle; \ | |
371 | (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \ | |
372 | (i == IDLE_WORKLOAD && j == 0); \ | |
373 | j++, st = i < IDLE_WORKLOAD ? \ | |
374 | &cfqg->service_trees[i][j]: NULL) \ | |
375 | ||
376 | ||
c0324a02 CZ |
377 | static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq) |
378 | { | |
379 | if (cfq_class_idle(cfqq)) | |
380 | return IDLE_WORKLOAD; | |
381 | if (cfq_class_rt(cfqq)) | |
382 | return RT_WORKLOAD; | |
383 | return BE_WORKLOAD; | |
384 | } | |
385 | ||
718eee05 CZ |
386 | |
387 | static enum wl_type_t cfqq_type(struct cfq_queue *cfqq) | |
388 | { | |
389 | if (!cfq_cfqq_sync(cfqq)) | |
390 | return ASYNC_WORKLOAD; | |
391 | if (!cfq_cfqq_idle_window(cfqq)) | |
392 | return SYNC_NOIDLE_WORKLOAD; | |
393 | return SYNC_WORKLOAD; | |
394 | } | |
395 | ||
58ff82f3 VG |
396 | static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl, |
397 | struct cfq_data *cfqd, | |
398 | struct cfq_group *cfqg) | |
c0324a02 CZ |
399 | { |
400 | if (wl == IDLE_WORKLOAD) | |
cdb16e8f | 401 | return cfqg->service_tree_idle.count; |
c0324a02 | 402 | |
cdb16e8f VG |
403 | return cfqg->service_trees[wl][ASYNC_WORKLOAD].count |
404 | + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count | |
405 | + cfqg->service_trees[wl][SYNC_WORKLOAD].count; | |
c0324a02 CZ |
406 | } |
407 | ||
f26bd1f0 VG |
408 | static inline int cfqg_busy_async_queues(struct cfq_data *cfqd, |
409 | struct cfq_group *cfqg) | |
410 | { | |
411 | return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count | |
412 | + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count; | |
413 | } | |
414 | ||
165125e1 | 415 | static void cfq_dispatch_insert(struct request_queue *, struct request *); |
a6151c3a | 416 | static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool, |
fd0928df | 417 | struct io_context *, gfp_t); |
4ac845a2 | 418 | static struct cfq_io_context *cfq_cic_lookup(struct cfq_data *, |
91fac317 VT |
419 | struct io_context *); |
420 | ||
421 | static inline struct cfq_queue *cic_to_cfqq(struct cfq_io_context *cic, | |
a6151c3a | 422 | bool is_sync) |
91fac317 | 423 | { |
a6151c3a | 424 | return cic->cfqq[is_sync]; |
91fac317 VT |
425 | } |
426 | ||
427 | static inline void cic_set_cfqq(struct cfq_io_context *cic, | |
a6151c3a | 428 | struct cfq_queue *cfqq, bool is_sync) |
91fac317 | 429 | { |
a6151c3a | 430 | cic->cfqq[is_sync] = cfqq; |
91fac317 VT |
431 | } |
432 | ||
433 | /* | |
434 | * We regard a request as SYNC, if it's either a read or has the SYNC bit | |
435 | * set (in which case it could also be direct WRITE). | |
436 | */ | |
a6151c3a | 437 | static inline bool cfq_bio_sync(struct bio *bio) |
91fac317 | 438 | { |
a6151c3a | 439 | return bio_data_dir(bio) == READ || bio_rw_flagged(bio, BIO_RW_SYNCIO); |
91fac317 | 440 | } |
1da177e4 | 441 | |
99f95e52 AM |
442 | /* |
443 | * scheduler run of queue, if there are requests pending and no one in the | |
444 | * driver that will restart queueing | |
445 | */ | |
23e018a1 | 446 | static inline void cfq_schedule_dispatch(struct cfq_data *cfqd) |
99f95e52 | 447 | { |
7b679138 JA |
448 | if (cfqd->busy_queues) { |
449 | cfq_log(cfqd, "schedule dispatch"); | |
23e018a1 | 450 | kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work); |
7b679138 | 451 | } |
99f95e52 AM |
452 | } |
453 | ||
165125e1 | 454 | static int cfq_queue_empty(struct request_queue *q) |
99f95e52 AM |
455 | { |
456 | struct cfq_data *cfqd = q->elevator->elevator_data; | |
457 | ||
f04a6424 | 458 | return !cfqd->rq_queued; |
99f95e52 AM |
459 | } |
460 | ||
44f7c160 JA |
461 | /* |
462 | * Scale schedule slice based on io priority. Use the sync time slice only | |
463 | * if a queue is marked sync and has sync io queued. A sync queue with async | |
464 | * io only, should not get full sync slice length. | |
465 | */ | |
a6151c3a | 466 | static inline int cfq_prio_slice(struct cfq_data *cfqd, bool sync, |
d9e7620e | 467 | unsigned short prio) |
44f7c160 | 468 | { |
d9e7620e | 469 | const int base_slice = cfqd->cfq_slice[sync]; |
44f7c160 | 470 | |
d9e7620e JA |
471 | WARN_ON(prio >= IOPRIO_BE_NR); |
472 | ||
473 | return base_slice + (base_slice/CFQ_SLICE_SCALE * (4 - prio)); | |
474 | } | |
44f7c160 | 475 | |
d9e7620e JA |
476 | static inline int |
477 | cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |
478 | { | |
479 | return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio); | |
44f7c160 JA |
480 | } |
481 | ||
25bc6b07 VG |
482 | static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg) |
483 | { | |
484 | u64 d = delta << CFQ_SERVICE_SHIFT; | |
485 | ||
486 | d = d * BLKIO_WEIGHT_DEFAULT; | |
487 | do_div(d, cfqg->weight); | |
488 | return d; | |
489 | } | |
490 | ||
491 | static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime) | |
492 | { | |
493 | s64 delta = (s64)(vdisktime - min_vdisktime); | |
494 | if (delta > 0) | |
495 | min_vdisktime = vdisktime; | |
496 | ||
497 | return min_vdisktime; | |
498 | } | |
499 | ||
500 | static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime) | |
501 | { | |
502 | s64 delta = (s64)(vdisktime - min_vdisktime); | |
503 | if (delta < 0) | |
504 | min_vdisktime = vdisktime; | |
505 | ||
506 | return min_vdisktime; | |
507 | } | |
508 | ||
509 | static void update_min_vdisktime(struct cfq_rb_root *st) | |
510 | { | |
511 | u64 vdisktime = st->min_vdisktime; | |
512 | struct cfq_group *cfqg; | |
513 | ||
514 | if (st->active) { | |
515 | cfqg = rb_entry_cfqg(st->active); | |
516 | vdisktime = cfqg->vdisktime; | |
517 | } | |
518 | ||
519 | if (st->left) { | |
520 | cfqg = rb_entry_cfqg(st->left); | |
521 | vdisktime = min_vdisktime(vdisktime, cfqg->vdisktime); | |
522 | } | |
523 | ||
524 | st->min_vdisktime = max_vdisktime(st->min_vdisktime, vdisktime); | |
525 | } | |
526 | ||
5db5d642 CZ |
527 | /* |
528 | * get averaged number of queues of RT/BE priority. | |
529 | * average is updated, with a formula that gives more weight to higher numbers, | |
530 | * to quickly follows sudden increases and decrease slowly | |
531 | */ | |
532 | ||
58ff82f3 VG |
533 | static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd, |
534 | struct cfq_group *cfqg, bool rt) | |
5869619c | 535 | { |
5db5d642 CZ |
536 | unsigned min_q, max_q; |
537 | unsigned mult = cfq_hist_divisor - 1; | |
538 | unsigned round = cfq_hist_divisor / 2; | |
58ff82f3 | 539 | unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg); |
5db5d642 | 540 | |
58ff82f3 VG |
541 | min_q = min(cfqg->busy_queues_avg[rt], busy); |
542 | max_q = max(cfqg->busy_queues_avg[rt], busy); | |
543 | cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) / | |
5db5d642 | 544 | cfq_hist_divisor; |
58ff82f3 VG |
545 | return cfqg->busy_queues_avg[rt]; |
546 | } | |
547 | ||
548 | static inline unsigned | |
549 | cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg) | |
550 | { | |
551 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | |
552 | ||
553 | return cfq_target_latency * cfqg->weight / st->total_weight; | |
5db5d642 CZ |
554 | } |
555 | ||
44f7c160 JA |
556 | static inline void |
557 | cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |
558 | { | |
5db5d642 CZ |
559 | unsigned slice = cfq_prio_to_slice(cfqd, cfqq); |
560 | if (cfqd->cfq_latency) { | |
58ff82f3 VG |
561 | /* |
562 | * interested queues (we consider only the ones with the same | |
563 | * priority class in the cfq group) | |
564 | */ | |
565 | unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg, | |
566 | cfq_class_rt(cfqq)); | |
5db5d642 CZ |
567 | unsigned sync_slice = cfqd->cfq_slice[1]; |
568 | unsigned expect_latency = sync_slice * iq; | |
58ff82f3 VG |
569 | unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg); |
570 | ||
571 | if (expect_latency > group_slice) { | |
5db5d642 CZ |
572 | unsigned base_low_slice = 2 * cfqd->cfq_slice_idle; |
573 | /* scale low_slice according to IO priority | |
574 | * and sync vs async */ | |
575 | unsigned low_slice = | |
576 | min(slice, base_low_slice * slice / sync_slice); | |
577 | /* the adapted slice value is scaled to fit all iqs | |
578 | * into the target latency */ | |
58ff82f3 | 579 | slice = max(slice * group_slice / expect_latency, |
5db5d642 CZ |
580 | low_slice); |
581 | } | |
582 | } | |
dae739eb | 583 | cfqq->slice_start = jiffies; |
5db5d642 | 584 | cfqq->slice_end = jiffies + slice; |
f75edf2d | 585 | cfqq->allocated_slice = slice; |
7b679138 | 586 | cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies); |
44f7c160 JA |
587 | } |
588 | ||
589 | /* | |
590 | * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end | |
591 | * isn't valid until the first request from the dispatch is activated | |
592 | * and the slice time set. | |
593 | */ | |
a6151c3a | 594 | static inline bool cfq_slice_used(struct cfq_queue *cfqq) |
44f7c160 JA |
595 | { |
596 | if (cfq_cfqq_slice_new(cfqq)) | |
597 | return 0; | |
598 | if (time_before(jiffies, cfqq->slice_end)) | |
599 | return 0; | |
600 | ||
601 | return 1; | |
602 | } | |
603 | ||
1da177e4 | 604 | /* |
5e705374 | 605 | * Lifted from AS - choose which of rq1 and rq2 that is best served now. |
1da177e4 | 606 | * We choose the request that is closest to the head right now. Distance |
e8a99053 | 607 | * behind the head is penalized and only allowed to a certain extent. |
1da177e4 | 608 | */ |
5e705374 | 609 | static struct request * |
cf7c25cf | 610 | cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last) |
1da177e4 | 611 | { |
cf7c25cf | 612 | sector_t s1, s2, d1 = 0, d2 = 0; |
1da177e4 | 613 | unsigned long back_max; |
e8a99053 AM |
614 | #define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */ |
615 | #define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */ | |
616 | unsigned wrap = 0; /* bit mask: requests behind the disk head? */ | |
1da177e4 | 617 | |
5e705374 JA |
618 | if (rq1 == NULL || rq1 == rq2) |
619 | return rq2; | |
620 | if (rq2 == NULL) | |
621 | return rq1; | |
9c2c38a1 | 622 | |
5e705374 JA |
623 | if (rq_is_sync(rq1) && !rq_is_sync(rq2)) |
624 | return rq1; | |
625 | else if (rq_is_sync(rq2) && !rq_is_sync(rq1)) | |
626 | return rq2; | |
374f84ac JA |
627 | if (rq_is_meta(rq1) && !rq_is_meta(rq2)) |
628 | return rq1; | |
629 | else if (rq_is_meta(rq2) && !rq_is_meta(rq1)) | |
630 | return rq2; | |
1da177e4 | 631 | |
83096ebf TH |
632 | s1 = blk_rq_pos(rq1); |
633 | s2 = blk_rq_pos(rq2); | |
1da177e4 | 634 | |
1da177e4 LT |
635 | /* |
636 | * by definition, 1KiB is 2 sectors | |
637 | */ | |
638 | back_max = cfqd->cfq_back_max * 2; | |
639 | ||
640 | /* | |
641 | * Strict one way elevator _except_ in the case where we allow | |
642 | * short backward seeks which are biased as twice the cost of a | |
643 | * similar forward seek. | |
644 | */ | |
645 | if (s1 >= last) | |
646 | d1 = s1 - last; | |
647 | else if (s1 + back_max >= last) | |
648 | d1 = (last - s1) * cfqd->cfq_back_penalty; | |
649 | else | |
e8a99053 | 650 | wrap |= CFQ_RQ1_WRAP; |
1da177e4 LT |
651 | |
652 | if (s2 >= last) | |
653 | d2 = s2 - last; | |
654 | else if (s2 + back_max >= last) | |
655 | d2 = (last - s2) * cfqd->cfq_back_penalty; | |
656 | else | |
e8a99053 | 657 | wrap |= CFQ_RQ2_WRAP; |
1da177e4 LT |
658 | |
659 | /* Found required data */ | |
e8a99053 AM |
660 | |
661 | /* | |
662 | * By doing switch() on the bit mask "wrap" we avoid having to | |
663 | * check two variables for all permutations: --> faster! | |
664 | */ | |
665 | switch (wrap) { | |
5e705374 | 666 | case 0: /* common case for CFQ: rq1 and rq2 not wrapped */ |
e8a99053 | 667 | if (d1 < d2) |
5e705374 | 668 | return rq1; |
e8a99053 | 669 | else if (d2 < d1) |
5e705374 | 670 | return rq2; |
e8a99053 AM |
671 | else { |
672 | if (s1 >= s2) | |
5e705374 | 673 | return rq1; |
e8a99053 | 674 | else |
5e705374 | 675 | return rq2; |
e8a99053 | 676 | } |
1da177e4 | 677 | |
e8a99053 | 678 | case CFQ_RQ2_WRAP: |
5e705374 | 679 | return rq1; |
e8a99053 | 680 | case CFQ_RQ1_WRAP: |
5e705374 JA |
681 | return rq2; |
682 | case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */ | |
e8a99053 AM |
683 | default: |
684 | /* | |
685 | * Since both rqs are wrapped, | |
686 | * start with the one that's further behind head | |
687 | * (--> only *one* back seek required), | |
688 | * since back seek takes more time than forward. | |
689 | */ | |
690 | if (s1 <= s2) | |
5e705374 | 691 | return rq1; |
1da177e4 | 692 | else |
5e705374 | 693 | return rq2; |
1da177e4 LT |
694 | } |
695 | } | |
696 | ||
498d3aa2 JA |
697 | /* |
698 | * The below is leftmost cache rbtree addon | |
699 | */ | |
0871714e | 700 | static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root) |
cc09e299 | 701 | { |
615f0259 VG |
702 | /* Service tree is empty */ |
703 | if (!root->count) | |
704 | return NULL; | |
705 | ||
cc09e299 JA |
706 | if (!root->left) |
707 | root->left = rb_first(&root->rb); | |
708 | ||
0871714e JA |
709 | if (root->left) |
710 | return rb_entry(root->left, struct cfq_queue, rb_node); | |
711 | ||
712 | return NULL; | |
cc09e299 JA |
713 | } |
714 | ||
1fa8f6d6 VG |
715 | static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root) |
716 | { | |
717 | if (!root->left) | |
718 | root->left = rb_first(&root->rb); | |
719 | ||
720 | if (root->left) | |
721 | return rb_entry_cfqg(root->left); | |
722 | ||
723 | return NULL; | |
724 | } | |
725 | ||
a36e71f9 JA |
726 | static void rb_erase_init(struct rb_node *n, struct rb_root *root) |
727 | { | |
728 | rb_erase(n, root); | |
729 | RB_CLEAR_NODE(n); | |
730 | } | |
731 | ||
cc09e299 JA |
732 | static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root) |
733 | { | |
734 | if (root->left == n) | |
735 | root->left = NULL; | |
a36e71f9 | 736 | rb_erase_init(n, &root->rb); |
aa6f6a3d | 737 | --root->count; |
cc09e299 JA |
738 | } |
739 | ||
1da177e4 LT |
740 | /* |
741 | * would be nice to take fifo expire time into account as well | |
742 | */ | |
5e705374 JA |
743 | static struct request * |
744 | cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |
745 | struct request *last) | |
1da177e4 | 746 | { |
21183b07 JA |
747 | struct rb_node *rbnext = rb_next(&last->rb_node); |
748 | struct rb_node *rbprev = rb_prev(&last->rb_node); | |
5e705374 | 749 | struct request *next = NULL, *prev = NULL; |
1da177e4 | 750 | |
21183b07 | 751 | BUG_ON(RB_EMPTY_NODE(&last->rb_node)); |
1da177e4 LT |
752 | |
753 | if (rbprev) | |
5e705374 | 754 | prev = rb_entry_rq(rbprev); |
1da177e4 | 755 | |
21183b07 | 756 | if (rbnext) |
5e705374 | 757 | next = rb_entry_rq(rbnext); |
21183b07 JA |
758 | else { |
759 | rbnext = rb_first(&cfqq->sort_list); | |
760 | if (rbnext && rbnext != &last->rb_node) | |
5e705374 | 761 | next = rb_entry_rq(rbnext); |
21183b07 | 762 | } |
1da177e4 | 763 | |
cf7c25cf | 764 | return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last)); |
1da177e4 LT |
765 | } |
766 | ||
d9e7620e JA |
767 | static unsigned long cfq_slice_offset(struct cfq_data *cfqd, |
768 | struct cfq_queue *cfqq) | |
1da177e4 | 769 | { |
d9e7620e JA |
770 | /* |
771 | * just an approximation, should be ok. | |
772 | */ | |
cdb16e8f | 773 | return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) - |
464191c6 | 774 | cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio)); |
d9e7620e JA |
775 | } |
776 | ||
1fa8f6d6 VG |
777 | static inline s64 |
778 | cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg) | |
779 | { | |
780 | return cfqg->vdisktime - st->min_vdisktime; | |
781 | } | |
782 | ||
783 | static void | |
784 | __cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg) | |
785 | { | |
786 | struct rb_node **node = &st->rb.rb_node; | |
787 | struct rb_node *parent = NULL; | |
788 | struct cfq_group *__cfqg; | |
789 | s64 key = cfqg_key(st, cfqg); | |
790 | int left = 1; | |
791 | ||
792 | while (*node != NULL) { | |
793 | parent = *node; | |
794 | __cfqg = rb_entry_cfqg(parent); | |
795 | ||
796 | if (key < cfqg_key(st, __cfqg)) | |
797 | node = &parent->rb_left; | |
798 | else { | |
799 | node = &parent->rb_right; | |
800 | left = 0; | |
801 | } | |
802 | } | |
803 | ||
804 | if (left) | |
805 | st->left = &cfqg->rb_node; | |
806 | ||
807 | rb_link_node(&cfqg->rb_node, parent, node); | |
808 | rb_insert_color(&cfqg->rb_node, &st->rb); | |
809 | } | |
810 | ||
811 | static void | |
812 | cfq_group_service_tree_add(struct cfq_data *cfqd, struct cfq_group *cfqg) | |
813 | { | |
814 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | |
815 | struct cfq_group *__cfqg; | |
816 | struct rb_node *n; | |
817 | ||
818 | cfqg->nr_cfqq++; | |
819 | if (cfqg->on_st) | |
820 | return; | |
821 | ||
822 | /* | |
823 | * Currently put the group at the end. Later implement something | |
824 | * so that groups get lesser vtime based on their weights, so that | |
825 | * if group does not loose all if it was not continously backlogged. | |
826 | */ | |
827 | n = rb_last(&st->rb); | |
828 | if (n) { | |
829 | __cfqg = rb_entry_cfqg(n); | |
830 | cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY; | |
831 | } else | |
832 | cfqg->vdisktime = st->min_vdisktime; | |
833 | ||
834 | __cfq_group_service_tree_add(st, cfqg); | |
835 | cfqg->on_st = true; | |
58ff82f3 | 836 | st->total_weight += cfqg->weight; |
1fa8f6d6 VG |
837 | } |
838 | ||
839 | static void | |
840 | cfq_group_service_tree_del(struct cfq_data *cfqd, struct cfq_group *cfqg) | |
841 | { | |
842 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | |
843 | ||
25bc6b07 VG |
844 | if (st->active == &cfqg->rb_node) |
845 | st->active = NULL; | |
846 | ||
1fa8f6d6 VG |
847 | BUG_ON(cfqg->nr_cfqq < 1); |
848 | cfqg->nr_cfqq--; | |
25bc6b07 | 849 | |
1fa8f6d6 VG |
850 | /* If there are other cfq queues under this group, don't delete it */ |
851 | if (cfqg->nr_cfqq) | |
852 | return; | |
853 | ||
2868ef7b | 854 | cfq_log_cfqg(cfqd, cfqg, "del_from_rr group"); |
1fa8f6d6 | 855 | cfqg->on_st = false; |
58ff82f3 | 856 | st->total_weight -= cfqg->weight; |
1fa8f6d6 VG |
857 | if (!RB_EMPTY_NODE(&cfqg->rb_node)) |
858 | cfq_rb_erase(&cfqg->rb_node, st); | |
dae739eb | 859 | cfqg->saved_workload_slice = 0; |
9195291e | 860 | blkiocg_update_dequeue_stats(&cfqg->blkg, 1); |
dae739eb VG |
861 | } |
862 | ||
863 | static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq) | |
864 | { | |
f75edf2d | 865 | unsigned int slice_used; |
dae739eb VG |
866 | |
867 | /* | |
868 | * Queue got expired before even a single request completed or | |
869 | * got expired immediately after first request completion. | |
870 | */ | |
871 | if (!cfqq->slice_start || cfqq->slice_start == jiffies) { | |
872 | /* | |
873 | * Also charge the seek time incurred to the group, otherwise | |
874 | * if there are mutiple queues in the group, each can dispatch | |
875 | * a single request on seeky media and cause lots of seek time | |
876 | * and group will never know it. | |
877 | */ | |
878 | slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start), | |
879 | 1); | |
880 | } else { | |
881 | slice_used = jiffies - cfqq->slice_start; | |
f75edf2d VG |
882 | if (slice_used > cfqq->allocated_slice) |
883 | slice_used = cfqq->allocated_slice; | |
dae739eb VG |
884 | } |
885 | ||
9a0785b0 | 886 | cfq_log_cfqq(cfqq->cfqd, cfqq, "sl_used=%u", slice_used); |
dae739eb VG |
887 | return slice_used; |
888 | } | |
889 | ||
890 | static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg, | |
e5ff082e | 891 | struct cfq_queue *cfqq) |
dae739eb VG |
892 | { |
893 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | |
f26bd1f0 VG |
894 | unsigned int used_sl, charge_sl; |
895 | int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg) | |
896 | - cfqg->service_tree_idle.count; | |
897 | ||
898 | BUG_ON(nr_sync < 0); | |
899 | used_sl = charge_sl = cfq_cfqq_slice_usage(cfqq); | |
dae739eb | 900 | |
f26bd1f0 VG |
901 | if (!cfq_cfqq_sync(cfqq) && !nr_sync) |
902 | charge_sl = cfqq->allocated_slice; | |
dae739eb VG |
903 | |
904 | /* Can't update vdisktime while group is on service tree */ | |
905 | cfq_rb_erase(&cfqg->rb_node, st); | |
f26bd1f0 | 906 | cfqg->vdisktime += cfq_scale_slice(charge_sl, cfqg); |
dae739eb VG |
907 | __cfq_group_service_tree_add(st, cfqg); |
908 | ||
909 | /* This group is being expired. Save the context */ | |
910 | if (time_after(cfqd->workload_expires, jiffies)) { | |
911 | cfqg->saved_workload_slice = cfqd->workload_expires | |
912 | - jiffies; | |
913 | cfqg->saved_workload = cfqd->serving_type; | |
914 | cfqg->saved_serving_prio = cfqd->serving_prio; | |
915 | } else | |
916 | cfqg->saved_workload_slice = 0; | |
2868ef7b VG |
917 | |
918 | cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime, | |
919 | st->min_vdisktime); | |
303a3acb | 920 | blkiocg_update_timeslice_used(&cfqg->blkg, used_sl); |
e5ff082e | 921 | blkiocg_set_start_empty_time(&cfqg->blkg); |
1fa8f6d6 VG |
922 | } |
923 | ||
25fb5169 VG |
924 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
925 | static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg) | |
926 | { | |
927 | if (blkg) | |
928 | return container_of(blkg, struct cfq_group, blkg); | |
929 | return NULL; | |
930 | } | |
931 | ||
f8d461d6 VG |
932 | void |
933 | cfq_update_blkio_group_weight(struct blkio_group *blkg, unsigned int weight) | |
934 | { | |
935 | cfqg_of_blkg(blkg)->weight = weight; | |
936 | } | |
937 | ||
25fb5169 VG |
938 | static struct cfq_group * |
939 | cfq_find_alloc_cfqg(struct cfq_data *cfqd, struct cgroup *cgroup, int create) | |
940 | { | |
941 | struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup); | |
942 | struct cfq_group *cfqg = NULL; | |
943 | void *key = cfqd; | |
944 | int i, j; | |
945 | struct cfq_rb_root *st; | |
22084190 VG |
946 | struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info; |
947 | unsigned int major, minor; | |
25fb5169 | 948 | |
25fb5169 | 949 | cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key)); |
a74b2ada RB |
950 | if (cfqg && !cfqg->blkg.dev && bdi->dev && dev_name(bdi->dev)) { |
951 | sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor); | |
952 | cfqg->blkg.dev = MKDEV(major, minor); | |
953 | goto done; | |
954 | } | |
25fb5169 VG |
955 | if (cfqg || !create) |
956 | goto done; | |
957 | ||
958 | cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node); | |
959 | if (!cfqg) | |
960 | goto done; | |
961 | ||
25fb5169 VG |
962 | for_each_cfqg_st(cfqg, i, j, st) |
963 | *st = CFQ_RB_ROOT; | |
964 | RB_CLEAR_NODE(&cfqg->rb_node); | |
965 | ||
b1c35769 VG |
966 | /* |
967 | * Take the initial reference that will be released on destroy | |
968 | * This can be thought of a joint reference by cgroup and | |
969 | * elevator which will be dropped by either elevator exit | |
970 | * or cgroup deletion path depending on who is exiting first. | |
971 | */ | |
972 | atomic_set(&cfqg->ref, 1); | |
973 | ||
25fb5169 | 974 | /* Add group onto cgroup list */ |
22084190 VG |
975 | sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor); |
976 | blkiocg_add_blkio_group(blkcg, &cfqg->blkg, (void *)cfqd, | |
977 | MKDEV(major, minor)); | |
34d0f179 | 978 | cfqg->weight = blkcg_get_weight(blkcg, cfqg->blkg.dev); |
25fb5169 VG |
979 | |
980 | /* Add group on cfqd list */ | |
981 | hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list); | |
982 | ||
983 | done: | |
25fb5169 VG |
984 | return cfqg; |
985 | } | |
986 | ||
987 | /* | |
988 | * Search for the cfq group current task belongs to. If create = 1, then also | |
989 | * create the cfq group if it does not exist. request_queue lock must be held. | |
990 | */ | |
991 | static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create) | |
992 | { | |
993 | struct cgroup *cgroup; | |
994 | struct cfq_group *cfqg = NULL; | |
995 | ||
996 | rcu_read_lock(); | |
997 | cgroup = task_cgroup(current, blkio_subsys_id); | |
998 | cfqg = cfq_find_alloc_cfqg(cfqd, cgroup, create); | |
999 | if (!cfqg && create) | |
1000 | cfqg = &cfqd->root_group; | |
1001 | rcu_read_unlock(); | |
1002 | return cfqg; | |
1003 | } | |
1004 | ||
7f1dc8a2 VG |
1005 | static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg) |
1006 | { | |
1007 | atomic_inc(&cfqg->ref); | |
1008 | return cfqg; | |
1009 | } | |
1010 | ||
25fb5169 VG |
1011 | static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) |
1012 | { | |
1013 | /* Currently, all async queues are mapped to root group */ | |
1014 | if (!cfq_cfqq_sync(cfqq)) | |
1015 | cfqg = &cfqq->cfqd->root_group; | |
1016 | ||
1017 | cfqq->cfqg = cfqg; | |
b1c35769 VG |
1018 | /* cfqq reference on cfqg */ |
1019 | atomic_inc(&cfqq->cfqg->ref); | |
1020 | } | |
1021 | ||
1022 | static void cfq_put_cfqg(struct cfq_group *cfqg) | |
1023 | { | |
1024 | struct cfq_rb_root *st; | |
1025 | int i, j; | |
1026 | ||
1027 | BUG_ON(atomic_read(&cfqg->ref) <= 0); | |
1028 | if (!atomic_dec_and_test(&cfqg->ref)) | |
1029 | return; | |
1030 | for_each_cfqg_st(cfqg, i, j, st) | |
1031 | BUG_ON(!RB_EMPTY_ROOT(&st->rb) || st->active != NULL); | |
1032 | kfree(cfqg); | |
1033 | } | |
1034 | ||
1035 | static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg) | |
1036 | { | |
1037 | /* Something wrong if we are trying to remove same group twice */ | |
1038 | BUG_ON(hlist_unhashed(&cfqg->cfqd_node)); | |
1039 | ||
1040 | hlist_del_init(&cfqg->cfqd_node); | |
1041 | ||
1042 | /* | |
1043 | * Put the reference taken at the time of creation so that when all | |
1044 | * queues are gone, group can be destroyed. | |
1045 | */ | |
1046 | cfq_put_cfqg(cfqg); | |
1047 | } | |
1048 | ||
1049 | static void cfq_release_cfq_groups(struct cfq_data *cfqd) | |
1050 | { | |
1051 | struct hlist_node *pos, *n; | |
1052 | struct cfq_group *cfqg; | |
1053 | ||
1054 | hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) { | |
1055 | /* | |
1056 | * If cgroup removal path got to blk_group first and removed | |
1057 | * it from cgroup list, then it will take care of destroying | |
1058 | * cfqg also. | |
1059 | */ | |
1060 | if (!blkiocg_del_blkio_group(&cfqg->blkg)) | |
1061 | cfq_destroy_cfqg(cfqd, cfqg); | |
1062 | } | |
25fb5169 | 1063 | } |
b1c35769 VG |
1064 | |
1065 | /* | |
1066 | * Blk cgroup controller notification saying that blkio_group object is being | |
1067 | * delinked as associated cgroup object is going away. That also means that | |
1068 | * no new IO will come in this group. So get rid of this group as soon as | |
1069 | * any pending IO in the group is finished. | |
1070 | * | |
1071 | * This function is called under rcu_read_lock(). key is the rcu protected | |
1072 | * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu | |
1073 | * read lock. | |
1074 | * | |
1075 | * "key" was fetched from blkio_group under blkio_cgroup->lock. That means | |
1076 | * it should not be NULL as even if elevator was exiting, cgroup deltion | |
1077 | * path got to it first. | |
1078 | */ | |
1079 | void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg) | |
1080 | { | |
1081 | unsigned long flags; | |
1082 | struct cfq_data *cfqd = key; | |
1083 | ||
1084 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); | |
1085 | cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg)); | |
1086 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); | |
1087 | } | |
1088 | ||
25fb5169 VG |
1089 | #else /* GROUP_IOSCHED */ |
1090 | static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create) | |
1091 | { | |
1092 | return &cfqd->root_group; | |
1093 | } | |
7f1dc8a2 VG |
1094 | |
1095 | static inline struct cfq_group *cfq_ref_get_cfqg(struct cfq_group *cfqg) | |
1096 | { | |
1097 | return NULL; | |
1098 | } | |
1099 | ||
25fb5169 VG |
1100 | static inline void |
1101 | cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) { | |
1102 | cfqq->cfqg = cfqg; | |
1103 | } | |
1104 | ||
b1c35769 VG |
1105 | static void cfq_release_cfq_groups(struct cfq_data *cfqd) {} |
1106 | static inline void cfq_put_cfqg(struct cfq_group *cfqg) {} | |
1107 | ||
25fb5169 VG |
1108 | #endif /* GROUP_IOSCHED */ |
1109 | ||
498d3aa2 | 1110 | /* |
c0324a02 | 1111 | * The cfqd->service_trees holds all pending cfq_queue's that have |
498d3aa2 JA |
1112 | * requests waiting to be processed. It is sorted in the order that |
1113 | * we will service the queues. | |
1114 | */ | |
a36e71f9 | 1115 | static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
a6151c3a | 1116 | bool add_front) |
d9e7620e | 1117 | { |
0871714e JA |
1118 | struct rb_node **p, *parent; |
1119 | struct cfq_queue *__cfqq; | |
d9e7620e | 1120 | unsigned long rb_key; |
c0324a02 | 1121 | struct cfq_rb_root *service_tree; |
498d3aa2 | 1122 | int left; |
dae739eb | 1123 | int new_cfqq = 1; |
ae30c286 VG |
1124 | int group_changed = 0; |
1125 | ||
1126 | #ifdef CONFIG_CFQ_GROUP_IOSCHED | |
1127 | if (!cfqd->cfq_group_isolation | |
1128 | && cfqq_type(cfqq) == SYNC_NOIDLE_WORKLOAD | |
1129 | && cfqq->cfqg && cfqq->cfqg != &cfqd->root_group) { | |
1130 | /* Move this cfq to root group */ | |
1131 | cfq_log_cfqq(cfqd, cfqq, "moving to root group"); | |
1132 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) | |
1133 | cfq_group_service_tree_del(cfqd, cfqq->cfqg); | |
1134 | cfqq->orig_cfqg = cfqq->cfqg; | |
1135 | cfqq->cfqg = &cfqd->root_group; | |
1136 | atomic_inc(&cfqd->root_group.ref); | |
1137 | group_changed = 1; | |
1138 | } else if (!cfqd->cfq_group_isolation | |
1139 | && cfqq_type(cfqq) == SYNC_WORKLOAD && cfqq->orig_cfqg) { | |
1140 | /* cfqq is sequential now needs to go to its original group */ | |
1141 | BUG_ON(cfqq->cfqg != &cfqd->root_group); | |
1142 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) | |
1143 | cfq_group_service_tree_del(cfqd, cfqq->cfqg); | |
1144 | cfq_put_cfqg(cfqq->cfqg); | |
1145 | cfqq->cfqg = cfqq->orig_cfqg; | |
1146 | cfqq->orig_cfqg = NULL; | |
1147 | group_changed = 1; | |
1148 | cfq_log_cfqq(cfqd, cfqq, "moved to origin group"); | |
1149 | } | |
1150 | #endif | |
d9e7620e | 1151 | |
cdb16e8f | 1152 | service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq), |
65b32a57 | 1153 | cfqq_type(cfqq)); |
0871714e JA |
1154 | if (cfq_class_idle(cfqq)) { |
1155 | rb_key = CFQ_IDLE_DELAY; | |
aa6f6a3d | 1156 | parent = rb_last(&service_tree->rb); |
0871714e JA |
1157 | if (parent && parent != &cfqq->rb_node) { |
1158 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); | |
1159 | rb_key += __cfqq->rb_key; | |
1160 | } else | |
1161 | rb_key += jiffies; | |
1162 | } else if (!add_front) { | |
b9c8946b JA |
1163 | /* |
1164 | * Get our rb key offset. Subtract any residual slice | |
1165 | * value carried from last service. A negative resid | |
1166 | * count indicates slice overrun, and this should position | |
1167 | * the next service time further away in the tree. | |
1168 | */ | |
edd75ffd | 1169 | rb_key = cfq_slice_offset(cfqd, cfqq) + jiffies; |
b9c8946b | 1170 | rb_key -= cfqq->slice_resid; |
edd75ffd | 1171 | cfqq->slice_resid = 0; |
48e025e6 CZ |
1172 | } else { |
1173 | rb_key = -HZ; | |
aa6f6a3d | 1174 | __cfqq = cfq_rb_first(service_tree); |
48e025e6 CZ |
1175 | rb_key += __cfqq ? __cfqq->rb_key : jiffies; |
1176 | } | |
1da177e4 | 1177 | |
d9e7620e | 1178 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) { |
dae739eb | 1179 | new_cfqq = 0; |
99f9628a | 1180 | /* |
d9e7620e | 1181 | * same position, nothing more to do |
99f9628a | 1182 | */ |
c0324a02 CZ |
1183 | if (rb_key == cfqq->rb_key && |
1184 | cfqq->service_tree == service_tree) | |
d9e7620e | 1185 | return; |
1da177e4 | 1186 | |
aa6f6a3d CZ |
1187 | cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree); |
1188 | cfqq->service_tree = NULL; | |
1da177e4 | 1189 | } |
d9e7620e | 1190 | |
498d3aa2 | 1191 | left = 1; |
0871714e | 1192 | parent = NULL; |
aa6f6a3d CZ |
1193 | cfqq->service_tree = service_tree; |
1194 | p = &service_tree->rb.rb_node; | |
d9e7620e | 1195 | while (*p) { |
67060e37 | 1196 | struct rb_node **n; |
cc09e299 | 1197 | |
d9e7620e JA |
1198 | parent = *p; |
1199 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); | |
1200 | ||
0c534e0a | 1201 | /* |
c0324a02 | 1202 | * sort by key, that represents service time. |
0c534e0a | 1203 | */ |
c0324a02 | 1204 | if (time_before(rb_key, __cfqq->rb_key)) |
67060e37 | 1205 | n = &(*p)->rb_left; |
c0324a02 | 1206 | else { |
67060e37 | 1207 | n = &(*p)->rb_right; |
cc09e299 | 1208 | left = 0; |
c0324a02 | 1209 | } |
67060e37 JA |
1210 | |
1211 | p = n; | |
d9e7620e JA |
1212 | } |
1213 | ||
cc09e299 | 1214 | if (left) |
aa6f6a3d | 1215 | service_tree->left = &cfqq->rb_node; |
cc09e299 | 1216 | |
d9e7620e JA |
1217 | cfqq->rb_key = rb_key; |
1218 | rb_link_node(&cfqq->rb_node, parent, p); | |
aa6f6a3d CZ |
1219 | rb_insert_color(&cfqq->rb_node, &service_tree->rb); |
1220 | service_tree->count++; | |
ae30c286 | 1221 | if ((add_front || !new_cfqq) && !group_changed) |
dae739eb | 1222 | return; |
1fa8f6d6 | 1223 | cfq_group_service_tree_add(cfqd, cfqq->cfqg); |
1da177e4 LT |
1224 | } |
1225 | ||
a36e71f9 | 1226 | static struct cfq_queue * |
f2d1f0ae JA |
1227 | cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root, |
1228 | sector_t sector, struct rb_node **ret_parent, | |
1229 | struct rb_node ***rb_link) | |
a36e71f9 | 1230 | { |
a36e71f9 JA |
1231 | struct rb_node **p, *parent; |
1232 | struct cfq_queue *cfqq = NULL; | |
1233 | ||
1234 | parent = NULL; | |
1235 | p = &root->rb_node; | |
1236 | while (*p) { | |
1237 | struct rb_node **n; | |
1238 | ||
1239 | parent = *p; | |
1240 | cfqq = rb_entry(parent, struct cfq_queue, p_node); | |
1241 | ||
1242 | /* | |
1243 | * Sort strictly based on sector. Smallest to the left, | |
1244 | * largest to the right. | |
1245 | */ | |
2e46e8b2 | 1246 | if (sector > blk_rq_pos(cfqq->next_rq)) |
a36e71f9 | 1247 | n = &(*p)->rb_right; |
2e46e8b2 | 1248 | else if (sector < blk_rq_pos(cfqq->next_rq)) |
a36e71f9 JA |
1249 | n = &(*p)->rb_left; |
1250 | else | |
1251 | break; | |
1252 | p = n; | |
3ac6c9f8 | 1253 | cfqq = NULL; |
a36e71f9 JA |
1254 | } |
1255 | ||
1256 | *ret_parent = parent; | |
1257 | if (rb_link) | |
1258 | *rb_link = p; | |
3ac6c9f8 | 1259 | return cfqq; |
a36e71f9 JA |
1260 | } |
1261 | ||
1262 | static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |
1263 | { | |
a36e71f9 JA |
1264 | struct rb_node **p, *parent; |
1265 | struct cfq_queue *__cfqq; | |
1266 | ||
f2d1f0ae JA |
1267 | if (cfqq->p_root) { |
1268 | rb_erase(&cfqq->p_node, cfqq->p_root); | |
1269 | cfqq->p_root = NULL; | |
1270 | } | |
a36e71f9 JA |
1271 | |
1272 | if (cfq_class_idle(cfqq)) | |
1273 | return; | |
1274 | if (!cfqq->next_rq) | |
1275 | return; | |
1276 | ||
f2d1f0ae | 1277 | cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio]; |
2e46e8b2 TH |
1278 | __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root, |
1279 | blk_rq_pos(cfqq->next_rq), &parent, &p); | |
3ac6c9f8 JA |
1280 | if (!__cfqq) { |
1281 | rb_link_node(&cfqq->p_node, parent, p); | |
f2d1f0ae JA |
1282 | rb_insert_color(&cfqq->p_node, cfqq->p_root); |
1283 | } else | |
1284 | cfqq->p_root = NULL; | |
a36e71f9 JA |
1285 | } |
1286 | ||
498d3aa2 JA |
1287 | /* |
1288 | * Update cfqq's position in the service tree. | |
1289 | */ | |
edd75ffd | 1290 | static void cfq_resort_rr_list(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
6d048f53 | 1291 | { |
6d048f53 JA |
1292 | /* |
1293 | * Resorting requires the cfqq to be on the RR list already. | |
1294 | */ | |
a36e71f9 | 1295 | if (cfq_cfqq_on_rr(cfqq)) { |
edd75ffd | 1296 | cfq_service_tree_add(cfqd, cfqq, 0); |
a36e71f9 JA |
1297 | cfq_prio_tree_add(cfqd, cfqq); |
1298 | } | |
6d048f53 JA |
1299 | } |
1300 | ||
1da177e4 LT |
1301 | /* |
1302 | * add to busy list of queues for service, trying to be fair in ordering | |
22e2c507 | 1303 | * the pending list according to last request service |
1da177e4 | 1304 | */ |
febffd61 | 1305 | static void cfq_add_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
1da177e4 | 1306 | { |
7b679138 | 1307 | cfq_log_cfqq(cfqd, cfqq, "add_to_rr"); |
3b18152c JA |
1308 | BUG_ON(cfq_cfqq_on_rr(cfqq)); |
1309 | cfq_mark_cfqq_on_rr(cfqq); | |
1da177e4 LT |
1310 | cfqd->busy_queues++; |
1311 | ||
edd75ffd | 1312 | cfq_resort_rr_list(cfqd, cfqq); |
1da177e4 LT |
1313 | } |
1314 | ||
498d3aa2 JA |
1315 | /* |
1316 | * Called when the cfqq no longer has requests pending, remove it from | |
1317 | * the service tree. | |
1318 | */ | |
febffd61 | 1319 | static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
1da177e4 | 1320 | { |
7b679138 | 1321 | cfq_log_cfqq(cfqd, cfqq, "del_from_rr"); |
3b18152c JA |
1322 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); |
1323 | cfq_clear_cfqq_on_rr(cfqq); | |
1da177e4 | 1324 | |
aa6f6a3d CZ |
1325 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) { |
1326 | cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree); | |
1327 | cfqq->service_tree = NULL; | |
1328 | } | |
f2d1f0ae JA |
1329 | if (cfqq->p_root) { |
1330 | rb_erase(&cfqq->p_node, cfqq->p_root); | |
1331 | cfqq->p_root = NULL; | |
1332 | } | |
d9e7620e | 1333 | |
1fa8f6d6 | 1334 | cfq_group_service_tree_del(cfqd, cfqq->cfqg); |
1da177e4 LT |
1335 | BUG_ON(!cfqd->busy_queues); |
1336 | cfqd->busy_queues--; | |
1337 | } | |
1338 | ||
1339 | /* | |
1340 | * rb tree support functions | |
1341 | */ | |
febffd61 | 1342 | static void cfq_del_rq_rb(struct request *rq) |
1da177e4 | 1343 | { |
5e705374 | 1344 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
5e705374 | 1345 | const int sync = rq_is_sync(rq); |
1da177e4 | 1346 | |
b4878f24 JA |
1347 | BUG_ON(!cfqq->queued[sync]); |
1348 | cfqq->queued[sync]--; | |
1da177e4 | 1349 | |
5e705374 | 1350 | elv_rb_del(&cfqq->sort_list, rq); |
1da177e4 | 1351 | |
f04a6424 VG |
1352 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) { |
1353 | /* | |
1354 | * Queue will be deleted from service tree when we actually | |
1355 | * expire it later. Right now just remove it from prio tree | |
1356 | * as it is empty. | |
1357 | */ | |
1358 | if (cfqq->p_root) { | |
1359 | rb_erase(&cfqq->p_node, cfqq->p_root); | |
1360 | cfqq->p_root = NULL; | |
1361 | } | |
1362 | } | |
1da177e4 LT |
1363 | } |
1364 | ||
5e705374 | 1365 | static void cfq_add_rq_rb(struct request *rq) |
1da177e4 | 1366 | { |
5e705374 | 1367 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
1da177e4 | 1368 | struct cfq_data *cfqd = cfqq->cfqd; |
a36e71f9 | 1369 | struct request *__alias, *prev; |
1da177e4 | 1370 | |
5380a101 | 1371 | cfqq->queued[rq_is_sync(rq)]++; |
1da177e4 LT |
1372 | |
1373 | /* | |
1374 | * looks a little odd, but the first insert might return an alias. | |
1375 | * if that happens, put the alias on the dispatch list | |
1376 | */ | |
21183b07 | 1377 | while ((__alias = elv_rb_add(&cfqq->sort_list, rq)) != NULL) |
5e705374 | 1378 | cfq_dispatch_insert(cfqd->queue, __alias); |
5fccbf61 JA |
1379 | |
1380 | if (!cfq_cfqq_on_rr(cfqq)) | |
1381 | cfq_add_cfqq_rr(cfqd, cfqq); | |
5044eed4 JA |
1382 | |
1383 | /* | |
1384 | * check if this request is a better next-serve candidate | |
1385 | */ | |
a36e71f9 | 1386 | prev = cfqq->next_rq; |
cf7c25cf | 1387 | cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position); |
a36e71f9 JA |
1388 | |
1389 | /* | |
1390 | * adjust priority tree position, if ->next_rq changes | |
1391 | */ | |
1392 | if (prev != cfqq->next_rq) | |
1393 | cfq_prio_tree_add(cfqd, cfqq); | |
1394 | ||
5044eed4 | 1395 | BUG_ON(!cfqq->next_rq); |
1da177e4 LT |
1396 | } |
1397 | ||
febffd61 | 1398 | static void cfq_reposition_rq_rb(struct cfq_queue *cfqq, struct request *rq) |
1da177e4 | 1399 | { |
5380a101 JA |
1400 | elv_rb_del(&cfqq->sort_list, rq); |
1401 | cfqq->queued[rq_is_sync(rq)]--; | |
7f1dc8a2 | 1402 | blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg, rq_data_dir(rq), |
cdc1184c | 1403 | rq_is_sync(rq)); |
5e705374 | 1404 | cfq_add_rq_rb(rq); |
7f1dc8a2 VG |
1405 | blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg, |
1406 | &cfqq->cfqd->serving_group->blkg, rq_data_dir(rq), | |
1407 | rq_is_sync(rq)); | |
1da177e4 LT |
1408 | } |
1409 | ||
206dc69b JA |
1410 | static struct request * |
1411 | cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio) | |
1da177e4 | 1412 | { |
206dc69b | 1413 | struct task_struct *tsk = current; |
91fac317 | 1414 | struct cfq_io_context *cic; |
206dc69b | 1415 | struct cfq_queue *cfqq; |
1da177e4 | 1416 | |
4ac845a2 | 1417 | cic = cfq_cic_lookup(cfqd, tsk->io_context); |
91fac317 VT |
1418 | if (!cic) |
1419 | return NULL; | |
1420 | ||
1421 | cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio)); | |
89850f7e JA |
1422 | if (cfqq) { |
1423 | sector_t sector = bio->bi_sector + bio_sectors(bio); | |
1424 | ||
21183b07 | 1425 | return elv_rb_find(&cfqq->sort_list, sector); |
89850f7e | 1426 | } |
1da177e4 | 1427 | |
1da177e4 LT |
1428 | return NULL; |
1429 | } | |
1430 | ||
165125e1 | 1431 | static void cfq_activate_request(struct request_queue *q, struct request *rq) |
1da177e4 | 1432 | { |
22e2c507 | 1433 | struct cfq_data *cfqd = q->elevator->elevator_data; |
3b18152c | 1434 | |
53c583d2 | 1435 | cfqd->rq_in_driver++; |
7b679138 | 1436 | cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d", |
53c583d2 | 1437 | cfqd->rq_in_driver); |
25776e35 | 1438 | |
5b93629b | 1439 | cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq); |
1da177e4 LT |
1440 | } |
1441 | ||
165125e1 | 1442 | static void cfq_deactivate_request(struct request_queue *q, struct request *rq) |
1da177e4 | 1443 | { |
b4878f24 JA |
1444 | struct cfq_data *cfqd = q->elevator->elevator_data; |
1445 | ||
53c583d2 CZ |
1446 | WARN_ON(!cfqd->rq_in_driver); |
1447 | cfqd->rq_in_driver--; | |
7b679138 | 1448 | cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d", |
53c583d2 | 1449 | cfqd->rq_in_driver); |
1da177e4 LT |
1450 | } |
1451 | ||
b4878f24 | 1452 | static void cfq_remove_request(struct request *rq) |
1da177e4 | 1453 | { |
5e705374 | 1454 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
21183b07 | 1455 | |
5e705374 JA |
1456 | if (cfqq->next_rq == rq) |
1457 | cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq); | |
1da177e4 | 1458 | |
b4878f24 | 1459 | list_del_init(&rq->queuelist); |
5e705374 | 1460 | cfq_del_rq_rb(rq); |
374f84ac | 1461 | |
45333d5a | 1462 | cfqq->cfqd->rq_queued--; |
7f1dc8a2 | 1463 | blkiocg_update_io_remove_stats(&(RQ_CFQG(rq))->blkg, rq_data_dir(rq), |
cdc1184c | 1464 | rq_is_sync(rq)); |
374f84ac JA |
1465 | if (rq_is_meta(rq)) { |
1466 | WARN_ON(!cfqq->meta_pending); | |
1467 | cfqq->meta_pending--; | |
1468 | } | |
1da177e4 LT |
1469 | } |
1470 | ||
165125e1 JA |
1471 | static int cfq_merge(struct request_queue *q, struct request **req, |
1472 | struct bio *bio) | |
1da177e4 LT |
1473 | { |
1474 | struct cfq_data *cfqd = q->elevator->elevator_data; | |
1475 | struct request *__rq; | |
1da177e4 | 1476 | |
206dc69b | 1477 | __rq = cfq_find_rq_fmerge(cfqd, bio); |
22e2c507 | 1478 | if (__rq && elv_rq_merge_ok(__rq, bio)) { |
9817064b JA |
1479 | *req = __rq; |
1480 | return ELEVATOR_FRONT_MERGE; | |
1da177e4 LT |
1481 | } |
1482 | ||
1483 | return ELEVATOR_NO_MERGE; | |
1da177e4 LT |
1484 | } |
1485 | ||
165125e1 | 1486 | static void cfq_merged_request(struct request_queue *q, struct request *req, |
21183b07 | 1487 | int type) |
1da177e4 | 1488 | { |
21183b07 | 1489 | if (type == ELEVATOR_FRONT_MERGE) { |
5e705374 | 1490 | struct cfq_queue *cfqq = RQ_CFQQ(req); |
1da177e4 | 1491 | |
5e705374 | 1492 | cfq_reposition_rq_rb(cfqq, req); |
1da177e4 | 1493 | } |
1da177e4 LT |
1494 | } |
1495 | ||
812d4026 DS |
1496 | static void cfq_bio_merged(struct request_queue *q, struct request *req, |
1497 | struct bio *bio) | |
1498 | { | |
7f1dc8a2 | 1499 | blkiocg_update_io_merged_stats(&(RQ_CFQG(req))->blkg, bio_data_dir(bio), |
812d4026 DS |
1500 | cfq_bio_sync(bio)); |
1501 | } | |
1502 | ||
1da177e4 | 1503 | static void |
165125e1 | 1504 | cfq_merged_requests(struct request_queue *q, struct request *rq, |
1da177e4 LT |
1505 | struct request *next) |
1506 | { | |
cf7c25cf | 1507 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
22e2c507 JA |
1508 | /* |
1509 | * reposition in fifo if next is older than rq | |
1510 | */ | |
1511 | if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) && | |
30996f40 | 1512 | time_before(rq_fifo_time(next), rq_fifo_time(rq))) { |
22e2c507 | 1513 | list_move(&rq->queuelist, &next->queuelist); |
30996f40 JA |
1514 | rq_set_fifo_time(rq, rq_fifo_time(next)); |
1515 | } | |
22e2c507 | 1516 | |
cf7c25cf CZ |
1517 | if (cfqq->next_rq == next) |
1518 | cfqq->next_rq = rq; | |
b4878f24 | 1519 | cfq_remove_request(next); |
7f1dc8a2 | 1520 | blkiocg_update_io_merged_stats(&(RQ_CFQG(rq))->blkg, rq_data_dir(next), |
812d4026 | 1521 | rq_is_sync(next)); |
22e2c507 JA |
1522 | } |
1523 | ||
165125e1 | 1524 | static int cfq_allow_merge(struct request_queue *q, struct request *rq, |
da775265 JA |
1525 | struct bio *bio) |
1526 | { | |
1527 | struct cfq_data *cfqd = q->elevator->elevator_data; | |
91fac317 | 1528 | struct cfq_io_context *cic; |
da775265 | 1529 | struct cfq_queue *cfqq; |
da775265 JA |
1530 | |
1531 | /* | |
ec8acb69 | 1532 | * Disallow merge of a sync bio into an async request. |
da775265 | 1533 | */ |
91fac317 | 1534 | if (cfq_bio_sync(bio) && !rq_is_sync(rq)) |
a6151c3a | 1535 | return false; |
da775265 JA |
1536 | |
1537 | /* | |
719d3402 JA |
1538 | * Lookup the cfqq that this bio will be queued with. Allow |
1539 | * merge only if rq is queued there. | |
da775265 | 1540 | */ |
4ac845a2 | 1541 | cic = cfq_cic_lookup(cfqd, current->io_context); |
91fac317 | 1542 | if (!cic) |
a6151c3a | 1543 | return false; |
719d3402 | 1544 | |
91fac317 | 1545 | cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio)); |
a6151c3a | 1546 | return cfqq == RQ_CFQQ(rq); |
da775265 JA |
1547 | } |
1548 | ||
812df48d DS |
1549 | static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
1550 | { | |
1551 | del_timer(&cfqd->idle_slice_timer); | |
1552 | blkiocg_update_idle_time_stats(&cfqq->cfqg->blkg); | |
1553 | } | |
1554 | ||
febffd61 JA |
1555 | static void __cfq_set_active_queue(struct cfq_data *cfqd, |
1556 | struct cfq_queue *cfqq) | |
22e2c507 JA |
1557 | { |
1558 | if (cfqq) { | |
b1ffe737 DS |
1559 | cfq_log_cfqq(cfqd, cfqq, "set_active wl_prio:%d wl_type:%d", |
1560 | cfqd->serving_prio, cfqd->serving_type); | |
a11cdaa7 | 1561 | blkiocg_update_avg_queue_size_stats(&cfqq->cfqg->blkg); |
dae739eb VG |
1562 | cfqq->slice_start = 0; |
1563 | cfqq->dispatch_start = jiffies; | |
f75edf2d | 1564 | cfqq->allocated_slice = 0; |
22e2c507 | 1565 | cfqq->slice_end = 0; |
2f5cb738 JA |
1566 | cfqq->slice_dispatch = 0; |
1567 | ||
2f5cb738 | 1568 | cfq_clear_cfqq_wait_request(cfqq); |
b029195d | 1569 | cfq_clear_cfqq_must_dispatch(cfqq); |
3b18152c JA |
1570 | cfq_clear_cfqq_must_alloc_slice(cfqq); |
1571 | cfq_clear_cfqq_fifo_expire(cfqq); | |
44f7c160 | 1572 | cfq_mark_cfqq_slice_new(cfqq); |
2f5cb738 | 1573 | |
812df48d | 1574 | cfq_del_timer(cfqd, cfqq); |
22e2c507 JA |
1575 | } |
1576 | ||
1577 | cfqd->active_queue = cfqq; | |
1578 | } | |
1579 | ||
7b14e3b5 JA |
1580 | /* |
1581 | * current cfqq expired its slice (or was too idle), select new one | |
1582 | */ | |
1583 | static void | |
1584 | __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |
e5ff082e | 1585 | bool timed_out) |
7b14e3b5 | 1586 | { |
7b679138 JA |
1587 | cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out); |
1588 | ||
7b14e3b5 | 1589 | if (cfq_cfqq_wait_request(cfqq)) |
812df48d | 1590 | cfq_del_timer(cfqd, cfqq); |
7b14e3b5 | 1591 | |
7b14e3b5 | 1592 | cfq_clear_cfqq_wait_request(cfqq); |
f75edf2d | 1593 | cfq_clear_cfqq_wait_busy(cfqq); |
7b14e3b5 | 1594 | |
ae54abed SL |
1595 | /* |
1596 | * If this cfqq is shared between multiple processes, check to | |
1597 | * make sure that those processes are still issuing I/Os within | |
1598 | * the mean seek distance. If not, it may be time to break the | |
1599 | * queues apart again. | |
1600 | */ | |
1601 | if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq)) | |
1602 | cfq_mark_cfqq_split_coop(cfqq); | |
1603 | ||
7b14e3b5 | 1604 | /* |
6084cdda | 1605 | * store what was left of this slice, if the queue idled/timed out |
7b14e3b5 | 1606 | */ |
7b679138 | 1607 | if (timed_out && !cfq_cfqq_slice_new(cfqq)) { |
c5b680f3 | 1608 | cfqq->slice_resid = cfqq->slice_end - jiffies; |
7b679138 JA |
1609 | cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid); |
1610 | } | |
7b14e3b5 | 1611 | |
e5ff082e | 1612 | cfq_group_served(cfqd, cfqq->cfqg, cfqq); |
dae739eb | 1613 | |
f04a6424 VG |
1614 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) |
1615 | cfq_del_cfqq_rr(cfqd, cfqq); | |
1616 | ||
edd75ffd | 1617 | cfq_resort_rr_list(cfqd, cfqq); |
7b14e3b5 JA |
1618 | |
1619 | if (cfqq == cfqd->active_queue) | |
1620 | cfqd->active_queue = NULL; | |
1621 | ||
dae739eb VG |
1622 | if (&cfqq->cfqg->rb_node == cfqd->grp_service_tree.active) |
1623 | cfqd->grp_service_tree.active = NULL; | |
1624 | ||
7b14e3b5 JA |
1625 | if (cfqd->active_cic) { |
1626 | put_io_context(cfqd->active_cic->ioc); | |
1627 | cfqd->active_cic = NULL; | |
1628 | } | |
7b14e3b5 JA |
1629 | } |
1630 | ||
e5ff082e | 1631 | static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out) |
7b14e3b5 JA |
1632 | { |
1633 | struct cfq_queue *cfqq = cfqd->active_queue; | |
1634 | ||
1635 | if (cfqq) | |
e5ff082e | 1636 | __cfq_slice_expired(cfqd, cfqq, timed_out); |
7b14e3b5 JA |
1637 | } |
1638 | ||
498d3aa2 JA |
1639 | /* |
1640 | * Get next queue for service. Unless we have a queue preemption, | |
1641 | * we'll simply select the first cfqq in the service tree. | |
1642 | */ | |
6d048f53 | 1643 | static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd) |
22e2c507 | 1644 | { |
c0324a02 | 1645 | struct cfq_rb_root *service_tree = |
cdb16e8f | 1646 | service_tree_for(cfqd->serving_group, cfqd->serving_prio, |
65b32a57 | 1647 | cfqd->serving_type); |
d9e7620e | 1648 | |
f04a6424 VG |
1649 | if (!cfqd->rq_queued) |
1650 | return NULL; | |
1651 | ||
1fa8f6d6 VG |
1652 | /* There is nothing to dispatch */ |
1653 | if (!service_tree) | |
1654 | return NULL; | |
c0324a02 CZ |
1655 | if (RB_EMPTY_ROOT(&service_tree->rb)) |
1656 | return NULL; | |
1657 | return cfq_rb_first(service_tree); | |
6d048f53 JA |
1658 | } |
1659 | ||
f04a6424 VG |
1660 | static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd) |
1661 | { | |
25fb5169 | 1662 | struct cfq_group *cfqg; |
f04a6424 VG |
1663 | struct cfq_queue *cfqq; |
1664 | int i, j; | |
1665 | struct cfq_rb_root *st; | |
1666 | ||
1667 | if (!cfqd->rq_queued) | |
1668 | return NULL; | |
1669 | ||
25fb5169 VG |
1670 | cfqg = cfq_get_next_cfqg(cfqd); |
1671 | if (!cfqg) | |
1672 | return NULL; | |
1673 | ||
f04a6424 VG |
1674 | for_each_cfqg_st(cfqg, i, j, st) |
1675 | if ((cfqq = cfq_rb_first(st)) != NULL) | |
1676 | return cfqq; | |
1677 | return NULL; | |
1678 | } | |
1679 | ||
498d3aa2 JA |
1680 | /* |
1681 | * Get and set a new active queue for service. | |
1682 | */ | |
a36e71f9 JA |
1683 | static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd, |
1684 | struct cfq_queue *cfqq) | |
6d048f53 | 1685 | { |
e00ef799 | 1686 | if (!cfqq) |
a36e71f9 | 1687 | cfqq = cfq_get_next_queue(cfqd); |
6d048f53 | 1688 | |
22e2c507 | 1689 | __cfq_set_active_queue(cfqd, cfqq); |
3b18152c | 1690 | return cfqq; |
22e2c507 JA |
1691 | } |
1692 | ||
d9e7620e JA |
1693 | static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd, |
1694 | struct request *rq) | |
1695 | { | |
83096ebf TH |
1696 | if (blk_rq_pos(rq) >= cfqd->last_position) |
1697 | return blk_rq_pos(rq) - cfqd->last_position; | |
d9e7620e | 1698 | else |
83096ebf | 1699 | return cfqd->last_position - blk_rq_pos(rq); |
d9e7620e JA |
1700 | } |
1701 | ||
b2c18e1e | 1702 | static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
e9ce335d | 1703 | struct request *rq) |
6d048f53 | 1704 | { |
e9ce335d | 1705 | return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR; |
6d048f53 JA |
1706 | } |
1707 | ||
a36e71f9 JA |
1708 | static struct cfq_queue *cfqq_close(struct cfq_data *cfqd, |
1709 | struct cfq_queue *cur_cfqq) | |
1710 | { | |
f2d1f0ae | 1711 | struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio]; |
a36e71f9 JA |
1712 | struct rb_node *parent, *node; |
1713 | struct cfq_queue *__cfqq; | |
1714 | sector_t sector = cfqd->last_position; | |
1715 | ||
1716 | if (RB_EMPTY_ROOT(root)) | |
1717 | return NULL; | |
1718 | ||
1719 | /* | |
1720 | * First, if we find a request starting at the end of the last | |
1721 | * request, choose it. | |
1722 | */ | |
f2d1f0ae | 1723 | __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL); |
a36e71f9 JA |
1724 | if (__cfqq) |
1725 | return __cfqq; | |
1726 | ||
1727 | /* | |
1728 | * If the exact sector wasn't found, the parent of the NULL leaf | |
1729 | * will contain the closest sector. | |
1730 | */ | |
1731 | __cfqq = rb_entry(parent, struct cfq_queue, p_node); | |
e9ce335d | 1732 | if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq)) |
a36e71f9 JA |
1733 | return __cfqq; |
1734 | ||
2e46e8b2 | 1735 | if (blk_rq_pos(__cfqq->next_rq) < sector) |
a36e71f9 JA |
1736 | node = rb_next(&__cfqq->p_node); |
1737 | else | |
1738 | node = rb_prev(&__cfqq->p_node); | |
1739 | if (!node) | |
1740 | return NULL; | |
1741 | ||
1742 | __cfqq = rb_entry(node, struct cfq_queue, p_node); | |
e9ce335d | 1743 | if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq)) |
a36e71f9 JA |
1744 | return __cfqq; |
1745 | ||
1746 | return NULL; | |
1747 | } | |
1748 | ||
1749 | /* | |
1750 | * cfqd - obvious | |
1751 | * cur_cfqq - passed in so that we don't decide that the current queue is | |
1752 | * closely cooperating with itself. | |
1753 | * | |
1754 | * So, basically we're assuming that that cur_cfqq has dispatched at least | |
1755 | * one request, and that cfqd->last_position reflects a position on the disk | |
1756 | * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid | |
1757 | * assumption. | |
1758 | */ | |
1759 | static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd, | |
b3b6d040 | 1760 | struct cfq_queue *cur_cfqq) |
6d048f53 | 1761 | { |
a36e71f9 JA |
1762 | struct cfq_queue *cfqq; |
1763 | ||
39c01b21 DS |
1764 | if (cfq_class_idle(cur_cfqq)) |
1765 | return NULL; | |
e6c5bc73 JM |
1766 | if (!cfq_cfqq_sync(cur_cfqq)) |
1767 | return NULL; | |
1768 | if (CFQQ_SEEKY(cur_cfqq)) | |
1769 | return NULL; | |
1770 | ||
b9d8f4c7 GJ |
1771 | /* |
1772 | * Don't search priority tree if it's the only queue in the group. | |
1773 | */ | |
1774 | if (cur_cfqq->cfqg->nr_cfqq == 1) | |
1775 | return NULL; | |
1776 | ||
6d048f53 | 1777 | /* |
d9e7620e JA |
1778 | * We should notice if some of the queues are cooperating, eg |
1779 | * working closely on the same area of the disk. In that case, | |
1780 | * we can group them together and don't waste time idling. | |
6d048f53 | 1781 | */ |
a36e71f9 JA |
1782 | cfqq = cfqq_close(cfqd, cur_cfqq); |
1783 | if (!cfqq) | |
1784 | return NULL; | |
1785 | ||
8682e1f1 VG |
1786 | /* If new queue belongs to different cfq_group, don't choose it */ |
1787 | if (cur_cfqq->cfqg != cfqq->cfqg) | |
1788 | return NULL; | |
1789 | ||
df5fe3e8 JM |
1790 | /* |
1791 | * It only makes sense to merge sync queues. | |
1792 | */ | |
1793 | if (!cfq_cfqq_sync(cfqq)) | |
1794 | return NULL; | |
e6c5bc73 JM |
1795 | if (CFQQ_SEEKY(cfqq)) |
1796 | return NULL; | |
df5fe3e8 | 1797 | |
c0324a02 CZ |
1798 | /* |
1799 | * Do not merge queues of different priority classes | |
1800 | */ | |
1801 | if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq)) | |
1802 | return NULL; | |
1803 | ||
a36e71f9 | 1804 | return cfqq; |
6d048f53 JA |
1805 | } |
1806 | ||
a6d44e98 CZ |
1807 | /* |
1808 | * Determine whether we should enforce idle window for this queue. | |
1809 | */ | |
1810 | ||
1811 | static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |
1812 | { | |
1813 | enum wl_prio_t prio = cfqq_prio(cfqq); | |
718eee05 | 1814 | struct cfq_rb_root *service_tree = cfqq->service_tree; |
a6d44e98 | 1815 | |
f04a6424 VG |
1816 | BUG_ON(!service_tree); |
1817 | BUG_ON(!service_tree->count); | |
1818 | ||
a6d44e98 CZ |
1819 | /* We never do for idle class queues. */ |
1820 | if (prio == IDLE_WORKLOAD) | |
1821 | return false; | |
1822 | ||
1823 | /* We do for queues that were marked with idle window flag. */ | |
3c764b7a SL |
1824 | if (cfq_cfqq_idle_window(cfqq) && |
1825 | !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)) | |
a6d44e98 CZ |
1826 | return true; |
1827 | ||
1828 | /* | |
1829 | * Otherwise, we do only if they are the last ones | |
1830 | * in their service tree. | |
1831 | */ | |
b1ffe737 DS |
1832 | if (service_tree->count == 1 && cfq_cfqq_sync(cfqq)) |
1833 | return 1; | |
1834 | cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d", | |
1835 | service_tree->count); | |
1836 | return 0; | |
a6d44e98 CZ |
1837 | } |
1838 | ||
6d048f53 | 1839 | static void cfq_arm_slice_timer(struct cfq_data *cfqd) |
22e2c507 | 1840 | { |
1792669c | 1841 | struct cfq_queue *cfqq = cfqd->active_queue; |
206dc69b | 1842 | struct cfq_io_context *cic; |
7b14e3b5 JA |
1843 | unsigned long sl; |
1844 | ||
a68bbddb | 1845 | /* |
f7d7b7a7 JA |
1846 | * SSD device without seek penalty, disable idling. But only do so |
1847 | * for devices that support queuing, otherwise we still have a problem | |
1848 | * with sync vs async workloads. | |
a68bbddb | 1849 | */ |
f7d7b7a7 | 1850 | if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag) |
a68bbddb JA |
1851 | return; |
1852 | ||
dd67d051 | 1853 | WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list)); |
6d048f53 | 1854 | WARN_ON(cfq_cfqq_slice_new(cfqq)); |
22e2c507 JA |
1855 | |
1856 | /* | |
1857 | * idle is disabled, either manually or by past process history | |
1858 | */ | |
a6d44e98 | 1859 | if (!cfqd->cfq_slice_idle || !cfq_should_idle(cfqd, cfqq)) |
6d048f53 JA |
1860 | return; |
1861 | ||
7b679138 | 1862 | /* |
8e550632 | 1863 | * still active requests from this queue, don't idle |
7b679138 | 1864 | */ |
8e550632 | 1865 | if (cfqq->dispatched) |
7b679138 JA |
1866 | return; |
1867 | ||
22e2c507 JA |
1868 | /* |
1869 | * task has exited, don't wait | |
1870 | */ | |
206dc69b | 1871 | cic = cfqd->active_cic; |
66dac98e | 1872 | if (!cic || !atomic_read(&cic->ioc->nr_tasks)) |
6d048f53 JA |
1873 | return; |
1874 | ||
355b659c CZ |
1875 | /* |
1876 | * If our average think time is larger than the remaining time | |
1877 | * slice, then don't idle. This avoids overrunning the allotted | |
1878 | * time slice. | |
1879 | */ | |
1880 | if (sample_valid(cic->ttime_samples) && | |
b1ffe737 DS |
1881 | (cfqq->slice_end - jiffies < cic->ttime_mean)) { |
1882 | cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%d", | |
1883 | cic->ttime_mean); | |
355b659c | 1884 | return; |
b1ffe737 | 1885 | } |
355b659c | 1886 | |
3b18152c | 1887 | cfq_mark_cfqq_wait_request(cfqq); |
22e2c507 | 1888 | |
6d048f53 | 1889 | sl = cfqd->cfq_slice_idle; |
206dc69b | 1890 | |
7b14e3b5 | 1891 | mod_timer(&cfqd->idle_slice_timer, jiffies + sl); |
812df48d | 1892 | blkiocg_update_set_idle_time_stats(&cfqq->cfqg->blkg); |
9481ffdc | 1893 | cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl); |
1da177e4 LT |
1894 | } |
1895 | ||
498d3aa2 JA |
1896 | /* |
1897 | * Move request from internal lists to the request queue dispatch list. | |
1898 | */ | |
165125e1 | 1899 | static void cfq_dispatch_insert(struct request_queue *q, struct request *rq) |
1da177e4 | 1900 | { |
3ed9a296 | 1901 | struct cfq_data *cfqd = q->elevator->elevator_data; |
5e705374 | 1902 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
22e2c507 | 1903 | |
7b679138 JA |
1904 | cfq_log_cfqq(cfqd, cfqq, "dispatch_insert"); |
1905 | ||
06d21886 | 1906 | cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq); |
5380a101 | 1907 | cfq_remove_request(rq); |
6d048f53 | 1908 | cfqq->dispatched++; |
5380a101 | 1909 | elv_dispatch_sort(q, rq); |
3ed9a296 | 1910 | |
53c583d2 | 1911 | cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++; |
84c124da DS |
1912 | blkiocg_update_dispatch_stats(&cfqq->cfqg->blkg, blk_rq_bytes(rq), |
1913 | rq_data_dir(rq), rq_is_sync(rq)); | |
1da177e4 LT |
1914 | } |
1915 | ||
1916 | /* | |
1917 | * return expired entry, or NULL to just start from scratch in rbtree | |
1918 | */ | |
febffd61 | 1919 | static struct request *cfq_check_fifo(struct cfq_queue *cfqq) |
1da177e4 | 1920 | { |
30996f40 | 1921 | struct request *rq = NULL; |
1da177e4 | 1922 | |
3b18152c | 1923 | if (cfq_cfqq_fifo_expire(cfqq)) |
1da177e4 | 1924 | return NULL; |
cb887411 JA |
1925 | |
1926 | cfq_mark_cfqq_fifo_expire(cfqq); | |
1927 | ||
89850f7e JA |
1928 | if (list_empty(&cfqq->fifo)) |
1929 | return NULL; | |
1da177e4 | 1930 | |
89850f7e | 1931 | rq = rq_entry_fifo(cfqq->fifo.next); |
30996f40 | 1932 | if (time_before(jiffies, rq_fifo_time(rq))) |
7b679138 | 1933 | rq = NULL; |
1da177e4 | 1934 | |
30996f40 | 1935 | cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq); |
6d048f53 | 1936 | return rq; |
1da177e4 LT |
1937 | } |
1938 | ||
22e2c507 JA |
1939 | static inline int |
1940 | cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |
1941 | { | |
1942 | const int base_rq = cfqd->cfq_slice_async_rq; | |
1da177e4 | 1943 | |
22e2c507 | 1944 | WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR); |
1da177e4 | 1945 | |
22e2c507 | 1946 | return 2 * (base_rq + base_rq * (CFQ_PRIO_LISTS - 1 - cfqq->ioprio)); |
1da177e4 LT |
1947 | } |
1948 | ||
df5fe3e8 JM |
1949 | /* |
1950 | * Must be called with the queue_lock held. | |
1951 | */ | |
1952 | static int cfqq_process_refs(struct cfq_queue *cfqq) | |
1953 | { | |
1954 | int process_refs, io_refs; | |
1955 | ||
1956 | io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE]; | |
1957 | process_refs = atomic_read(&cfqq->ref) - io_refs; | |
1958 | BUG_ON(process_refs < 0); | |
1959 | return process_refs; | |
1960 | } | |
1961 | ||
1962 | static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq) | |
1963 | { | |
e6c5bc73 | 1964 | int process_refs, new_process_refs; |
df5fe3e8 JM |
1965 | struct cfq_queue *__cfqq; |
1966 | ||
1967 | /* Avoid a circular list and skip interim queue merges */ | |
1968 | while ((__cfqq = new_cfqq->new_cfqq)) { | |
1969 | if (__cfqq == cfqq) | |
1970 | return; | |
1971 | new_cfqq = __cfqq; | |
1972 | } | |
1973 | ||
1974 | process_refs = cfqq_process_refs(cfqq); | |
1975 | /* | |
1976 | * If the process for the cfqq has gone away, there is no | |
1977 | * sense in merging the queues. | |
1978 | */ | |
1979 | if (process_refs == 0) | |
1980 | return; | |
1981 | ||
e6c5bc73 JM |
1982 | /* |
1983 | * Merge in the direction of the lesser amount of work. | |
1984 | */ | |
1985 | new_process_refs = cfqq_process_refs(new_cfqq); | |
1986 | if (new_process_refs >= process_refs) { | |
1987 | cfqq->new_cfqq = new_cfqq; | |
1988 | atomic_add(process_refs, &new_cfqq->ref); | |
1989 | } else { | |
1990 | new_cfqq->new_cfqq = cfqq; | |
1991 | atomic_add(new_process_refs, &cfqq->ref); | |
1992 | } | |
df5fe3e8 JM |
1993 | } |
1994 | ||
cdb16e8f | 1995 | static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd, |
65b32a57 | 1996 | struct cfq_group *cfqg, enum wl_prio_t prio) |
718eee05 CZ |
1997 | { |
1998 | struct cfq_queue *queue; | |
1999 | int i; | |
2000 | bool key_valid = false; | |
2001 | unsigned long lowest_key = 0; | |
2002 | enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD; | |
2003 | ||
65b32a57 VG |
2004 | for (i = 0; i <= SYNC_WORKLOAD; ++i) { |
2005 | /* select the one with lowest rb_key */ | |
2006 | queue = cfq_rb_first(service_tree_for(cfqg, prio, i)); | |
718eee05 CZ |
2007 | if (queue && |
2008 | (!key_valid || time_before(queue->rb_key, lowest_key))) { | |
2009 | lowest_key = queue->rb_key; | |
2010 | cur_best = i; | |
2011 | key_valid = true; | |
2012 | } | |
2013 | } | |
2014 | ||
2015 | return cur_best; | |
2016 | } | |
2017 | ||
cdb16e8f | 2018 | static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg) |
718eee05 | 2019 | { |
718eee05 CZ |
2020 | unsigned slice; |
2021 | unsigned count; | |
cdb16e8f | 2022 | struct cfq_rb_root *st; |
58ff82f3 | 2023 | unsigned group_slice; |
718eee05 | 2024 | |
1fa8f6d6 VG |
2025 | if (!cfqg) { |
2026 | cfqd->serving_prio = IDLE_WORKLOAD; | |
2027 | cfqd->workload_expires = jiffies + 1; | |
2028 | return; | |
2029 | } | |
2030 | ||
718eee05 | 2031 | /* Choose next priority. RT > BE > IDLE */ |
58ff82f3 | 2032 | if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg)) |
718eee05 | 2033 | cfqd->serving_prio = RT_WORKLOAD; |
58ff82f3 | 2034 | else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg)) |
718eee05 CZ |
2035 | cfqd->serving_prio = BE_WORKLOAD; |
2036 | else { | |
2037 | cfqd->serving_prio = IDLE_WORKLOAD; | |
2038 | cfqd->workload_expires = jiffies + 1; | |
2039 | return; | |
2040 | } | |
2041 | ||
2042 | /* | |
2043 | * For RT and BE, we have to choose also the type | |
2044 | * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload | |
2045 | * expiration time | |
2046 | */ | |
65b32a57 | 2047 | st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type); |
cdb16e8f | 2048 | count = st->count; |
718eee05 CZ |
2049 | |
2050 | /* | |
65b32a57 | 2051 | * check workload expiration, and that we still have other queues ready |
718eee05 | 2052 | */ |
65b32a57 | 2053 | if (count && !time_after(jiffies, cfqd->workload_expires)) |
718eee05 CZ |
2054 | return; |
2055 | ||
2056 | /* otherwise select new workload type */ | |
2057 | cfqd->serving_type = | |
65b32a57 VG |
2058 | cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio); |
2059 | st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type); | |
cdb16e8f | 2060 | count = st->count; |
718eee05 CZ |
2061 | |
2062 | /* | |
2063 | * the workload slice is computed as a fraction of target latency | |
2064 | * proportional to the number of queues in that workload, over | |
2065 | * all the queues in the same priority class | |
2066 | */ | |
58ff82f3 VG |
2067 | group_slice = cfq_group_slice(cfqd, cfqg); |
2068 | ||
2069 | slice = group_slice * count / | |
2070 | max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio], | |
2071 | cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg)); | |
718eee05 | 2072 | |
f26bd1f0 VG |
2073 | if (cfqd->serving_type == ASYNC_WORKLOAD) { |
2074 | unsigned int tmp; | |
2075 | ||
2076 | /* | |
2077 | * Async queues are currently system wide. Just taking | |
2078 | * proportion of queues with-in same group will lead to higher | |
2079 | * async ratio system wide as generally root group is going | |
2080 | * to have higher weight. A more accurate thing would be to | |
2081 | * calculate system wide asnc/sync ratio. | |
2082 | */ | |
2083 | tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg); | |
2084 | tmp = tmp/cfqd->busy_queues; | |
2085 | slice = min_t(unsigned, slice, tmp); | |
2086 | ||
718eee05 CZ |
2087 | /* async workload slice is scaled down according to |
2088 | * the sync/async slice ratio. */ | |
2089 | slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1]; | |
f26bd1f0 | 2090 | } else |
718eee05 CZ |
2091 | /* sync workload slice is at least 2 * cfq_slice_idle */ |
2092 | slice = max(slice, 2 * cfqd->cfq_slice_idle); | |
2093 | ||
2094 | slice = max_t(unsigned, slice, CFQ_MIN_TT); | |
b1ffe737 | 2095 | cfq_log(cfqd, "workload slice:%d", slice); |
718eee05 | 2096 | cfqd->workload_expires = jiffies + slice; |
8e550632 | 2097 | cfqd->noidle_tree_requires_idle = false; |
718eee05 CZ |
2098 | } |
2099 | ||
1fa8f6d6 VG |
2100 | static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd) |
2101 | { | |
2102 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | |
25bc6b07 | 2103 | struct cfq_group *cfqg; |
1fa8f6d6 VG |
2104 | |
2105 | if (RB_EMPTY_ROOT(&st->rb)) | |
2106 | return NULL; | |
25bc6b07 VG |
2107 | cfqg = cfq_rb_first_group(st); |
2108 | st->active = &cfqg->rb_node; | |
2109 | update_min_vdisktime(st); | |
2110 | return cfqg; | |
1fa8f6d6 VG |
2111 | } |
2112 | ||
cdb16e8f VG |
2113 | static void cfq_choose_cfqg(struct cfq_data *cfqd) |
2114 | { | |
1fa8f6d6 VG |
2115 | struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd); |
2116 | ||
2117 | cfqd->serving_group = cfqg; | |
dae739eb VG |
2118 | |
2119 | /* Restore the workload type data */ | |
2120 | if (cfqg->saved_workload_slice) { | |
2121 | cfqd->workload_expires = jiffies + cfqg->saved_workload_slice; | |
2122 | cfqd->serving_type = cfqg->saved_workload; | |
2123 | cfqd->serving_prio = cfqg->saved_serving_prio; | |
66ae2919 GJ |
2124 | } else |
2125 | cfqd->workload_expires = jiffies - 1; | |
2126 | ||
1fa8f6d6 | 2127 | choose_service_tree(cfqd, cfqg); |
cdb16e8f VG |
2128 | } |
2129 | ||
22e2c507 | 2130 | /* |
498d3aa2 JA |
2131 | * Select a queue for service. If we have a current active queue, |
2132 | * check whether to continue servicing it, or retrieve and set a new one. | |
22e2c507 | 2133 | */ |
1b5ed5e1 | 2134 | static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd) |
1da177e4 | 2135 | { |
a36e71f9 | 2136 | struct cfq_queue *cfqq, *new_cfqq = NULL; |
1da177e4 | 2137 | |
22e2c507 JA |
2138 | cfqq = cfqd->active_queue; |
2139 | if (!cfqq) | |
2140 | goto new_queue; | |
1da177e4 | 2141 | |
f04a6424 VG |
2142 | if (!cfqd->rq_queued) |
2143 | return NULL; | |
c244bb50 VG |
2144 | |
2145 | /* | |
2146 | * We were waiting for group to get backlogged. Expire the queue | |
2147 | */ | |
2148 | if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list)) | |
2149 | goto expire; | |
2150 | ||
22e2c507 | 2151 | /* |
6d048f53 | 2152 | * The active queue has run out of time, expire it and select new. |
22e2c507 | 2153 | */ |
7667aa06 VG |
2154 | if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) { |
2155 | /* | |
2156 | * If slice had not expired at the completion of last request | |
2157 | * we might not have turned on wait_busy flag. Don't expire | |
2158 | * the queue yet. Allow the group to get backlogged. | |
2159 | * | |
2160 | * The very fact that we have used the slice, that means we | |
2161 | * have been idling all along on this queue and it should be | |
2162 | * ok to wait for this request to complete. | |
2163 | */ | |
82bbbf28 VG |
2164 | if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list) |
2165 | && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) { | |
2166 | cfqq = NULL; | |
7667aa06 | 2167 | goto keep_queue; |
82bbbf28 | 2168 | } else |
7667aa06 VG |
2169 | goto expire; |
2170 | } | |
1da177e4 | 2171 | |
22e2c507 | 2172 | /* |
6d048f53 JA |
2173 | * The active queue has requests and isn't expired, allow it to |
2174 | * dispatch. | |
22e2c507 | 2175 | */ |
dd67d051 | 2176 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
22e2c507 | 2177 | goto keep_queue; |
6d048f53 | 2178 | |
a36e71f9 JA |
2179 | /* |
2180 | * If another queue has a request waiting within our mean seek | |
2181 | * distance, let it run. The expire code will check for close | |
2182 | * cooperators and put the close queue at the front of the service | |
df5fe3e8 | 2183 | * tree. If possible, merge the expiring queue with the new cfqq. |
a36e71f9 | 2184 | */ |
b3b6d040 | 2185 | new_cfqq = cfq_close_cooperator(cfqd, cfqq); |
df5fe3e8 JM |
2186 | if (new_cfqq) { |
2187 | if (!cfqq->new_cfqq) | |
2188 | cfq_setup_merge(cfqq, new_cfqq); | |
a36e71f9 | 2189 | goto expire; |
df5fe3e8 | 2190 | } |
a36e71f9 | 2191 | |
6d048f53 JA |
2192 | /* |
2193 | * No requests pending. If the active queue still has requests in | |
2194 | * flight or is idling for a new request, allow either of these | |
2195 | * conditions to happen (or time out) before selecting a new queue. | |
2196 | */ | |
cc197479 | 2197 | if (timer_pending(&cfqd->idle_slice_timer) || |
a6d44e98 | 2198 | (cfqq->dispatched && cfq_should_idle(cfqd, cfqq))) { |
caaa5f9f JA |
2199 | cfqq = NULL; |
2200 | goto keep_queue; | |
22e2c507 JA |
2201 | } |
2202 | ||
3b18152c | 2203 | expire: |
e5ff082e | 2204 | cfq_slice_expired(cfqd, 0); |
3b18152c | 2205 | new_queue: |
718eee05 CZ |
2206 | /* |
2207 | * Current queue expired. Check if we have to switch to a new | |
2208 | * service tree | |
2209 | */ | |
2210 | if (!new_cfqq) | |
cdb16e8f | 2211 | cfq_choose_cfqg(cfqd); |
718eee05 | 2212 | |
a36e71f9 | 2213 | cfqq = cfq_set_active_queue(cfqd, new_cfqq); |
22e2c507 | 2214 | keep_queue: |
3b18152c | 2215 | return cfqq; |
22e2c507 JA |
2216 | } |
2217 | ||
febffd61 | 2218 | static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq) |
d9e7620e JA |
2219 | { |
2220 | int dispatched = 0; | |
2221 | ||
2222 | while (cfqq->next_rq) { | |
2223 | cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq); | |
2224 | dispatched++; | |
2225 | } | |
2226 | ||
2227 | BUG_ON(!list_empty(&cfqq->fifo)); | |
f04a6424 VG |
2228 | |
2229 | /* By default cfqq is not expired if it is empty. Do it explicitly */ | |
e5ff082e | 2230 | __cfq_slice_expired(cfqq->cfqd, cfqq, 0); |
d9e7620e JA |
2231 | return dispatched; |
2232 | } | |
2233 | ||
498d3aa2 JA |
2234 | /* |
2235 | * Drain our current requests. Used for barriers and when switching | |
2236 | * io schedulers on-the-fly. | |
2237 | */ | |
d9e7620e | 2238 | static int cfq_forced_dispatch(struct cfq_data *cfqd) |
1b5ed5e1 | 2239 | { |
0871714e | 2240 | struct cfq_queue *cfqq; |
d9e7620e | 2241 | int dispatched = 0; |
cdb16e8f | 2242 | |
3440c49f | 2243 | /* Expire the timeslice of the current active queue first */ |
e5ff082e | 2244 | cfq_slice_expired(cfqd, 0); |
3440c49f DS |
2245 | while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) { |
2246 | __cfq_set_active_queue(cfqd, cfqq); | |
f04a6424 | 2247 | dispatched += __cfq_forced_dispatch_cfqq(cfqq); |
3440c49f | 2248 | } |
1b5ed5e1 | 2249 | |
1b5ed5e1 TH |
2250 | BUG_ON(cfqd->busy_queues); |
2251 | ||
6923715a | 2252 | cfq_log(cfqd, "forced_dispatch=%d", dispatched); |
1b5ed5e1 TH |
2253 | return dispatched; |
2254 | } | |
2255 | ||
abc3c744 SL |
2256 | static inline bool cfq_slice_used_soon(struct cfq_data *cfqd, |
2257 | struct cfq_queue *cfqq) | |
2258 | { | |
2259 | /* the queue hasn't finished any request, can't estimate */ | |
2260 | if (cfq_cfqq_slice_new(cfqq)) | |
2261 | return 1; | |
2262 | if (time_after(jiffies + cfqd->cfq_slice_idle * cfqq->dispatched, | |
2263 | cfqq->slice_end)) | |
2264 | return 1; | |
2265 | ||
2266 | return 0; | |
2267 | } | |
2268 | ||
0b182d61 | 2269 | static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
2f5cb738 | 2270 | { |
2f5cb738 | 2271 | unsigned int max_dispatch; |
22e2c507 | 2272 | |
5ad531db JA |
2273 | /* |
2274 | * Drain async requests before we start sync IO | |
2275 | */ | |
53c583d2 | 2276 | if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_flight[BLK_RW_ASYNC]) |
0b182d61 | 2277 | return false; |
5ad531db | 2278 | |
2f5cb738 JA |
2279 | /* |
2280 | * If this is an async queue and we have sync IO in flight, let it wait | |
2281 | */ | |
53c583d2 | 2282 | if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq)) |
0b182d61 | 2283 | return false; |
2f5cb738 | 2284 | |
abc3c744 | 2285 | max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1); |
2f5cb738 JA |
2286 | if (cfq_class_idle(cfqq)) |
2287 | max_dispatch = 1; | |
b4878f24 | 2288 | |
2f5cb738 JA |
2289 | /* |
2290 | * Does this cfqq already have too much IO in flight? | |
2291 | */ | |
2292 | if (cfqq->dispatched >= max_dispatch) { | |
2293 | /* | |
2294 | * idle queue must always only have a single IO in flight | |
2295 | */ | |
3ed9a296 | 2296 | if (cfq_class_idle(cfqq)) |
0b182d61 | 2297 | return false; |
3ed9a296 | 2298 | |
2f5cb738 JA |
2299 | /* |
2300 | * We have other queues, don't allow more IO from this one | |
2301 | */ | |
abc3c744 | 2302 | if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq)) |
0b182d61 | 2303 | return false; |
9ede209e | 2304 | |
365722bb | 2305 | /* |
474b18cc | 2306 | * Sole queue user, no limit |
365722bb | 2307 | */ |
abc3c744 SL |
2308 | if (cfqd->busy_queues == 1) |
2309 | max_dispatch = -1; | |
2310 | else | |
2311 | /* | |
2312 | * Normally we start throttling cfqq when cfq_quantum/2 | |
2313 | * requests have been dispatched. But we can drive | |
2314 | * deeper queue depths at the beginning of slice | |
2315 | * subjected to upper limit of cfq_quantum. | |
2316 | * */ | |
2317 | max_dispatch = cfqd->cfq_quantum; | |
8e296755 JA |
2318 | } |
2319 | ||
2320 | /* | |
2321 | * Async queues must wait a bit before being allowed dispatch. | |
2322 | * We also ramp up the dispatch depth gradually for async IO, | |
2323 | * based on the last sync IO we serviced | |
2324 | */ | |
963b72fc | 2325 | if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) { |
573412b2 | 2326 | unsigned long last_sync = jiffies - cfqd->last_delayed_sync; |
8e296755 | 2327 | unsigned int depth; |
365722bb | 2328 | |
61f0c1dc | 2329 | depth = last_sync / cfqd->cfq_slice[1]; |
e00c54c3 JA |
2330 | if (!depth && !cfqq->dispatched) |
2331 | depth = 1; | |
8e296755 JA |
2332 | if (depth < max_dispatch) |
2333 | max_dispatch = depth; | |
2f5cb738 | 2334 | } |
3ed9a296 | 2335 | |
0b182d61 JA |
2336 | /* |
2337 | * If we're below the current max, allow a dispatch | |
2338 | */ | |
2339 | return cfqq->dispatched < max_dispatch; | |
2340 | } | |
2341 | ||
2342 | /* | |
2343 | * Dispatch a request from cfqq, moving them to the request queue | |
2344 | * dispatch list. | |
2345 | */ | |
2346 | static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |
2347 | { | |
2348 | struct request *rq; | |
2349 | ||
2350 | BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list)); | |
2351 | ||
2352 | if (!cfq_may_dispatch(cfqd, cfqq)) | |
2353 | return false; | |
2354 | ||
2355 | /* | |
2356 | * follow expired path, else get first next available | |
2357 | */ | |
2358 | rq = cfq_check_fifo(cfqq); | |
2359 | if (!rq) | |
2360 | rq = cfqq->next_rq; | |
2361 | ||
2362 | /* | |
2363 | * insert request into driver dispatch list | |
2364 | */ | |
2365 | cfq_dispatch_insert(cfqd->queue, rq); | |
2366 | ||
2367 | if (!cfqd->active_cic) { | |
2368 | struct cfq_io_context *cic = RQ_CIC(rq); | |
2369 | ||
2370 | atomic_long_inc(&cic->ioc->refcount); | |
2371 | cfqd->active_cic = cic; | |
2372 | } | |
2373 | ||
2374 | return true; | |
2375 | } | |
2376 | ||
2377 | /* | |
2378 | * Find the cfqq that we need to service and move a request from that to the | |
2379 | * dispatch list | |
2380 | */ | |
2381 | static int cfq_dispatch_requests(struct request_queue *q, int force) | |
2382 | { | |
2383 | struct cfq_data *cfqd = q->elevator->elevator_data; | |
2384 | struct cfq_queue *cfqq; | |
2385 | ||
2386 | if (!cfqd->busy_queues) | |
2387 | return 0; | |
2388 | ||
2389 | if (unlikely(force)) | |
2390 | return cfq_forced_dispatch(cfqd); | |
2391 | ||
2392 | cfqq = cfq_select_queue(cfqd); | |
2393 | if (!cfqq) | |
8e296755 JA |
2394 | return 0; |
2395 | ||
2f5cb738 | 2396 | /* |
0b182d61 | 2397 | * Dispatch a request from this cfqq, if it is allowed |
2f5cb738 | 2398 | */ |
0b182d61 JA |
2399 | if (!cfq_dispatch_request(cfqd, cfqq)) |
2400 | return 0; | |
2401 | ||
2f5cb738 | 2402 | cfqq->slice_dispatch++; |
b029195d | 2403 | cfq_clear_cfqq_must_dispatch(cfqq); |
22e2c507 | 2404 | |
2f5cb738 JA |
2405 | /* |
2406 | * expire an async queue immediately if it has used up its slice. idle | |
2407 | * queue always expire after 1 dispatch round. | |
2408 | */ | |
2409 | if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) && | |
2410 | cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) || | |
2411 | cfq_class_idle(cfqq))) { | |
2412 | cfqq->slice_end = jiffies + 1; | |
e5ff082e | 2413 | cfq_slice_expired(cfqd, 0); |
1da177e4 LT |
2414 | } |
2415 | ||
b217a903 | 2416 | cfq_log_cfqq(cfqd, cfqq, "dispatched a request"); |
2f5cb738 | 2417 | return 1; |
1da177e4 LT |
2418 | } |
2419 | ||
1da177e4 | 2420 | /* |
5e705374 JA |
2421 | * task holds one reference to the queue, dropped when task exits. each rq |
2422 | * in-flight on this queue also holds a reference, dropped when rq is freed. | |
1da177e4 | 2423 | * |
b1c35769 | 2424 | * Each cfq queue took a reference on the parent group. Drop it now. |
1da177e4 LT |
2425 | * queue lock must be held here. |
2426 | */ | |
2427 | static void cfq_put_queue(struct cfq_queue *cfqq) | |
2428 | { | |
22e2c507 | 2429 | struct cfq_data *cfqd = cfqq->cfqd; |
878eaddd | 2430 | struct cfq_group *cfqg, *orig_cfqg; |
22e2c507 JA |
2431 | |
2432 | BUG_ON(atomic_read(&cfqq->ref) <= 0); | |
1da177e4 LT |
2433 | |
2434 | if (!atomic_dec_and_test(&cfqq->ref)) | |
2435 | return; | |
2436 | ||
7b679138 | 2437 | cfq_log_cfqq(cfqd, cfqq, "put_queue"); |
1da177e4 | 2438 | BUG_ON(rb_first(&cfqq->sort_list)); |
22e2c507 | 2439 | BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]); |
b1c35769 | 2440 | cfqg = cfqq->cfqg; |
878eaddd | 2441 | orig_cfqg = cfqq->orig_cfqg; |
1da177e4 | 2442 | |
28f95cbc | 2443 | if (unlikely(cfqd->active_queue == cfqq)) { |
e5ff082e | 2444 | __cfq_slice_expired(cfqd, cfqq, 0); |
23e018a1 | 2445 | cfq_schedule_dispatch(cfqd); |
28f95cbc | 2446 | } |
22e2c507 | 2447 | |
f04a6424 | 2448 | BUG_ON(cfq_cfqq_on_rr(cfqq)); |
1da177e4 | 2449 | kmem_cache_free(cfq_pool, cfqq); |
b1c35769 | 2450 | cfq_put_cfqg(cfqg); |
878eaddd VG |
2451 | if (orig_cfqg) |
2452 | cfq_put_cfqg(orig_cfqg); | |
1da177e4 LT |
2453 | } |
2454 | ||
d6de8be7 JA |
2455 | /* |
2456 | * Must always be called with the rcu_read_lock() held | |
2457 | */ | |
07416d29 JA |
2458 | static void |
2459 | __call_for_each_cic(struct io_context *ioc, | |
2460 | void (*func)(struct io_context *, struct cfq_io_context *)) | |
2461 | { | |
2462 | struct cfq_io_context *cic; | |
2463 | struct hlist_node *n; | |
2464 | ||
2465 | hlist_for_each_entry_rcu(cic, n, &ioc->cic_list, cic_list) | |
2466 | func(ioc, cic); | |
2467 | } | |
2468 | ||
4ac845a2 | 2469 | /* |
34e6bbf2 | 2470 | * Call func for each cic attached to this ioc. |
4ac845a2 | 2471 | */ |
34e6bbf2 | 2472 | static void |
4ac845a2 JA |
2473 | call_for_each_cic(struct io_context *ioc, |
2474 | void (*func)(struct io_context *, struct cfq_io_context *)) | |
1da177e4 | 2475 | { |
4ac845a2 | 2476 | rcu_read_lock(); |
07416d29 | 2477 | __call_for_each_cic(ioc, func); |
4ac845a2 | 2478 | rcu_read_unlock(); |
34e6bbf2 FC |
2479 | } |
2480 | ||
2481 | static void cfq_cic_free_rcu(struct rcu_head *head) | |
2482 | { | |
2483 | struct cfq_io_context *cic; | |
2484 | ||
2485 | cic = container_of(head, struct cfq_io_context, rcu_head); | |
2486 | ||
2487 | kmem_cache_free(cfq_ioc_pool, cic); | |
245b2e70 | 2488 | elv_ioc_count_dec(cfq_ioc_count); |
34e6bbf2 | 2489 | |
9a11b4ed JA |
2490 | if (ioc_gone) { |
2491 | /* | |
2492 | * CFQ scheduler is exiting, grab exit lock and check | |
2493 | * the pending io context count. If it hits zero, | |
2494 | * complete ioc_gone and set it back to NULL | |
2495 | */ | |
2496 | spin_lock(&ioc_gone_lock); | |
245b2e70 | 2497 | if (ioc_gone && !elv_ioc_count_read(cfq_ioc_count)) { |
9a11b4ed JA |
2498 | complete(ioc_gone); |
2499 | ioc_gone = NULL; | |
2500 | } | |
2501 | spin_unlock(&ioc_gone_lock); | |
2502 | } | |
34e6bbf2 | 2503 | } |
4ac845a2 | 2504 | |
34e6bbf2 FC |
2505 | static void cfq_cic_free(struct cfq_io_context *cic) |
2506 | { | |
2507 | call_rcu(&cic->rcu_head, cfq_cic_free_rcu); | |
4ac845a2 JA |
2508 | } |
2509 | ||
2510 | static void cic_free_func(struct io_context *ioc, struct cfq_io_context *cic) | |
2511 | { | |
2512 | unsigned long flags; | |
2513 | ||
2514 | BUG_ON(!cic->dead_key); | |
2515 | ||
2516 | spin_lock_irqsave(&ioc->lock, flags); | |
2517 | radix_tree_delete(&ioc->radix_root, cic->dead_key); | |
ffc4e759 | 2518 | hlist_del_rcu(&cic->cic_list); |
4ac845a2 JA |
2519 | spin_unlock_irqrestore(&ioc->lock, flags); |
2520 | ||
34e6bbf2 | 2521 | cfq_cic_free(cic); |
4ac845a2 JA |
2522 | } |
2523 | ||
d6de8be7 JA |
2524 | /* |
2525 | * Must be called with rcu_read_lock() held or preemption otherwise disabled. | |
2526 | * Only two callers of this - ->dtor() which is called with the rcu_read_lock(), | |
2527 | * and ->trim() which is called with the task lock held | |
2528 | */ | |
4ac845a2 JA |
2529 | static void cfq_free_io_context(struct io_context *ioc) |
2530 | { | |
4ac845a2 | 2531 | /* |
34e6bbf2 FC |
2532 | * ioc->refcount is zero here, or we are called from elv_unregister(), |
2533 | * so no more cic's are allowed to be linked into this ioc. So it | |
2534 | * should be ok to iterate over the known list, we will see all cic's | |
2535 | * since no new ones are added. | |
4ac845a2 | 2536 | */ |
07416d29 | 2537 | __call_for_each_cic(ioc, cic_free_func); |
1da177e4 LT |
2538 | } |
2539 | ||
89850f7e | 2540 | static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
1da177e4 | 2541 | { |
df5fe3e8 JM |
2542 | struct cfq_queue *__cfqq, *next; |
2543 | ||
28f95cbc | 2544 | if (unlikely(cfqq == cfqd->active_queue)) { |
e5ff082e | 2545 | __cfq_slice_expired(cfqd, cfqq, 0); |
23e018a1 | 2546 | cfq_schedule_dispatch(cfqd); |
28f95cbc | 2547 | } |
22e2c507 | 2548 | |
df5fe3e8 JM |
2549 | /* |
2550 | * If this queue was scheduled to merge with another queue, be | |
2551 | * sure to drop the reference taken on that queue (and others in | |
2552 | * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs. | |
2553 | */ | |
2554 | __cfqq = cfqq->new_cfqq; | |
2555 | while (__cfqq) { | |
2556 | if (__cfqq == cfqq) { | |
2557 | WARN(1, "cfqq->new_cfqq loop detected\n"); | |
2558 | break; | |
2559 | } | |
2560 | next = __cfqq->new_cfqq; | |
2561 | cfq_put_queue(__cfqq); | |
2562 | __cfqq = next; | |
2563 | } | |
2564 | ||
89850f7e JA |
2565 | cfq_put_queue(cfqq); |
2566 | } | |
22e2c507 | 2567 | |
89850f7e JA |
2568 | static void __cfq_exit_single_io_context(struct cfq_data *cfqd, |
2569 | struct cfq_io_context *cic) | |
2570 | { | |
4faa3c81 FC |
2571 | struct io_context *ioc = cic->ioc; |
2572 | ||
fc46379d | 2573 | list_del_init(&cic->queue_list); |
4ac845a2 JA |
2574 | |
2575 | /* | |
2576 | * Make sure key == NULL is seen for dead queues | |
2577 | */ | |
fc46379d | 2578 | smp_wmb(); |
4ac845a2 | 2579 | cic->dead_key = (unsigned long) cic->key; |
fc46379d JA |
2580 | cic->key = NULL; |
2581 | ||
4faa3c81 FC |
2582 | if (ioc->ioc_data == cic) |
2583 | rcu_assign_pointer(ioc->ioc_data, NULL); | |
2584 | ||
ff6657c6 JA |
2585 | if (cic->cfqq[BLK_RW_ASYNC]) { |
2586 | cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_ASYNC]); | |
2587 | cic->cfqq[BLK_RW_ASYNC] = NULL; | |
12a05732 AV |
2588 | } |
2589 | ||
ff6657c6 JA |
2590 | if (cic->cfqq[BLK_RW_SYNC]) { |
2591 | cfq_exit_cfqq(cfqd, cic->cfqq[BLK_RW_SYNC]); | |
2592 | cic->cfqq[BLK_RW_SYNC] = NULL; | |
12a05732 | 2593 | } |
89850f7e JA |
2594 | } |
2595 | ||
4ac845a2 JA |
2596 | static void cfq_exit_single_io_context(struct io_context *ioc, |
2597 | struct cfq_io_context *cic) | |
89850f7e JA |
2598 | { |
2599 | struct cfq_data *cfqd = cic->key; | |
2600 | ||
89850f7e | 2601 | if (cfqd) { |
165125e1 | 2602 | struct request_queue *q = cfqd->queue; |
4ac845a2 | 2603 | unsigned long flags; |
89850f7e | 2604 | |
4ac845a2 | 2605 | spin_lock_irqsave(q->queue_lock, flags); |
62c1fe9d JA |
2606 | |
2607 | /* | |
2608 | * Ensure we get a fresh copy of the ->key to prevent | |
2609 | * race between exiting task and queue | |
2610 | */ | |
2611 | smp_read_barrier_depends(); | |
2612 | if (cic->key) | |
2613 | __cfq_exit_single_io_context(cfqd, cic); | |
2614 | ||
4ac845a2 | 2615 | spin_unlock_irqrestore(q->queue_lock, flags); |
89850f7e | 2616 | } |
1da177e4 LT |
2617 | } |
2618 | ||
498d3aa2 JA |
2619 | /* |
2620 | * The process that ioc belongs to has exited, we need to clean up | |
2621 | * and put the internal structures we have that belongs to that process. | |
2622 | */ | |
e2d74ac0 | 2623 | static void cfq_exit_io_context(struct io_context *ioc) |
1da177e4 | 2624 | { |
4ac845a2 | 2625 | call_for_each_cic(ioc, cfq_exit_single_io_context); |
1da177e4 LT |
2626 | } |
2627 | ||
22e2c507 | 2628 | static struct cfq_io_context * |
8267e268 | 2629 | cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask) |
1da177e4 | 2630 | { |
b5deef90 | 2631 | struct cfq_io_context *cic; |
1da177e4 | 2632 | |
94f6030c CL |
2633 | cic = kmem_cache_alloc_node(cfq_ioc_pool, gfp_mask | __GFP_ZERO, |
2634 | cfqd->queue->node); | |
1da177e4 | 2635 | if (cic) { |
22e2c507 | 2636 | cic->last_end_request = jiffies; |
553698f9 | 2637 | INIT_LIST_HEAD(&cic->queue_list); |
ffc4e759 | 2638 | INIT_HLIST_NODE(&cic->cic_list); |
22e2c507 JA |
2639 | cic->dtor = cfq_free_io_context; |
2640 | cic->exit = cfq_exit_io_context; | |
245b2e70 | 2641 | elv_ioc_count_inc(cfq_ioc_count); |
1da177e4 LT |
2642 | } |
2643 | ||
2644 | return cic; | |
2645 | } | |
2646 | ||
fd0928df | 2647 | static void cfq_init_prio_data(struct cfq_queue *cfqq, struct io_context *ioc) |
22e2c507 JA |
2648 | { |
2649 | struct task_struct *tsk = current; | |
2650 | int ioprio_class; | |
2651 | ||
3b18152c | 2652 | if (!cfq_cfqq_prio_changed(cfqq)) |
22e2c507 JA |
2653 | return; |
2654 | ||
fd0928df | 2655 | ioprio_class = IOPRIO_PRIO_CLASS(ioc->ioprio); |
22e2c507 | 2656 | switch (ioprio_class) { |
fe094d98 JA |
2657 | default: |
2658 | printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class); | |
2659 | case IOPRIO_CLASS_NONE: | |
2660 | /* | |
6d63c275 | 2661 | * no prio set, inherit CPU scheduling settings |
fe094d98 JA |
2662 | */ |
2663 | cfqq->ioprio = task_nice_ioprio(tsk); | |
6d63c275 | 2664 | cfqq->ioprio_class = task_nice_ioclass(tsk); |
fe094d98 JA |
2665 | break; |
2666 | case IOPRIO_CLASS_RT: | |
2667 | cfqq->ioprio = task_ioprio(ioc); | |
2668 | cfqq->ioprio_class = IOPRIO_CLASS_RT; | |
2669 | break; | |
2670 | case IOPRIO_CLASS_BE: | |
2671 | cfqq->ioprio = task_ioprio(ioc); | |
2672 | cfqq->ioprio_class = IOPRIO_CLASS_BE; | |
2673 | break; | |
2674 | case IOPRIO_CLASS_IDLE: | |
2675 | cfqq->ioprio_class = IOPRIO_CLASS_IDLE; | |
2676 | cfqq->ioprio = 7; | |
2677 | cfq_clear_cfqq_idle_window(cfqq); | |
2678 | break; | |
22e2c507 JA |
2679 | } |
2680 | ||
2681 | /* | |
2682 | * keep track of original prio settings in case we have to temporarily | |
2683 | * elevate the priority of this queue | |
2684 | */ | |
2685 | cfqq->org_ioprio = cfqq->ioprio; | |
2686 | cfqq->org_ioprio_class = cfqq->ioprio_class; | |
3b18152c | 2687 | cfq_clear_cfqq_prio_changed(cfqq); |
22e2c507 JA |
2688 | } |
2689 | ||
febffd61 | 2690 | static void changed_ioprio(struct io_context *ioc, struct cfq_io_context *cic) |
22e2c507 | 2691 | { |
478a82b0 AV |
2692 | struct cfq_data *cfqd = cic->key; |
2693 | struct cfq_queue *cfqq; | |
c1b707d2 | 2694 | unsigned long flags; |
35e6077c | 2695 | |
caaa5f9f JA |
2696 | if (unlikely(!cfqd)) |
2697 | return; | |
2698 | ||
c1b707d2 | 2699 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); |
caaa5f9f | 2700 | |
ff6657c6 | 2701 | cfqq = cic->cfqq[BLK_RW_ASYNC]; |
caaa5f9f JA |
2702 | if (cfqq) { |
2703 | struct cfq_queue *new_cfqq; | |
ff6657c6 JA |
2704 | new_cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic->ioc, |
2705 | GFP_ATOMIC); | |
caaa5f9f | 2706 | if (new_cfqq) { |
ff6657c6 | 2707 | cic->cfqq[BLK_RW_ASYNC] = new_cfqq; |
caaa5f9f JA |
2708 | cfq_put_queue(cfqq); |
2709 | } | |
22e2c507 | 2710 | } |
caaa5f9f | 2711 | |
ff6657c6 | 2712 | cfqq = cic->cfqq[BLK_RW_SYNC]; |
caaa5f9f JA |
2713 | if (cfqq) |
2714 | cfq_mark_cfqq_prio_changed(cfqq); | |
2715 | ||
c1b707d2 | 2716 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); |
22e2c507 JA |
2717 | } |
2718 | ||
fc46379d | 2719 | static void cfq_ioc_set_ioprio(struct io_context *ioc) |
22e2c507 | 2720 | { |
4ac845a2 | 2721 | call_for_each_cic(ioc, changed_ioprio); |
fc46379d | 2722 | ioc->ioprio_changed = 0; |
22e2c507 JA |
2723 | } |
2724 | ||
d5036d77 | 2725 | static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
a6151c3a | 2726 | pid_t pid, bool is_sync) |
d5036d77 JA |
2727 | { |
2728 | RB_CLEAR_NODE(&cfqq->rb_node); | |
2729 | RB_CLEAR_NODE(&cfqq->p_node); | |
2730 | INIT_LIST_HEAD(&cfqq->fifo); | |
2731 | ||
2732 | atomic_set(&cfqq->ref, 0); | |
2733 | cfqq->cfqd = cfqd; | |
2734 | ||
2735 | cfq_mark_cfqq_prio_changed(cfqq); | |
2736 | ||
2737 | if (is_sync) { | |
2738 | if (!cfq_class_idle(cfqq)) | |
2739 | cfq_mark_cfqq_idle_window(cfqq); | |
2740 | cfq_mark_cfqq_sync(cfqq); | |
2741 | } | |
2742 | cfqq->pid = pid; | |
2743 | } | |
2744 | ||
24610333 VG |
2745 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
2746 | static void changed_cgroup(struct io_context *ioc, struct cfq_io_context *cic) | |
2747 | { | |
2748 | struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1); | |
2749 | struct cfq_data *cfqd = cic->key; | |
2750 | unsigned long flags; | |
2751 | struct request_queue *q; | |
2752 | ||
2753 | if (unlikely(!cfqd)) | |
2754 | return; | |
2755 | ||
2756 | q = cfqd->queue; | |
2757 | ||
2758 | spin_lock_irqsave(q->queue_lock, flags); | |
2759 | ||
2760 | if (sync_cfqq) { | |
2761 | /* | |
2762 | * Drop reference to sync queue. A new sync queue will be | |
2763 | * assigned in new group upon arrival of a fresh request. | |
2764 | */ | |
2765 | cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup"); | |
2766 | cic_set_cfqq(cic, NULL, 1); | |
2767 | cfq_put_queue(sync_cfqq); | |
2768 | } | |
2769 | ||
2770 | spin_unlock_irqrestore(q->queue_lock, flags); | |
2771 | } | |
2772 | ||
2773 | static void cfq_ioc_set_cgroup(struct io_context *ioc) | |
2774 | { | |
2775 | call_for_each_cic(ioc, changed_cgroup); | |
2776 | ioc->cgroup_changed = 0; | |
2777 | } | |
2778 | #endif /* CONFIG_CFQ_GROUP_IOSCHED */ | |
2779 | ||
22e2c507 | 2780 | static struct cfq_queue * |
a6151c3a | 2781 | cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync, |
fd0928df | 2782 | struct io_context *ioc, gfp_t gfp_mask) |
22e2c507 | 2783 | { |
22e2c507 | 2784 | struct cfq_queue *cfqq, *new_cfqq = NULL; |
91fac317 | 2785 | struct cfq_io_context *cic; |
cdb16e8f | 2786 | struct cfq_group *cfqg; |
22e2c507 JA |
2787 | |
2788 | retry: | |
cdb16e8f | 2789 | cfqg = cfq_get_cfqg(cfqd, 1); |
4ac845a2 | 2790 | cic = cfq_cic_lookup(cfqd, ioc); |
91fac317 VT |
2791 | /* cic always exists here */ |
2792 | cfqq = cic_to_cfqq(cic, is_sync); | |
22e2c507 | 2793 | |
6118b70b JA |
2794 | /* |
2795 | * Always try a new alloc if we fell back to the OOM cfqq | |
2796 | * originally, since it should just be a temporary situation. | |
2797 | */ | |
2798 | if (!cfqq || cfqq == &cfqd->oom_cfqq) { | |
2799 | cfqq = NULL; | |
22e2c507 JA |
2800 | if (new_cfqq) { |
2801 | cfqq = new_cfqq; | |
2802 | new_cfqq = NULL; | |
2803 | } else if (gfp_mask & __GFP_WAIT) { | |
2804 | spin_unlock_irq(cfqd->queue->queue_lock); | |
94f6030c | 2805 | new_cfqq = kmem_cache_alloc_node(cfq_pool, |
6118b70b | 2806 | gfp_mask | __GFP_ZERO, |
94f6030c | 2807 | cfqd->queue->node); |
22e2c507 | 2808 | spin_lock_irq(cfqd->queue->queue_lock); |
6118b70b JA |
2809 | if (new_cfqq) |
2810 | goto retry; | |
22e2c507 | 2811 | } else { |
94f6030c CL |
2812 | cfqq = kmem_cache_alloc_node(cfq_pool, |
2813 | gfp_mask | __GFP_ZERO, | |
2814 | cfqd->queue->node); | |
22e2c507 JA |
2815 | } |
2816 | ||
6118b70b JA |
2817 | if (cfqq) { |
2818 | cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync); | |
2819 | cfq_init_prio_data(cfqq, ioc); | |
cdb16e8f | 2820 | cfq_link_cfqq_cfqg(cfqq, cfqg); |
6118b70b JA |
2821 | cfq_log_cfqq(cfqd, cfqq, "alloced"); |
2822 | } else | |
2823 | cfqq = &cfqd->oom_cfqq; | |
22e2c507 JA |
2824 | } |
2825 | ||
2826 | if (new_cfqq) | |
2827 | kmem_cache_free(cfq_pool, new_cfqq); | |
2828 | ||
22e2c507 JA |
2829 | return cfqq; |
2830 | } | |
2831 | ||
c2dea2d1 VT |
2832 | static struct cfq_queue ** |
2833 | cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio) | |
2834 | { | |
fe094d98 | 2835 | switch (ioprio_class) { |
c2dea2d1 VT |
2836 | case IOPRIO_CLASS_RT: |
2837 | return &cfqd->async_cfqq[0][ioprio]; | |
2838 | case IOPRIO_CLASS_BE: | |
2839 | return &cfqd->async_cfqq[1][ioprio]; | |
2840 | case IOPRIO_CLASS_IDLE: | |
2841 | return &cfqd->async_idle_cfqq; | |
2842 | default: | |
2843 | BUG(); | |
2844 | } | |
2845 | } | |
2846 | ||
15c31be4 | 2847 | static struct cfq_queue * |
a6151c3a | 2848 | cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct io_context *ioc, |
15c31be4 JA |
2849 | gfp_t gfp_mask) |
2850 | { | |
fd0928df JA |
2851 | const int ioprio = task_ioprio(ioc); |
2852 | const int ioprio_class = task_ioprio_class(ioc); | |
c2dea2d1 | 2853 | struct cfq_queue **async_cfqq = NULL; |
15c31be4 JA |
2854 | struct cfq_queue *cfqq = NULL; |
2855 | ||
c2dea2d1 VT |
2856 | if (!is_sync) { |
2857 | async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio); | |
2858 | cfqq = *async_cfqq; | |
2859 | } | |
2860 | ||
6118b70b | 2861 | if (!cfqq) |
fd0928df | 2862 | cfqq = cfq_find_alloc_queue(cfqd, is_sync, ioc, gfp_mask); |
15c31be4 JA |
2863 | |
2864 | /* | |
2865 | * pin the queue now that it's allocated, scheduler exit will prune it | |
2866 | */ | |
c2dea2d1 | 2867 | if (!is_sync && !(*async_cfqq)) { |
15c31be4 | 2868 | atomic_inc(&cfqq->ref); |
c2dea2d1 | 2869 | *async_cfqq = cfqq; |
15c31be4 JA |
2870 | } |
2871 | ||
2872 | atomic_inc(&cfqq->ref); | |
2873 | return cfqq; | |
2874 | } | |
2875 | ||
498d3aa2 JA |
2876 | /* |
2877 | * We drop cfq io contexts lazily, so we may find a dead one. | |
2878 | */ | |
dbecf3ab | 2879 | static void |
4ac845a2 JA |
2880 | cfq_drop_dead_cic(struct cfq_data *cfqd, struct io_context *ioc, |
2881 | struct cfq_io_context *cic) | |
dbecf3ab | 2882 | { |
4ac845a2 JA |
2883 | unsigned long flags; |
2884 | ||
fc46379d | 2885 | WARN_ON(!list_empty(&cic->queue_list)); |
597bc485 | 2886 | |
4ac845a2 JA |
2887 | spin_lock_irqsave(&ioc->lock, flags); |
2888 | ||
4faa3c81 | 2889 | BUG_ON(ioc->ioc_data == cic); |
597bc485 | 2890 | |
4ac845a2 | 2891 | radix_tree_delete(&ioc->radix_root, (unsigned long) cfqd); |
ffc4e759 | 2892 | hlist_del_rcu(&cic->cic_list); |
4ac845a2 JA |
2893 | spin_unlock_irqrestore(&ioc->lock, flags); |
2894 | ||
2895 | cfq_cic_free(cic); | |
dbecf3ab OH |
2896 | } |
2897 | ||
e2d74ac0 | 2898 | static struct cfq_io_context * |
4ac845a2 | 2899 | cfq_cic_lookup(struct cfq_data *cfqd, struct io_context *ioc) |
e2d74ac0 | 2900 | { |
e2d74ac0 | 2901 | struct cfq_io_context *cic; |
d6de8be7 | 2902 | unsigned long flags; |
4ac845a2 | 2903 | void *k; |
e2d74ac0 | 2904 | |
91fac317 VT |
2905 | if (unlikely(!ioc)) |
2906 | return NULL; | |
2907 | ||
d6de8be7 JA |
2908 | rcu_read_lock(); |
2909 | ||
597bc485 JA |
2910 | /* |
2911 | * we maintain a last-hit cache, to avoid browsing over the tree | |
2912 | */ | |
4ac845a2 | 2913 | cic = rcu_dereference(ioc->ioc_data); |
d6de8be7 JA |
2914 | if (cic && cic->key == cfqd) { |
2915 | rcu_read_unlock(); | |
597bc485 | 2916 | return cic; |
d6de8be7 | 2917 | } |
597bc485 | 2918 | |
4ac845a2 | 2919 | do { |
4ac845a2 JA |
2920 | cic = radix_tree_lookup(&ioc->radix_root, (unsigned long) cfqd); |
2921 | rcu_read_unlock(); | |
2922 | if (!cic) | |
2923 | break; | |
be3b0753 OH |
2924 | /* ->key must be copied to avoid race with cfq_exit_queue() */ |
2925 | k = cic->key; | |
2926 | if (unlikely(!k)) { | |
4ac845a2 | 2927 | cfq_drop_dead_cic(cfqd, ioc, cic); |
d6de8be7 | 2928 | rcu_read_lock(); |
4ac845a2 | 2929 | continue; |
dbecf3ab | 2930 | } |
e2d74ac0 | 2931 | |
d6de8be7 | 2932 | spin_lock_irqsave(&ioc->lock, flags); |
4ac845a2 | 2933 | rcu_assign_pointer(ioc->ioc_data, cic); |
d6de8be7 | 2934 | spin_unlock_irqrestore(&ioc->lock, flags); |
4ac845a2 JA |
2935 | break; |
2936 | } while (1); | |
e2d74ac0 | 2937 | |
4ac845a2 | 2938 | return cic; |
e2d74ac0 JA |
2939 | } |
2940 | ||
4ac845a2 JA |
2941 | /* |
2942 | * Add cic into ioc, using cfqd as the search key. This enables us to lookup | |
2943 | * the process specific cfq io context when entered from the block layer. | |
2944 | * Also adds the cic to a per-cfqd list, used when this queue is removed. | |
2945 | */ | |
febffd61 JA |
2946 | static int cfq_cic_link(struct cfq_data *cfqd, struct io_context *ioc, |
2947 | struct cfq_io_context *cic, gfp_t gfp_mask) | |
e2d74ac0 | 2948 | { |
0261d688 | 2949 | unsigned long flags; |
4ac845a2 | 2950 | int ret; |
e2d74ac0 | 2951 | |
4ac845a2 JA |
2952 | ret = radix_tree_preload(gfp_mask); |
2953 | if (!ret) { | |
2954 | cic->ioc = ioc; | |
2955 | cic->key = cfqd; | |
e2d74ac0 | 2956 | |
4ac845a2 JA |
2957 | spin_lock_irqsave(&ioc->lock, flags); |
2958 | ret = radix_tree_insert(&ioc->radix_root, | |
2959 | (unsigned long) cfqd, cic); | |
ffc4e759 JA |
2960 | if (!ret) |
2961 | hlist_add_head_rcu(&cic->cic_list, &ioc->cic_list); | |
4ac845a2 | 2962 | spin_unlock_irqrestore(&ioc->lock, flags); |
e2d74ac0 | 2963 | |
4ac845a2 JA |
2964 | radix_tree_preload_end(); |
2965 | ||
2966 | if (!ret) { | |
2967 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); | |
2968 | list_add(&cic->queue_list, &cfqd->cic_list); | |
2969 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); | |
2970 | } | |
e2d74ac0 JA |
2971 | } |
2972 | ||
4ac845a2 JA |
2973 | if (ret) |
2974 | printk(KERN_ERR "cfq: cic link failed!\n"); | |
fc46379d | 2975 | |
4ac845a2 | 2976 | return ret; |
e2d74ac0 JA |
2977 | } |
2978 | ||
1da177e4 LT |
2979 | /* |
2980 | * Setup general io context and cfq io context. There can be several cfq | |
2981 | * io contexts per general io context, if this process is doing io to more | |
e2d74ac0 | 2982 | * than one device managed by cfq. |
1da177e4 LT |
2983 | */ |
2984 | static struct cfq_io_context * | |
e2d74ac0 | 2985 | cfq_get_io_context(struct cfq_data *cfqd, gfp_t gfp_mask) |
1da177e4 | 2986 | { |
22e2c507 | 2987 | struct io_context *ioc = NULL; |
1da177e4 | 2988 | struct cfq_io_context *cic; |
1da177e4 | 2989 | |
22e2c507 | 2990 | might_sleep_if(gfp_mask & __GFP_WAIT); |
1da177e4 | 2991 | |
b5deef90 | 2992 | ioc = get_io_context(gfp_mask, cfqd->queue->node); |
1da177e4 LT |
2993 | if (!ioc) |
2994 | return NULL; | |
2995 | ||
4ac845a2 | 2996 | cic = cfq_cic_lookup(cfqd, ioc); |
e2d74ac0 JA |
2997 | if (cic) |
2998 | goto out; | |
1da177e4 | 2999 | |
e2d74ac0 JA |
3000 | cic = cfq_alloc_io_context(cfqd, gfp_mask); |
3001 | if (cic == NULL) | |
3002 | goto err; | |
1da177e4 | 3003 | |
4ac845a2 JA |
3004 | if (cfq_cic_link(cfqd, ioc, cic, gfp_mask)) |
3005 | goto err_free; | |
3006 | ||
1da177e4 | 3007 | out: |
fc46379d JA |
3008 | smp_read_barrier_depends(); |
3009 | if (unlikely(ioc->ioprio_changed)) | |
3010 | cfq_ioc_set_ioprio(ioc); | |
3011 | ||
24610333 VG |
3012 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
3013 | if (unlikely(ioc->cgroup_changed)) | |
3014 | cfq_ioc_set_cgroup(ioc); | |
3015 | #endif | |
1da177e4 | 3016 | return cic; |
4ac845a2 JA |
3017 | err_free: |
3018 | cfq_cic_free(cic); | |
1da177e4 LT |
3019 | err: |
3020 | put_io_context(ioc); | |
3021 | return NULL; | |
3022 | } | |
3023 | ||
22e2c507 JA |
3024 | static void |
3025 | cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic) | |
1da177e4 | 3026 | { |
aaf1228d JA |
3027 | unsigned long elapsed = jiffies - cic->last_end_request; |
3028 | unsigned long ttime = min(elapsed, 2UL * cfqd->cfq_slice_idle); | |
db3b5848 | 3029 | |
22e2c507 JA |
3030 | cic->ttime_samples = (7*cic->ttime_samples + 256) / 8; |
3031 | cic->ttime_total = (7*cic->ttime_total + 256*ttime) / 8; | |
3032 | cic->ttime_mean = (cic->ttime_total + 128) / cic->ttime_samples; | |
3033 | } | |
1da177e4 | 3034 | |
206dc69b | 3035 | static void |
b2c18e1e | 3036 | cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
6d048f53 | 3037 | struct request *rq) |
206dc69b | 3038 | { |
3dde36dd | 3039 | sector_t sdist = 0; |
41647e7a | 3040 | sector_t n_sec = blk_rq_sectors(rq); |
3dde36dd CZ |
3041 | if (cfqq->last_request_pos) { |
3042 | if (cfqq->last_request_pos < blk_rq_pos(rq)) | |
3043 | sdist = blk_rq_pos(rq) - cfqq->last_request_pos; | |
3044 | else | |
3045 | sdist = cfqq->last_request_pos - blk_rq_pos(rq); | |
3046 | } | |
206dc69b | 3047 | |
3dde36dd | 3048 | cfqq->seek_history <<= 1; |
41647e7a CZ |
3049 | if (blk_queue_nonrot(cfqd->queue)) |
3050 | cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT); | |
3051 | else | |
3052 | cfqq->seek_history |= (sdist > CFQQ_SEEK_THR); | |
206dc69b | 3053 | } |
1da177e4 | 3054 | |
22e2c507 JA |
3055 | /* |
3056 | * Disable idle window if the process thinks too long or seeks so much that | |
3057 | * it doesn't matter | |
3058 | */ | |
3059 | static void | |
3060 | cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |
3061 | struct cfq_io_context *cic) | |
3062 | { | |
7b679138 | 3063 | int old_idle, enable_idle; |
1be92f2f | 3064 | |
0871714e JA |
3065 | /* |
3066 | * Don't idle for async or idle io prio class | |
3067 | */ | |
3068 | if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq)) | |
1be92f2f JA |
3069 | return; |
3070 | ||
c265a7f4 | 3071 | enable_idle = old_idle = cfq_cfqq_idle_window(cfqq); |
1da177e4 | 3072 | |
76280aff CZ |
3073 | if (cfqq->queued[0] + cfqq->queued[1] >= 4) |
3074 | cfq_mark_cfqq_deep(cfqq); | |
3075 | ||
66dac98e | 3076 | if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle || |
3dde36dd | 3077 | (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq))) |
22e2c507 JA |
3078 | enable_idle = 0; |
3079 | else if (sample_valid(cic->ttime_samples)) { | |
718eee05 | 3080 | if (cic->ttime_mean > cfqd->cfq_slice_idle) |
22e2c507 JA |
3081 | enable_idle = 0; |
3082 | else | |
3083 | enable_idle = 1; | |
1da177e4 LT |
3084 | } |
3085 | ||
7b679138 JA |
3086 | if (old_idle != enable_idle) { |
3087 | cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle); | |
3088 | if (enable_idle) | |
3089 | cfq_mark_cfqq_idle_window(cfqq); | |
3090 | else | |
3091 | cfq_clear_cfqq_idle_window(cfqq); | |
3092 | } | |
22e2c507 | 3093 | } |
1da177e4 | 3094 | |
22e2c507 JA |
3095 | /* |
3096 | * Check if new_cfqq should preempt the currently active queue. Return 0 for | |
3097 | * no or if we aren't sure, a 1 will cause a preempt. | |
3098 | */ | |
a6151c3a | 3099 | static bool |
22e2c507 | 3100 | cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq, |
5e705374 | 3101 | struct request *rq) |
22e2c507 | 3102 | { |
6d048f53 | 3103 | struct cfq_queue *cfqq; |
22e2c507 | 3104 | |
6d048f53 JA |
3105 | cfqq = cfqd->active_queue; |
3106 | if (!cfqq) | |
a6151c3a | 3107 | return false; |
22e2c507 | 3108 | |
6d048f53 | 3109 | if (cfq_class_idle(new_cfqq)) |
a6151c3a | 3110 | return false; |
22e2c507 JA |
3111 | |
3112 | if (cfq_class_idle(cfqq)) | |
a6151c3a | 3113 | return true; |
1e3335de | 3114 | |
875feb63 DS |
3115 | /* |
3116 | * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice. | |
3117 | */ | |
3118 | if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq)) | |
3119 | return false; | |
3120 | ||
374f84ac JA |
3121 | /* |
3122 | * if the new request is sync, but the currently running queue is | |
3123 | * not, let the sync request have priority. | |
3124 | */ | |
5e705374 | 3125 | if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq)) |
a6151c3a | 3126 | return true; |
1e3335de | 3127 | |
8682e1f1 VG |
3128 | if (new_cfqq->cfqg != cfqq->cfqg) |
3129 | return false; | |
3130 | ||
3131 | if (cfq_slice_used(cfqq)) | |
3132 | return true; | |
3133 | ||
3134 | /* Allow preemption only if we are idling on sync-noidle tree */ | |
3135 | if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD && | |
3136 | cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD && | |
3137 | new_cfqq->service_tree->count == 2 && | |
3138 | RB_EMPTY_ROOT(&cfqq->sort_list)) | |
3139 | return true; | |
3140 | ||
374f84ac JA |
3141 | /* |
3142 | * So both queues are sync. Let the new request get disk time if | |
3143 | * it's a metadata request and the current queue is doing regular IO. | |
3144 | */ | |
3145 | if (rq_is_meta(rq) && !cfqq->meta_pending) | |
e6ec4fe2 | 3146 | return true; |
22e2c507 | 3147 | |
3a9a3f6c DS |
3148 | /* |
3149 | * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice. | |
3150 | */ | |
3151 | if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq)) | |
a6151c3a | 3152 | return true; |
3a9a3f6c | 3153 | |
1e3335de | 3154 | if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq)) |
a6151c3a | 3155 | return false; |
1e3335de JA |
3156 | |
3157 | /* | |
3158 | * if this request is as-good as one we would expect from the | |
3159 | * current cfqq, let it preempt | |
3160 | */ | |
e9ce335d | 3161 | if (cfq_rq_close(cfqd, cfqq, rq)) |
a6151c3a | 3162 | return true; |
1e3335de | 3163 | |
a6151c3a | 3164 | return false; |
22e2c507 JA |
3165 | } |
3166 | ||
3167 | /* | |
3168 | * cfqq preempts the active queue. if we allowed preempt with no slice left, | |
3169 | * let it have half of its nominal slice. | |
3170 | */ | |
3171 | static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |
3172 | { | |
7b679138 | 3173 | cfq_log_cfqq(cfqd, cfqq, "preempt"); |
e5ff082e | 3174 | cfq_slice_expired(cfqd, 1); |
22e2c507 | 3175 | |
bf572256 JA |
3176 | /* |
3177 | * Put the new queue at the front of the of the current list, | |
3178 | * so we know that it will be selected next. | |
3179 | */ | |
3180 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); | |
edd75ffd JA |
3181 | |
3182 | cfq_service_tree_add(cfqd, cfqq, 1); | |
bf572256 | 3183 | |
44f7c160 JA |
3184 | cfqq->slice_end = 0; |
3185 | cfq_mark_cfqq_slice_new(cfqq); | |
22e2c507 JA |
3186 | } |
3187 | ||
22e2c507 | 3188 | /* |
5e705374 | 3189 | * Called when a new fs request (rq) is added (to cfqq). Check if there's |
22e2c507 JA |
3190 | * something we should do about it |
3191 | */ | |
3192 | static void | |
5e705374 JA |
3193 | cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
3194 | struct request *rq) | |
22e2c507 | 3195 | { |
5e705374 | 3196 | struct cfq_io_context *cic = RQ_CIC(rq); |
12e9fddd | 3197 | |
45333d5a | 3198 | cfqd->rq_queued++; |
374f84ac JA |
3199 | if (rq_is_meta(rq)) |
3200 | cfqq->meta_pending++; | |
3201 | ||
9c2c38a1 | 3202 | cfq_update_io_thinktime(cfqd, cic); |
b2c18e1e | 3203 | cfq_update_io_seektime(cfqd, cfqq, rq); |
9c2c38a1 JA |
3204 | cfq_update_idle_window(cfqd, cfqq, cic); |
3205 | ||
b2c18e1e | 3206 | cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq); |
22e2c507 JA |
3207 | |
3208 | if (cfqq == cfqd->active_queue) { | |
3209 | /* | |
b029195d JA |
3210 | * Remember that we saw a request from this process, but |
3211 | * don't start queuing just yet. Otherwise we risk seeing lots | |
3212 | * of tiny requests, because we disrupt the normal plugging | |
d6ceb25e JA |
3213 | * and merging. If the request is already larger than a single |
3214 | * page, let it rip immediately. For that case we assume that | |
2d870722 JA |
3215 | * merging is already done. Ditto for a busy system that |
3216 | * has other work pending, don't risk delaying until the | |
3217 | * idle timer unplug to continue working. | |
22e2c507 | 3218 | */ |
d6ceb25e | 3219 | if (cfq_cfqq_wait_request(cfqq)) { |
2d870722 JA |
3220 | if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE || |
3221 | cfqd->busy_queues > 1) { | |
812df48d | 3222 | cfq_del_timer(cfqd, cfqq); |
554554f6 | 3223 | cfq_clear_cfqq_wait_request(cfqq); |
bf791937 | 3224 | __blk_run_queue(cfqd->queue); |
a11cdaa7 DS |
3225 | } else { |
3226 | blkiocg_update_idle_time_stats( | |
3227 | &cfqq->cfqg->blkg); | |
bf791937 | 3228 | cfq_mark_cfqq_must_dispatch(cfqq); |
a11cdaa7 | 3229 | } |
d6ceb25e | 3230 | } |
5e705374 | 3231 | } else if (cfq_should_preempt(cfqd, cfqq, rq)) { |
22e2c507 JA |
3232 | /* |
3233 | * not the active queue - expire current slice if it is | |
3234 | * idle and has expired it's mean thinktime or this new queue | |
3a9a3f6c DS |
3235 | * has some old slice time left and is of higher priority or |
3236 | * this new queue is RT and the current one is BE | |
22e2c507 JA |
3237 | */ |
3238 | cfq_preempt_queue(cfqd, cfqq); | |
a7f55792 | 3239 | __blk_run_queue(cfqd->queue); |
22e2c507 | 3240 | } |
1da177e4 LT |
3241 | } |
3242 | ||
165125e1 | 3243 | static void cfq_insert_request(struct request_queue *q, struct request *rq) |
1da177e4 | 3244 | { |
b4878f24 | 3245 | struct cfq_data *cfqd = q->elevator->elevator_data; |
5e705374 | 3246 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
22e2c507 | 3247 | |
7b679138 | 3248 | cfq_log_cfqq(cfqd, cfqq, "insert_request"); |
fd0928df | 3249 | cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc); |
1da177e4 | 3250 | |
30996f40 | 3251 | rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]); |
22e2c507 | 3252 | list_add_tail(&rq->queuelist, &cfqq->fifo); |
aa6f6a3d | 3253 | cfq_add_rq_rb(rq); |
7f1dc8a2 | 3254 | blkiocg_update_io_add_stats(&(RQ_CFQG(rq))->blkg, |
cdc1184c DS |
3255 | &cfqd->serving_group->blkg, rq_data_dir(rq), |
3256 | rq_is_sync(rq)); | |
5e705374 | 3257 | cfq_rq_enqueued(cfqd, cfqq, rq); |
1da177e4 LT |
3258 | } |
3259 | ||
45333d5a AC |
3260 | /* |
3261 | * Update hw_tag based on peak queue depth over 50 samples under | |
3262 | * sufficient load. | |
3263 | */ | |
3264 | static void cfq_update_hw_tag(struct cfq_data *cfqd) | |
3265 | { | |
1a1238a7 SL |
3266 | struct cfq_queue *cfqq = cfqd->active_queue; |
3267 | ||
53c583d2 CZ |
3268 | if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth) |
3269 | cfqd->hw_tag_est_depth = cfqd->rq_in_driver; | |
e459dd08 CZ |
3270 | |
3271 | if (cfqd->hw_tag == 1) | |
3272 | return; | |
45333d5a AC |
3273 | |
3274 | if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN && | |
53c583d2 | 3275 | cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN) |
45333d5a AC |
3276 | return; |
3277 | ||
1a1238a7 SL |
3278 | /* |
3279 | * If active queue hasn't enough requests and can idle, cfq might not | |
3280 | * dispatch sufficient requests to hardware. Don't zero hw_tag in this | |
3281 | * case | |
3282 | */ | |
3283 | if (cfqq && cfq_cfqq_idle_window(cfqq) && | |
3284 | cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] < | |
53c583d2 | 3285 | CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN) |
1a1238a7 SL |
3286 | return; |
3287 | ||
45333d5a AC |
3288 | if (cfqd->hw_tag_samples++ < 50) |
3289 | return; | |
3290 | ||
e459dd08 | 3291 | if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN) |
45333d5a AC |
3292 | cfqd->hw_tag = 1; |
3293 | else | |
3294 | cfqd->hw_tag = 0; | |
45333d5a AC |
3295 | } |
3296 | ||
7667aa06 VG |
3297 | static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
3298 | { | |
3299 | struct cfq_io_context *cic = cfqd->active_cic; | |
3300 | ||
3301 | /* If there are other queues in the group, don't wait */ | |
3302 | if (cfqq->cfqg->nr_cfqq > 1) | |
3303 | return false; | |
3304 | ||
3305 | if (cfq_slice_used(cfqq)) | |
3306 | return true; | |
3307 | ||
3308 | /* if slice left is less than think time, wait busy */ | |
3309 | if (cic && sample_valid(cic->ttime_samples) | |
3310 | && (cfqq->slice_end - jiffies < cic->ttime_mean)) | |
3311 | return true; | |
3312 | ||
3313 | /* | |
3314 | * If think times is less than a jiffy than ttime_mean=0 and above | |
3315 | * will not be true. It might happen that slice has not expired yet | |
3316 | * but will expire soon (4-5 ns) during select_queue(). To cover the | |
3317 | * case where think time is less than a jiffy, mark the queue wait | |
3318 | * busy if only 1 jiffy is left in the slice. | |
3319 | */ | |
3320 | if (cfqq->slice_end - jiffies == 1) | |
3321 | return true; | |
3322 | ||
3323 | return false; | |
3324 | } | |
3325 | ||
165125e1 | 3326 | static void cfq_completed_request(struct request_queue *q, struct request *rq) |
1da177e4 | 3327 | { |
5e705374 | 3328 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
b4878f24 | 3329 | struct cfq_data *cfqd = cfqq->cfqd; |
5380a101 | 3330 | const int sync = rq_is_sync(rq); |
b4878f24 | 3331 | unsigned long now; |
1da177e4 | 3332 | |
b4878f24 | 3333 | now = jiffies; |
2868ef7b | 3334 | cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d", !!rq_noidle(rq)); |
1da177e4 | 3335 | |
45333d5a AC |
3336 | cfq_update_hw_tag(cfqd); |
3337 | ||
53c583d2 | 3338 | WARN_ON(!cfqd->rq_in_driver); |
6d048f53 | 3339 | WARN_ON(!cfqq->dispatched); |
53c583d2 | 3340 | cfqd->rq_in_driver--; |
6d048f53 | 3341 | cfqq->dispatched--; |
84c124da DS |
3342 | blkiocg_update_completion_stats(&cfqq->cfqg->blkg, rq_start_time_ns(rq), |
3343 | rq_io_start_time_ns(rq), rq_data_dir(rq), | |
3344 | rq_is_sync(rq)); | |
1da177e4 | 3345 | |
53c583d2 | 3346 | cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--; |
3ed9a296 | 3347 | |
365722bb | 3348 | if (sync) { |
5e705374 | 3349 | RQ_CIC(rq)->last_end_request = now; |
573412b2 CZ |
3350 | if (!time_after(rq->start_time + cfqd->cfq_fifo_expire[1], now)) |
3351 | cfqd->last_delayed_sync = now; | |
365722bb | 3352 | } |
caaa5f9f JA |
3353 | |
3354 | /* | |
3355 | * If this is the active queue, check if it needs to be expired, | |
3356 | * or if we want to idle in case it has no pending requests. | |
3357 | */ | |
3358 | if (cfqd->active_queue == cfqq) { | |
a36e71f9 JA |
3359 | const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list); |
3360 | ||
44f7c160 JA |
3361 | if (cfq_cfqq_slice_new(cfqq)) { |
3362 | cfq_set_prio_slice(cfqd, cfqq); | |
3363 | cfq_clear_cfqq_slice_new(cfqq); | |
3364 | } | |
f75edf2d VG |
3365 | |
3366 | /* | |
7667aa06 VG |
3367 | * Should we wait for next request to come in before we expire |
3368 | * the queue. | |
f75edf2d | 3369 | */ |
7667aa06 | 3370 | if (cfq_should_wait_busy(cfqd, cfqq)) { |
f75edf2d VG |
3371 | cfqq->slice_end = jiffies + cfqd->cfq_slice_idle; |
3372 | cfq_mark_cfqq_wait_busy(cfqq); | |
b1ffe737 | 3373 | cfq_log_cfqq(cfqd, cfqq, "will busy wait"); |
f75edf2d VG |
3374 | } |
3375 | ||
a36e71f9 | 3376 | /* |
8e550632 CZ |
3377 | * Idling is not enabled on: |
3378 | * - expired queues | |
3379 | * - idle-priority queues | |
3380 | * - async queues | |
3381 | * - queues with still some requests queued | |
3382 | * - when there is a close cooperator | |
a36e71f9 | 3383 | */ |
0871714e | 3384 | if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq)) |
e5ff082e | 3385 | cfq_slice_expired(cfqd, 1); |
8e550632 CZ |
3386 | else if (sync && cfqq_empty && |
3387 | !cfq_close_cooperator(cfqd, cfqq)) { | |
3388 | cfqd->noidle_tree_requires_idle |= !rq_noidle(rq); | |
3389 | /* | |
3390 | * Idling is enabled for SYNC_WORKLOAD. | |
3391 | * SYNC_NOIDLE_WORKLOAD idles at the end of the tree | |
3392 | * only if we processed at least one !rq_noidle request | |
3393 | */ | |
3394 | if (cfqd->serving_type == SYNC_WORKLOAD | |
c04645e5 VG |
3395 | || cfqd->noidle_tree_requires_idle |
3396 | || cfqq->cfqg->nr_cfqq == 1) | |
8e550632 CZ |
3397 | cfq_arm_slice_timer(cfqd); |
3398 | } | |
caaa5f9f | 3399 | } |
6d048f53 | 3400 | |
53c583d2 | 3401 | if (!cfqd->rq_in_driver) |
23e018a1 | 3402 | cfq_schedule_dispatch(cfqd); |
1da177e4 LT |
3403 | } |
3404 | ||
22e2c507 JA |
3405 | /* |
3406 | * we temporarily boost lower priority queues if they are holding fs exclusive | |
3407 | * resources. they are boosted to normal prio (CLASS_BE/4) | |
3408 | */ | |
3409 | static void cfq_prio_boost(struct cfq_queue *cfqq) | |
1da177e4 | 3410 | { |
22e2c507 JA |
3411 | if (has_fs_excl()) { |
3412 | /* | |
3413 | * boost idle prio on transactions that would lock out other | |
3414 | * users of the filesystem | |
3415 | */ | |
3416 | if (cfq_class_idle(cfqq)) | |
3417 | cfqq->ioprio_class = IOPRIO_CLASS_BE; | |
3418 | if (cfqq->ioprio > IOPRIO_NORM) | |
3419 | cfqq->ioprio = IOPRIO_NORM; | |
3420 | } else { | |
3421 | /* | |
dddb7451 | 3422 | * unboost the queue (if needed) |
22e2c507 | 3423 | */ |
dddb7451 CZ |
3424 | cfqq->ioprio_class = cfqq->org_ioprio_class; |
3425 | cfqq->ioprio = cfqq->org_ioprio; | |
22e2c507 | 3426 | } |
22e2c507 | 3427 | } |
1da177e4 | 3428 | |
89850f7e | 3429 | static inline int __cfq_may_queue(struct cfq_queue *cfqq) |
22e2c507 | 3430 | { |
1b379d8d | 3431 | if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) { |
3b18152c | 3432 | cfq_mark_cfqq_must_alloc_slice(cfqq); |
22e2c507 | 3433 | return ELV_MQUEUE_MUST; |
3b18152c | 3434 | } |
1da177e4 | 3435 | |
22e2c507 | 3436 | return ELV_MQUEUE_MAY; |
22e2c507 JA |
3437 | } |
3438 | ||
165125e1 | 3439 | static int cfq_may_queue(struct request_queue *q, int rw) |
22e2c507 JA |
3440 | { |
3441 | struct cfq_data *cfqd = q->elevator->elevator_data; | |
3442 | struct task_struct *tsk = current; | |
91fac317 | 3443 | struct cfq_io_context *cic; |
22e2c507 JA |
3444 | struct cfq_queue *cfqq; |
3445 | ||
3446 | /* | |
3447 | * don't force setup of a queue from here, as a call to may_queue | |
3448 | * does not necessarily imply that a request actually will be queued. | |
3449 | * so just lookup a possibly existing queue, or return 'may queue' | |
3450 | * if that fails | |
3451 | */ | |
4ac845a2 | 3452 | cic = cfq_cic_lookup(cfqd, tsk->io_context); |
91fac317 VT |
3453 | if (!cic) |
3454 | return ELV_MQUEUE_MAY; | |
3455 | ||
b0b78f81 | 3456 | cfqq = cic_to_cfqq(cic, rw_is_sync(rw)); |
22e2c507 | 3457 | if (cfqq) { |
fd0928df | 3458 | cfq_init_prio_data(cfqq, cic->ioc); |
22e2c507 JA |
3459 | cfq_prio_boost(cfqq); |
3460 | ||
89850f7e | 3461 | return __cfq_may_queue(cfqq); |
22e2c507 JA |
3462 | } |
3463 | ||
3464 | return ELV_MQUEUE_MAY; | |
1da177e4 LT |
3465 | } |
3466 | ||
1da177e4 LT |
3467 | /* |
3468 | * queue lock held here | |
3469 | */ | |
bb37b94c | 3470 | static void cfq_put_request(struct request *rq) |
1da177e4 | 3471 | { |
5e705374 | 3472 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
1da177e4 | 3473 | |
5e705374 | 3474 | if (cfqq) { |
22e2c507 | 3475 | const int rw = rq_data_dir(rq); |
1da177e4 | 3476 | |
22e2c507 JA |
3477 | BUG_ON(!cfqq->allocated[rw]); |
3478 | cfqq->allocated[rw]--; | |
1da177e4 | 3479 | |
5e705374 | 3480 | put_io_context(RQ_CIC(rq)->ioc); |
1da177e4 | 3481 | |
1da177e4 | 3482 | rq->elevator_private = NULL; |
5e705374 | 3483 | rq->elevator_private2 = NULL; |
1da177e4 | 3484 | |
7f1dc8a2 VG |
3485 | /* Put down rq reference on cfqg */ |
3486 | cfq_put_cfqg(RQ_CFQG(rq)); | |
3487 | rq->elevator_private3 = NULL; | |
3488 | ||
1da177e4 LT |
3489 | cfq_put_queue(cfqq); |
3490 | } | |
3491 | } | |
3492 | ||
df5fe3e8 JM |
3493 | static struct cfq_queue * |
3494 | cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic, | |
3495 | struct cfq_queue *cfqq) | |
3496 | { | |
3497 | cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq); | |
3498 | cic_set_cfqq(cic, cfqq->new_cfqq, 1); | |
b3b6d040 | 3499 | cfq_mark_cfqq_coop(cfqq->new_cfqq); |
df5fe3e8 JM |
3500 | cfq_put_queue(cfqq); |
3501 | return cic_to_cfqq(cic, 1); | |
3502 | } | |
3503 | ||
e6c5bc73 JM |
3504 | /* |
3505 | * Returns NULL if a new cfqq should be allocated, or the old cfqq if this | |
3506 | * was the last process referring to said cfqq. | |
3507 | */ | |
3508 | static struct cfq_queue * | |
3509 | split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq) | |
3510 | { | |
3511 | if (cfqq_process_refs(cfqq) == 1) { | |
e6c5bc73 JM |
3512 | cfqq->pid = current->pid; |
3513 | cfq_clear_cfqq_coop(cfqq); | |
ae54abed | 3514 | cfq_clear_cfqq_split_coop(cfqq); |
e6c5bc73 JM |
3515 | return cfqq; |
3516 | } | |
3517 | ||
3518 | cic_set_cfqq(cic, NULL, 1); | |
3519 | cfq_put_queue(cfqq); | |
3520 | return NULL; | |
3521 | } | |
1da177e4 | 3522 | /* |
22e2c507 | 3523 | * Allocate cfq data structures associated with this request. |
1da177e4 | 3524 | */ |
22e2c507 | 3525 | static int |
165125e1 | 3526 | cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask) |
1da177e4 LT |
3527 | { |
3528 | struct cfq_data *cfqd = q->elevator->elevator_data; | |
3529 | struct cfq_io_context *cic; | |
3530 | const int rw = rq_data_dir(rq); | |
a6151c3a | 3531 | const bool is_sync = rq_is_sync(rq); |
22e2c507 | 3532 | struct cfq_queue *cfqq; |
1da177e4 LT |
3533 | unsigned long flags; |
3534 | ||
3535 | might_sleep_if(gfp_mask & __GFP_WAIT); | |
3536 | ||
e2d74ac0 | 3537 | cic = cfq_get_io_context(cfqd, gfp_mask); |
22e2c507 | 3538 | |
1da177e4 LT |
3539 | spin_lock_irqsave(q->queue_lock, flags); |
3540 | ||
22e2c507 JA |
3541 | if (!cic) |
3542 | goto queue_fail; | |
3543 | ||
e6c5bc73 | 3544 | new_queue: |
91fac317 | 3545 | cfqq = cic_to_cfqq(cic, is_sync); |
32f2e807 | 3546 | if (!cfqq || cfqq == &cfqd->oom_cfqq) { |
fd0928df | 3547 | cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask); |
91fac317 | 3548 | cic_set_cfqq(cic, cfqq, is_sync); |
df5fe3e8 | 3549 | } else { |
e6c5bc73 JM |
3550 | /* |
3551 | * If the queue was seeky for too long, break it apart. | |
3552 | */ | |
ae54abed | 3553 | if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) { |
e6c5bc73 JM |
3554 | cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq"); |
3555 | cfqq = split_cfqq(cic, cfqq); | |
3556 | if (!cfqq) | |
3557 | goto new_queue; | |
3558 | } | |
3559 | ||
df5fe3e8 JM |
3560 | /* |
3561 | * Check to see if this queue is scheduled to merge with | |
3562 | * another, closely cooperating queue. The merging of | |
3563 | * queues happens here as it must be done in process context. | |
3564 | * The reference on new_cfqq was taken in merge_cfqqs. | |
3565 | */ | |
3566 | if (cfqq->new_cfqq) | |
3567 | cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq); | |
91fac317 | 3568 | } |
1da177e4 LT |
3569 | |
3570 | cfqq->allocated[rw]++; | |
22e2c507 | 3571 | atomic_inc(&cfqq->ref); |
1da177e4 | 3572 | |
5e705374 | 3573 | spin_unlock_irqrestore(q->queue_lock, flags); |
3b18152c | 3574 | |
5e705374 JA |
3575 | rq->elevator_private = cic; |
3576 | rq->elevator_private2 = cfqq; | |
7f1dc8a2 | 3577 | rq->elevator_private3 = cfq_ref_get_cfqg(cfqq->cfqg); |
5e705374 | 3578 | return 0; |
1da177e4 | 3579 | |
22e2c507 JA |
3580 | queue_fail: |
3581 | if (cic) | |
3582 | put_io_context(cic->ioc); | |
89850f7e | 3583 | |
23e018a1 | 3584 | cfq_schedule_dispatch(cfqd); |
1da177e4 | 3585 | spin_unlock_irqrestore(q->queue_lock, flags); |
7b679138 | 3586 | cfq_log(cfqd, "set_request fail"); |
1da177e4 LT |
3587 | return 1; |
3588 | } | |
3589 | ||
65f27f38 | 3590 | static void cfq_kick_queue(struct work_struct *work) |
22e2c507 | 3591 | { |
65f27f38 | 3592 | struct cfq_data *cfqd = |
23e018a1 | 3593 | container_of(work, struct cfq_data, unplug_work); |
165125e1 | 3594 | struct request_queue *q = cfqd->queue; |
22e2c507 | 3595 | |
40bb54d1 | 3596 | spin_lock_irq(q->queue_lock); |
a7f55792 | 3597 | __blk_run_queue(cfqd->queue); |
40bb54d1 | 3598 | spin_unlock_irq(q->queue_lock); |
22e2c507 JA |
3599 | } |
3600 | ||
3601 | /* | |
3602 | * Timer running if the active_queue is currently idling inside its time slice | |
3603 | */ | |
3604 | static void cfq_idle_slice_timer(unsigned long data) | |
3605 | { | |
3606 | struct cfq_data *cfqd = (struct cfq_data *) data; | |
3607 | struct cfq_queue *cfqq; | |
3608 | unsigned long flags; | |
3c6bd2f8 | 3609 | int timed_out = 1; |
22e2c507 | 3610 | |
7b679138 JA |
3611 | cfq_log(cfqd, "idle timer fired"); |
3612 | ||
22e2c507 JA |
3613 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); |
3614 | ||
fe094d98 JA |
3615 | cfqq = cfqd->active_queue; |
3616 | if (cfqq) { | |
3c6bd2f8 JA |
3617 | timed_out = 0; |
3618 | ||
b029195d JA |
3619 | /* |
3620 | * We saw a request before the queue expired, let it through | |
3621 | */ | |
3622 | if (cfq_cfqq_must_dispatch(cfqq)) | |
3623 | goto out_kick; | |
3624 | ||
22e2c507 JA |
3625 | /* |
3626 | * expired | |
3627 | */ | |
44f7c160 | 3628 | if (cfq_slice_used(cfqq)) |
22e2c507 JA |
3629 | goto expire; |
3630 | ||
3631 | /* | |
3632 | * only expire and reinvoke request handler, if there are | |
3633 | * other queues with pending requests | |
3634 | */ | |
caaa5f9f | 3635 | if (!cfqd->busy_queues) |
22e2c507 | 3636 | goto out_cont; |
22e2c507 JA |
3637 | |
3638 | /* | |
3639 | * not expired and it has a request pending, let it dispatch | |
3640 | */ | |
75e50984 | 3641 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
22e2c507 | 3642 | goto out_kick; |
76280aff CZ |
3643 | |
3644 | /* | |
3645 | * Queue depth flag is reset only when the idle didn't succeed | |
3646 | */ | |
3647 | cfq_clear_cfqq_deep(cfqq); | |
22e2c507 JA |
3648 | } |
3649 | expire: | |
e5ff082e | 3650 | cfq_slice_expired(cfqd, timed_out); |
22e2c507 | 3651 | out_kick: |
23e018a1 | 3652 | cfq_schedule_dispatch(cfqd); |
22e2c507 JA |
3653 | out_cont: |
3654 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); | |
3655 | } | |
3656 | ||
3b18152c JA |
3657 | static void cfq_shutdown_timer_wq(struct cfq_data *cfqd) |
3658 | { | |
3659 | del_timer_sync(&cfqd->idle_slice_timer); | |
23e018a1 | 3660 | cancel_work_sync(&cfqd->unplug_work); |
3b18152c | 3661 | } |
22e2c507 | 3662 | |
c2dea2d1 VT |
3663 | static void cfq_put_async_queues(struct cfq_data *cfqd) |
3664 | { | |
3665 | int i; | |
3666 | ||
3667 | for (i = 0; i < IOPRIO_BE_NR; i++) { | |
3668 | if (cfqd->async_cfqq[0][i]) | |
3669 | cfq_put_queue(cfqd->async_cfqq[0][i]); | |
3670 | if (cfqd->async_cfqq[1][i]) | |
3671 | cfq_put_queue(cfqd->async_cfqq[1][i]); | |
c2dea2d1 | 3672 | } |
2389d1ef ON |
3673 | |
3674 | if (cfqd->async_idle_cfqq) | |
3675 | cfq_put_queue(cfqd->async_idle_cfqq); | |
c2dea2d1 VT |
3676 | } |
3677 | ||
bb729bc9 JA |
3678 | static void cfq_cfqd_free(struct rcu_head *head) |
3679 | { | |
3680 | kfree(container_of(head, struct cfq_data, rcu)); | |
3681 | } | |
3682 | ||
b374d18a | 3683 | static void cfq_exit_queue(struct elevator_queue *e) |
1da177e4 | 3684 | { |
22e2c507 | 3685 | struct cfq_data *cfqd = e->elevator_data; |
165125e1 | 3686 | struct request_queue *q = cfqd->queue; |
22e2c507 | 3687 | |
3b18152c | 3688 | cfq_shutdown_timer_wq(cfqd); |
e2d74ac0 | 3689 | |
d9ff4187 | 3690 | spin_lock_irq(q->queue_lock); |
e2d74ac0 | 3691 | |
d9ff4187 | 3692 | if (cfqd->active_queue) |
e5ff082e | 3693 | __cfq_slice_expired(cfqd, cfqd->active_queue, 0); |
e2d74ac0 JA |
3694 | |
3695 | while (!list_empty(&cfqd->cic_list)) { | |
d9ff4187 AV |
3696 | struct cfq_io_context *cic = list_entry(cfqd->cic_list.next, |
3697 | struct cfq_io_context, | |
3698 | queue_list); | |
89850f7e JA |
3699 | |
3700 | __cfq_exit_single_io_context(cfqd, cic); | |
d9ff4187 | 3701 | } |
e2d74ac0 | 3702 | |
c2dea2d1 | 3703 | cfq_put_async_queues(cfqd); |
b1c35769 VG |
3704 | cfq_release_cfq_groups(cfqd); |
3705 | blkiocg_del_blkio_group(&cfqd->root_group.blkg); | |
15c31be4 | 3706 | |
d9ff4187 | 3707 | spin_unlock_irq(q->queue_lock); |
a90d742e AV |
3708 | |
3709 | cfq_shutdown_timer_wq(cfqd); | |
3710 | ||
b1c35769 | 3711 | /* Wait for cfqg->blkg->key accessors to exit their grace periods. */ |
bb729bc9 | 3712 | call_rcu(&cfqd->rcu, cfq_cfqd_free); |
1da177e4 LT |
3713 | } |
3714 | ||
165125e1 | 3715 | static void *cfq_init_queue(struct request_queue *q) |
1da177e4 LT |
3716 | { |
3717 | struct cfq_data *cfqd; | |
718eee05 | 3718 | int i, j; |
cdb16e8f | 3719 | struct cfq_group *cfqg; |
615f0259 | 3720 | struct cfq_rb_root *st; |
1da177e4 | 3721 | |
94f6030c | 3722 | cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node); |
1da177e4 | 3723 | if (!cfqd) |
bc1c1169 | 3724 | return NULL; |
1da177e4 | 3725 | |
1fa8f6d6 VG |
3726 | /* Init root service tree */ |
3727 | cfqd->grp_service_tree = CFQ_RB_ROOT; | |
3728 | ||
cdb16e8f VG |
3729 | /* Init root group */ |
3730 | cfqg = &cfqd->root_group; | |
615f0259 VG |
3731 | for_each_cfqg_st(cfqg, i, j, st) |
3732 | *st = CFQ_RB_ROOT; | |
1fa8f6d6 | 3733 | RB_CLEAR_NODE(&cfqg->rb_node); |
26a2ac00 | 3734 | |
25bc6b07 VG |
3735 | /* Give preference to root group over other groups */ |
3736 | cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT; | |
3737 | ||
25fb5169 | 3738 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
b1c35769 VG |
3739 | /* |
3740 | * Take a reference to root group which we never drop. This is just | |
3741 | * to make sure that cfq_put_cfqg() does not try to kfree root group | |
3742 | */ | |
3743 | atomic_set(&cfqg->ref, 1); | |
22084190 VG |
3744 | blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg, (void *)cfqd, |
3745 | 0); | |
25fb5169 | 3746 | #endif |
26a2ac00 JA |
3747 | /* |
3748 | * Not strictly needed (since RB_ROOT just clears the node and we | |
3749 | * zeroed cfqd on alloc), but better be safe in case someone decides | |
3750 | * to add magic to the rb code | |
3751 | */ | |
3752 | for (i = 0; i < CFQ_PRIO_LISTS; i++) | |
3753 | cfqd->prio_trees[i] = RB_ROOT; | |
3754 | ||
6118b70b JA |
3755 | /* |
3756 | * Our fallback cfqq if cfq_find_alloc_queue() runs into OOM issues. | |
3757 | * Grab a permanent reference to it, so that the normal code flow | |
3758 | * will not attempt to free it. | |
3759 | */ | |
3760 | cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0); | |
3761 | atomic_inc(&cfqd->oom_cfqq.ref); | |
cdb16e8f | 3762 | cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group); |
6118b70b | 3763 | |
d9ff4187 | 3764 | INIT_LIST_HEAD(&cfqd->cic_list); |
1da177e4 | 3765 | |
1da177e4 | 3766 | cfqd->queue = q; |
1da177e4 | 3767 | |
22e2c507 JA |
3768 | init_timer(&cfqd->idle_slice_timer); |
3769 | cfqd->idle_slice_timer.function = cfq_idle_slice_timer; | |
3770 | cfqd->idle_slice_timer.data = (unsigned long) cfqd; | |
3771 | ||
23e018a1 | 3772 | INIT_WORK(&cfqd->unplug_work, cfq_kick_queue); |
22e2c507 | 3773 | |
1da177e4 | 3774 | cfqd->cfq_quantum = cfq_quantum; |
22e2c507 JA |
3775 | cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0]; |
3776 | cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1]; | |
1da177e4 LT |
3777 | cfqd->cfq_back_max = cfq_back_max; |
3778 | cfqd->cfq_back_penalty = cfq_back_penalty; | |
22e2c507 JA |
3779 | cfqd->cfq_slice[0] = cfq_slice_async; |
3780 | cfqd->cfq_slice[1] = cfq_slice_sync; | |
3781 | cfqd->cfq_slice_async_rq = cfq_slice_async_rq; | |
3782 | cfqd->cfq_slice_idle = cfq_slice_idle; | |
963b72fc | 3783 | cfqd->cfq_latency = 1; |
ae30c286 | 3784 | cfqd->cfq_group_isolation = 0; |
e459dd08 | 3785 | cfqd->hw_tag = -1; |
edc71131 CZ |
3786 | /* |
3787 | * we optimistically start assuming sync ops weren't delayed in last | |
3788 | * second, in order to have larger depth for async operations. | |
3789 | */ | |
573412b2 | 3790 | cfqd->last_delayed_sync = jiffies - HZ; |
bb729bc9 | 3791 | INIT_RCU_HEAD(&cfqd->rcu); |
bc1c1169 | 3792 | return cfqd; |
1da177e4 LT |
3793 | } |
3794 | ||
3795 | static void cfq_slab_kill(void) | |
3796 | { | |
d6de8be7 JA |
3797 | /* |
3798 | * Caller already ensured that pending RCU callbacks are completed, | |
3799 | * so we should have no busy allocations at this point. | |
3800 | */ | |
1da177e4 LT |
3801 | if (cfq_pool) |
3802 | kmem_cache_destroy(cfq_pool); | |
3803 | if (cfq_ioc_pool) | |
3804 | kmem_cache_destroy(cfq_ioc_pool); | |
3805 | } | |
3806 | ||
3807 | static int __init cfq_slab_setup(void) | |
3808 | { | |
0a31bd5f | 3809 | cfq_pool = KMEM_CACHE(cfq_queue, 0); |
1da177e4 LT |
3810 | if (!cfq_pool) |
3811 | goto fail; | |
3812 | ||
34e6bbf2 | 3813 | cfq_ioc_pool = KMEM_CACHE(cfq_io_context, 0); |
1da177e4 LT |
3814 | if (!cfq_ioc_pool) |
3815 | goto fail; | |
3816 | ||
3817 | return 0; | |
3818 | fail: | |
3819 | cfq_slab_kill(); | |
3820 | return -ENOMEM; | |
3821 | } | |
3822 | ||
1da177e4 LT |
3823 | /* |
3824 | * sysfs parts below --> | |
3825 | */ | |
1da177e4 LT |
3826 | static ssize_t |
3827 | cfq_var_show(unsigned int var, char *page) | |
3828 | { | |
3829 | return sprintf(page, "%d\n", var); | |
3830 | } | |
3831 | ||
3832 | static ssize_t | |
3833 | cfq_var_store(unsigned int *var, const char *page, size_t count) | |
3834 | { | |
3835 | char *p = (char *) page; | |
3836 | ||
3837 | *var = simple_strtoul(p, &p, 10); | |
3838 | return count; | |
3839 | } | |
3840 | ||
1da177e4 | 3841 | #define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \ |
b374d18a | 3842 | static ssize_t __FUNC(struct elevator_queue *e, char *page) \ |
1da177e4 | 3843 | { \ |
3d1ab40f | 3844 | struct cfq_data *cfqd = e->elevator_data; \ |
1da177e4 LT |
3845 | unsigned int __data = __VAR; \ |
3846 | if (__CONV) \ | |
3847 | __data = jiffies_to_msecs(__data); \ | |
3848 | return cfq_var_show(__data, (page)); \ | |
3849 | } | |
3850 | SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0); | |
22e2c507 JA |
3851 | SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1); |
3852 | SHOW_FUNCTION(cfq_fifo_expire_async_show, cfqd->cfq_fifo_expire[0], 1); | |
e572ec7e AV |
3853 | SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0); |
3854 | SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0); | |
22e2c507 JA |
3855 | SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1); |
3856 | SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1); | |
3857 | SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1); | |
3858 | SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0); | |
963b72fc | 3859 | SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0); |
ae30c286 | 3860 | SHOW_FUNCTION(cfq_group_isolation_show, cfqd->cfq_group_isolation, 0); |
1da177e4 LT |
3861 | #undef SHOW_FUNCTION |
3862 | ||
3863 | #define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \ | |
b374d18a | 3864 | static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \ |
1da177e4 | 3865 | { \ |
3d1ab40f | 3866 | struct cfq_data *cfqd = e->elevator_data; \ |
1da177e4 LT |
3867 | unsigned int __data; \ |
3868 | int ret = cfq_var_store(&__data, (page), count); \ | |
3869 | if (__data < (MIN)) \ | |
3870 | __data = (MIN); \ | |
3871 | else if (__data > (MAX)) \ | |
3872 | __data = (MAX); \ | |
3873 | if (__CONV) \ | |
3874 | *(__PTR) = msecs_to_jiffies(__data); \ | |
3875 | else \ | |
3876 | *(__PTR) = __data; \ | |
3877 | return ret; \ | |
3878 | } | |
3879 | STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0); | |
fe094d98 JA |
3880 | STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1, |
3881 | UINT_MAX, 1); | |
3882 | STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1, | |
3883 | UINT_MAX, 1); | |
e572ec7e | 3884 | STORE_FUNCTION(cfq_back_seek_max_store, &cfqd->cfq_back_max, 0, UINT_MAX, 0); |
fe094d98 JA |
3885 | STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1, |
3886 | UINT_MAX, 0); | |
22e2c507 JA |
3887 | STORE_FUNCTION(cfq_slice_idle_store, &cfqd->cfq_slice_idle, 0, UINT_MAX, 1); |
3888 | STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1); | |
3889 | STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1); | |
fe094d98 JA |
3890 | STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1, |
3891 | UINT_MAX, 0); | |
963b72fc | 3892 | STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0); |
ae30c286 | 3893 | STORE_FUNCTION(cfq_group_isolation_store, &cfqd->cfq_group_isolation, 0, 1, 0); |
1da177e4 LT |
3894 | #undef STORE_FUNCTION |
3895 | ||
e572ec7e AV |
3896 | #define CFQ_ATTR(name) \ |
3897 | __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store) | |
3898 | ||
3899 | static struct elv_fs_entry cfq_attrs[] = { | |
3900 | CFQ_ATTR(quantum), | |
e572ec7e AV |
3901 | CFQ_ATTR(fifo_expire_sync), |
3902 | CFQ_ATTR(fifo_expire_async), | |
3903 | CFQ_ATTR(back_seek_max), | |
3904 | CFQ_ATTR(back_seek_penalty), | |
3905 | CFQ_ATTR(slice_sync), | |
3906 | CFQ_ATTR(slice_async), | |
3907 | CFQ_ATTR(slice_async_rq), | |
3908 | CFQ_ATTR(slice_idle), | |
963b72fc | 3909 | CFQ_ATTR(low_latency), |
ae30c286 | 3910 | CFQ_ATTR(group_isolation), |
e572ec7e | 3911 | __ATTR_NULL |
1da177e4 LT |
3912 | }; |
3913 | ||
1da177e4 LT |
3914 | static struct elevator_type iosched_cfq = { |
3915 | .ops = { | |
3916 | .elevator_merge_fn = cfq_merge, | |
3917 | .elevator_merged_fn = cfq_merged_request, | |
3918 | .elevator_merge_req_fn = cfq_merged_requests, | |
da775265 | 3919 | .elevator_allow_merge_fn = cfq_allow_merge, |
812d4026 | 3920 | .elevator_bio_merged_fn = cfq_bio_merged, |
b4878f24 | 3921 | .elevator_dispatch_fn = cfq_dispatch_requests, |
1da177e4 | 3922 | .elevator_add_req_fn = cfq_insert_request, |
b4878f24 | 3923 | .elevator_activate_req_fn = cfq_activate_request, |
1da177e4 LT |
3924 | .elevator_deactivate_req_fn = cfq_deactivate_request, |
3925 | .elevator_queue_empty_fn = cfq_queue_empty, | |
3926 | .elevator_completed_req_fn = cfq_completed_request, | |
21183b07 JA |
3927 | .elevator_former_req_fn = elv_rb_former_request, |
3928 | .elevator_latter_req_fn = elv_rb_latter_request, | |
1da177e4 LT |
3929 | .elevator_set_req_fn = cfq_set_request, |
3930 | .elevator_put_req_fn = cfq_put_request, | |
3931 | .elevator_may_queue_fn = cfq_may_queue, | |
3932 | .elevator_init_fn = cfq_init_queue, | |
3933 | .elevator_exit_fn = cfq_exit_queue, | |
fc46379d | 3934 | .trim = cfq_free_io_context, |
1da177e4 | 3935 | }, |
3d1ab40f | 3936 | .elevator_attrs = cfq_attrs, |
1da177e4 LT |
3937 | .elevator_name = "cfq", |
3938 | .elevator_owner = THIS_MODULE, | |
3939 | }; | |
3940 | ||
3e252066 VG |
3941 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
3942 | static struct blkio_policy_type blkio_policy_cfq = { | |
3943 | .ops = { | |
3944 | .blkio_unlink_group_fn = cfq_unlink_blkio_group, | |
3945 | .blkio_update_group_weight_fn = cfq_update_blkio_group_weight, | |
3946 | }, | |
3947 | }; | |
3948 | #else | |
3949 | static struct blkio_policy_type blkio_policy_cfq; | |
3950 | #endif | |
3951 | ||
1da177e4 LT |
3952 | static int __init cfq_init(void) |
3953 | { | |
22e2c507 JA |
3954 | /* |
3955 | * could be 0 on HZ < 1000 setups | |
3956 | */ | |
3957 | if (!cfq_slice_async) | |
3958 | cfq_slice_async = 1; | |
3959 | if (!cfq_slice_idle) | |
3960 | cfq_slice_idle = 1; | |
3961 | ||
1da177e4 LT |
3962 | if (cfq_slab_setup()) |
3963 | return -ENOMEM; | |
3964 | ||
2fdd82bd | 3965 | elv_register(&iosched_cfq); |
3e252066 | 3966 | blkio_policy_register(&blkio_policy_cfq); |
1da177e4 | 3967 | |
2fdd82bd | 3968 | return 0; |
1da177e4 LT |
3969 | } |
3970 | ||
3971 | static void __exit cfq_exit(void) | |
3972 | { | |
6e9a4738 | 3973 | DECLARE_COMPLETION_ONSTACK(all_gone); |
3e252066 | 3974 | blkio_policy_unregister(&blkio_policy_cfq); |
1da177e4 | 3975 | elv_unregister(&iosched_cfq); |
334e94de | 3976 | ioc_gone = &all_gone; |
fba82272 OH |
3977 | /* ioc_gone's update must be visible before reading ioc_count */ |
3978 | smp_wmb(); | |
d6de8be7 JA |
3979 | |
3980 | /* | |
3981 | * this also protects us from entering cfq_slab_kill() with | |
3982 | * pending RCU callbacks | |
3983 | */ | |
245b2e70 | 3984 | if (elv_ioc_count_read(cfq_ioc_count)) |
9a11b4ed | 3985 | wait_for_completion(&all_gone); |
83521d3e | 3986 | cfq_slab_kill(); |
1da177e4 LT |
3987 | } |
3988 | ||
3989 | module_init(cfq_init); | |
3990 | module_exit(cfq_exit); | |
3991 | ||
3992 | MODULE_AUTHOR("Jens Axboe"); | |
3993 | MODULE_LICENSE("GPL"); | |
3994 | MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler"); |