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