diff options
Diffstat (limited to 'block/cfq-iosched.c')
-rw-r--r-- | block/cfq-iosched.c | 1493 |
1 files changed, 1338 insertions, 155 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index aa1e9535e358..cfb0b2f5f63d 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c | |||
@@ -9,9 +9,11 @@ | |||
9 | #include <linux/module.h> | 9 | #include <linux/module.h> |
10 | #include <linux/blkdev.h> | 10 | #include <linux/blkdev.h> |
11 | #include <linux/elevator.h> | 11 | #include <linux/elevator.h> |
12 | #include <linux/jiffies.h> | ||
12 | #include <linux/rbtree.h> | 13 | #include <linux/rbtree.h> |
13 | #include <linux/ioprio.h> | 14 | #include <linux/ioprio.h> |
14 | #include <linux/blktrace_api.h> | 15 | #include <linux/blktrace_api.h> |
16 | #include "blk-cgroup.h" | ||
15 | 17 | ||
16 | /* | 18 | /* |
17 | * tunables | 19 | * tunables |
@@ -27,6 +29,8 @@ static const int cfq_slice_sync = HZ / 10; | |||
27 | static int cfq_slice_async = HZ / 25; | 29 | static int cfq_slice_async = HZ / 25; |
28 | static const int cfq_slice_async_rq = 2; | 30 | static const int cfq_slice_async_rq = 2; |
29 | static int cfq_slice_idle = HZ / 125; | 31 | static int cfq_slice_idle = HZ / 125; |
32 | static const int cfq_target_latency = HZ * 3/10; /* 300 ms */ | ||
33 | static const int cfq_hist_divisor = 4; | ||
30 | 34 | ||
31 | /* | 35 | /* |
32 | * offset from end of service tree | 36 | * offset from end of service tree |
@@ -38,8 +42,15 @@ static int cfq_slice_idle = HZ / 125; | |||
38 | */ | 42 | */ |
39 | #define CFQ_MIN_TT (2) | 43 | #define CFQ_MIN_TT (2) |
40 | 44 | ||
45 | /* | ||
46 | * Allow merged cfqqs to perform this amount of seeky I/O before | ||
47 | * deciding to break the queues up again. | ||
48 | */ | ||
49 | #define CFQQ_COOP_TOUT (HZ) | ||
50 | |||
41 | #define CFQ_SLICE_SCALE (5) | 51 | #define CFQ_SLICE_SCALE (5) |
42 | #define CFQ_HW_QUEUE_MIN (5) | 52 | #define CFQ_HW_QUEUE_MIN (5) |
53 | #define CFQ_SERVICE_SHIFT 12 | ||
43 | 54 | ||
44 | #define RQ_CIC(rq) \ | 55 | #define RQ_CIC(rq) \ |
45 | ((struct cfq_io_context *) (rq)->elevator_private) | 56 | ((struct cfq_io_context *) (rq)->elevator_private) |
@@ -57,6 +68,7 @@ static DEFINE_SPINLOCK(ioc_gone_lock); | |||
57 | #define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT) | 68 | #define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT) |
58 | 69 | ||
59 | #define sample_valid(samples) ((samples) > 80) | 70 | #define sample_valid(samples) ((samples) > 80) |
71 | #define rb_entry_cfqg(node) rb_entry((node), struct cfq_group, rb_node) | ||
60 | 72 | ||
61 | /* | 73 | /* |
62 | * Most of our rbtree usage is for sorting with min extraction, so | 74 | * Most of our rbtree usage is for sorting with min extraction, so |
@@ -67,8 +79,12 @@ static DEFINE_SPINLOCK(ioc_gone_lock); | |||
67 | struct cfq_rb_root { | 79 | struct cfq_rb_root { |
68 | struct rb_root rb; | 80 | struct rb_root rb; |
69 | struct rb_node *left; | 81 | struct rb_node *left; |
82 | unsigned count; | ||
83 | u64 min_vdisktime; | ||
84 | struct rb_node *active; | ||
85 | unsigned total_weight; | ||
70 | }; | 86 | }; |
71 | #define CFQ_RB_ROOT (struct cfq_rb_root) { RB_ROOT, NULL, } | 87 | #define CFQ_RB_ROOT (struct cfq_rb_root) { RB_ROOT, NULL, 0, 0, } |
72 | 88 | ||
73 | /* | 89 | /* |
74 | * Per process-grouping structure | 90 | * Per process-grouping structure |
@@ -99,6 +115,11 @@ struct cfq_queue { | |||
99 | /* fifo list of requests in sort_list */ | 115 | /* fifo list of requests in sort_list */ |
100 | struct list_head fifo; | 116 | struct list_head fifo; |
101 | 117 | ||
118 | /* time when queue got scheduled in to dispatch first request. */ | ||
119 | unsigned long dispatch_start; | ||
120 | unsigned int allocated_slice; | ||
121 | /* time when first request from queue completed and slice started. */ | ||
122 | unsigned long slice_start; | ||
102 | unsigned long slice_end; | 123 | unsigned long slice_end; |
103 | long slice_resid; | 124 | long slice_resid; |
104 | unsigned int slice_dispatch; | 125 | unsigned int slice_dispatch; |
@@ -112,7 +133,71 @@ struct cfq_queue { | |||
112 | unsigned short ioprio, org_ioprio; | 133 | unsigned short ioprio, org_ioprio; |
113 | unsigned short ioprio_class, org_ioprio_class; | 134 | unsigned short ioprio_class, org_ioprio_class; |
114 | 135 | ||
136 | unsigned int seek_samples; | ||
137 | u64 seek_total; | ||
138 | sector_t seek_mean; | ||
139 | sector_t last_request_pos; | ||
140 | unsigned long seeky_start; | ||
141 | |||
115 | pid_t pid; | 142 | pid_t pid; |
143 | |||
144 | struct cfq_rb_root *service_tree; | ||
145 | struct cfq_queue *new_cfqq; | ||
146 | struct cfq_group *cfqg; | ||
147 | struct cfq_group *orig_cfqg; | ||
148 | /* Sectors dispatched in current dispatch round */ | ||
149 | unsigned long nr_sectors; | ||
150 | }; | ||
151 | |||
152 | /* | ||
153 | * First index in the service_trees. | ||
154 | * IDLE is handled separately, so it has negative index | ||
155 | */ | ||
156 | enum wl_prio_t { | ||
157 | BE_WORKLOAD = 0, | ||
158 | RT_WORKLOAD = 1, | ||
159 | IDLE_WORKLOAD = 2, | ||
160 | }; | ||
161 | |||
162 | /* | ||
163 | * Second index in the service_trees. | ||
164 | */ | ||
165 | enum wl_type_t { | ||
166 | ASYNC_WORKLOAD = 0, | ||
167 | SYNC_NOIDLE_WORKLOAD = 1, | ||
168 | SYNC_WORKLOAD = 2 | ||
169 | }; | ||
170 | |||
171 | /* This is per cgroup per device grouping structure */ | ||
172 | struct cfq_group { | ||
173 | /* group service_tree member */ | ||
174 | struct rb_node rb_node; | ||
175 | |||
176 | /* group service_tree key */ | ||
177 | u64 vdisktime; | ||
178 | unsigned int weight; | ||
179 | bool on_st; | ||
180 | |||
181 | /* number of cfqq currently on this group */ | ||
182 | int nr_cfqq; | ||
183 | |||
184 | /* Per group busy queus average. Useful for workload slice calc. */ | ||
185 | unsigned int busy_queues_avg[2]; | ||
186 | /* | ||
187 | * rr lists of queues with requests, onle rr for each priority class. | ||
188 | * Counts are embedded in the cfq_rb_root | ||
189 | */ | ||
190 | struct cfq_rb_root service_trees[2][3]; | ||
191 | struct cfq_rb_root service_tree_idle; | ||
192 | |||
193 | unsigned long saved_workload_slice; | ||
194 | enum wl_type_t saved_workload; | ||
195 | enum wl_prio_t saved_serving_prio; | ||
196 | struct blkio_group blkg; | ||
197 | #ifdef CONFIG_CFQ_GROUP_IOSCHED | ||
198 | struct hlist_node cfqd_node; | ||
199 | atomic_t ref; | ||
200 | #endif | ||
116 | }; | 201 | }; |
117 | 202 | ||
118 | /* | 203 | /* |
@@ -120,11 +205,20 @@ struct cfq_queue { | |||
120 | */ | 205 | */ |
121 | struct cfq_data { | 206 | struct cfq_data { |
122 | struct request_queue *queue; | 207 | struct request_queue *queue; |
208 | /* Root service tree for cfq_groups */ | ||
209 | struct cfq_rb_root grp_service_tree; | ||
210 | struct cfq_group root_group; | ||
211 | /* Number of active cfq groups on group service tree */ | ||
212 | int nr_groups; | ||
123 | 213 | ||
124 | /* | 214 | /* |
125 | * rr list of queues with requests and the count of them | 215 | * The priority currently being served |
126 | */ | 216 | */ |
127 | struct cfq_rb_root service_tree; | 217 | enum wl_prio_t serving_prio; |
218 | enum wl_type_t serving_type; | ||
219 | unsigned long workload_expires; | ||
220 | struct cfq_group *serving_group; | ||
221 | bool noidle_tree_requires_idle; | ||
128 | 222 | ||
129 | /* | 223 | /* |
130 | * Each priority tree is sorted by next_request position. These | 224 | * Each priority tree is sorted by next_request position. These |
@@ -143,8 +237,14 @@ struct cfq_data { | |||
143 | */ | 237 | */ |
144 | int rq_queued; | 238 | int rq_queued; |
145 | int hw_tag; | 239 | int hw_tag; |
146 | int hw_tag_samples; | 240 | /* |
147 | int rq_in_driver_peak; | 241 | * hw_tag can be |
242 | * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection) | ||
243 | * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth) | ||
244 | * 0 => no NCQ | ||
245 | */ | ||
246 | int hw_tag_est_depth; | ||
247 | unsigned int hw_tag_samples; | ||
148 | 248 | ||
149 | /* | 249 | /* |
150 | * idle window management | 250 | * idle window management |
@@ -174,6 +274,7 @@ struct cfq_data { | |||
174 | unsigned int cfq_slice_async_rq; | 274 | unsigned int cfq_slice_async_rq; |
175 | unsigned int cfq_slice_idle; | 275 | unsigned int cfq_slice_idle; |
176 | unsigned int cfq_latency; | 276 | unsigned int cfq_latency; |
277 | unsigned int cfq_group_isolation; | ||
177 | 278 | ||
178 | struct list_head cic_list; | 279 | struct list_head cic_list; |
179 | 280 | ||
@@ -183,8 +284,28 @@ struct cfq_data { | |||
183 | struct cfq_queue oom_cfqq; | 284 | struct cfq_queue oom_cfqq; |
184 | 285 | ||
185 | unsigned long last_end_sync_rq; | 286 | unsigned long last_end_sync_rq; |
287 | |||
288 | /* List of cfq groups being managed on this device*/ | ||
289 | struct hlist_head cfqg_list; | ||
290 | struct rcu_head rcu; | ||
186 | }; | 291 | }; |
187 | 292 | ||
293 | static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd); | ||
294 | |||
295 | static struct cfq_rb_root *service_tree_for(struct cfq_group *cfqg, | ||
296 | enum wl_prio_t prio, | ||
297 | enum wl_type_t type, | ||
298 | struct cfq_data *cfqd) | ||
299 | { | ||
300 | if (!cfqg) | ||
301 | return NULL; | ||
302 | |||
303 | if (prio == IDLE_WORKLOAD) | ||
304 | return &cfqg->service_tree_idle; | ||
305 | |||
306 | return &cfqg->service_trees[prio][type]; | ||
307 | } | ||
308 | |||
188 | enum cfqq_state_flags { | 309 | enum cfqq_state_flags { |
189 | CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */ | 310 | CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */ |
190 | CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */ | 311 | CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */ |
@@ -195,8 +316,10 @@ enum cfqq_state_flags { | |||
195 | CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */ | 316 | CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */ |
196 | CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */ | 317 | CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */ |
197 | CFQ_CFQQ_FLAG_sync, /* synchronous queue */ | 318 | CFQ_CFQQ_FLAG_sync, /* synchronous queue */ |
198 | CFQ_CFQQ_FLAG_coop, /* has done a coop jump of the queue */ | 319 | CFQ_CFQQ_FLAG_coop, /* cfqq is shared */ |
199 | CFQ_CFQQ_FLAG_coop_preempt, /* coop preempt */ | 320 | CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */ |
321 | CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */ | ||
322 | CFQ_CFQQ_FLAG_wait_busy_done, /* Got new request. Expire the queue */ | ||
200 | }; | 323 | }; |
201 | 324 | ||
202 | #define CFQ_CFQQ_FNS(name) \ | 325 | #define CFQ_CFQQ_FNS(name) \ |
@@ -223,14 +346,78 @@ CFQ_CFQQ_FNS(prio_changed); | |||
223 | CFQ_CFQQ_FNS(slice_new); | 346 | CFQ_CFQQ_FNS(slice_new); |
224 | CFQ_CFQQ_FNS(sync); | 347 | CFQ_CFQQ_FNS(sync); |
225 | CFQ_CFQQ_FNS(coop); | 348 | CFQ_CFQQ_FNS(coop); |
226 | CFQ_CFQQ_FNS(coop_preempt); | 349 | CFQ_CFQQ_FNS(deep); |
350 | CFQ_CFQQ_FNS(wait_busy); | ||
351 | CFQ_CFQQ_FNS(wait_busy_done); | ||
227 | #undef CFQ_CFQQ_FNS | 352 | #undef CFQ_CFQQ_FNS |
228 | 353 | ||
354 | #ifdef CONFIG_DEBUG_CFQ_IOSCHED | ||
355 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \ | ||
356 | blk_add_trace_msg((cfqd)->queue, "cfq%d%c %s " fmt, (cfqq)->pid, \ | ||
357 | cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \ | ||
358 | blkg_path(&(cfqq)->cfqg->blkg), ##args); | ||
359 | |||
360 | #define cfq_log_cfqg(cfqd, cfqg, fmt, args...) \ | ||
361 | blk_add_trace_msg((cfqd)->queue, "%s " fmt, \ | ||
362 | blkg_path(&(cfqg)->blkg), ##args); \ | ||
363 | |||
364 | #else | ||
229 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \ | 365 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \ |
230 | blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args) | 366 | blk_add_trace_msg((cfqd)->queue, "cfq%d " fmt, (cfqq)->pid, ##args) |
367 | #define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0); | ||
368 | #endif | ||
231 | #define cfq_log(cfqd, fmt, args...) \ | 369 | #define cfq_log(cfqd, fmt, args...) \ |
232 | blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args) | 370 | blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args) |
233 | 371 | ||
372 | /* Traverses through cfq group service trees */ | ||
373 | #define for_each_cfqg_st(cfqg, i, j, st) \ | ||
374 | for (i = 0; i <= IDLE_WORKLOAD; i++) \ | ||
375 | for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\ | ||
376 | : &cfqg->service_tree_idle; \ | ||
377 | (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \ | ||
378 | (i == IDLE_WORKLOAD && j == 0); \ | ||
379 | j++, st = i < IDLE_WORKLOAD ? \ | ||
380 | &cfqg->service_trees[i][j]: NULL) \ | ||
381 | |||
382 | |||
383 | static inline enum wl_prio_t cfqq_prio(struct cfq_queue *cfqq) | ||
384 | { | ||
385 | if (cfq_class_idle(cfqq)) | ||
386 | return IDLE_WORKLOAD; | ||
387 | if (cfq_class_rt(cfqq)) | ||
388 | return RT_WORKLOAD; | ||
389 | return BE_WORKLOAD; | ||
390 | } | ||
391 | |||
392 | |||
393 | static enum wl_type_t cfqq_type(struct cfq_queue *cfqq) | ||
394 | { | ||
395 | if (!cfq_cfqq_sync(cfqq)) | ||
396 | return ASYNC_WORKLOAD; | ||
397 | if (!cfq_cfqq_idle_window(cfqq)) | ||
398 | return SYNC_NOIDLE_WORKLOAD; | ||
399 | return SYNC_WORKLOAD; | ||
400 | } | ||
401 | |||
402 | static inline int cfq_group_busy_queues_wl(enum wl_prio_t wl, | ||
403 | struct cfq_data *cfqd, | ||
404 | struct cfq_group *cfqg) | ||
405 | { | ||
406 | if (wl == IDLE_WORKLOAD) | ||
407 | return cfqg->service_tree_idle.count; | ||
408 | |||
409 | return cfqg->service_trees[wl][ASYNC_WORKLOAD].count | ||
410 | + cfqg->service_trees[wl][SYNC_NOIDLE_WORKLOAD].count | ||
411 | + cfqg->service_trees[wl][SYNC_WORKLOAD].count; | ||
412 | } | ||
413 | |||
414 | static inline int cfqg_busy_async_queues(struct cfq_data *cfqd, | ||
415 | struct cfq_group *cfqg) | ||
416 | { | ||
417 | return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count | ||
418 | + cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count; | ||
419 | } | ||
420 | |||
234 | static void cfq_dispatch_insert(struct request_queue *, struct request *); | 421 | static void cfq_dispatch_insert(struct request_queue *, struct request *); |
235 | static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool, | 422 | static struct cfq_queue *cfq_get_queue(struct cfq_data *, bool, |
236 | struct io_context *, gfp_t); | 423 | struct io_context *, gfp_t); |
@@ -279,7 +466,7 @@ static int cfq_queue_empty(struct request_queue *q) | |||
279 | { | 466 | { |
280 | struct cfq_data *cfqd = q->elevator->elevator_data; | 467 | struct cfq_data *cfqd = q->elevator->elevator_data; |
281 | 468 | ||
282 | return !cfqd->busy_queues; | 469 | return !cfqd->rq_queued; |
283 | } | 470 | } |
284 | 471 | ||
285 | /* | 472 | /* |
@@ -303,10 +490,110 @@ cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |||
303 | return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio); | 490 | return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio); |
304 | } | 491 | } |
305 | 492 | ||
493 | static inline u64 cfq_scale_slice(unsigned long delta, struct cfq_group *cfqg) | ||
494 | { | ||
495 | u64 d = delta << CFQ_SERVICE_SHIFT; | ||
496 | |||
497 | d = d * BLKIO_WEIGHT_DEFAULT; | ||
498 | do_div(d, cfqg->weight); | ||
499 | return d; | ||
500 | } | ||
501 | |||
502 | static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime) | ||
503 | { | ||
504 | s64 delta = (s64)(vdisktime - min_vdisktime); | ||
505 | if (delta > 0) | ||
506 | min_vdisktime = vdisktime; | ||
507 | |||
508 | return min_vdisktime; | ||
509 | } | ||
510 | |||
511 | static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime) | ||
512 | { | ||
513 | s64 delta = (s64)(vdisktime - min_vdisktime); | ||
514 | if (delta < 0) | ||
515 | min_vdisktime = vdisktime; | ||
516 | |||
517 | return min_vdisktime; | ||
518 | } | ||
519 | |||
520 | static void update_min_vdisktime(struct cfq_rb_root *st) | ||
521 | { | ||
522 | u64 vdisktime = st->min_vdisktime; | ||
523 | struct cfq_group *cfqg; | ||
524 | |||
525 | if (st->active) { | ||
526 | cfqg = rb_entry_cfqg(st->active); | ||
527 | vdisktime = cfqg->vdisktime; | ||
528 | } | ||
529 | |||
530 | if (st->left) { | ||
531 | cfqg = rb_entry_cfqg(st->left); | ||
532 | vdisktime = min_vdisktime(vdisktime, cfqg->vdisktime); | ||
533 | } | ||
534 | |||
535 | st->min_vdisktime = max_vdisktime(st->min_vdisktime, vdisktime); | ||
536 | } | ||
537 | |||
538 | /* | ||
539 | * get averaged number of queues of RT/BE priority. | ||
540 | * average is updated, with a formula that gives more weight to higher numbers, | ||
541 | * to quickly follows sudden increases and decrease slowly | ||
542 | */ | ||
543 | |||
544 | static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd, | ||
545 | struct cfq_group *cfqg, bool rt) | ||
546 | { | ||
547 | unsigned min_q, max_q; | ||
548 | unsigned mult = cfq_hist_divisor - 1; | ||
549 | unsigned round = cfq_hist_divisor / 2; | ||
550 | unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg); | ||
551 | |||
552 | min_q = min(cfqg->busy_queues_avg[rt], busy); | ||
553 | max_q = max(cfqg->busy_queues_avg[rt], busy); | ||
554 | cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) / | ||
555 | cfq_hist_divisor; | ||
556 | return cfqg->busy_queues_avg[rt]; | ||
557 | } | ||
558 | |||
559 | static inline unsigned | ||
560 | cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg) | ||
561 | { | ||
562 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | ||
563 | |||
564 | return cfq_target_latency * cfqg->weight / st->total_weight; | ||
565 | } | ||
566 | |||
306 | static inline void | 567 | static inline void |
307 | cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) | 568 | cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
308 | { | 569 | { |
309 | cfqq->slice_end = cfq_prio_to_slice(cfqd, cfqq) + jiffies; | 570 | unsigned slice = cfq_prio_to_slice(cfqd, cfqq); |
571 | if (cfqd->cfq_latency) { | ||
572 | /* | ||
573 | * interested queues (we consider only the ones with the same | ||
574 | * priority class in the cfq group) | ||
575 | */ | ||
576 | unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg, | ||
577 | cfq_class_rt(cfqq)); | ||
578 | unsigned sync_slice = cfqd->cfq_slice[1]; | ||
579 | unsigned expect_latency = sync_slice * iq; | ||
580 | unsigned group_slice = cfq_group_slice(cfqd, cfqq->cfqg); | ||
581 | |||
582 | if (expect_latency > group_slice) { | ||
583 | unsigned base_low_slice = 2 * cfqd->cfq_slice_idle; | ||
584 | /* scale low_slice according to IO priority | ||
585 | * and sync vs async */ | ||
586 | unsigned low_slice = | ||
587 | min(slice, base_low_slice * slice / sync_slice); | ||
588 | /* the adapted slice value is scaled to fit all iqs | ||
589 | * into the target latency */ | ||
590 | slice = max(slice * group_slice / expect_latency, | ||
591 | low_slice); | ||
592 | } | ||
593 | } | ||
594 | cfqq->slice_start = jiffies; | ||
595 | cfqq->slice_end = jiffies + slice; | ||
596 | cfqq->allocated_slice = slice; | ||
310 | cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies); | 597 | cfq_log_cfqq(cfqd, cfqq, "set_slice=%lu", cfqq->slice_end - jiffies); |
311 | } | 598 | } |
312 | 599 | ||
@@ -331,9 +618,9 @@ static inline bool cfq_slice_used(struct cfq_queue *cfqq) | |||
331 | * behind the head is penalized and only allowed to a certain extent. | 618 | * behind the head is penalized and only allowed to a certain extent. |
332 | */ | 619 | */ |
333 | static struct request * | 620 | static struct request * |
334 | cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2) | 621 | cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last) |
335 | { | 622 | { |
336 | sector_t last, s1, s2, d1 = 0, d2 = 0; | 623 | sector_t s1, s2, d1 = 0, d2 = 0; |
337 | unsigned long back_max; | 624 | unsigned long back_max; |
338 | #define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */ | 625 | #define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */ |
339 | #define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */ | 626 | #define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */ |
@@ -356,8 +643,6 @@ cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2) | |||
356 | s1 = blk_rq_pos(rq1); | 643 | s1 = blk_rq_pos(rq1); |
357 | s2 = blk_rq_pos(rq2); | 644 | s2 = blk_rq_pos(rq2); |
358 | 645 | ||
359 | last = cfqd->last_position; | ||
360 | |||
361 | /* | 646 | /* |
362 | * by definition, 1KiB is 2 sectors | 647 | * by definition, 1KiB is 2 sectors |
363 | */ | 648 | */ |
@@ -425,6 +710,10 @@ cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2) | |||
425 | */ | 710 | */ |
426 | static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root) | 711 | static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root) |
427 | { | 712 | { |
713 | /* Service tree is empty */ | ||
714 | if (!root->count) | ||
715 | return NULL; | ||
716 | |||
428 | if (!root->left) | 717 | if (!root->left) |
429 | root->left = rb_first(&root->rb); | 718 | root->left = rb_first(&root->rb); |
430 | 719 | ||
@@ -434,6 +723,17 @@ static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root) | |||
434 | return NULL; | 723 | return NULL; |
435 | } | 724 | } |
436 | 725 | ||
726 | static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root) | ||
727 | { | ||
728 | if (!root->left) | ||
729 | root->left = rb_first(&root->rb); | ||
730 | |||
731 | if (root->left) | ||
732 | return rb_entry_cfqg(root->left); | ||
733 | |||
734 | return NULL; | ||
735 | } | ||
736 | |||
437 | static void rb_erase_init(struct rb_node *n, struct rb_root *root) | 737 | static void rb_erase_init(struct rb_node *n, struct rb_root *root) |
438 | { | 738 | { |
439 | rb_erase(n, root); | 739 | rb_erase(n, root); |
@@ -445,6 +745,7 @@ static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root) | |||
445 | if (root->left == n) | 745 | if (root->left == n) |
446 | root->left = NULL; | 746 | root->left = NULL; |
447 | rb_erase_init(n, &root->rb); | 747 | rb_erase_init(n, &root->rb); |
748 | --root->count; | ||
448 | } | 749 | } |
449 | 750 | ||
450 | /* | 751 | /* |
@@ -471,7 +772,7 @@ cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
471 | next = rb_entry_rq(rbnext); | 772 | next = rb_entry_rq(rbnext); |
472 | } | 773 | } |
473 | 774 | ||
474 | return cfq_choose_req(cfqd, next, prev); | 775 | return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last)); |
475 | } | 776 | } |
476 | 777 | ||
477 | static unsigned long cfq_slice_offset(struct cfq_data *cfqd, | 778 | static unsigned long cfq_slice_offset(struct cfq_data *cfqd, |
@@ -480,12 +781,336 @@ static unsigned long cfq_slice_offset(struct cfq_data *cfqd, | |||
480 | /* | 781 | /* |
481 | * just an approximation, should be ok. | 782 | * just an approximation, should be ok. |
482 | */ | 783 | */ |
483 | return (cfqd->busy_queues - 1) * (cfq_prio_slice(cfqd, 1, 0) - | 784 | return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) - |
484 | cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio)); | 785 | cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio)); |
485 | } | 786 | } |
486 | 787 | ||
788 | static inline s64 | ||
789 | cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg) | ||
790 | { | ||
791 | return cfqg->vdisktime - st->min_vdisktime; | ||
792 | } | ||
793 | |||
794 | static void | ||
795 | __cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg) | ||
796 | { | ||
797 | struct rb_node **node = &st->rb.rb_node; | ||
798 | struct rb_node *parent = NULL; | ||
799 | struct cfq_group *__cfqg; | ||
800 | s64 key = cfqg_key(st, cfqg); | ||
801 | int left = 1; | ||
802 | |||
803 | while (*node != NULL) { | ||
804 | parent = *node; | ||
805 | __cfqg = rb_entry_cfqg(parent); | ||
806 | |||
807 | if (key < cfqg_key(st, __cfqg)) | ||
808 | node = &parent->rb_left; | ||
809 | else { | ||
810 | node = &parent->rb_right; | ||
811 | left = 0; | ||
812 | } | ||
813 | } | ||
814 | |||
815 | if (left) | ||
816 | st->left = &cfqg->rb_node; | ||
817 | |||
818 | rb_link_node(&cfqg->rb_node, parent, node); | ||
819 | rb_insert_color(&cfqg->rb_node, &st->rb); | ||
820 | } | ||
821 | |||
822 | static void | ||
823 | cfq_group_service_tree_add(struct cfq_data *cfqd, struct cfq_group *cfqg) | ||
824 | { | ||
825 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | ||
826 | struct cfq_group *__cfqg; | ||
827 | struct rb_node *n; | ||
828 | |||
829 | cfqg->nr_cfqq++; | ||
830 | if (cfqg->on_st) | ||
831 | return; | ||
832 | |||
833 | /* | ||
834 | * Currently put the group at the end. Later implement something | ||
835 | * so that groups get lesser vtime based on their weights, so that | ||
836 | * if group does not loose all if it was not continously backlogged. | ||
837 | */ | ||
838 | n = rb_last(&st->rb); | ||
839 | if (n) { | ||
840 | __cfqg = rb_entry_cfqg(n); | ||
841 | cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY; | ||
842 | } else | ||
843 | cfqg->vdisktime = st->min_vdisktime; | ||
844 | |||
845 | __cfq_group_service_tree_add(st, cfqg); | ||
846 | cfqg->on_st = true; | ||
847 | cfqd->nr_groups++; | ||
848 | st->total_weight += cfqg->weight; | ||
849 | } | ||
850 | |||
851 | static void | ||
852 | cfq_group_service_tree_del(struct cfq_data *cfqd, struct cfq_group *cfqg) | ||
853 | { | ||
854 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | ||
855 | |||
856 | if (st->active == &cfqg->rb_node) | ||
857 | st->active = NULL; | ||
858 | |||
859 | BUG_ON(cfqg->nr_cfqq < 1); | ||
860 | cfqg->nr_cfqq--; | ||
861 | |||
862 | /* If there are other cfq queues under this group, don't delete it */ | ||
863 | if (cfqg->nr_cfqq) | ||
864 | return; | ||
865 | |||
866 | cfq_log_cfqg(cfqd, cfqg, "del_from_rr group"); | ||
867 | cfqg->on_st = false; | ||
868 | cfqd->nr_groups--; | ||
869 | st->total_weight -= cfqg->weight; | ||
870 | if (!RB_EMPTY_NODE(&cfqg->rb_node)) | ||
871 | cfq_rb_erase(&cfqg->rb_node, st); | ||
872 | cfqg->saved_workload_slice = 0; | ||
873 | blkiocg_update_blkio_group_dequeue_stats(&cfqg->blkg, 1); | ||
874 | } | ||
875 | |||
876 | static inline unsigned int cfq_cfqq_slice_usage(struct cfq_queue *cfqq) | ||
877 | { | ||
878 | unsigned int slice_used; | ||
879 | |||
880 | /* | ||
881 | * Queue got expired before even a single request completed or | ||
882 | * got expired immediately after first request completion. | ||
883 | */ | ||
884 | if (!cfqq->slice_start || cfqq->slice_start == jiffies) { | ||
885 | /* | ||
886 | * Also charge the seek time incurred to the group, otherwise | ||
887 | * if there are mutiple queues in the group, each can dispatch | ||
888 | * a single request on seeky media and cause lots of seek time | ||
889 | * and group will never know it. | ||
890 | */ | ||
891 | slice_used = max_t(unsigned, (jiffies - cfqq->dispatch_start), | ||
892 | 1); | ||
893 | } else { | ||
894 | slice_used = jiffies - cfqq->slice_start; | ||
895 | if (slice_used > cfqq->allocated_slice) | ||
896 | slice_used = cfqq->allocated_slice; | ||
897 | } | ||
898 | |||
899 | cfq_log_cfqq(cfqq->cfqd, cfqq, "sl_used=%u sect=%lu", slice_used, | ||
900 | cfqq->nr_sectors); | ||
901 | return slice_used; | ||
902 | } | ||
903 | |||
904 | static void cfq_group_served(struct cfq_data *cfqd, struct cfq_group *cfqg, | ||
905 | struct cfq_queue *cfqq) | ||
906 | { | ||
907 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | ||
908 | unsigned int used_sl, charge_sl; | ||
909 | int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg) | ||
910 | - cfqg->service_tree_idle.count; | ||
911 | |||
912 | BUG_ON(nr_sync < 0); | ||
913 | used_sl = charge_sl = cfq_cfqq_slice_usage(cfqq); | ||
914 | |||
915 | if (!cfq_cfqq_sync(cfqq) && !nr_sync) | ||
916 | charge_sl = cfqq->allocated_slice; | ||
917 | |||
918 | /* Can't update vdisktime while group is on service tree */ | ||
919 | cfq_rb_erase(&cfqg->rb_node, st); | ||
920 | cfqg->vdisktime += cfq_scale_slice(charge_sl, cfqg); | ||
921 | __cfq_group_service_tree_add(st, cfqg); | ||
922 | |||
923 | /* This group is being expired. Save the context */ | ||
924 | if (time_after(cfqd->workload_expires, jiffies)) { | ||
925 | cfqg->saved_workload_slice = cfqd->workload_expires | ||
926 | - jiffies; | ||
927 | cfqg->saved_workload = cfqd->serving_type; | ||
928 | cfqg->saved_serving_prio = cfqd->serving_prio; | ||
929 | } else | ||
930 | cfqg->saved_workload_slice = 0; | ||
931 | |||
932 | cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime, | ||
933 | st->min_vdisktime); | ||
934 | blkiocg_update_blkio_group_stats(&cfqg->blkg, used_sl, | ||
935 | cfqq->nr_sectors); | ||
936 | } | ||
937 | |||
938 | #ifdef CONFIG_CFQ_GROUP_IOSCHED | ||
939 | static inline struct cfq_group *cfqg_of_blkg(struct blkio_group *blkg) | ||
940 | { | ||
941 | if (blkg) | ||
942 | return container_of(blkg, struct cfq_group, blkg); | ||
943 | return NULL; | ||
944 | } | ||
945 | |||
946 | void | ||
947 | cfq_update_blkio_group_weight(struct blkio_group *blkg, unsigned int weight) | ||
948 | { | ||
949 | cfqg_of_blkg(blkg)->weight = weight; | ||
950 | } | ||
951 | |||
952 | static struct cfq_group * | ||
953 | cfq_find_alloc_cfqg(struct cfq_data *cfqd, struct cgroup *cgroup, int create) | ||
954 | { | ||
955 | struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup); | ||
956 | struct cfq_group *cfqg = NULL; | ||
957 | void *key = cfqd; | ||
958 | int i, j; | ||
959 | struct cfq_rb_root *st; | ||
960 | struct backing_dev_info *bdi = &cfqd->queue->backing_dev_info; | ||
961 | unsigned int major, minor; | ||
962 | |||
963 | /* Do we need to take this reference */ | ||
964 | if (!blkiocg_css_tryget(blkcg)) | ||
965 | return NULL;; | ||
966 | |||
967 | cfqg = cfqg_of_blkg(blkiocg_lookup_group(blkcg, key)); | ||
968 | if (cfqg || !create) | ||
969 | goto done; | ||
970 | |||
971 | cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node); | ||
972 | if (!cfqg) | ||
973 | goto done; | ||
974 | |||
975 | cfqg->weight = blkcg->weight; | ||
976 | for_each_cfqg_st(cfqg, i, j, st) | ||
977 | *st = CFQ_RB_ROOT; | ||
978 | RB_CLEAR_NODE(&cfqg->rb_node); | ||
979 | |||
980 | /* | ||
981 | * Take the initial reference that will be released on destroy | ||
982 | * This can be thought of a joint reference by cgroup and | ||
983 | * elevator which will be dropped by either elevator exit | ||
984 | * or cgroup deletion path depending on who is exiting first. | ||
985 | */ | ||
986 | atomic_set(&cfqg->ref, 1); | ||
987 | |||
988 | /* Add group onto cgroup list */ | ||
989 | sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor); | ||
990 | blkiocg_add_blkio_group(blkcg, &cfqg->blkg, (void *)cfqd, | ||
991 | MKDEV(major, minor)); | ||
992 | |||
993 | /* Add group on cfqd list */ | ||
994 | hlist_add_head(&cfqg->cfqd_node, &cfqd->cfqg_list); | ||
995 | |||
996 | done: | ||
997 | blkiocg_css_put(blkcg); | ||
998 | return cfqg; | ||
999 | } | ||
1000 | |||
487 | /* | 1001 | /* |
488 | * The cfqd->service_tree holds all pending cfq_queue's that have | 1002 | * Search for the cfq group current task belongs to. If create = 1, then also |
1003 | * create the cfq group if it does not exist. request_queue lock must be held. | ||
1004 | */ | ||
1005 | static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create) | ||
1006 | { | ||
1007 | struct cgroup *cgroup; | ||
1008 | struct cfq_group *cfqg = NULL; | ||
1009 | |||
1010 | rcu_read_lock(); | ||
1011 | cgroup = task_cgroup(current, blkio_subsys_id); | ||
1012 | cfqg = cfq_find_alloc_cfqg(cfqd, cgroup, create); | ||
1013 | if (!cfqg && create) | ||
1014 | cfqg = &cfqd->root_group; | ||
1015 | rcu_read_unlock(); | ||
1016 | return cfqg; | ||
1017 | } | ||
1018 | |||
1019 | static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) | ||
1020 | { | ||
1021 | /* Currently, all async queues are mapped to root group */ | ||
1022 | if (!cfq_cfqq_sync(cfqq)) | ||
1023 | cfqg = &cfqq->cfqd->root_group; | ||
1024 | |||
1025 | cfqq->cfqg = cfqg; | ||
1026 | /* cfqq reference on cfqg */ | ||
1027 | atomic_inc(&cfqq->cfqg->ref); | ||
1028 | } | ||
1029 | |||
1030 | static void cfq_put_cfqg(struct cfq_group *cfqg) | ||
1031 | { | ||
1032 | struct cfq_rb_root *st; | ||
1033 | int i, j; | ||
1034 | |||
1035 | BUG_ON(atomic_read(&cfqg->ref) <= 0); | ||
1036 | if (!atomic_dec_and_test(&cfqg->ref)) | ||
1037 | return; | ||
1038 | for_each_cfqg_st(cfqg, i, j, st) | ||
1039 | BUG_ON(!RB_EMPTY_ROOT(&st->rb) || st->active != NULL); | ||
1040 | kfree(cfqg); | ||
1041 | } | ||
1042 | |||
1043 | static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg) | ||
1044 | { | ||
1045 | /* Something wrong if we are trying to remove same group twice */ | ||
1046 | BUG_ON(hlist_unhashed(&cfqg->cfqd_node)); | ||
1047 | |||
1048 | hlist_del_init(&cfqg->cfqd_node); | ||
1049 | |||
1050 | /* | ||
1051 | * Put the reference taken at the time of creation so that when all | ||
1052 | * queues are gone, group can be destroyed. | ||
1053 | */ | ||
1054 | cfq_put_cfqg(cfqg); | ||
1055 | } | ||
1056 | |||
1057 | static void cfq_release_cfq_groups(struct cfq_data *cfqd) | ||
1058 | { | ||
1059 | struct hlist_node *pos, *n; | ||
1060 | struct cfq_group *cfqg; | ||
1061 | |||
1062 | hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) { | ||
1063 | /* | ||
1064 | * If cgroup removal path got to blk_group first and removed | ||
1065 | * it from cgroup list, then it will take care of destroying | ||
1066 | * cfqg also. | ||
1067 | */ | ||
1068 | if (!blkiocg_del_blkio_group(&cfqg->blkg)) | ||
1069 | cfq_destroy_cfqg(cfqd, cfqg); | ||
1070 | } | ||
1071 | } | ||
1072 | |||
1073 | /* | ||
1074 | * Blk cgroup controller notification saying that blkio_group object is being | ||
1075 | * delinked as associated cgroup object is going away. That also means that | ||
1076 | * no new IO will come in this group. So get rid of this group as soon as | ||
1077 | * any pending IO in the group is finished. | ||
1078 | * | ||
1079 | * This function is called under rcu_read_lock(). key is the rcu protected | ||
1080 | * pointer. That means "key" is a valid cfq_data pointer as long as we are rcu | ||
1081 | * read lock. | ||
1082 | * | ||
1083 | * "key" was fetched from blkio_group under blkio_cgroup->lock. That means | ||
1084 | * it should not be NULL as even if elevator was exiting, cgroup deltion | ||
1085 | * path got to it first. | ||
1086 | */ | ||
1087 | void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg) | ||
1088 | { | ||
1089 | unsigned long flags; | ||
1090 | struct cfq_data *cfqd = key; | ||
1091 | |||
1092 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); | ||
1093 | cfq_destroy_cfqg(cfqd, cfqg_of_blkg(blkg)); | ||
1094 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); | ||
1095 | } | ||
1096 | |||
1097 | #else /* GROUP_IOSCHED */ | ||
1098 | static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create) | ||
1099 | { | ||
1100 | return &cfqd->root_group; | ||
1101 | } | ||
1102 | static inline void | ||
1103 | cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) { | ||
1104 | cfqq->cfqg = cfqg; | ||
1105 | } | ||
1106 | |||
1107 | static void cfq_release_cfq_groups(struct cfq_data *cfqd) {} | ||
1108 | static inline void cfq_put_cfqg(struct cfq_group *cfqg) {} | ||
1109 | |||
1110 | #endif /* GROUP_IOSCHED */ | ||
1111 | |||
1112 | /* | ||
1113 | * The cfqd->service_trees holds all pending cfq_queue's that have | ||
489 | * requests waiting to be processed. It is sorted in the order that | 1114 | * requests waiting to be processed. It is sorted in the order that |
490 | * we will service the queues. | 1115 | * we will service the queues. |
491 | */ | 1116 | */ |
@@ -495,11 +1120,42 @@ static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
495 | struct rb_node **p, *parent; | 1120 | struct rb_node **p, *parent; |
496 | struct cfq_queue *__cfqq; | 1121 | struct cfq_queue *__cfqq; |
497 | unsigned long rb_key; | 1122 | unsigned long rb_key; |
1123 | struct cfq_rb_root *service_tree; | ||
498 | int left; | 1124 | int left; |
1125 | int new_cfqq = 1; | ||
1126 | int group_changed = 0; | ||
1127 | |||
1128 | #ifdef CONFIG_CFQ_GROUP_IOSCHED | ||
1129 | if (!cfqd->cfq_group_isolation | ||
1130 | && cfqq_type(cfqq) == SYNC_NOIDLE_WORKLOAD | ||
1131 | && cfqq->cfqg && cfqq->cfqg != &cfqd->root_group) { | ||
1132 | /* Move this cfq to root group */ | ||
1133 | cfq_log_cfqq(cfqd, cfqq, "moving to root group"); | ||
1134 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) | ||
1135 | cfq_group_service_tree_del(cfqd, cfqq->cfqg); | ||
1136 | cfqq->orig_cfqg = cfqq->cfqg; | ||
1137 | cfqq->cfqg = &cfqd->root_group; | ||
1138 | atomic_inc(&cfqd->root_group.ref); | ||
1139 | group_changed = 1; | ||
1140 | } else if (!cfqd->cfq_group_isolation | ||
1141 | && cfqq_type(cfqq) == SYNC_WORKLOAD && cfqq->orig_cfqg) { | ||
1142 | /* cfqq is sequential now needs to go to its original group */ | ||
1143 | BUG_ON(cfqq->cfqg != &cfqd->root_group); | ||
1144 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) | ||
1145 | cfq_group_service_tree_del(cfqd, cfqq->cfqg); | ||
1146 | cfq_put_cfqg(cfqq->cfqg); | ||
1147 | cfqq->cfqg = cfqq->orig_cfqg; | ||
1148 | cfqq->orig_cfqg = NULL; | ||
1149 | group_changed = 1; | ||
1150 | cfq_log_cfqq(cfqd, cfqq, "moved to origin group"); | ||
1151 | } | ||
1152 | #endif | ||
499 | 1153 | ||
1154 | service_tree = service_tree_for(cfqq->cfqg, cfqq_prio(cfqq), | ||
1155 | cfqq_type(cfqq), cfqd); | ||
500 | if (cfq_class_idle(cfqq)) { | 1156 | if (cfq_class_idle(cfqq)) { |
501 | rb_key = CFQ_IDLE_DELAY; | 1157 | rb_key = CFQ_IDLE_DELAY; |
502 | parent = rb_last(&cfqd->service_tree.rb); | 1158 | parent = rb_last(&service_tree->rb); |
503 | if (parent && parent != &cfqq->rb_node) { | 1159 | if (parent && parent != &cfqq->rb_node) { |
504 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); | 1160 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); |
505 | rb_key += __cfqq->rb_key; | 1161 | rb_key += __cfqq->rb_key; |
@@ -517,23 +1173,27 @@ static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
517 | cfqq->slice_resid = 0; | 1173 | cfqq->slice_resid = 0; |
518 | } else { | 1174 | } else { |
519 | rb_key = -HZ; | 1175 | rb_key = -HZ; |
520 | __cfqq = cfq_rb_first(&cfqd->service_tree); | 1176 | __cfqq = cfq_rb_first(service_tree); |
521 | rb_key += __cfqq ? __cfqq->rb_key : jiffies; | 1177 | rb_key += __cfqq ? __cfqq->rb_key : jiffies; |
522 | } | 1178 | } |
523 | 1179 | ||
524 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) { | 1180 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) { |
1181 | new_cfqq = 0; | ||
525 | /* | 1182 | /* |
526 | * same position, nothing more to do | 1183 | * same position, nothing more to do |
527 | */ | 1184 | */ |
528 | if (rb_key == cfqq->rb_key) | 1185 | if (rb_key == cfqq->rb_key && |
1186 | cfqq->service_tree == service_tree) | ||
529 | return; | 1187 | return; |
530 | 1188 | ||
531 | cfq_rb_erase(&cfqq->rb_node, &cfqd->service_tree); | 1189 | cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree); |
1190 | cfqq->service_tree = NULL; | ||
532 | } | 1191 | } |
533 | 1192 | ||
534 | left = 1; | 1193 | left = 1; |
535 | parent = NULL; | 1194 | parent = NULL; |
536 | p = &cfqd->service_tree.rb.rb_node; | 1195 | cfqq->service_tree = service_tree; |
1196 | p = &service_tree->rb.rb_node; | ||
537 | while (*p) { | 1197 | while (*p) { |
538 | struct rb_node **n; | 1198 | struct rb_node **n; |
539 | 1199 | ||
@@ -541,35 +1201,28 @@ static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
541 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); | 1201 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); |
542 | 1202 | ||
543 | /* | 1203 | /* |
544 | * sort RT queues first, we always want to give | 1204 | * sort by key, that represents service time. |
545 | * preference to them. IDLE queues goes to the back. | ||
546 | * after that, sort on the next service time. | ||
547 | */ | 1205 | */ |
548 | if (cfq_class_rt(cfqq) > cfq_class_rt(__cfqq)) | 1206 | if (time_before(rb_key, __cfqq->rb_key)) |
549 | n = &(*p)->rb_left; | ||
550 | else if (cfq_class_rt(cfqq) < cfq_class_rt(__cfqq)) | ||
551 | n = &(*p)->rb_right; | ||
552 | else if (cfq_class_idle(cfqq) < cfq_class_idle(__cfqq)) | ||
553 | n = &(*p)->rb_left; | ||
554 | else if (cfq_class_idle(cfqq) > cfq_class_idle(__cfqq)) | ||
555 | n = &(*p)->rb_right; | ||
556 | else if (time_before(rb_key, __cfqq->rb_key)) | ||
557 | n = &(*p)->rb_left; | 1207 | n = &(*p)->rb_left; |
558 | else | 1208 | else { |
559 | n = &(*p)->rb_right; | 1209 | n = &(*p)->rb_right; |
560 | |||
561 | if (n == &(*p)->rb_right) | ||
562 | left = 0; | 1210 | left = 0; |
1211 | } | ||
563 | 1212 | ||
564 | p = n; | 1213 | p = n; |
565 | } | 1214 | } |
566 | 1215 | ||
567 | if (left) | 1216 | if (left) |
568 | cfqd->service_tree.left = &cfqq->rb_node; | 1217 | service_tree->left = &cfqq->rb_node; |
569 | 1218 | ||
570 | cfqq->rb_key = rb_key; | 1219 | cfqq->rb_key = rb_key; |
571 | rb_link_node(&cfqq->rb_node, parent, p); | 1220 | rb_link_node(&cfqq->rb_node, parent, p); |
572 | rb_insert_color(&cfqq->rb_node, &cfqd->service_tree.rb); | 1221 | rb_insert_color(&cfqq->rb_node, &service_tree->rb); |
1222 | service_tree->count++; | ||
1223 | if ((add_front || !new_cfqq) && !group_changed) | ||
1224 | return; | ||
1225 | cfq_group_service_tree_add(cfqd, cfqq->cfqg); | ||
573 | } | 1226 | } |
574 | 1227 | ||
575 | static struct cfq_queue * | 1228 | static struct cfq_queue * |
@@ -671,13 +1324,16 @@ static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |||
671 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); | 1324 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); |
672 | cfq_clear_cfqq_on_rr(cfqq); | 1325 | cfq_clear_cfqq_on_rr(cfqq); |
673 | 1326 | ||
674 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) | 1327 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) { |
675 | cfq_rb_erase(&cfqq->rb_node, &cfqd->service_tree); | 1328 | cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree); |
1329 | cfqq->service_tree = NULL; | ||
1330 | } | ||
676 | if (cfqq->p_root) { | 1331 | if (cfqq->p_root) { |
677 | rb_erase(&cfqq->p_node, cfqq->p_root); | 1332 | rb_erase(&cfqq->p_node, cfqq->p_root); |
678 | cfqq->p_root = NULL; | 1333 | cfqq->p_root = NULL; |
679 | } | 1334 | } |
680 | 1335 | ||
1336 | cfq_group_service_tree_del(cfqd, cfqq->cfqg); | ||
681 | BUG_ON(!cfqd->busy_queues); | 1337 | BUG_ON(!cfqd->busy_queues); |
682 | cfqd->busy_queues--; | 1338 | cfqd->busy_queues--; |
683 | } | 1339 | } |
@@ -688,7 +1344,6 @@ static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |||
688 | static void cfq_del_rq_rb(struct request *rq) | 1344 | static void cfq_del_rq_rb(struct request *rq) |
689 | { | 1345 | { |
690 | struct cfq_queue *cfqq = RQ_CFQQ(rq); | 1346 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
691 | struct cfq_data *cfqd = cfqq->cfqd; | ||
692 | const int sync = rq_is_sync(rq); | 1347 | const int sync = rq_is_sync(rq); |
693 | 1348 | ||
694 | BUG_ON(!cfqq->queued[sync]); | 1349 | BUG_ON(!cfqq->queued[sync]); |
@@ -696,8 +1351,17 @@ static void cfq_del_rq_rb(struct request *rq) | |||
696 | 1351 | ||
697 | elv_rb_del(&cfqq->sort_list, rq); | 1352 | elv_rb_del(&cfqq->sort_list, rq); |
698 | 1353 | ||
699 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) | 1354 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) { |
700 | cfq_del_cfqq_rr(cfqd, cfqq); | 1355 | /* |
1356 | * Queue will be deleted from service tree when we actually | ||
1357 | * expire it later. Right now just remove it from prio tree | ||
1358 | * as it is empty. | ||
1359 | */ | ||
1360 | if (cfqq->p_root) { | ||
1361 | rb_erase(&cfqq->p_node, cfqq->p_root); | ||
1362 | cfqq->p_root = NULL; | ||
1363 | } | ||
1364 | } | ||
701 | } | 1365 | } |
702 | 1366 | ||
703 | static void cfq_add_rq_rb(struct request *rq) | 1367 | static void cfq_add_rq_rb(struct request *rq) |
@@ -722,7 +1386,7 @@ static void cfq_add_rq_rb(struct request *rq) | |||
722 | * check if this request is a better next-serve candidate | 1386 | * check if this request is a better next-serve candidate |
723 | */ | 1387 | */ |
724 | prev = cfqq->next_rq; | 1388 | prev = cfqq->next_rq; |
725 | cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq); | 1389 | cfqq->next_rq = cfq_choose_req(cfqd, cfqq->next_rq, rq, cfqd->last_position); |
726 | 1390 | ||
727 | /* | 1391 | /* |
728 | * adjust priority tree position, if ->next_rq changes | 1392 | * adjust priority tree position, if ->next_rq changes |
@@ -829,6 +1493,7 @@ static void | |||
829 | cfq_merged_requests(struct request_queue *q, struct request *rq, | 1493 | cfq_merged_requests(struct request_queue *q, struct request *rq, |
830 | struct request *next) | 1494 | struct request *next) |
831 | { | 1495 | { |
1496 | struct cfq_queue *cfqq = RQ_CFQQ(rq); | ||
832 | /* | 1497 | /* |
833 | * reposition in fifo if next is older than rq | 1498 | * reposition in fifo if next is older than rq |
834 | */ | 1499 | */ |
@@ -838,6 +1503,8 @@ cfq_merged_requests(struct request_queue *q, struct request *rq, | |||
838 | rq_set_fifo_time(rq, rq_fifo_time(next)); | 1503 | rq_set_fifo_time(rq, rq_fifo_time(next)); |
839 | } | 1504 | } |
840 | 1505 | ||
1506 | if (cfqq->next_rq == next) | ||
1507 | cfqq->next_rq = rq; | ||
841 | cfq_remove_request(next); | 1508 | cfq_remove_request(next); |
842 | } | 1509 | } |
843 | 1510 | ||
@@ -848,6 +1515,9 @@ static int cfq_allow_merge(struct request_queue *q, struct request *rq, | |||
848 | struct cfq_io_context *cic; | 1515 | struct cfq_io_context *cic; |
849 | struct cfq_queue *cfqq; | 1516 | struct cfq_queue *cfqq; |
850 | 1517 | ||
1518 | /* Deny merge if bio and rq don't belong to same cfq group */ | ||
1519 | if ((RQ_CFQQ(rq))->cfqg != cfq_get_cfqg(cfqd, 0)) | ||
1520 | return false; | ||
851 | /* | 1521 | /* |
852 | * Disallow merge of a sync bio into an async request. | 1522 | * Disallow merge of a sync bio into an async request. |
853 | */ | 1523 | */ |
@@ -871,8 +1541,12 @@ static void __cfq_set_active_queue(struct cfq_data *cfqd, | |||
871 | { | 1541 | { |
872 | if (cfqq) { | 1542 | if (cfqq) { |
873 | cfq_log_cfqq(cfqd, cfqq, "set_active"); | 1543 | cfq_log_cfqq(cfqd, cfqq, "set_active"); |
1544 | cfqq->slice_start = 0; | ||
1545 | cfqq->dispatch_start = jiffies; | ||
1546 | cfqq->allocated_slice = 0; | ||
874 | cfqq->slice_end = 0; | 1547 | cfqq->slice_end = 0; |
875 | cfqq->slice_dispatch = 0; | 1548 | cfqq->slice_dispatch = 0; |
1549 | cfqq->nr_sectors = 0; | ||
876 | 1550 | ||
877 | cfq_clear_cfqq_wait_request(cfqq); | 1551 | cfq_clear_cfqq_wait_request(cfqq); |
878 | cfq_clear_cfqq_must_dispatch(cfqq); | 1552 | cfq_clear_cfqq_must_dispatch(cfqq); |
@@ -899,6 +1573,8 @@ __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
899 | del_timer(&cfqd->idle_slice_timer); | 1573 | del_timer(&cfqd->idle_slice_timer); |
900 | 1574 | ||
901 | cfq_clear_cfqq_wait_request(cfqq); | 1575 | cfq_clear_cfqq_wait_request(cfqq); |
1576 | cfq_clear_cfqq_wait_busy(cfqq); | ||
1577 | cfq_clear_cfqq_wait_busy_done(cfqq); | ||
902 | 1578 | ||
903 | /* | 1579 | /* |
904 | * store what was left of this slice, if the queue idled/timed out | 1580 | * store what was left of this slice, if the queue idled/timed out |
@@ -908,11 +1584,19 @@ __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
908 | cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid); | 1584 | cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid); |
909 | } | 1585 | } |
910 | 1586 | ||
1587 | cfq_group_served(cfqd, cfqq->cfqg, cfqq); | ||
1588 | |||
1589 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) | ||
1590 | cfq_del_cfqq_rr(cfqd, cfqq); | ||
1591 | |||
911 | cfq_resort_rr_list(cfqd, cfqq); | 1592 | cfq_resort_rr_list(cfqd, cfqq); |
912 | 1593 | ||
913 | if (cfqq == cfqd->active_queue) | 1594 | if (cfqq == cfqd->active_queue) |
914 | cfqd->active_queue = NULL; | 1595 | cfqd->active_queue = NULL; |
915 | 1596 | ||
1597 | if (&cfqq->cfqg->rb_node == cfqd->grp_service_tree.active) | ||
1598 | cfqd->grp_service_tree.active = NULL; | ||
1599 | |||
916 | if (cfqd->active_cic) { | 1600 | if (cfqd->active_cic) { |
917 | put_io_context(cfqd->active_cic->ioc); | 1601 | put_io_context(cfqd->active_cic->ioc); |
918 | cfqd->active_cic = NULL; | 1602 | cfqd->active_cic = NULL; |
@@ -933,10 +1617,39 @@ static inline void cfq_slice_expired(struct cfq_data *cfqd, bool timed_out) | |||
933 | */ | 1617 | */ |
934 | static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd) | 1618 | static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd) |
935 | { | 1619 | { |
936 | if (RB_EMPTY_ROOT(&cfqd->service_tree.rb)) | 1620 | struct cfq_rb_root *service_tree = |
1621 | service_tree_for(cfqd->serving_group, cfqd->serving_prio, | ||
1622 | cfqd->serving_type, cfqd); | ||
1623 | |||
1624 | if (!cfqd->rq_queued) | ||
937 | return NULL; | 1625 | return NULL; |
938 | 1626 | ||
939 | return cfq_rb_first(&cfqd->service_tree); | 1627 | /* There is nothing to dispatch */ |
1628 | if (!service_tree) | ||
1629 | return NULL; | ||
1630 | if (RB_EMPTY_ROOT(&service_tree->rb)) | ||
1631 | return NULL; | ||
1632 | return cfq_rb_first(service_tree); | ||
1633 | } | ||
1634 | |||
1635 | static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd) | ||
1636 | { | ||
1637 | struct cfq_group *cfqg; | ||
1638 | struct cfq_queue *cfqq; | ||
1639 | int i, j; | ||
1640 | struct cfq_rb_root *st; | ||
1641 | |||
1642 | if (!cfqd->rq_queued) | ||
1643 | return NULL; | ||
1644 | |||
1645 | cfqg = cfq_get_next_cfqg(cfqd); | ||
1646 | if (!cfqg) | ||
1647 | return NULL; | ||
1648 | |||
1649 | for_each_cfqg_st(cfqg, i, j, st) | ||
1650 | if ((cfqq = cfq_rb_first(st)) != NULL) | ||
1651 | return cfqq; | ||
1652 | return NULL; | ||
940 | } | 1653 | } |
941 | 1654 | ||
942 | /* | 1655 | /* |
@@ -945,14 +1658,8 @@ static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd) | |||
945 | static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd, | 1658 | static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd, |
946 | struct cfq_queue *cfqq) | 1659 | struct cfq_queue *cfqq) |
947 | { | 1660 | { |
948 | if (!cfqq) { | 1661 | if (!cfqq) |
949 | cfqq = cfq_get_next_queue(cfqd); | 1662 | cfqq = cfq_get_next_queue(cfqd); |
950 | if (cfqq && !cfq_cfqq_coop_preempt(cfqq)) | ||
951 | cfq_clear_cfqq_coop(cfqq); | ||
952 | } | ||
953 | |||
954 | if (cfqq) | ||
955 | cfq_clear_cfqq_coop_preempt(cfqq); | ||
956 | 1663 | ||
957 | __cfq_set_active_queue(cfqd, cfqq); | 1664 | __cfq_set_active_queue(cfqd, cfqq); |
958 | return cfqq; | 1665 | return cfqq; |
@@ -967,16 +1674,16 @@ static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd, | |||
967 | return cfqd->last_position - blk_rq_pos(rq); | 1674 | return cfqd->last_position - blk_rq_pos(rq); |
968 | } | 1675 | } |
969 | 1676 | ||
970 | #define CIC_SEEK_THR 8 * 1024 | 1677 | #define CFQQ_SEEK_THR 8 * 1024 |
971 | #define CIC_SEEKY(cic) ((cic)->seek_mean > CIC_SEEK_THR) | 1678 | #define CFQQ_SEEKY(cfqq) ((cfqq)->seek_mean > CFQQ_SEEK_THR) |
972 | 1679 | ||
973 | static inline int cfq_rq_close(struct cfq_data *cfqd, struct request *rq) | 1680 | static inline int cfq_rq_close(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
1681 | struct request *rq) | ||
974 | { | 1682 | { |
975 | struct cfq_io_context *cic = cfqd->active_cic; | 1683 | sector_t sdist = cfqq->seek_mean; |
976 | sector_t sdist = cic->seek_mean; | ||
977 | 1684 | ||
978 | if (!sample_valid(cic->seek_samples)) | 1685 | if (!sample_valid(cfqq->seek_samples)) |
979 | sdist = CIC_SEEK_THR; | 1686 | sdist = CFQQ_SEEK_THR; |
980 | 1687 | ||
981 | return cfq_dist_from_last(cfqd, rq) <= sdist; | 1688 | return cfq_dist_from_last(cfqd, rq) <= sdist; |
982 | } | 1689 | } |
@@ -1005,7 +1712,7 @@ static struct cfq_queue *cfqq_close(struct cfq_data *cfqd, | |||
1005 | * will contain the closest sector. | 1712 | * will contain the closest sector. |
1006 | */ | 1713 | */ |
1007 | __cfqq = rb_entry(parent, struct cfq_queue, p_node); | 1714 | __cfqq = rb_entry(parent, struct cfq_queue, p_node); |
1008 | if (cfq_rq_close(cfqd, __cfqq->next_rq)) | 1715 | if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq)) |
1009 | return __cfqq; | 1716 | return __cfqq; |
1010 | 1717 | ||
1011 | if (blk_rq_pos(__cfqq->next_rq) < sector) | 1718 | if (blk_rq_pos(__cfqq->next_rq) < sector) |
@@ -1016,7 +1723,7 @@ static struct cfq_queue *cfqq_close(struct cfq_data *cfqd, | |||
1016 | return NULL; | 1723 | return NULL; |
1017 | 1724 | ||
1018 | __cfqq = rb_entry(node, struct cfq_queue, p_node); | 1725 | __cfqq = rb_entry(node, struct cfq_queue, p_node); |
1019 | if (cfq_rq_close(cfqd, __cfqq->next_rq)) | 1726 | if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq)) |
1020 | return __cfqq; | 1727 | return __cfqq; |
1021 | 1728 | ||
1022 | return NULL; | 1729 | return NULL; |
@@ -1033,16 +1740,13 @@ static struct cfq_queue *cfqq_close(struct cfq_data *cfqd, | |||
1033 | * assumption. | 1740 | * assumption. |
1034 | */ | 1741 | */ |
1035 | static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd, | 1742 | static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd, |
1036 | struct cfq_queue *cur_cfqq, | 1743 | struct cfq_queue *cur_cfqq) |
1037 | bool probe) | ||
1038 | { | 1744 | { |
1039 | struct cfq_queue *cfqq; | 1745 | struct cfq_queue *cfqq; |
1040 | 1746 | ||
1041 | /* | 1747 | if (!cfq_cfqq_sync(cur_cfqq)) |
1042 | * A valid cfq_io_context is necessary to compare requests against | 1748 | return NULL; |
1043 | * the seek_mean of the current cfqq. | 1749 | if (CFQQ_SEEKY(cur_cfqq)) |
1044 | */ | ||
1045 | if (!cfqd->active_cic) | ||
1046 | return NULL; | 1750 | return NULL; |
1047 | 1751 | ||
1048 | /* | 1752 | /* |
@@ -1054,14 +1758,55 @@ static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd, | |||
1054 | if (!cfqq) | 1758 | if (!cfqq) |
1055 | return NULL; | 1759 | return NULL; |
1056 | 1760 | ||
1057 | if (cfq_cfqq_coop(cfqq)) | 1761 | /* If new queue belongs to different cfq_group, don't choose it */ |
1762 | if (cur_cfqq->cfqg != cfqq->cfqg) | ||
1763 | return NULL; | ||
1764 | |||
1765 | /* | ||
1766 | * It only makes sense to merge sync queues. | ||
1767 | */ | ||
1768 | if (!cfq_cfqq_sync(cfqq)) | ||
1769 | return NULL; | ||
1770 | if (CFQQ_SEEKY(cfqq)) | ||
1771 | return NULL; | ||
1772 | |||
1773 | /* | ||
1774 | * Do not merge queues of different priority classes | ||
1775 | */ | ||
1776 | if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq)) | ||
1058 | return NULL; | 1777 | return NULL; |
1059 | 1778 | ||
1060 | if (!probe) | ||
1061 | cfq_mark_cfqq_coop(cfqq); | ||
1062 | return cfqq; | 1779 | return cfqq; |
1063 | } | 1780 | } |
1064 | 1781 | ||
1782 | /* | ||
1783 | * Determine whether we should enforce idle window for this queue. | ||
1784 | */ | ||
1785 | |||
1786 | static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq) | ||
1787 | { | ||
1788 | enum wl_prio_t prio = cfqq_prio(cfqq); | ||
1789 | struct cfq_rb_root *service_tree = cfqq->service_tree; | ||
1790 | |||
1791 | BUG_ON(!service_tree); | ||
1792 | BUG_ON(!service_tree->count); | ||
1793 | |||
1794 | /* We never do for idle class queues. */ | ||
1795 | if (prio == IDLE_WORKLOAD) | ||
1796 | return false; | ||
1797 | |||
1798 | /* We do for queues that were marked with idle window flag. */ | ||
1799 | if (cfq_cfqq_idle_window(cfqq) && | ||
1800 | !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)) | ||
1801 | return true; | ||
1802 | |||
1803 | /* | ||
1804 | * Otherwise, we do only if they are the last ones | ||
1805 | * in their service tree. | ||
1806 | */ | ||
1807 | return service_tree->count == 1; | ||
1808 | } | ||
1809 | |||
1065 | static void cfq_arm_slice_timer(struct cfq_data *cfqd) | 1810 | static void cfq_arm_slice_timer(struct cfq_data *cfqd) |
1066 | { | 1811 | { |
1067 | struct cfq_queue *cfqq = cfqd->active_queue; | 1812 | struct cfq_queue *cfqq = cfqd->active_queue; |
@@ -1082,13 +1827,13 @@ static void cfq_arm_slice_timer(struct cfq_data *cfqd) | |||
1082 | /* | 1827 | /* |
1083 | * idle is disabled, either manually or by past process history | 1828 | * idle is disabled, either manually or by past process history |
1084 | */ | 1829 | */ |
1085 | if (!cfqd->cfq_slice_idle || !cfq_cfqq_idle_window(cfqq)) | 1830 | if (!cfqd->cfq_slice_idle || !cfq_should_idle(cfqd, cfqq)) |
1086 | return; | 1831 | return; |
1087 | 1832 | ||
1088 | /* | 1833 | /* |
1089 | * still requests with the driver, don't idle | 1834 | * still active requests from this queue, don't idle |
1090 | */ | 1835 | */ |
1091 | if (rq_in_driver(cfqd)) | 1836 | if (cfqq->dispatched) |
1092 | return; | 1837 | return; |
1093 | 1838 | ||
1094 | /* | 1839 | /* |
@@ -1109,14 +1854,7 @@ static void cfq_arm_slice_timer(struct cfq_data *cfqd) | |||
1109 | 1854 | ||
1110 | cfq_mark_cfqq_wait_request(cfqq); | 1855 | cfq_mark_cfqq_wait_request(cfqq); |
1111 | 1856 | ||
1112 | /* | ||
1113 | * we don't want to idle for seeks, but we do want to allow | ||
1114 | * fair distribution of slice time for a process doing back-to-back | ||
1115 | * seeks. so allow a little bit of time for him to submit a new rq | ||
1116 | */ | ||
1117 | sl = cfqd->cfq_slice_idle; | 1857 | sl = cfqd->cfq_slice_idle; |
1118 | if (sample_valid(cic->seek_samples) && CIC_SEEKY(cic)) | ||
1119 | sl = min(sl, msecs_to_jiffies(CFQ_MIN_TT)); | ||
1120 | 1858 | ||
1121 | mod_timer(&cfqd->idle_slice_timer, jiffies + sl); | 1859 | mod_timer(&cfqd->idle_slice_timer, jiffies + sl); |
1122 | cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl); | 1860 | cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl); |
@@ -1139,6 +1877,7 @@ static void cfq_dispatch_insert(struct request_queue *q, struct request *rq) | |||
1139 | 1877 | ||
1140 | if (cfq_cfqq_sync(cfqq)) | 1878 | if (cfq_cfqq_sync(cfqq)) |
1141 | cfqd->sync_flight++; | 1879 | cfqd->sync_flight++; |
1880 | cfqq->nr_sectors += blk_rq_sectors(rq); | ||
1142 | } | 1881 | } |
1143 | 1882 | ||
1144 | /* | 1883 | /* |
@@ -1175,6 +1914,207 @@ cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |||
1175 | } | 1914 | } |
1176 | 1915 | ||
1177 | /* | 1916 | /* |
1917 | * Must be called with the queue_lock held. | ||
1918 | */ | ||
1919 | static int cfqq_process_refs(struct cfq_queue *cfqq) | ||
1920 | { | ||
1921 | int process_refs, io_refs; | ||
1922 | |||
1923 | io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE]; | ||
1924 | process_refs = atomic_read(&cfqq->ref) - io_refs; | ||
1925 | BUG_ON(process_refs < 0); | ||
1926 | return process_refs; | ||
1927 | } | ||
1928 | |||
1929 | static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq) | ||
1930 | { | ||
1931 | int process_refs, new_process_refs; | ||
1932 | struct cfq_queue *__cfqq; | ||
1933 | |||
1934 | /* Avoid a circular list and skip interim queue merges */ | ||
1935 | while ((__cfqq = new_cfqq->new_cfqq)) { | ||
1936 | if (__cfqq == cfqq) | ||
1937 | return; | ||
1938 | new_cfqq = __cfqq; | ||
1939 | } | ||
1940 | |||
1941 | process_refs = cfqq_process_refs(cfqq); | ||
1942 | /* | ||
1943 | * If the process for the cfqq has gone away, there is no | ||
1944 | * sense in merging the queues. | ||
1945 | */ | ||
1946 | if (process_refs == 0) | ||
1947 | return; | ||
1948 | |||
1949 | /* | ||
1950 | * Merge in the direction of the lesser amount of work. | ||
1951 | */ | ||
1952 | new_process_refs = cfqq_process_refs(new_cfqq); | ||
1953 | if (new_process_refs >= process_refs) { | ||
1954 | cfqq->new_cfqq = new_cfqq; | ||
1955 | atomic_add(process_refs, &new_cfqq->ref); | ||
1956 | } else { | ||
1957 | new_cfqq->new_cfqq = cfqq; | ||
1958 | atomic_add(new_process_refs, &cfqq->ref); | ||
1959 | } | ||
1960 | } | ||
1961 | |||
1962 | static enum wl_type_t cfq_choose_wl(struct cfq_data *cfqd, | ||
1963 | struct cfq_group *cfqg, enum wl_prio_t prio, | ||
1964 | bool prio_changed) | ||
1965 | { | ||
1966 | struct cfq_queue *queue; | ||
1967 | int i; | ||
1968 | bool key_valid = false; | ||
1969 | unsigned long lowest_key = 0; | ||
1970 | enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD; | ||
1971 | |||
1972 | if (prio_changed) { | ||
1973 | /* | ||
1974 | * When priorities switched, we prefer starting | ||
1975 | * from SYNC_NOIDLE (first choice), or just SYNC | ||
1976 | * over ASYNC | ||
1977 | */ | ||
1978 | if (service_tree_for(cfqg, prio, cur_best, cfqd)->count) | ||
1979 | return cur_best; | ||
1980 | cur_best = SYNC_WORKLOAD; | ||
1981 | if (service_tree_for(cfqg, prio, cur_best, cfqd)->count) | ||
1982 | return cur_best; | ||
1983 | |||
1984 | return ASYNC_WORKLOAD; | ||
1985 | } | ||
1986 | |||
1987 | for (i = 0; i < 3; ++i) { | ||
1988 | /* otherwise, select the one with lowest rb_key */ | ||
1989 | queue = cfq_rb_first(service_tree_for(cfqg, prio, i, cfqd)); | ||
1990 | if (queue && | ||
1991 | (!key_valid || time_before(queue->rb_key, lowest_key))) { | ||
1992 | lowest_key = queue->rb_key; | ||
1993 | cur_best = i; | ||
1994 | key_valid = true; | ||
1995 | } | ||
1996 | } | ||
1997 | |||
1998 | return cur_best; | ||
1999 | } | ||
2000 | |||
2001 | static void choose_service_tree(struct cfq_data *cfqd, struct cfq_group *cfqg) | ||
2002 | { | ||
2003 | enum wl_prio_t previous_prio = cfqd->serving_prio; | ||
2004 | bool prio_changed; | ||
2005 | unsigned slice; | ||
2006 | unsigned count; | ||
2007 | struct cfq_rb_root *st; | ||
2008 | unsigned group_slice; | ||
2009 | |||
2010 | if (!cfqg) { | ||
2011 | cfqd->serving_prio = IDLE_WORKLOAD; | ||
2012 | cfqd->workload_expires = jiffies + 1; | ||
2013 | return; | ||
2014 | } | ||
2015 | |||
2016 | /* Choose next priority. RT > BE > IDLE */ | ||
2017 | if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg)) | ||
2018 | cfqd->serving_prio = RT_WORKLOAD; | ||
2019 | else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg)) | ||
2020 | cfqd->serving_prio = BE_WORKLOAD; | ||
2021 | else { | ||
2022 | cfqd->serving_prio = IDLE_WORKLOAD; | ||
2023 | cfqd->workload_expires = jiffies + 1; | ||
2024 | return; | ||
2025 | } | ||
2026 | |||
2027 | /* | ||
2028 | * For RT and BE, we have to choose also the type | ||
2029 | * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload | ||
2030 | * expiration time | ||
2031 | */ | ||
2032 | prio_changed = (cfqd->serving_prio != previous_prio); | ||
2033 | st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type, | ||
2034 | cfqd); | ||
2035 | count = st->count; | ||
2036 | |||
2037 | /* | ||
2038 | * If priority didn't change, check workload expiration, | ||
2039 | * and that we still have other queues ready | ||
2040 | */ | ||
2041 | if (!prio_changed && count && | ||
2042 | !time_after(jiffies, cfqd->workload_expires)) | ||
2043 | return; | ||
2044 | |||
2045 | /* otherwise select new workload type */ | ||
2046 | cfqd->serving_type = | ||
2047 | cfq_choose_wl(cfqd, cfqg, cfqd->serving_prio, prio_changed); | ||
2048 | st = service_tree_for(cfqg, cfqd->serving_prio, cfqd->serving_type, | ||
2049 | cfqd); | ||
2050 | count = st->count; | ||
2051 | |||
2052 | /* | ||
2053 | * the workload slice is computed as a fraction of target latency | ||
2054 | * proportional to the number of queues in that workload, over | ||
2055 | * all the queues in the same priority class | ||
2056 | */ | ||
2057 | group_slice = cfq_group_slice(cfqd, cfqg); | ||
2058 | |||
2059 | slice = group_slice * count / | ||
2060 | max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_prio], | ||
2061 | cfq_group_busy_queues_wl(cfqd->serving_prio, cfqd, cfqg)); | ||
2062 | |||
2063 | if (cfqd->serving_type == ASYNC_WORKLOAD) { | ||
2064 | unsigned int tmp; | ||
2065 | |||
2066 | /* | ||
2067 | * Async queues are currently system wide. Just taking | ||
2068 | * proportion of queues with-in same group will lead to higher | ||
2069 | * async ratio system wide as generally root group is going | ||
2070 | * to have higher weight. A more accurate thing would be to | ||
2071 | * calculate system wide asnc/sync ratio. | ||
2072 | */ | ||
2073 | tmp = cfq_target_latency * cfqg_busy_async_queues(cfqd, cfqg); | ||
2074 | tmp = tmp/cfqd->busy_queues; | ||
2075 | slice = min_t(unsigned, slice, tmp); | ||
2076 | |||
2077 | /* async workload slice is scaled down according to | ||
2078 | * the sync/async slice ratio. */ | ||
2079 | slice = slice * cfqd->cfq_slice[0] / cfqd->cfq_slice[1]; | ||
2080 | } else | ||
2081 | /* sync workload slice is at least 2 * cfq_slice_idle */ | ||
2082 | slice = max(slice, 2 * cfqd->cfq_slice_idle); | ||
2083 | |||
2084 | slice = max_t(unsigned, slice, CFQ_MIN_TT); | ||
2085 | cfqd->workload_expires = jiffies + slice; | ||
2086 | cfqd->noidle_tree_requires_idle = false; | ||
2087 | } | ||
2088 | |||
2089 | static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd) | ||
2090 | { | ||
2091 | struct cfq_rb_root *st = &cfqd->grp_service_tree; | ||
2092 | struct cfq_group *cfqg; | ||
2093 | |||
2094 | if (RB_EMPTY_ROOT(&st->rb)) | ||
2095 | return NULL; | ||
2096 | cfqg = cfq_rb_first_group(st); | ||
2097 | st->active = &cfqg->rb_node; | ||
2098 | update_min_vdisktime(st); | ||
2099 | return cfqg; | ||
2100 | } | ||
2101 | |||
2102 | static void cfq_choose_cfqg(struct cfq_data *cfqd) | ||
2103 | { | ||
2104 | struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd); | ||
2105 | |||
2106 | cfqd->serving_group = cfqg; | ||
2107 | |||
2108 | /* Restore the workload type data */ | ||
2109 | if (cfqg->saved_workload_slice) { | ||
2110 | cfqd->workload_expires = jiffies + cfqg->saved_workload_slice; | ||
2111 | cfqd->serving_type = cfqg->saved_workload; | ||
2112 | cfqd->serving_prio = cfqg->saved_serving_prio; | ||
2113 | } | ||
2114 | choose_service_tree(cfqd, cfqg); | ||
2115 | } | ||
2116 | |||
2117 | /* | ||
1178 | * Select a queue for service. If we have a current active queue, | 2118 | * Select a queue for service. If we have a current active queue, |
1179 | * check whether to continue servicing it, or retrieve and set a new one. | 2119 | * check whether to continue servicing it, or retrieve and set a new one. |
1180 | */ | 2120 | */ |
@@ -1186,10 +2126,13 @@ static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd) | |||
1186 | if (!cfqq) | 2126 | if (!cfqq) |
1187 | goto new_queue; | 2127 | goto new_queue; |
1188 | 2128 | ||
2129 | if (!cfqd->rq_queued) | ||
2130 | return NULL; | ||
1189 | /* | 2131 | /* |
1190 | * The active queue has run out of time, expire it and select new. | 2132 | * The active queue has run out of time, expire it and select new. |
1191 | */ | 2133 | */ |
1192 | if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) | 2134 | if ((cfq_slice_used(cfqq) || cfq_cfqq_wait_busy_done(cfqq)) |
2135 | && !cfq_cfqq_must_dispatch(cfqq)) | ||
1193 | goto expire; | 2136 | goto expire; |
1194 | 2137 | ||
1195 | /* | 2138 | /* |
@@ -1203,11 +2146,14 @@ static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd) | |||
1203 | * If another queue has a request waiting within our mean seek | 2146 | * If another queue has a request waiting within our mean seek |
1204 | * distance, let it run. The expire code will check for close | 2147 | * distance, let it run. The expire code will check for close |
1205 | * cooperators and put the close queue at the front of the service | 2148 | * cooperators and put the close queue at the front of the service |
1206 | * tree. | 2149 | * tree. If possible, merge the expiring queue with the new cfqq. |
1207 | */ | 2150 | */ |
1208 | new_cfqq = cfq_close_cooperator(cfqd, cfqq, 0); | 2151 | new_cfqq = cfq_close_cooperator(cfqd, cfqq); |
1209 | if (new_cfqq) | 2152 | if (new_cfqq) { |
2153 | if (!cfqq->new_cfqq) | ||
2154 | cfq_setup_merge(cfqq, new_cfqq); | ||
1210 | goto expire; | 2155 | goto expire; |
2156 | } | ||
1211 | 2157 | ||
1212 | /* | 2158 | /* |
1213 | * No requests pending. If the active queue still has requests in | 2159 | * No requests pending. If the active queue still has requests in |
@@ -1215,7 +2161,7 @@ static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd) | |||
1215 | * conditions to happen (or time out) before selecting a new queue. | 2161 | * conditions to happen (or time out) before selecting a new queue. |
1216 | */ | 2162 | */ |
1217 | if (timer_pending(&cfqd->idle_slice_timer) || | 2163 | if (timer_pending(&cfqd->idle_slice_timer) || |
1218 | (cfqq->dispatched && cfq_cfqq_idle_window(cfqq))) { | 2164 | (cfqq->dispatched && cfq_should_idle(cfqd, cfqq))) { |
1219 | cfqq = NULL; | 2165 | cfqq = NULL; |
1220 | goto keep_queue; | 2166 | goto keep_queue; |
1221 | } | 2167 | } |
@@ -1223,6 +2169,13 @@ static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd) | |||
1223 | expire: | 2169 | expire: |
1224 | cfq_slice_expired(cfqd, 0); | 2170 | cfq_slice_expired(cfqd, 0); |
1225 | new_queue: | 2171 | new_queue: |
2172 | /* | ||
2173 | * Current queue expired. Check if we have to switch to a new | ||
2174 | * service tree | ||
2175 | */ | ||
2176 | if (!new_cfqq) | ||
2177 | cfq_choose_cfqg(cfqd); | ||
2178 | |||
1226 | cfqq = cfq_set_active_queue(cfqd, new_cfqq); | 2179 | cfqq = cfq_set_active_queue(cfqd, new_cfqq); |
1227 | keep_queue: | 2180 | keep_queue: |
1228 | return cfqq; | 2181 | return cfqq; |
@@ -1238,6 +2191,9 @@ static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq) | |||
1238 | } | 2191 | } |
1239 | 2192 | ||
1240 | BUG_ON(!list_empty(&cfqq->fifo)); | 2193 | BUG_ON(!list_empty(&cfqq->fifo)); |
2194 | |||
2195 | /* By default cfqq is not expired if it is empty. Do it explicitly */ | ||
2196 | __cfq_slice_expired(cfqq->cfqd, cfqq, 0); | ||
1241 | return dispatched; | 2197 | return dispatched; |
1242 | } | 2198 | } |
1243 | 2199 | ||
@@ -1250,11 +2206,10 @@ static int cfq_forced_dispatch(struct cfq_data *cfqd) | |||
1250 | struct cfq_queue *cfqq; | 2206 | struct cfq_queue *cfqq; |
1251 | int dispatched = 0; | 2207 | int dispatched = 0; |
1252 | 2208 | ||
1253 | while ((cfqq = cfq_rb_first(&cfqd->service_tree)) != NULL) | 2209 | while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) |
1254 | dispatched += __cfq_forced_dispatch_cfqq(cfqq); | 2210 | dispatched += __cfq_forced_dispatch_cfqq(cfqq); |
1255 | 2211 | ||
1256 | cfq_slice_expired(cfqd, 0); | 2212 | cfq_slice_expired(cfqd, 0); |
1257 | |||
1258 | BUG_ON(cfqd->busy_queues); | 2213 | BUG_ON(cfqd->busy_queues); |
1259 | 2214 | ||
1260 | cfq_log(cfqd, "forced_dispatch=%d", dispatched); | 2215 | cfq_log(cfqd, "forced_dispatch=%d", dispatched); |
@@ -1268,7 +2223,7 @@ static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |||
1268 | /* | 2223 | /* |
1269 | * Drain async requests before we start sync IO | 2224 | * Drain async requests before we start sync IO |
1270 | */ | 2225 | */ |
1271 | if (cfq_cfqq_idle_window(cfqq) && cfqd->rq_in_driver[BLK_RW_ASYNC]) | 2226 | if (cfq_should_idle(cfqd, cfqq) && cfqd->rq_in_driver[BLK_RW_ASYNC]) |
1272 | return false; | 2227 | return false; |
1273 | 2228 | ||
1274 | /* | 2229 | /* |
@@ -1298,9 +2253,9 @@ static bool cfq_may_dispatch(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |||
1298 | return false; | 2253 | return false; |
1299 | 2254 | ||
1300 | /* | 2255 | /* |
1301 | * Sole queue user, allow bigger slice | 2256 | * Sole queue user, no limit |
1302 | */ | 2257 | */ |
1303 | max_dispatch *= 4; | 2258 | max_dispatch = -1; |
1304 | } | 2259 | } |
1305 | 2260 | ||
1306 | /* | 2261 | /* |
@@ -1407,11 +2362,13 @@ static int cfq_dispatch_requests(struct request_queue *q, int force) | |||
1407 | * task holds one reference to the queue, dropped when task exits. each rq | 2362 | * task holds one reference to the queue, dropped when task exits. each rq |
1408 | * in-flight on this queue also holds a reference, dropped when rq is freed. | 2363 | * in-flight on this queue also holds a reference, dropped when rq is freed. |
1409 | * | 2364 | * |
2365 | * Each cfq queue took a reference on the parent group. Drop it now. | ||
1410 | * queue lock must be held here. | 2366 | * queue lock must be held here. |
1411 | */ | 2367 | */ |
1412 | static void cfq_put_queue(struct cfq_queue *cfqq) | 2368 | static void cfq_put_queue(struct cfq_queue *cfqq) |
1413 | { | 2369 | { |
1414 | struct cfq_data *cfqd = cfqq->cfqd; | 2370 | struct cfq_data *cfqd = cfqq->cfqd; |
2371 | struct cfq_group *cfqg, *orig_cfqg; | ||
1415 | 2372 | ||
1416 | BUG_ON(atomic_read(&cfqq->ref) <= 0); | 2373 | BUG_ON(atomic_read(&cfqq->ref) <= 0); |
1417 | 2374 | ||
@@ -1421,14 +2378,19 @@ static void cfq_put_queue(struct cfq_queue *cfqq) | |||
1421 | cfq_log_cfqq(cfqd, cfqq, "put_queue"); | 2378 | cfq_log_cfqq(cfqd, cfqq, "put_queue"); |
1422 | BUG_ON(rb_first(&cfqq->sort_list)); | 2379 | BUG_ON(rb_first(&cfqq->sort_list)); |
1423 | BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]); | 2380 | BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]); |
1424 | BUG_ON(cfq_cfqq_on_rr(cfqq)); | 2381 | cfqg = cfqq->cfqg; |
2382 | orig_cfqg = cfqq->orig_cfqg; | ||
1425 | 2383 | ||
1426 | if (unlikely(cfqd->active_queue == cfqq)) { | 2384 | if (unlikely(cfqd->active_queue == cfqq)) { |
1427 | __cfq_slice_expired(cfqd, cfqq, 0); | 2385 | __cfq_slice_expired(cfqd, cfqq, 0); |
1428 | cfq_schedule_dispatch(cfqd); | 2386 | cfq_schedule_dispatch(cfqd); |
1429 | } | 2387 | } |
1430 | 2388 | ||
2389 | BUG_ON(cfq_cfqq_on_rr(cfqq)); | ||
1431 | kmem_cache_free(cfq_pool, cfqq); | 2390 | kmem_cache_free(cfq_pool, cfqq); |
2391 | cfq_put_cfqg(cfqg); | ||
2392 | if (orig_cfqg) | ||
2393 | cfq_put_cfqg(orig_cfqg); | ||
1432 | } | 2394 | } |
1433 | 2395 | ||
1434 | /* | 2396 | /* |
@@ -1518,11 +2480,29 @@ static void cfq_free_io_context(struct io_context *ioc) | |||
1518 | 2480 | ||
1519 | static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq) | 2481 | static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
1520 | { | 2482 | { |
2483 | struct cfq_queue *__cfqq, *next; | ||
2484 | |||
1521 | if (unlikely(cfqq == cfqd->active_queue)) { | 2485 | if (unlikely(cfqq == cfqd->active_queue)) { |
1522 | __cfq_slice_expired(cfqd, cfqq, 0); | 2486 | __cfq_slice_expired(cfqd, cfqq, 0); |
1523 | cfq_schedule_dispatch(cfqd); | 2487 | cfq_schedule_dispatch(cfqd); |
1524 | } | 2488 | } |
1525 | 2489 | ||
2490 | /* | ||
2491 | * If this queue was scheduled to merge with another queue, be | ||
2492 | * sure to drop the reference taken on that queue (and others in | ||
2493 | * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs. | ||
2494 | */ | ||
2495 | __cfqq = cfqq->new_cfqq; | ||
2496 | while (__cfqq) { | ||
2497 | if (__cfqq == cfqq) { | ||
2498 | WARN(1, "cfqq->new_cfqq loop detected\n"); | ||
2499 | break; | ||
2500 | } | ||
2501 | next = __cfqq->new_cfqq; | ||
2502 | cfq_put_queue(__cfqq); | ||
2503 | __cfqq = next; | ||
2504 | } | ||
2505 | |||
1526 | cfq_put_queue(cfqq); | 2506 | cfq_put_queue(cfqq); |
1527 | } | 2507 | } |
1528 | 2508 | ||
@@ -1703,14 +2683,51 @@ static void cfq_init_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
1703 | cfqq->pid = pid; | 2683 | cfqq->pid = pid; |
1704 | } | 2684 | } |
1705 | 2685 | ||
2686 | #ifdef CONFIG_CFQ_GROUP_IOSCHED | ||
2687 | static void changed_cgroup(struct io_context *ioc, struct cfq_io_context *cic) | ||
2688 | { | ||
2689 | struct cfq_queue *sync_cfqq = cic_to_cfqq(cic, 1); | ||
2690 | struct cfq_data *cfqd = cic->key; | ||
2691 | unsigned long flags; | ||
2692 | struct request_queue *q; | ||
2693 | |||
2694 | if (unlikely(!cfqd)) | ||
2695 | return; | ||
2696 | |||
2697 | q = cfqd->queue; | ||
2698 | |||
2699 | spin_lock_irqsave(q->queue_lock, flags); | ||
2700 | |||
2701 | if (sync_cfqq) { | ||
2702 | /* | ||
2703 | * Drop reference to sync queue. A new sync queue will be | ||
2704 | * assigned in new group upon arrival of a fresh request. | ||
2705 | */ | ||
2706 | cfq_log_cfqq(cfqd, sync_cfqq, "changed cgroup"); | ||
2707 | cic_set_cfqq(cic, NULL, 1); | ||
2708 | cfq_put_queue(sync_cfqq); | ||
2709 | } | ||
2710 | |||
2711 | spin_unlock_irqrestore(q->queue_lock, flags); | ||
2712 | } | ||
2713 | |||
2714 | static void cfq_ioc_set_cgroup(struct io_context *ioc) | ||
2715 | { | ||
2716 | call_for_each_cic(ioc, changed_cgroup); | ||
2717 | ioc->cgroup_changed = 0; | ||
2718 | } | ||
2719 | #endif /* CONFIG_CFQ_GROUP_IOSCHED */ | ||
2720 | |||
1706 | static struct cfq_queue * | 2721 | static struct cfq_queue * |
1707 | cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync, | 2722 | cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync, |
1708 | struct io_context *ioc, gfp_t gfp_mask) | 2723 | struct io_context *ioc, gfp_t gfp_mask) |
1709 | { | 2724 | { |
1710 | struct cfq_queue *cfqq, *new_cfqq = NULL; | 2725 | struct cfq_queue *cfqq, *new_cfqq = NULL; |
1711 | struct cfq_io_context *cic; | 2726 | struct cfq_io_context *cic; |
2727 | struct cfq_group *cfqg; | ||
1712 | 2728 | ||
1713 | retry: | 2729 | retry: |
2730 | cfqg = cfq_get_cfqg(cfqd, 1); | ||
1714 | cic = cfq_cic_lookup(cfqd, ioc); | 2731 | cic = cfq_cic_lookup(cfqd, ioc); |
1715 | /* cic always exists here */ | 2732 | /* cic always exists here */ |
1716 | cfqq = cic_to_cfqq(cic, is_sync); | 2733 | cfqq = cic_to_cfqq(cic, is_sync); |
@@ -1741,6 +2758,7 @@ retry: | |||
1741 | if (cfqq) { | 2758 | if (cfqq) { |
1742 | cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync); | 2759 | cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync); |
1743 | cfq_init_prio_data(cfqq, ioc); | 2760 | cfq_init_prio_data(cfqq, ioc); |
2761 | cfq_link_cfqq_cfqg(cfqq, cfqg); | ||
1744 | cfq_log_cfqq(cfqd, cfqq, "alloced"); | 2762 | cfq_log_cfqq(cfqd, cfqq, "alloced"); |
1745 | } else | 2763 | } else |
1746 | cfqq = &cfqd->oom_cfqq; | 2764 | cfqq = &cfqd->oom_cfqq; |
@@ -1932,6 +2950,10 @@ out: | |||
1932 | if (unlikely(ioc->ioprio_changed)) | 2950 | if (unlikely(ioc->ioprio_changed)) |
1933 | cfq_ioc_set_ioprio(ioc); | 2951 | cfq_ioc_set_ioprio(ioc); |
1934 | 2952 | ||
2953 | #ifdef CONFIG_CFQ_GROUP_IOSCHED | ||
2954 | if (unlikely(ioc->cgroup_changed)) | ||
2955 | cfq_ioc_set_cgroup(ioc); | ||
2956 | #endif | ||
1935 | return cic; | 2957 | return cic; |
1936 | err_free: | 2958 | err_free: |
1937 | cfq_cic_free(cic); | 2959 | cfq_cic_free(cic); |
@@ -1952,33 +2974,46 @@ cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_io_context *cic) | |||
1952 | } | 2974 | } |
1953 | 2975 | ||
1954 | static void | 2976 | static void |
1955 | cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_io_context *cic, | 2977 | cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
1956 | struct request *rq) | 2978 | struct request *rq) |
1957 | { | 2979 | { |
1958 | sector_t sdist; | 2980 | sector_t sdist; |
1959 | u64 total; | 2981 | u64 total; |
1960 | 2982 | ||
1961 | if (!cic->last_request_pos) | 2983 | if (!cfqq->last_request_pos) |
1962 | sdist = 0; | 2984 | sdist = 0; |
1963 | else if (cic->last_request_pos < blk_rq_pos(rq)) | 2985 | else if (cfqq->last_request_pos < blk_rq_pos(rq)) |
1964 | sdist = blk_rq_pos(rq) - cic->last_request_pos; | 2986 | sdist = blk_rq_pos(rq) - cfqq->last_request_pos; |
1965 | else | 2987 | else |
1966 | sdist = cic->last_request_pos - blk_rq_pos(rq); | 2988 | sdist = cfqq->last_request_pos - blk_rq_pos(rq); |
1967 | 2989 | ||
1968 | /* | 2990 | /* |
1969 | * Don't allow the seek distance to get too large from the | 2991 | * Don't allow the seek distance to get too large from the |
1970 | * odd fragment, pagein, etc | 2992 | * odd fragment, pagein, etc |
1971 | */ | 2993 | */ |
1972 | if (cic->seek_samples <= 60) /* second&third seek */ | 2994 | if (cfqq->seek_samples <= 60) /* second&third seek */ |
1973 | sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*1024); | 2995 | sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*1024); |
1974 | else | 2996 | else |
1975 | sdist = min(sdist, (cic->seek_mean * 4) + 2*1024*64); | 2997 | sdist = min(sdist, (cfqq->seek_mean * 4) + 2*1024*64); |
1976 | 2998 | ||
1977 | cic->seek_samples = (7*cic->seek_samples + 256) / 8; | 2999 | cfqq->seek_samples = (7*cfqq->seek_samples + 256) / 8; |
1978 | cic->seek_total = (7*cic->seek_total + (u64)256*sdist) / 8; | 3000 | cfqq->seek_total = (7*cfqq->seek_total + (u64)256*sdist) / 8; |
1979 | total = cic->seek_total + (cic->seek_samples/2); | 3001 | total = cfqq->seek_total + (cfqq->seek_samples/2); |
1980 | do_div(total, cic->seek_samples); | 3002 | do_div(total, cfqq->seek_samples); |
1981 | cic->seek_mean = (sector_t)total; | 3003 | cfqq->seek_mean = (sector_t)total; |
3004 | |||
3005 | /* | ||
3006 | * If this cfqq is shared between multiple processes, check to | ||
3007 | * make sure that those processes are still issuing I/Os within | ||
3008 | * the mean seek distance. If not, it may be time to break the | ||
3009 | * queues apart again. | ||
3010 | */ | ||
3011 | if (cfq_cfqq_coop(cfqq)) { | ||
3012 | if (CFQQ_SEEKY(cfqq) && !cfqq->seeky_start) | ||
3013 | cfqq->seeky_start = jiffies; | ||
3014 | else if (!CFQQ_SEEKY(cfqq)) | ||
3015 | cfqq->seeky_start = 0; | ||
3016 | } | ||
1982 | } | 3017 | } |
1983 | 3018 | ||
1984 | /* | 3019 | /* |
@@ -1999,14 +3034,15 @@ cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
1999 | 3034 | ||
2000 | enable_idle = old_idle = cfq_cfqq_idle_window(cfqq); | 3035 | enable_idle = old_idle = cfq_cfqq_idle_window(cfqq); |
2001 | 3036 | ||
3037 | if (cfqq->queued[0] + cfqq->queued[1] >= 4) | ||
3038 | cfq_mark_cfqq_deep(cfqq); | ||
3039 | |||
2002 | if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle || | 3040 | if (!atomic_read(&cic->ioc->nr_tasks) || !cfqd->cfq_slice_idle || |
2003 | (!cfqd->cfq_latency && cfqd->hw_tag && CIC_SEEKY(cic))) | 3041 | (!cfq_cfqq_deep(cfqq) && sample_valid(cfqq->seek_samples) |
3042 | && CFQQ_SEEKY(cfqq))) | ||
2004 | enable_idle = 0; | 3043 | enable_idle = 0; |
2005 | else if (sample_valid(cic->ttime_samples)) { | 3044 | else if (sample_valid(cic->ttime_samples)) { |
2006 | unsigned int slice_idle = cfqd->cfq_slice_idle; | 3045 | if (cic->ttime_mean > cfqd->cfq_slice_idle) |
2007 | if (sample_valid(cic->seek_samples) && CIC_SEEKY(cic)) | ||
2008 | slice_idle = msecs_to_jiffies(CFQ_MIN_TT); | ||
2009 | if (cic->ttime_mean > slice_idle) | ||
2010 | enable_idle = 0; | 3046 | enable_idle = 0; |
2011 | else | 3047 | else |
2012 | enable_idle = 1; | 3048 | enable_idle = 1; |
@@ -2035,9 +3071,6 @@ cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq, | |||
2035 | if (!cfqq) | 3071 | if (!cfqq) |
2036 | return false; | 3072 | return false; |
2037 | 3073 | ||
2038 | if (cfq_slice_used(cfqq)) | ||
2039 | return true; | ||
2040 | |||
2041 | if (cfq_class_idle(new_cfqq)) | 3074 | if (cfq_class_idle(new_cfqq)) |
2042 | return false; | 3075 | return false; |
2043 | 3076 | ||
@@ -2051,6 +3084,19 @@ cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq, | |||
2051 | if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq)) | 3084 | if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq)) |
2052 | return true; | 3085 | return true; |
2053 | 3086 | ||
3087 | if (new_cfqq->cfqg != cfqq->cfqg) | ||
3088 | return false; | ||
3089 | |||
3090 | if (cfq_slice_used(cfqq)) | ||
3091 | return true; | ||
3092 | |||
3093 | /* Allow preemption only if we are idling on sync-noidle tree */ | ||
3094 | if (cfqd->serving_type == SYNC_NOIDLE_WORKLOAD && | ||
3095 | cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD && | ||
3096 | new_cfqq->service_tree->count == 2 && | ||
3097 | RB_EMPTY_ROOT(&cfqq->sort_list)) | ||
3098 | return true; | ||
3099 | |||
2054 | /* | 3100 | /* |
2055 | * So both queues are sync. Let the new request get disk time if | 3101 | * So both queues are sync. Let the new request get disk time if |
2056 | * it's a metadata request and the current queue is doing regular IO. | 3102 | * it's a metadata request and the current queue is doing regular IO. |
@@ -2071,16 +3117,8 @@ cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq, | |||
2071 | * if this request is as-good as one we would expect from the | 3117 | * if this request is as-good as one we would expect from the |
2072 | * current cfqq, let it preempt | 3118 | * current cfqq, let it preempt |
2073 | */ | 3119 | */ |
2074 | if (cfq_rq_close(cfqd, rq) && (!cfq_cfqq_coop(new_cfqq) || | 3120 | if (cfq_rq_close(cfqd, cfqq, rq)) |
2075 | cfqd->busy_queues == 1)) { | ||
2076 | /* | ||
2077 | * Mark new queue coop_preempt, so its coop flag will not be | ||
2078 | * cleared when new queue gets scheduled at the very first time | ||
2079 | */ | ||
2080 | cfq_mark_cfqq_coop_preempt(new_cfqq); | ||
2081 | cfq_mark_cfqq_coop(new_cfqq); | ||
2082 | return true; | 3121 | return true; |
2083 | } | ||
2084 | 3122 | ||
2085 | return false; | 3123 | return false; |
2086 | } | 3124 | } |
@@ -2121,12 +3159,16 @@ cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
2121 | cfqq->meta_pending++; | 3159 | cfqq->meta_pending++; |
2122 | 3160 | ||
2123 | cfq_update_io_thinktime(cfqd, cic); | 3161 | cfq_update_io_thinktime(cfqd, cic); |
2124 | cfq_update_io_seektime(cfqd, cic, rq); | 3162 | cfq_update_io_seektime(cfqd, cfqq, rq); |
2125 | cfq_update_idle_window(cfqd, cfqq, cic); | 3163 | cfq_update_idle_window(cfqd, cfqq, cic); |
2126 | 3164 | ||
2127 | cic->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq); | 3165 | cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq); |
2128 | 3166 | ||
2129 | if (cfqq == cfqd->active_queue) { | 3167 | if (cfqq == cfqd->active_queue) { |
3168 | if (cfq_cfqq_wait_busy(cfqq)) { | ||
3169 | cfq_clear_cfqq_wait_busy(cfqq); | ||
3170 | cfq_mark_cfqq_wait_busy_done(cfqq); | ||
3171 | } | ||
2130 | /* | 3172 | /* |
2131 | * Remember that we saw a request from this process, but | 3173 | * Remember that we saw a request from this process, but |
2132 | * don't start queuing just yet. Otherwise we risk seeing lots | 3174 | * don't start queuing just yet. Otherwise we risk seeing lots |
@@ -2141,9 +3183,9 @@ cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
2141 | if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE || | 3183 | if (blk_rq_bytes(rq) > PAGE_CACHE_SIZE || |
2142 | cfqd->busy_queues > 1) { | 3184 | cfqd->busy_queues > 1) { |
2143 | del_timer(&cfqd->idle_slice_timer); | 3185 | del_timer(&cfqd->idle_slice_timer); |
2144 | __blk_run_queue(cfqd->queue); | 3186 | __blk_run_queue(cfqd->queue); |
2145 | } | 3187 | } else |
2146 | cfq_mark_cfqq_must_dispatch(cfqq); | 3188 | cfq_mark_cfqq_must_dispatch(cfqq); |
2147 | } | 3189 | } |
2148 | } else if (cfq_should_preempt(cfqd, cfqq, rq)) { | 3190 | } else if (cfq_should_preempt(cfqd, cfqq, rq)) { |
2149 | /* | 3191 | /* |
@@ -2165,10 +3207,9 @@ static void cfq_insert_request(struct request_queue *q, struct request *rq) | |||
2165 | cfq_log_cfqq(cfqd, cfqq, "insert_request"); | 3207 | cfq_log_cfqq(cfqd, cfqq, "insert_request"); |
2166 | cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc); | 3208 | cfq_init_prio_data(cfqq, RQ_CIC(rq)->ioc); |
2167 | 3209 | ||
2168 | cfq_add_rq_rb(rq); | ||
2169 | |||
2170 | rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]); | 3210 | rq_set_fifo_time(rq, jiffies + cfqd->cfq_fifo_expire[rq_is_sync(rq)]); |
2171 | list_add_tail(&rq->queuelist, &cfqq->fifo); | 3211 | list_add_tail(&rq->queuelist, &cfqq->fifo); |
3212 | cfq_add_rq_rb(rq); | ||
2172 | 3213 | ||
2173 | cfq_rq_enqueued(cfqd, cfqq, rq); | 3214 | cfq_rq_enqueued(cfqd, cfqq, rq); |
2174 | } | 3215 | } |
@@ -2179,23 +3220,35 @@ static void cfq_insert_request(struct request_queue *q, struct request *rq) | |||
2179 | */ | 3220 | */ |
2180 | static void cfq_update_hw_tag(struct cfq_data *cfqd) | 3221 | static void cfq_update_hw_tag(struct cfq_data *cfqd) |
2181 | { | 3222 | { |
2182 | if (rq_in_driver(cfqd) > cfqd->rq_in_driver_peak) | 3223 | struct cfq_queue *cfqq = cfqd->active_queue; |
2183 | cfqd->rq_in_driver_peak = rq_in_driver(cfqd); | 3224 | |
3225 | if (rq_in_driver(cfqd) > cfqd->hw_tag_est_depth) | ||
3226 | cfqd->hw_tag_est_depth = rq_in_driver(cfqd); | ||
3227 | |||
3228 | if (cfqd->hw_tag == 1) | ||
3229 | return; | ||
2184 | 3230 | ||
2185 | if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN && | 3231 | if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN && |
2186 | rq_in_driver(cfqd) <= CFQ_HW_QUEUE_MIN) | 3232 | rq_in_driver(cfqd) <= CFQ_HW_QUEUE_MIN) |
2187 | return; | 3233 | return; |
2188 | 3234 | ||
3235 | /* | ||
3236 | * If active queue hasn't enough requests and can idle, cfq might not | ||
3237 | * dispatch sufficient requests to hardware. Don't zero hw_tag in this | ||
3238 | * case | ||
3239 | */ | ||
3240 | if (cfqq && cfq_cfqq_idle_window(cfqq) && | ||
3241 | cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] < | ||
3242 | CFQ_HW_QUEUE_MIN && rq_in_driver(cfqd) < CFQ_HW_QUEUE_MIN) | ||
3243 | return; | ||
3244 | |||
2189 | if (cfqd->hw_tag_samples++ < 50) | 3245 | if (cfqd->hw_tag_samples++ < 50) |
2190 | return; | 3246 | return; |
2191 | 3247 | ||
2192 | if (cfqd->rq_in_driver_peak >= CFQ_HW_QUEUE_MIN) | 3248 | if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN) |
2193 | cfqd->hw_tag = 1; | 3249 | cfqd->hw_tag = 1; |
2194 | else | 3250 | else |
2195 | cfqd->hw_tag = 0; | 3251 | cfqd->hw_tag = 0; |
2196 | |||
2197 | cfqd->hw_tag_samples = 0; | ||
2198 | cfqd->rq_in_driver_peak = 0; | ||
2199 | } | 3252 | } |
2200 | 3253 | ||
2201 | static void cfq_completed_request(struct request_queue *q, struct request *rq) | 3254 | static void cfq_completed_request(struct request_queue *q, struct request *rq) |
@@ -2206,7 +3259,7 @@ static void cfq_completed_request(struct request_queue *q, struct request *rq) | |||
2206 | unsigned long now; | 3259 | unsigned long now; |
2207 | 3260 | ||
2208 | now = jiffies; | 3261 | now = jiffies; |
2209 | cfq_log_cfqq(cfqd, cfqq, "complete"); | 3262 | cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d", !!rq_noidle(rq)); |
2210 | 3263 | ||
2211 | cfq_update_hw_tag(cfqd); | 3264 | cfq_update_hw_tag(cfqd); |
2212 | 3265 | ||
@@ -2234,18 +3287,40 @@ static void cfq_completed_request(struct request_queue *q, struct request *rq) | |||
2234 | cfq_set_prio_slice(cfqd, cfqq); | 3287 | cfq_set_prio_slice(cfqd, cfqq); |
2235 | cfq_clear_cfqq_slice_new(cfqq); | 3288 | cfq_clear_cfqq_slice_new(cfqq); |
2236 | } | 3289 | } |
3290 | |||
3291 | /* | ||
3292 | * If this queue consumed its slice and this is last queue | ||
3293 | * in the group, wait for next request before we expire | ||
3294 | * the queue | ||
3295 | */ | ||
3296 | if (cfq_slice_used(cfqq) && cfqq->cfqg->nr_cfqq == 1) { | ||
3297 | cfqq->slice_end = jiffies + cfqd->cfq_slice_idle; | ||
3298 | cfq_mark_cfqq_wait_busy(cfqq); | ||
3299 | } | ||
3300 | |||
2237 | /* | 3301 | /* |
2238 | * If there are no requests waiting in this queue, and | 3302 | * Idling is not enabled on: |
2239 | * there are other queues ready to issue requests, AND | 3303 | * - expired queues |
2240 | * those other queues are issuing requests within our | 3304 | * - idle-priority queues |
2241 | * mean seek distance, give them a chance to run instead | 3305 | * - async queues |
2242 | * of idling. | 3306 | * - queues with still some requests queued |
3307 | * - when there is a close cooperator | ||
2243 | */ | 3308 | */ |
2244 | if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq)) | 3309 | if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq)) |
2245 | cfq_slice_expired(cfqd, 1); | 3310 | cfq_slice_expired(cfqd, 1); |
2246 | else if (cfqq_empty && !cfq_close_cooperator(cfqd, cfqq, 1) && | 3311 | else if (sync && cfqq_empty && |
2247 | sync && !rq_noidle(rq)) | 3312 | !cfq_close_cooperator(cfqd, cfqq)) { |
2248 | cfq_arm_slice_timer(cfqd); | 3313 | cfqd->noidle_tree_requires_idle |= !rq_noidle(rq); |
3314 | /* | ||
3315 | * Idling is enabled for SYNC_WORKLOAD. | ||
3316 | * SYNC_NOIDLE_WORKLOAD idles at the end of the tree | ||
3317 | * only if we processed at least one !rq_noidle request | ||
3318 | */ | ||
3319 | if (cfqd->serving_type == SYNC_WORKLOAD | ||
3320 | || cfqd->noidle_tree_requires_idle | ||
3321 | || cfqq->cfqg->nr_cfqq == 1) | ||
3322 | cfq_arm_slice_timer(cfqd); | ||
3323 | } | ||
2249 | } | 3324 | } |
2250 | 3325 | ||
2251 | if (!rq_in_driver(cfqd)) | 3326 | if (!rq_in_driver(cfqd)) |
@@ -2269,12 +3344,10 @@ static void cfq_prio_boost(struct cfq_queue *cfqq) | |||
2269 | cfqq->ioprio = IOPRIO_NORM; | 3344 | cfqq->ioprio = IOPRIO_NORM; |
2270 | } else { | 3345 | } else { |
2271 | /* | 3346 | /* |
2272 | * check if we need to unboost the queue | 3347 | * unboost the queue (if needed) |
2273 | */ | 3348 | */ |
2274 | if (cfqq->ioprio_class != cfqq->org_ioprio_class) | 3349 | cfqq->ioprio_class = cfqq->org_ioprio_class; |
2275 | cfqq->ioprio_class = cfqq->org_ioprio_class; | 3350 | cfqq->ioprio = cfqq->org_ioprio; |
2276 | if (cfqq->ioprio != cfqq->org_ioprio) | ||
2277 | cfqq->ioprio = cfqq->org_ioprio; | ||
2278 | } | 3351 | } |
2279 | } | 3352 | } |
2280 | 3353 | ||
@@ -2338,6 +3411,43 @@ static void cfq_put_request(struct request *rq) | |||
2338 | } | 3411 | } |
2339 | } | 3412 | } |
2340 | 3413 | ||
3414 | static struct cfq_queue * | ||
3415 | cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_context *cic, | ||
3416 | struct cfq_queue *cfqq) | ||
3417 | { | ||
3418 | cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq); | ||
3419 | cic_set_cfqq(cic, cfqq->new_cfqq, 1); | ||
3420 | cfq_mark_cfqq_coop(cfqq->new_cfqq); | ||
3421 | cfq_put_queue(cfqq); | ||
3422 | return cic_to_cfqq(cic, 1); | ||
3423 | } | ||
3424 | |||
3425 | static int should_split_cfqq(struct cfq_queue *cfqq) | ||
3426 | { | ||
3427 | if (cfqq->seeky_start && | ||
3428 | time_after(jiffies, cfqq->seeky_start + CFQQ_COOP_TOUT)) | ||
3429 | return 1; | ||
3430 | return 0; | ||
3431 | } | ||
3432 | |||
3433 | /* | ||
3434 | * Returns NULL if a new cfqq should be allocated, or the old cfqq if this | ||
3435 | * was the last process referring to said cfqq. | ||
3436 | */ | ||
3437 | static struct cfq_queue * | ||
3438 | split_cfqq(struct cfq_io_context *cic, struct cfq_queue *cfqq) | ||
3439 | { | ||
3440 | if (cfqq_process_refs(cfqq) == 1) { | ||
3441 | cfqq->seeky_start = 0; | ||
3442 | cfqq->pid = current->pid; | ||
3443 | cfq_clear_cfqq_coop(cfqq); | ||
3444 | return cfqq; | ||
3445 | } | ||
3446 | |||
3447 | cic_set_cfqq(cic, NULL, 1); | ||
3448 | cfq_put_queue(cfqq); | ||
3449 | return NULL; | ||
3450 | } | ||
2341 | /* | 3451 | /* |
2342 | * Allocate cfq data structures associated with this request. | 3452 | * Allocate cfq data structures associated with this request. |
2343 | */ | 3453 | */ |
@@ -2360,10 +3470,30 @@ cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask) | |||
2360 | if (!cic) | 3470 | if (!cic) |
2361 | goto queue_fail; | 3471 | goto queue_fail; |
2362 | 3472 | ||
3473 | new_queue: | ||
2363 | cfqq = cic_to_cfqq(cic, is_sync); | 3474 | cfqq = cic_to_cfqq(cic, is_sync); |
2364 | if (!cfqq || cfqq == &cfqd->oom_cfqq) { | 3475 | if (!cfqq || cfqq == &cfqd->oom_cfqq) { |
2365 | cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask); | 3476 | cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask); |
2366 | cic_set_cfqq(cic, cfqq, is_sync); | 3477 | cic_set_cfqq(cic, cfqq, is_sync); |
3478 | } else { | ||
3479 | /* | ||
3480 | * If the queue was seeky for too long, break it apart. | ||
3481 | */ | ||
3482 | if (cfq_cfqq_coop(cfqq) && should_split_cfqq(cfqq)) { | ||
3483 | cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq"); | ||
3484 | cfqq = split_cfqq(cic, cfqq); | ||
3485 | if (!cfqq) | ||
3486 | goto new_queue; | ||
3487 | } | ||
3488 | |||
3489 | /* | ||
3490 | * Check to see if this queue is scheduled to merge with | ||
3491 | * another, closely cooperating queue. The merging of | ||
3492 | * queues happens here as it must be done in process context. | ||
3493 | * The reference on new_cfqq was taken in merge_cfqqs. | ||
3494 | */ | ||
3495 | if (cfqq->new_cfqq) | ||
3496 | cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq); | ||
2367 | } | 3497 | } |
2368 | 3498 | ||
2369 | cfqq->allocated[rw]++; | 3499 | cfqq->allocated[rw]++; |
@@ -2438,6 +3568,11 @@ static void cfq_idle_slice_timer(unsigned long data) | |||
2438 | */ | 3568 | */ |
2439 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) | 3569 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
2440 | goto out_kick; | 3570 | goto out_kick; |
3571 | |||
3572 | /* | ||
3573 | * Queue depth flag is reset only when the idle didn't succeed | ||
3574 | */ | ||
3575 | cfq_clear_cfqq_deep(cfqq); | ||
2441 | } | 3576 | } |
2442 | expire: | 3577 | expire: |
2443 | cfq_slice_expired(cfqd, timed_out); | 3578 | cfq_slice_expired(cfqd, timed_out); |
@@ -2468,6 +3603,11 @@ static void cfq_put_async_queues(struct cfq_data *cfqd) | |||
2468 | cfq_put_queue(cfqd->async_idle_cfqq); | 3603 | cfq_put_queue(cfqd->async_idle_cfqq); |
2469 | } | 3604 | } |
2470 | 3605 | ||
3606 | static void cfq_cfqd_free(struct rcu_head *head) | ||
3607 | { | ||
3608 | kfree(container_of(head, struct cfq_data, rcu)); | ||
3609 | } | ||
3610 | |||
2471 | static void cfq_exit_queue(struct elevator_queue *e) | 3611 | static void cfq_exit_queue(struct elevator_queue *e) |
2472 | { | 3612 | { |
2473 | struct cfq_data *cfqd = e->elevator_data; | 3613 | struct cfq_data *cfqd = e->elevator_data; |
@@ -2489,25 +3629,49 @@ static void cfq_exit_queue(struct elevator_queue *e) | |||
2489 | } | 3629 | } |
2490 | 3630 | ||
2491 | cfq_put_async_queues(cfqd); | 3631 | cfq_put_async_queues(cfqd); |
3632 | cfq_release_cfq_groups(cfqd); | ||
3633 | blkiocg_del_blkio_group(&cfqd->root_group.blkg); | ||
2492 | 3634 | ||
2493 | spin_unlock_irq(q->queue_lock); | 3635 | spin_unlock_irq(q->queue_lock); |
2494 | 3636 | ||
2495 | cfq_shutdown_timer_wq(cfqd); | 3637 | cfq_shutdown_timer_wq(cfqd); |
2496 | 3638 | ||
2497 | kfree(cfqd); | 3639 | /* Wait for cfqg->blkg->key accessors to exit their grace periods. */ |
3640 | call_rcu(&cfqd->rcu, cfq_cfqd_free); | ||
2498 | } | 3641 | } |
2499 | 3642 | ||
2500 | static void *cfq_init_queue(struct request_queue *q) | 3643 | static void *cfq_init_queue(struct request_queue *q) |
2501 | { | 3644 | { |
2502 | struct cfq_data *cfqd; | 3645 | struct cfq_data *cfqd; |
2503 | int i; | 3646 | int i, j; |
3647 | struct cfq_group *cfqg; | ||
3648 | struct cfq_rb_root *st; | ||
2504 | 3649 | ||
2505 | cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node); | 3650 | cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node); |
2506 | if (!cfqd) | 3651 | if (!cfqd) |
2507 | return NULL; | 3652 | return NULL; |
2508 | 3653 | ||
2509 | cfqd->service_tree = CFQ_RB_ROOT; | 3654 | /* Init root service tree */ |
3655 | cfqd->grp_service_tree = CFQ_RB_ROOT; | ||
3656 | |||
3657 | /* Init root group */ | ||
3658 | cfqg = &cfqd->root_group; | ||
3659 | for_each_cfqg_st(cfqg, i, j, st) | ||
3660 | *st = CFQ_RB_ROOT; | ||
3661 | RB_CLEAR_NODE(&cfqg->rb_node); | ||
2510 | 3662 | ||
3663 | /* Give preference to root group over other groups */ | ||
3664 | cfqg->weight = 2*BLKIO_WEIGHT_DEFAULT; | ||
3665 | |||
3666 | #ifdef CONFIG_CFQ_GROUP_IOSCHED | ||
3667 | /* | ||
3668 | * Take a reference to root group which we never drop. This is just | ||
3669 | * to make sure that cfq_put_cfqg() does not try to kfree root group | ||
3670 | */ | ||
3671 | atomic_set(&cfqg->ref, 1); | ||
3672 | blkiocg_add_blkio_group(&blkio_root_cgroup, &cfqg->blkg, (void *)cfqd, | ||
3673 | 0); | ||
3674 | #endif | ||
2511 | /* | 3675 | /* |
2512 | * Not strictly needed (since RB_ROOT just clears the node and we | 3676 | * Not strictly needed (since RB_ROOT just clears the node and we |
2513 | * zeroed cfqd on alloc), but better be safe in case someone decides | 3677 | * zeroed cfqd on alloc), but better be safe in case someone decides |
@@ -2523,6 +3687,7 @@ static void *cfq_init_queue(struct request_queue *q) | |||
2523 | */ | 3687 | */ |
2524 | cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0); | 3688 | cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0); |
2525 | atomic_inc(&cfqd->oom_cfqq.ref); | 3689 | atomic_inc(&cfqd->oom_cfqq.ref); |
3690 | cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, &cfqd->root_group); | ||
2526 | 3691 | ||
2527 | INIT_LIST_HEAD(&cfqd->cic_list); | 3692 | INIT_LIST_HEAD(&cfqd->cic_list); |
2528 | 3693 | ||
@@ -2544,8 +3709,10 @@ static void *cfq_init_queue(struct request_queue *q) | |||
2544 | cfqd->cfq_slice_async_rq = cfq_slice_async_rq; | 3709 | cfqd->cfq_slice_async_rq = cfq_slice_async_rq; |
2545 | cfqd->cfq_slice_idle = cfq_slice_idle; | 3710 | cfqd->cfq_slice_idle = cfq_slice_idle; |
2546 | cfqd->cfq_latency = 1; | 3711 | cfqd->cfq_latency = 1; |
2547 | cfqd->hw_tag = 1; | 3712 | cfqd->cfq_group_isolation = 0; |
3713 | cfqd->hw_tag = -1; | ||
2548 | cfqd->last_end_sync_rq = jiffies; | 3714 | cfqd->last_end_sync_rq = jiffies; |
3715 | INIT_RCU_HEAD(&cfqd->rcu); | ||
2549 | return cfqd; | 3716 | return cfqd; |
2550 | } | 3717 | } |
2551 | 3718 | ||
@@ -2614,6 +3781,7 @@ SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1); | |||
2614 | SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1); | 3781 | SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1); |
2615 | SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0); | 3782 | SHOW_FUNCTION(cfq_slice_async_rq_show, cfqd->cfq_slice_async_rq, 0); |
2616 | SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0); | 3783 | SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0); |
3784 | SHOW_FUNCTION(cfq_group_isolation_show, cfqd->cfq_group_isolation, 0); | ||
2617 | #undef SHOW_FUNCTION | 3785 | #undef SHOW_FUNCTION |
2618 | 3786 | ||
2619 | #define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \ | 3787 | #define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \ |
@@ -2646,6 +3814,7 @@ STORE_FUNCTION(cfq_slice_async_store, &cfqd->cfq_slice[0], 1, UINT_MAX, 1); | |||
2646 | STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1, | 3814 | STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1, |
2647 | UINT_MAX, 0); | 3815 | UINT_MAX, 0); |
2648 | STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0); | 3816 | STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0); |
3817 | STORE_FUNCTION(cfq_group_isolation_store, &cfqd->cfq_group_isolation, 0, 1, 0); | ||
2649 | #undef STORE_FUNCTION | 3818 | #undef STORE_FUNCTION |
2650 | 3819 | ||
2651 | #define CFQ_ATTR(name) \ | 3820 | #define CFQ_ATTR(name) \ |
@@ -2662,6 +3831,7 @@ static struct elv_fs_entry cfq_attrs[] = { | |||
2662 | CFQ_ATTR(slice_async_rq), | 3831 | CFQ_ATTR(slice_async_rq), |
2663 | CFQ_ATTR(slice_idle), | 3832 | CFQ_ATTR(slice_idle), |
2664 | CFQ_ATTR(low_latency), | 3833 | CFQ_ATTR(low_latency), |
3834 | CFQ_ATTR(group_isolation), | ||
2665 | __ATTR_NULL | 3835 | __ATTR_NULL |
2666 | }; | 3836 | }; |
2667 | 3837 | ||
@@ -2691,6 +3861,17 @@ static struct elevator_type iosched_cfq = { | |||
2691 | .elevator_owner = THIS_MODULE, | 3861 | .elevator_owner = THIS_MODULE, |
2692 | }; | 3862 | }; |
2693 | 3863 | ||
3864 | #ifdef CONFIG_CFQ_GROUP_IOSCHED | ||
3865 | static struct blkio_policy_type blkio_policy_cfq = { | ||
3866 | .ops = { | ||
3867 | .blkio_unlink_group_fn = cfq_unlink_blkio_group, | ||
3868 | .blkio_update_group_weight_fn = cfq_update_blkio_group_weight, | ||
3869 | }, | ||
3870 | }; | ||
3871 | #else | ||
3872 | static struct blkio_policy_type blkio_policy_cfq; | ||
3873 | #endif | ||
3874 | |||
2694 | static int __init cfq_init(void) | 3875 | static int __init cfq_init(void) |
2695 | { | 3876 | { |
2696 | /* | 3877 | /* |
@@ -2705,6 +3886,7 @@ static int __init cfq_init(void) | |||
2705 | return -ENOMEM; | 3886 | return -ENOMEM; |
2706 | 3887 | ||
2707 | elv_register(&iosched_cfq); | 3888 | elv_register(&iosched_cfq); |
3889 | blkio_policy_register(&blkio_policy_cfq); | ||
2708 | 3890 | ||
2709 | return 0; | 3891 | return 0; |
2710 | } | 3892 | } |
@@ -2712,6 +3894,7 @@ static int __init cfq_init(void) | |||
2712 | static void __exit cfq_exit(void) | 3894 | static void __exit cfq_exit(void) |
2713 | { | 3895 | { |
2714 | DECLARE_COMPLETION_ONSTACK(all_gone); | 3896 | DECLARE_COMPLETION_ONSTACK(all_gone); |
3897 | blkio_policy_unregister(&blkio_policy_cfq); | ||
2715 | elv_unregister(&iosched_cfq); | 3898 | elv_unregister(&iosched_cfq); |
2716 | ioc_gone = &all_gone; | 3899 | ioc_gone = &all_gone; |
2717 | /* ioc_gone's update must be visible before reading ioc_count */ | 3900 | /* ioc_gone's update must be visible before reading ioc_count */ |