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> |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 13 | #include <linux/ktime.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 | eea8f41 | 2015-05-22 17:13:17 -0400 | [diff] [blame] | 17 | #include <linux/blk-cgroup.h> |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 18 | #include "blk.h" |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 19 | #include "blk-wbt.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | /* |
| 22 | * tunables |
| 23 | */ |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 24 | /* max queue in one round of service */ |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 25 | static const int cfq_quantum = 8; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 26 | static const u64 cfq_fifo_expire[2] = { NSEC_PER_SEC / 4, NSEC_PER_SEC / 8 }; |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 27 | /* maximum backwards seek, in KiB */ |
| 28 | static const int cfq_back_max = 16 * 1024; |
| 29 | /* penalty of a backwards seek */ |
| 30 | static const int cfq_back_penalty = 2; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 31 | static const u64 cfq_slice_sync = NSEC_PER_SEC / 10; |
| 32 | static u64 cfq_slice_async = NSEC_PER_SEC / 25; |
Arjan van de Ven | 6410009 | 2006-01-06 09:46:02 +0100 | [diff] [blame] | 33 | static const int cfq_slice_async_rq = 2; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 34 | static u64 cfq_slice_idle = NSEC_PER_SEC / 125; |
| 35 | static u64 cfq_group_idle = NSEC_PER_SEC / 125; |
| 36 | static const u64 cfq_target_latency = (u64)NSEC_PER_SEC * 3/10; /* 300 ms */ |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 37 | static const int cfq_hist_divisor = 4; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 38 | |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 39 | /* |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 40 | * offset from end of service tree |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 41 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 42 | #define CFQ_IDLE_DELAY (NSEC_PER_SEC / 5) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 43 | |
| 44 | /* |
| 45 | * below this threshold, we consider thinktime immediate |
| 46 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 47 | #define CFQ_MIN_TT (2 * NSEC_PER_SEC / HZ) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 48 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 49 | #define CFQ_SLICE_SCALE (5) |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 50 | #define CFQ_HW_QUEUE_MIN (5) |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 51 | #define CFQ_SERVICE_SHIFT 12 |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 52 | |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 53 | #define CFQQ_SEEK_THR (sector_t)(8 * 100) |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 54 | #define CFQQ_CLOSE_THR (sector_t)(8 * 1024) |
Corrado Zoccolo | 41647e7 | 2010-02-27 19:45:40 +0100 | [diff] [blame] | 55 | #define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32) |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 56 | #define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8) |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 57 | |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 58 | #define RQ_CIC(rq) icq_to_cic((rq)->elv.icq) |
| 59 | #define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elv.priv[0]) |
| 60 | #define RQ_CFQG(rq) (struct cfq_group *) ((rq)->elv.priv[1]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 62 | static struct kmem_cache *cfq_pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 64 | #define CFQ_PRIO_LISTS IOPRIO_BE_NR |
| 65 | #define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 66 | #define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT) |
| 67 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 68 | #define sample_valid(samples) ((samples) > 80) |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 69 | #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] | 70 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 71 | /* blkio-related constants */ |
Tejun Heo | 3ecca62 | 2015-08-18 14:55:35 -0700 | [diff] [blame] | 72 | #define CFQ_WEIGHT_LEGACY_MIN 10 |
| 73 | #define CFQ_WEIGHT_LEGACY_DFL 500 |
| 74 | #define CFQ_WEIGHT_LEGACY_MAX 1000 |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 75 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 76 | struct cfq_ttime { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 77 | u64 last_end_request; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 78 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 79 | u64 ttime_total; |
| 80 | u64 ttime_mean; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 81 | unsigned long ttime_samples; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 82 | }; |
| 83 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 84 | /* |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 85 | * Most of our rbtree usage is for sorting with min extraction, so |
| 86 | * if we cache the leftmost node we don't have to walk down the tree |
| 87 | * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should |
| 88 | * move this into the elevator for the rq sorting as well. |
| 89 | */ |
| 90 | struct cfq_rb_root { |
| 91 | struct rb_root rb; |
| 92 | struct rb_node *left; |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 93 | unsigned count; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 94 | u64 min_vdisktime; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 95 | struct cfq_ttime ttime; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 96 | }; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 97 | #define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, \ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 98 | .ttime = {.last_end_request = ktime_get_ns(),},} |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 99 | |
| 100 | /* |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 101 | * Per process-grouping structure |
| 102 | */ |
| 103 | struct cfq_queue { |
| 104 | /* reference count */ |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 105 | int ref; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 106 | /* various state flags, see below */ |
| 107 | unsigned int flags; |
| 108 | /* parent cfq_data */ |
| 109 | struct cfq_data *cfqd; |
| 110 | /* service_tree member */ |
| 111 | struct rb_node rb_node; |
| 112 | /* service_tree key */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 113 | u64 rb_key; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 114 | /* prio tree member */ |
| 115 | struct rb_node p_node; |
| 116 | /* prio tree root we belong to, if any */ |
| 117 | struct rb_root *p_root; |
| 118 | /* sorted list of pending requests */ |
| 119 | struct rb_root sort_list; |
| 120 | /* if fifo isn't expired, next request to serve */ |
| 121 | struct request *next_rq; |
| 122 | /* requests queued in sort_list */ |
| 123 | int queued[2]; |
| 124 | /* currently allocated requests */ |
| 125 | int allocated[2]; |
| 126 | /* fifo list of requests in sort_list */ |
| 127 | struct list_head fifo; |
| 128 | |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 129 | /* time when queue got scheduled in to dispatch first request. */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 130 | u64 dispatch_start; |
| 131 | u64 allocated_slice; |
| 132 | u64 slice_dispatch; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 133 | /* time when first request from queue completed and slice started. */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 134 | u64 slice_start; |
| 135 | u64 slice_end; |
Jan Kara | 93fdf14 | 2016-06-28 09:04:00 +0200 | [diff] [blame] | 136 | s64 slice_resid; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 137 | |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 138 | /* pending priority requests */ |
| 139 | int prio_pending; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 140 | /* number of requests that are on the dispatch list or inside driver */ |
| 141 | int dispatched; |
| 142 | |
| 143 | /* io prio of this group */ |
| 144 | unsigned short ioprio, org_ioprio; |
Jens Axboe | b8269db | 2016-06-09 15:47:29 -0600 | [diff] [blame] | 145 | unsigned short ioprio_class, org_ioprio_class; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 146 | |
Richard Kennedy | c4081ba | 2010-02-22 13:49:24 +0100 | [diff] [blame] | 147 | pid_t pid; |
| 148 | |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 149 | u32 seek_history; |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 150 | sector_t last_request_pos; |
| 151 | |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 152 | struct cfq_rb_root *service_tree; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 153 | struct cfq_queue *new_cfqq; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 154 | struct cfq_group *cfqg; |
Vivek Goyal | c4e7893 | 2010-08-23 12:25:03 +0200 | [diff] [blame] | 155 | /* Number of sectors dispatched from queue in single dispatch round */ |
| 156 | unsigned long nr_sectors; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | /* |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 160 | * First index in the service_trees. |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 161 | * IDLE is handled separately, so it has negative index |
| 162 | */ |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 163 | enum wl_class_t { |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 164 | BE_WORKLOAD = 0, |
Vivek Goyal | 615f025 | 2009-12-03 12:59:39 -0500 | [diff] [blame] | 165 | RT_WORKLOAD = 1, |
| 166 | IDLE_WORKLOAD = 2, |
Vivek Goyal | b462732 | 2010-10-22 09:48:43 +0200 | [diff] [blame] | 167 | CFQ_PRIO_NR, |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 168 | }; |
| 169 | |
| 170 | /* |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 171 | * Second index in the service_trees. |
| 172 | */ |
| 173 | enum wl_type_t { |
| 174 | ASYNC_WORKLOAD = 0, |
| 175 | SYNC_NOIDLE_WORKLOAD = 1, |
| 176 | SYNC_WORKLOAD = 2 |
| 177 | }; |
| 178 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 179 | struct cfqg_stats { |
| 180 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 181 | /* number of ios merged */ |
| 182 | struct blkg_rwstat merged; |
| 183 | /* total time spent on device in ns, may not be accurate w/ queueing */ |
| 184 | struct blkg_rwstat service_time; |
| 185 | /* total time spent waiting in scheduler queue in ns */ |
| 186 | struct blkg_rwstat wait_time; |
| 187 | /* number of IOs queued up */ |
| 188 | struct blkg_rwstat queued; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 189 | /* total disk time and nr sectors dispatched by this group */ |
| 190 | struct blkg_stat time; |
| 191 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
| 192 | /* time not charged to this cgroup */ |
| 193 | struct blkg_stat unaccounted_time; |
| 194 | /* sum of number of ios queued across all samples */ |
| 195 | struct blkg_stat avg_queue_size_sum; |
| 196 | /* count of samples taken for average */ |
| 197 | struct blkg_stat avg_queue_size_samples; |
| 198 | /* how many times this group has been removed from service tree */ |
| 199 | struct blkg_stat dequeue; |
| 200 | /* total time spent waiting for it to be assigned a timeslice. */ |
| 201 | struct blkg_stat group_wait_time; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 202 | /* time spent idling for this blkcg_gq */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 203 | struct blkg_stat idle_time; |
| 204 | /* total time with empty current active q with other requests queued */ |
| 205 | struct blkg_stat empty_time; |
| 206 | /* fields after this shouldn't be cleared on stat reset */ |
| 207 | uint64_t start_group_wait_time; |
| 208 | uint64_t start_idle_time; |
| 209 | uint64_t start_empty_time; |
| 210 | uint16_t flags; |
| 211 | #endif /* CONFIG_DEBUG_BLK_CGROUP */ |
| 212 | #endif /* CONFIG_CFQ_GROUP_IOSCHED */ |
| 213 | }; |
| 214 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 215 | /* Per-cgroup data */ |
| 216 | struct cfq_group_data { |
| 217 | /* must be the first member */ |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 218 | struct blkcg_policy_data cpd; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 219 | |
| 220 | unsigned int weight; |
| 221 | unsigned int leaf_weight; |
| 222 | }; |
| 223 | |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 224 | /* This is per cgroup per device grouping structure */ |
| 225 | struct cfq_group { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 226 | /* must be the first member */ |
| 227 | struct blkg_policy_data pd; |
| 228 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 229 | /* group service_tree member */ |
| 230 | struct rb_node rb_node; |
| 231 | |
| 232 | /* group service_tree key */ |
| 233 | u64 vdisktime; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 234 | |
| 235 | /* |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 236 | * The number of active cfqgs and sum of their weights under this |
| 237 | * cfqg. This covers this cfqg's leaf_weight and all children's |
| 238 | * weights, but does not cover weights of further descendants. |
| 239 | * |
| 240 | * If a cfqg is on the service tree, it's active. An active cfqg |
| 241 | * also activates its parent and contributes to the children_weight |
| 242 | * of the parent. |
| 243 | */ |
| 244 | int nr_active; |
| 245 | unsigned int children_weight; |
| 246 | |
| 247 | /* |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 248 | * vfraction is the fraction of vdisktime that the tasks in this |
| 249 | * cfqg are entitled to. This is determined by compounding the |
| 250 | * ratios walking up from this cfqg to the root. |
| 251 | * |
| 252 | * It is in fixed point w/ CFQ_SERVICE_SHIFT and the sum of all |
| 253 | * vfractions on a service tree is approximately 1. The sum may |
| 254 | * deviate a bit due to rounding errors and fluctuations caused by |
| 255 | * cfqgs entering and leaving the service tree. |
| 256 | */ |
| 257 | unsigned int vfraction; |
| 258 | |
| 259 | /* |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 260 | * There are two weights - (internal) weight is the weight of this |
| 261 | * cfqg against the sibling cfqgs. leaf_weight is the wight of |
| 262 | * this cfqg against the child cfqgs. For the root cfqg, both |
| 263 | * weights are kept in sync for backward compatibility. |
| 264 | */ |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 265 | unsigned int weight; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 266 | unsigned int new_weight; |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 267 | unsigned int dev_weight; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 268 | |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 269 | unsigned int leaf_weight; |
| 270 | unsigned int new_leaf_weight; |
| 271 | unsigned int dev_leaf_weight; |
| 272 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 273 | /* number of cfqq currently on this group */ |
| 274 | int nr_cfqq; |
| 275 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 276 | /* |
Kyungmin Park | 4495a7d | 2011-05-31 10:04:09 +0200 | [diff] [blame] | 277 | * Per group busy queues average. Useful for workload slice calc. We |
Vivek Goyal | b462732 | 2010-10-22 09:48:43 +0200 | [diff] [blame] | 278 | * create the array for each prio class but at run time it is used |
| 279 | * only for RT and BE class and slot for IDLE class remains unused. |
| 280 | * This is primarily done to avoid confusion and a gcc warning. |
| 281 | */ |
| 282 | unsigned int busy_queues_avg[CFQ_PRIO_NR]; |
| 283 | /* |
| 284 | * rr lists of queues with requests. We maintain service trees for |
| 285 | * RT and BE classes. These trees are subdivided in subclasses |
| 286 | * of SYNC, SYNC_NOIDLE and ASYNC based on workload type. For IDLE |
| 287 | * class there is no subclassification and all the cfq queues go on |
| 288 | * a single tree service_tree_idle. |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 289 | * Counts are embedded in the cfq_rb_root |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 290 | */ |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 291 | struct cfq_rb_root service_trees[2][3]; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 292 | struct cfq_rb_root service_tree_idle; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 293 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 294 | u64 saved_wl_slice; |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 295 | enum wl_type_t saved_wl_type; |
| 296 | enum wl_class_t saved_wl_class; |
Tejun Heo | 4eef304 | 2012-03-05 13:15:18 -0800 | [diff] [blame] | 297 | |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 298 | /* number of requests that are on the dispatch list or inside driver */ |
| 299 | int dispatched; |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 300 | struct cfq_ttime ttime; |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 301 | struct cfqg_stats stats; /* stats for this cfqg */ |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 302 | |
| 303 | /* async queue for each priority case */ |
| 304 | struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR]; |
| 305 | struct cfq_queue *async_idle_cfqq; |
| 306 | |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 307 | }; |
| 308 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 309 | struct cfq_io_cq { |
| 310 | struct io_cq icq; /* must be the first member */ |
| 311 | struct cfq_queue *cfqq[2]; |
| 312 | struct cfq_ttime ttime; |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 313 | int ioprio; /* the current ioprio */ |
| 314 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 315 | uint64_t blkcg_serial_nr; /* the current blkcg serial */ |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 316 | #endif |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 317 | }; |
| 318 | |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 319 | /* |
| 320 | * Per block device queue structure |
| 321 | */ |
| 322 | struct cfq_data { |
| 323 | struct request_queue *queue; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 324 | /* Root service tree for cfq_groups */ |
| 325 | struct cfq_rb_root grp_service_tree; |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 326 | struct cfq_group *root_group; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 327 | |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 328 | /* |
| 329 | * The priority currently being served |
| 330 | */ |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 331 | enum wl_class_t serving_wl_class; |
| 332 | enum wl_type_t serving_wl_type; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 333 | u64 workload_expires; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 334 | struct cfq_group *serving_group; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 335 | |
| 336 | /* |
| 337 | * Each priority tree is sorted by next_request position. These |
| 338 | * trees are used when determining if two or more queues are |
| 339 | * interleaving requests (see cfq_close_cooperator). |
| 340 | */ |
| 341 | struct rb_root prio_trees[CFQ_PRIO_LISTS]; |
| 342 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 343 | unsigned int busy_queues; |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 344 | unsigned int busy_sync_queues; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 345 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 346 | int rq_in_driver; |
| 347 | int rq_in_flight[2]; |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 348 | |
| 349 | /* |
| 350 | * queue-depth detection |
| 351 | */ |
| 352 | int rq_queued; |
Jens Axboe | 25776e3 | 2006-06-01 10:12:26 +0200 | [diff] [blame] | 353 | int hw_tag; |
Corrado Zoccolo | e459dd0 | 2009-11-26 10:02:57 +0100 | [diff] [blame] | 354 | /* |
| 355 | * hw_tag can be |
| 356 | * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection) |
| 357 | * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth) |
| 358 | * 0 => no NCQ |
| 359 | */ |
| 360 | int hw_tag_est_depth; |
| 361 | unsigned int hw_tag_samples; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 362 | |
| 363 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 364 | * idle window management |
| 365 | */ |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 366 | struct hrtimer idle_slice_timer; |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 367 | struct work_struct unplug_work; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 368 | |
| 369 | struct cfq_queue *active_queue; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 370 | struct cfq_io_cq *active_cic; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 371 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 372 | sector_t last_position; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | /* |
| 375 | * tunables, see top of file |
| 376 | */ |
| 377 | unsigned int cfq_quantum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | unsigned int cfq_back_penalty; |
| 379 | unsigned int cfq_back_max; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 380 | unsigned int cfq_slice_async_rq; |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 381 | unsigned int cfq_latency; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 382 | u64 cfq_fifo_expire[2]; |
| 383 | u64 cfq_slice[2]; |
| 384 | u64 cfq_slice_idle; |
| 385 | u64 cfq_group_idle; |
| 386 | u64 cfq_target_latency; |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 387 | |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 388 | /* |
| 389 | * Fallback dummy cfqq for extreme OOM conditions |
| 390 | */ |
| 391 | struct cfq_queue oom_cfqq; |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 392 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 393 | u64 last_delayed_sync; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | }; |
| 395 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 396 | static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd); |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 397 | static void cfq_put_queue(struct cfq_queue *cfqq); |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 398 | |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 399 | static struct cfq_rb_root *st_for(struct cfq_group *cfqg, |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 400 | enum wl_class_t class, |
Vivek Goyal | 65b32a5 | 2009-12-16 17:52:59 -0500 | [diff] [blame] | 401 | enum wl_type_t type) |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 402 | { |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 403 | if (!cfqg) |
| 404 | return NULL; |
| 405 | |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 406 | if (class == IDLE_WORKLOAD) |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 407 | return &cfqg->service_tree_idle; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 408 | |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 409 | return &cfqg->service_trees[class][type]; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 410 | } |
| 411 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 412 | enum cfqq_state_flags { |
Jens Axboe | b0b8d749 | 2007-01-19 11:35:30 +1100 | [diff] [blame] | 413 | CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */ |
| 414 | CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */ |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 415 | CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */ |
Jens Axboe | b0b8d749 | 2007-01-19 11:35:30 +1100 | [diff] [blame] | 416 | CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */ |
Jens Axboe | b0b8d749 | 2007-01-19 11:35:30 +1100 | [diff] [blame] | 417 | CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */ |
| 418 | CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */ |
| 419 | CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */ |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 420 | CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */ |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 421 | CFQ_CFQQ_FLAG_sync, /* synchronous queue */ |
Jeff Moyer | b3b6d04 | 2009-10-23 17:14:51 -0400 | [diff] [blame] | 422 | CFQ_CFQQ_FLAG_coop, /* cfqq is shared */ |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 423 | CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */ |
Corrado Zoccolo | 76280af | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 424 | CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */ |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 425 | CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 426 | }; |
| 427 | |
| 428 | #define CFQ_CFQQ_FNS(name) \ |
| 429 | static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \ |
| 430 | { \ |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 431 | (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 432 | } \ |
| 433 | static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \ |
| 434 | { \ |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 435 | (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 436 | } \ |
| 437 | static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \ |
| 438 | { \ |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 439 | return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | CFQ_CFQQ_FNS(on_rr); |
| 443 | CFQ_CFQQ_FNS(wait_request); |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 444 | CFQ_CFQQ_FNS(must_dispatch); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 445 | CFQ_CFQQ_FNS(must_alloc_slice); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 446 | CFQ_CFQQ_FNS(fifo_expire); |
| 447 | CFQ_CFQQ_FNS(idle_window); |
| 448 | CFQ_CFQQ_FNS(prio_changed); |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 449 | CFQ_CFQQ_FNS(slice_new); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 450 | CFQ_CFQQ_FNS(sync); |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 451 | CFQ_CFQQ_FNS(coop); |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 452 | CFQ_CFQQ_FNS(split_coop); |
Corrado Zoccolo | 76280af | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 453 | CFQ_CFQQ_FNS(deep); |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 454 | CFQ_CFQQ_FNS(wait_busy); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 455 | #undef CFQ_CFQQ_FNS |
| 456 | |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 457 | #if defined(CONFIG_CFQ_GROUP_IOSCHED) && defined(CONFIG_DEBUG_BLK_CGROUP) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 458 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 459 | /* cfqg stats flags */ |
| 460 | enum cfqg_stats_flags { |
| 461 | CFQG_stats_waiting = 0, |
| 462 | CFQG_stats_idling, |
| 463 | CFQG_stats_empty, |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 464 | }; |
| 465 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 466 | #define CFQG_FLAG_FNS(name) \ |
| 467 | static inline void cfqg_stats_mark_##name(struct cfqg_stats *stats) \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 468 | { \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 469 | stats->flags |= (1 << CFQG_stats_##name); \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 470 | } \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 471 | static inline void cfqg_stats_clear_##name(struct cfqg_stats *stats) \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 472 | { \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 473 | stats->flags &= ~(1 << CFQG_stats_##name); \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 474 | } \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 475 | static inline int cfqg_stats_##name(struct cfqg_stats *stats) \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 476 | { \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 477 | return (stats->flags & (1 << CFQG_stats_##name)) != 0; \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 478 | } \ |
| 479 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 480 | CFQG_FLAG_FNS(waiting) |
| 481 | CFQG_FLAG_FNS(idling) |
| 482 | CFQG_FLAG_FNS(empty) |
| 483 | #undef CFQG_FLAG_FNS |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 484 | |
| 485 | /* This should be called with the queue_lock held. */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 486 | static void cfqg_stats_update_group_wait_time(struct cfqg_stats *stats) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 487 | { |
| 488 | unsigned long long now; |
| 489 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 490 | if (!cfqg_stats_waiting(stats)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 491 | return; |
| 492 | |
| 493 | now = sched_clock(); |
| 494 | if (time_after64(now, stats->start_group_wait_time)) |
| 495 | blkg_stat_add(&stats->group_wait_time, |
| 496 | now - stats->start_group_wait_time); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 497 | cfqg_stats_clear_waiting(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | /* This should be called with the queue_lock held. */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 501 | static void cfqg_stats_set_start_group_wait_time(struct cfq_group *cfqg, |
| 502 | struct cfq_group *curr_cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 503 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 504 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 505 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 506 | if (cfqg_stats_waiting(stats)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 507 | return; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 508 | if (cfqg == curr_cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 509 | return; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 510 | stats->start_group_wait_time = sched_clock(); |
| 511 | cfqg_stats_mark_waiting(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | /* This should be called with the queue_lock held. */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 515 | static void cfqg_stats_end_empty_time(struct cfqg_stats *stats) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 516 | { |
| 517 | unsigned long long now; |
| 518 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 519 | if (!cfqg_stats_empty(stats)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 520 | return; |
| 521 | |
| 522 | now = sched_clock(); |
| 523 | if (time_after64(now, stats->start_empty_time)) |
| 524 | blkg_stat_add(&stats->empty_time, |
| 525 | now - stats->start_empty_time); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 526 | cfqg_stats_clear_empty(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 527 | } |
| 528 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 529 | static void cfqg_stats_update_dequeue(struct cfq_group *cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 530 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 531 | blkg_stat_add(&cfqg->stats.dequeue, 1); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 532 | } |
| 533 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 534 | static void cfqg_stats_set_start_empty_time(struct cfq_group *cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 535 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 536 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 537 | |
Tejun Heo | 4d5e80a | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 538 | if (blkg_rwstat_total(&stats->queued)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 539 | return; |
| 540 | |
| 541 | /* |
| 542 | * group is already marked empty. This can happen if cfqq got new |
| 543 | * request in parent group and moved to this group while being added |
| 544 | * to service tree. Just ignore the event and move on. |
| 545 | */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 546 | if (cfqg_stats_empty(stats)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 547 | return; |
| 548 | |
| 549 | stats->start_empty_time = sched_clock(); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 550 | cfqg_stats_mark_empty(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 551 | } |
| 552 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 553 | static void cfqg_stats_update_idle_time(struct cfq_group *cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 554 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 555 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 556 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 557 | if (cfqg_stats_idling(stats)) { |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 558 | unsigned long long now = sched_clock(); |
| 559 | |
| 560 | if (time_after64(now, stats->start_idle_time)) |
| 561 | blkg_stat_add(&stats->idle_time, |
| 562 | now - stats->start_idle_time); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 563 | cfqg_stats_clear_idling(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 564 | } |
| 565 | } |
| 566 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 567 | static void cfqg_stats_set_start_idle_time(struct cfq_group *cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 568 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 569 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 570 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 571 | BUG_ON(cfqg_stats_idling(stats)); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 572 | |
| 573 | stats->start_idle_time = sched_clock(); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 574 | cfqg_stats_mark_idling(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 575 | } |
| 576 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 577 | static void cfqg_stats_update_avg_queue_size(struct cfq_group *cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 578 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 579 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 580 | |
| 581 | blkg_stat_add(&stats->avg_queue_size_sum, |
Tejun Heo | 4d5e80a | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 582 | blkg_rwstat_total(&stats->queued)); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 583 | blkg_stat_add(&stats->avg_queue_size_samples, 1); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 584 | cfqg_stats_update_group_wait_time(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | #else /* CONFIG_CFQ_GROUP_IOSCHED && CONFIG_DEBUG_BLK_CGROUP */ |
| 588 | |
Tejun Heo | f48ec1d | 2012-04-13 13:11:25 -0700 | [diff] [blame] | 589 | static inline void cfqg_stats_set_start_group_wait_time(struct cfq_group *cfqg, struct cfq_group *curr_cfqg) { } |
| 590 | static inline void cfqg_stats_end_empty_time(struct cfqg_stats *stats) { } |
| 591 | static inline void cfqg_stats_update_dequeue(struct cfq_group *cfqg) { } |
| 592 | static inline void cfqg_stats_set_start_empty_time(struct cfq_group *cfqg) { } |
| 593 | static inline void cfqg_stats_update_idle_time(struct cfq_group *cfqg) { } |
| 594 | static inline void cfqg_stats_set_start_idle_time(struct cfq_group *cfqg) { } |
| 595 | static inline void cfqg_stats_update_avg_queue_size(struct cfq_group *cfqg) { } |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 596 | |
| 597 | #endif /* CONFIG_CFQ_GROUP_IOSCHED && CONFIG_DEBUG_BLK_CGROUP */ |
| 598 | |
| 599 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 600 | |
Jens Axboe | 4ceab71 | 2015-06-19 10:13:01 -0600 | [diff] [blame] | 601 | static inline struct cfq_group *pd_to_cfqg(struct blkg_policy_data *pd) |
| 602 | { |
| 603 | return pd ? container_of(pd, struct cfq_group, pd) : NULL; |
| 604 | } |
| 605 | |
| 606 | static struct cfq_group_data |
| 607 | *cpd_to_cfqgd(struct blkcg_policy_data *cpd) |
| 608 | { |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 609 | return cpd ? container_of(cpd, struct cfq_group_data, cpd) : NULL; |
Jens Axboe | 4ceab71 | 2015-06-19 10:13:01 -0600 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | static inline struct blkcg_gq *cfqg_to_blkg(struct cfq_group *cfqg) |
| 613 | { |
| 614 | return pd_to_blkg(&cfqg->pd); |
| 615 | } |
| 616 | |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 617 | static struct blkcg_policy blkcg_policy_cfq; |
| 618 | |
| 619 | static inline struct cfq_group *blkg_to_cfqg(struct blkcg_gq *blkg) |
| 620 | { |
| 621 | return pd_to_cfqg(blkg_to_pd(blkg, &blkcg_policy_cfq)); |
| 622 | } |
| 623 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 624 | static struct cfq_group_data *blkcg_to_cfqgd(struct blkcg *blkcg) |
| 625 | { |
| 626 | return cpd_to_cfqgd(blkcg_to_cpd(blkcg, &blkcg_policy_cfq)); |
| 627 | } |
| 628 | |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 629 | static inline struct cfq_group *cfqg_parent(struct cfq_group *cfqg) |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 630 | { |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 631 | struct blkcg_gq *pblkg = cfqg_to_blkg(cfqg)->parent; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 632 | |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 633 | return pblkg ? blkg_to_cfqg(pblkg) : NULL; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 634 | } |
| 635 | |
Jan Kara | 3984aa5 | 2016-01-12 16:24:19 +0100 | [diff] [blame] | 636 | static inline bool cfqg_is_descendant(struct cfq_group *cfqg, |
| 637 | struct cfq_group *ancestor) |
| 638 | { |
| 639 | return cgroup_is_descendant(cfqg_to_blkg(cfqg)->blkcg->css.cgroup, |
| 640 | cfqg_to_blkg(ancestor)->blkcg->css.cgroup); |
| 641 | } |
| 642 | |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 643 | static inline void cfqg_get(struct cfq_group *cfqg) |
| 644 | { |
| 645 | return blkg_get(cfqg_to_blkg(cfqg)); |
| 646 | } |
| 647 | |
| 648 | static inline void cfqg_put(struct cfq_group *cfqg) |
| 649 | { |
| 650 | return blkg_put(cfqg_to_blkg(cfqg)); |
| 651 | } |
| 652 | |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 653 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) do { \ |
| 654 | char __pbuf[128]; \ |
| 655 | \ |
| 656 | blkg_path(cfqg_to_blkg((cfqq)->cfqg), __pbuf, sizeof(__pbuf)); \ |
Vivek Goyal | b226e5c | 2012-10-03 16:57:01 -0400 | [diff] [blame] | 657 | blk_add_trace_msg((cfqd)->queue, "cfq%d%c%c %s " fmt, (cfqq)->pid, \ |
| 658 | cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \ |
| 659 | cfqq_type((cfqq)) == SYNC_NOIDLE_WORKLOAD ? 'N' : ' ',\ |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 660 | __pbuf, ##args); \ |
| 661 | } while (0) |
Vivek Goyal | 2868ef7 | 2009-12-03 12:59:48 -0500 | [diff] [blame] | 662 | |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 663 | #define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do { \ |
| 664 | char __pbuf[128]; \ |
| 665 | \ |
| 666 | blkg_path(cfqg_to_blkg(cfqg), __pbuf, sizeof(__pbuf)); \ |
| 667 | blk_add_trace_msg((cfqd)->queue, "%s " fmt, __pbuf, ##args); \ |
| 668 | } while (0) |
Vivek Goyal | 2868ef7 | 2009-12-03 12:59:48 -0500 | [diff] [blame] | 669 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 670 | static inline void cfqg_stats_update_io_add(struct cfq_group *cfqg, |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 671 | struct cfq_group *curr_cfqg, |
| 672 | unsigned int op) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 673 | { |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 674 | blkg_rwstat_add(&cfqg->stats.queued, op, 1); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 675 | cfqg_stats_end_empty_time(&cfqg->stats); |
| 676 | cfqg_stats_set_start_group_wait_time(cfqg, curr_cfqg); |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 677 | } |
| 678 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 679 | static inline void cfqg_stats_update_timeslice_used(struct cfq_group *cfqg, |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 680 | uint64_t time, unsigned long unaccounted_time) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 681 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 682 | blkg_stat_add(&cfqg->stats.time, time); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 683 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 684 | blkg_stat_add(&cfqg->stats.unaccounted_time, unaccounted_time); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 685 | #endif |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 686 | } |
| 687 | |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 688 | static inline void cfqg_stats_update_io_remove(struct cfq_group *cfqg, |
| 689 | unsigned int op) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 690 | { |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 691 | blkg_rwstat_add(&cfqg->stats.queued, op, -1); |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 692 | } |
| 693 | |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 694 | static inline void cfqg_stats_update_io_merged(struct cfq_group *cfqg, |
| 695 | unsigned int op) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 696 | { |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 697 | blkg_rwstat_add(&cfqg->stats.merged, op, 1); |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 698 | } |
| 699 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 700 | static inline void cfqg_stats_update_completion(struct cfq_group *cfqg, |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 701 | uint64_t start_time, uint64_t io_start_time, |
| 702 | unsigned int op) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 703 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 704 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 705 | unsigned long long now = sched_clock(); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 706 | |
| 707 | if (time_after64(now, io_start_time)) |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 708 | blkg_rwstat_add(&stats->service_time, op, now - io_start_time); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 709 | if (time_after64(io_start_time, start_time)) |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 710 | blkg_rwstat_add(&stats->wait_time, op, |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 711 | io_start_time - start_time); |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 712 | } |
| 713 | |
Tejun Heo | 689665a | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 714 | /* @stats = 0 */ |
| 715 | static void cfqg_stats_reset(struct cfqg_stats *stats) |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 716 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 717 | /* queued stats shouldn't be cleared */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 718 | blkg_rwstat_reset(&stats->merged); |
| 719 | blkg_rwstat_reset(&stats->service_time); |
| 720 | blkg_rwstat_reset(&stats->wait_time); |
| 721 | blkg_stat_reset(&stats->time); |
| 722 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
| 723 | blkg_stat_reset(&stats->unaccounted_time); |
| 724 | blkg_stat_reset(&stats->avg_queue_size_sum); |
| 725 | blkg_stat_reset(&stats->avg_queue_size_samples); |
| 726 | blkg_stat_reset(&stats->dequeue); |
| 727 | blkg_stat_reset(&stats->group_wait_time); |
| 728 | blkg_stat_reset(&stats->idle_time); |
| 729 | blkg_stat_reset(&stats->empty_time); |
| 730 | #endif |
| 731 | } |
| 732 | |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 733 | /* @to += @from */ |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 734 | static void cfqg_stats_add_aux(struct cfqg_stats *to, struct cfqg_stats *from) |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 735 | { |
| 736 | /* queued stats shouldn't be cleared */ |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 737 | blkg_rwstat_add_aux(&to->merged, &from->merged); |
| 738 | blkg_rwstat_add_aux(&to->service_time, &from->service_time); |
| 739 | blkg_rwstat_add_aux(&to->wait_time, &from->wait_time); |
| 740 | blkg_stat_add_aux(&from->time, &from->time); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 741 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 742 | blkg_stat_add_aux(&to->unaccounted_time, &from->unaccounted_time); |
| 743 | blkg_stat_add_aux(&to->avg_queue_size_sum, &from->avg_queue_size_sum); |
| 744 | blkg_stat_add_aux(&to->avg_queue_size_samples, &from->avg_queue_size_samples); |
| 745 | blkg_stat_add_aux(&to->dequeue, &from->dequeue); |
| 746 | blkg_stat_add_aux(&to->group_wait_time, &from->group_wait_time); |
| 747 | blkg_stat_add_aux(&to->idle_time, &from->idle_time); |
| 748 | blkg_stat_add_aux(&to->empty_time, &from->empty_time); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 749 | #endif |
| 750 | } |
| 751 | |
| 752 | /* |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 753 | * Transfer @cfqg's stats to its parent's aux counts so that the ancestors' |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 754 | * recursive stats can still account for the amount used by this cfqg after |
| 755 | * it's gone. |
| 756 | */ |
| 757 | static void cfqg_stats_xfer_dead(struct cfq_group *cfqg) |
| 758 | { |
| 759 | struct cfq_group *parent = cfqg_parent(cfqg); |
| 760 | |
| 761 | lockdep_assert_held(cfqg_to_blkg(cfqg)->q->queue_lock); |
| 762 | |
| 763 | if (unlikely(!parent)) |
| 764 | return; |
| 765 | |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 766 | cfqg_stats_add_aux(&parent->stats, &cfqg->stats); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 767 | cfqg_stats_reset(&cfqg->stats); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 768 | } |
| 769 | |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 770 | #else /* CONFIG_CFQ_GROUP_IOSCHED */ |
| 771 | |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 772 | static inline struct cfq_group *cfqg_parent(struct cfq_group *cfqg) { return NULL; } |
Jan Kara | 3984aa5 | 2016-01-12 16:24:19 +0100 | [diff] [blame] | 773 | static inline bool cfqg_is_descendant(struct cfq_group *cfqg, |
| 774 | struct cfq_group *ancestor) |
| 775 | { |
| 776 | return true; |
| 777 | } |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 778 | static inline void cfqg_get(struct cfq_group *cfqg) { } |
| 779 | static inline void cfqg_put(struct cfq_group *cfqg) { } |
| 780 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 781 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \ |
Vivek Goyal | b226e5c | 2012-10-03 16:57:01 -0400 | [diff] [blame] | 782 | blk_add_trace_msg((cfqd)->queue, "cfq%d%c%c " fmt, (cfqq)->pid, \ |
| 783 | cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \ |
| 784 | cfqq_type((cfqq)) == SYNC_NOIDLE_WORKLOAD ? 'N' : ' ',\ |
| 785 | ##args) |
Kyungmin Park | 4495a7d | 2011-05-31 10:04:09 +0200 | [diff] [blame] | 786 | #define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0) |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 787 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 788 | static inline void cfqg_stats_update_io_add(struct cfq_group *cfqg, |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 789 | struct cfq_group *curr_cfqg, unsigned int op) { } |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 790 | static inline void cfqg_stats_update_timeslice_used(struct cfq_group *cfqg, |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 791 | uint64_t time, unsigned long unaccounted_time) { } |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 792 | static inline void cfqg_stats_update_io_remove(struct cfq_group *cfqg, |
| 793 | unsigned int op) { } |
| 794 | static inline void cfqg_stats_update_io_merged(struct cfq_group *cfqg, |
| 795 | unsigned int op) { } |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 796 | static inline void cfqg_stats_update_completion(struct cfq_group *cfqg, |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 797 | uint64_t start_time, uint64_t io_start_time, |
| 798 | unsigned int op) { } |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 799 | |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 800 | #endif /* CONFIG_CFQ_GROUP_IOSCHED */ |
| 801 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 802 | #define cfq_log(cfqd, fmt, args...) \ |
| 803 | blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args) |
| 804 | |
Vivek Goyal | 615f025 | 2009-12-03 12:59:39 -0500 | [diff] [blame] | 805 | /* Traverses through cfq group service trees */ |
| 806 | #define for_each_cfqg_st(cfqg, i, j, st) \ |
| 807 | for (i = 0; i <= IDLE_WORKLOAD; i++) \ |
| 808 | for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\ |
| 809 | : &cfqg->service_tree_idle; \ |
| 810 | (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \ |
| 811 | (i == IDLE_WORKLOAD && j == 0); \ |
| 812 | j++, st = i < IDLE_WORKLOAD ? \ |
| 813 | &cfqg->service_trees[i][j]: NULL) \ |
| 814 | |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 815 | static inline bool cfq_io_thinktime_big(struct cfq_data *cfqd, |
| 816 | struct cfq_ttime *ttime, bool group_idle) |
| 817 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 818 | u64 slice; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 819 | if (!sample_valid(ttime->ttime_samples)) |
| 820 | return false; |
| 821 | if (group_idle) |
| 822 | slice = cfqd->cfq_group_idle; |
| 823 | else |
| 824 | slice = cfqd->cfq_slice_idle; |
| 825 | return ttime->ttime_mean > slice; |
| 826 | } |
Vivek Goyal | 615f025 | 2009-12-03 12:59:39 -0500 | [diff] [blame] | 827 | |
Vivek Goyal | 02b3508 | 2010-08-23 12:23:53 +0200 | [diff] [blame] | 828 | static inline bool iops_mode(struct cfq_data *cfqd) |
| 829 | { |
| 830 | /* |
| 831 | * If we are not idling on queues and it is a NCQ drive, parallel |
| 832 | * execution of requests is on and measuring time is not possible |
| 833 | * in most of the cases until and unless we drive shallower queue |
| 834 | * depths and that becomes a performance bottleneck. In such cases |
| 835 | * switch to start providing fairness in terms of number of IOs. |
| 836 | */ |
| 837 | if (!cfqd->cfq_slice_idle && cfqd->hw_tag) |
| 838 | return true; |
| 839 | else |
| 840 | return false; |
| 841 | } |
| 842 | |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 843 | static inline enum wl_class_t cfqq_class(struct cfq_queue *cfqq) |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 844 | { |
| 845 | if (cfq_class_idle(cfqq)) |
| 846 | return IDLE_WORKLOAD; |
| 847 | if (cfq_class_rt(cfqq)) |
| 848 | return RT_WORKLOAD; |
| 849 | return BE_WORKLOAD; |
| 850 | } |
| 851 | |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 852 | |
| 853 | static enum wl_type_t cfqq_type(struct cfq_queue *cfqq) |
| 854 | { |
| 855 | if (!cfq_cfqq_sync(cfqq)) |
| 856 | return ASYNC_WORKLOAD; |
| 857 | if (!cfq_cfqq_idle_window(cfqq)) |
| 858 | return SYNC_NOIDLE_WORKLOAD; |
| 859 | return SYNC_WORKLOAD; |
| 860 | } |
| 861 | |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 862 | static inline int cfq_group_busy_queues_wl(enum wl_class_t wl_class, |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 863 | struct cfq_data *cfqd, |
| 864 | struct cfq_group *cfqg) |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 865 | { |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 866 | if (wl_class == IDLE_WORKLOAD) |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 867 | return cfqg->service_tree_idle.count; |
| 868 | |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 869 | return cfqg->service_trees[wl_class][ASYNC_WORKLOAD].count + |
| 870 | cfqg->service_trees[wl_class][SYNC_NOIDLE_WORKLOAD].count + |
| 871 | cfqg->service_trees[wl_class][SYNC_WORKLOAD].count; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 872 | } |
| 873 | |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 874 | static inline int cfqg_busy_async_queues(struct cfq_data *cfqd, |
| 875 | struct cfq_group *cfqg) |
| 876 | { |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 877 | return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count + |
| 878 | cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count; |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 879 | } |
| 880 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 881 | static void cfq_dispatch_insert(struct request_queue *, struct request *); |
Tejun Heo | 4f85cb9 | 2012-03-05 13:15:28 -0800 | [diff] [blame] | 882 | static struct cfq_queue *cfq_get_queue(struct cfq_data *cfqd, bool is_sync, |
Tejun Heo | 2da8de0 | 2015-08-18 14:55:02 -0700 | [diff] [blame] | 883 | struct cfq_io_cq *cic, struct bio *bio); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 884 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 885 | static inline struct cfq_io_cq *icq_to_cic(struct io_cq *icq) |
| 886 | { |
| 887 | /* cic->icq is the first member, %NULL will convert to %NULL */ |
| 888 | return container_of(icq, struct cfq_io_cq, icq); |
| 889 | } |
| 890 | |
Tejun Heo | 47fdd4c | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 891 | static inline struct cfq_io_cq *cfq_cic_lookup(struct cfq_data *cfqd, |
| 892 | struct io_context *ioc) |
| 893 | { |
| 894 | if (ioc) |
| 895 | return icq_to_cic(ioc_lookup_icq(ioc, cfqd->queue)); |
| 896 | return NULL; |
| 897 | } |
| 898 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 899 | 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] | 900 | { |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 901 | return cic->cfqq[is_sync]; |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 902 | } |
| 903 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 904 | static inline void cic_set_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq, |
| 905 | bool is_sync) |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 906 | { |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 907 | cic->cfqq[is_sync] = cfqq; |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 908 | } |
| 909 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 910 | 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] | 911 | { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 912 | return cic->icq.q->elevator->elevator_data; |
Konstantin Khlebnikov | bca4b91 | 2010-05-20 23:21:34 +0400 | [diff] [blame] | 913 | } |
| 914 | |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 915 | /* |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 916 | * scheduler run of queue, if there are requests pending and no one in the |
| 917 | * driver that will restart queueing |
| 918 | */ |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 919 | static inline void cfq_schedule_dispatch(struct cfq_data *cfqd) |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 920 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 921 | if (cfqd->busy_queues) { |
| 922 | cfq_log(cfqd, "schedule dispatch"); |
Jens Axboe | 59c3d45 | 2014-04-08 09:15:35 -0600 | [diff] [blame] | 923 | kblockd_schedule_work(&cfqd->unplug_work); |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 924 | } |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 925 | } |
| 926 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | /* |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 928 | * Scale schedule slice based on io priority. Use the sync time slice only |
| 929 | * if a queue is marked sync and has sync io queued. A sync queue with async |
| 930 | * io only, should not get full sync slice length. |
| 931 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 932 | static inline u64 cfq_prio_slice(struct cfq_data *cfqd, bool sync, |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 933 | unsigned short prio) |
| 934 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 935 | u64 base_slice = cfqd->cfq_slice[sync]; |
| 936 | u64 slice = div_u64(base_slice, CFQ_SLICE_SCALE); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 937 | |
| 938 | WARN_ON(prio >= IOPRIO_BE_NR); |
| 939 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 940 | return base_slice + (slice * (4 - prio)); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 941 | } |
| 942 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 943 | static inline u64 |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 944 | cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 945 | { |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 946 | return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio); |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 947 | } |
| 948 | |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 949 | /** |
| 950 | * cfqg_scale_charge - scale disk time charge according to cfqg weight |
| 951 | * @charge: disk time being charged |
| 952 | * @vfraction: vfraction of the cfqg, fixed point w/ CFQ_SERVICE_SHIFT |
| 953 | * |
| 954 | * Scale @charge according to @vfraction, which is in range (0, 1]. The |
| 955 | * scaling is inversely proportional. |
| 956 | * |
| 957 | * scaled = charge / vfraction |
| 958 | * |
| 959 | * The result is also in fixed point w/ CFQ_SERVICE_SHIFT. |
| 960 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 961 | static inline u64 cfqg_scale_charge(u64 charge, |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 962 | unsigned int vfraction) |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 963 | { |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 964 | u64 c = charge << CFQ_SERVICE_SHIFT; /* make it fixed point */ |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 965 | |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 966 | /* charge / vfraction */ |
| 967 | c <<= CFQ_SERVICE_SHIFT; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 968 | return div_u64(c, vfraction); |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime) |
| 972 | { |
| 973 | s64 delta = (s64)(vdisktime - min_vdisktime); |
| 974 | if (delta > 0) |
| 975 | min_vdisktime = vdisktime; |
| 976 | |
| 977 | return min_vdisktime; |
| 978 | } |
| 979 | |
| 980 | static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime) |
| 981 | { |
| 982 | s64 delta = (s64)(vdisktime - min_vdisktime); |
| 983 | if (delta < 0) |
| 984 | min_vdisktime = vdisktime; |
| 985 | |
| 986 | return min_vdisktime; |
| 987 | } |
| 988 | |
| 989 | static void update_min_vdisktime(struct cfq_rb_root *st) |
| 990 | { |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 991 | struct cfq_group *cfqg; |
| 992 | |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 993 | if (st->left) { |
| 994 | cfqg = rb_entry_cfqg(st->left); |
Gui Jianfeng | a603271 | 2011-03-07 09:28:09 +0100 | [diff] [blame] | 995 | st->min_vdisktime = max_vdisktime(st->min_vdisktime, |
| 996 | cfqg->vdisktime); |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 997 | } |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 998 | } |
| 999 | |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1000 | /* |
| 1001 | * get averaged number of queues of RT/BE priority. |
| 1002 | * average is updated, with a formula that gives more weight to higher numbers, |
| 1003 | * to quickly follows sudden increases and decrease slowly |
| 1004 | */ |
| 1005 | |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1006 | static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd, |
| 1007 | struct cfq_group *cfqg, bool rt) |
Jens Axboe | 5869619c | 2009-10-28 09:27:07 +0100 | [diff] [blame] | 1008 | { |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1009 | unsigned min_q, max_q; |
| 1010 | unsigned mult = cfq_hist_divisor - 1; |
| 1011 | unsigned round = cfq_hist_divisor / 2; |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1012 | unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg); |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1013 | |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1014 | min_q = min(cfqg->busy_queues_avg[rt], busy); |
| 1015 | max_q = max(cfqg->busy_queues_avg[rt], busy); |
| 1016 | cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) / |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1017 | cfq_hist_divisor; |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1018 | return cfqg->busy_queues_avg[rt]; |
| 1019 | } |
| 1020 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1021 | static inline u64 |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1022 | cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg) |
| 1023 | { |
Tejun Heo | 41cad6a | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1024 | return cfqd->cfq_target_latency * cfqg->vfraction >> CFQ_SERVICE_SHIFT; |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1025 | } |
| 1026 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1027 | static inline u64 |
Vivek Goyal | ba5bd52 | 2011-01-19 08:25:02 -0700 | [diff] [blame] | 1028 | cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1029 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1030 | u64 slice = cfq_prio_to_slice(cfqd, cfqq); |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1031 | if (cfqd->cfq_latency) { |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1032 | /* |
| 1033 | * interested queues (we consider only the ones with the same |
| 1034 | * priority class in the cfq group) |
| 1035 | */ |
| 1036 | unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg, |
| 1037 | cfq_class_rt(cfqq)); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1038 | u64 sync_slice = cfqd->cfq_slice[1]; |
| 1039 | u64 expect_latency = sync_slice * iq; |
| 1040 | u64 group_slice = cfq_group_slice(cfqd, cfqq->cfqg); |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1041 | |
| 1042 | if (expect_latency > group_slice) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1043 | u64 base_low_slice = 2 * cfqd->cfq_slice_idle; |
| 1044 | u64 low_slice; |
| 1045 | |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1046 | /* scale low_slice according to IO priority |
| 1047 | * and sync vs async */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1048 | low_slice = div64_u64(base_low_slice*slice, sync_slice); |
| 1049 | low_slice = min(slice, low_slice); |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1050 | /* the adapted slice value is scaled to fit all iqs |
| 1051 | * into the target latency */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1052 | slice = div64_u64(slice*group_slice, expect_latency); |
| 1053 | slice = max(slice, low_slice); |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1054 | } |
| 1055 | } |
Shaohua Li | c553f8e | 2011-01-14 08:41:03 +0100 | [diff] [blame] | 1056 | return slice; |
| 1057 | } |
| 1058 | |
| 1059 | static inline void |
| 1060 | cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 1061 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1062 | u64 slice = cfq_scaled_cfqq_slice(cfqd, cfqq); |
| 1063 | u64 now = ktime_get_ns(); |
Shaohua Li | c553f8e | 2011-01-14 08:41:03 +0100 | [diff] [blame] | 1064 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1065 | cfqq->slice_start = now; |
| 1066 | cfqq->slice_end = now + slice; |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 1067 | cfqq->allocated_slice = slice; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1068 | cfq_log_cfqq(cfqd, cfqq, "set_slice=%llu", cfqq->slice_end - now); |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1069 | } |
| 1070 | |
| 1071 | /* |
| 1072 | * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end |
| 1073 | * isn't valid until the first request from the dispatch is activated |
| 1074 | * and the slice time set. |
| 1075 | */ |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 1076 | static inline bool cfq_slice_used(struct cfq_queue *cfqq) |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1077 | { |
| 1078 | if (cfq_cfqq_slice_new(cfqq)) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 1079 | return false; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1080 | if (ktime_get_ns() < cfqq->slice_end) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 1081 | return false; |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1082 | |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 1083 | return true; |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1084 | } |
| 1085 | |
| 1086 | /* |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1087 | * 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] | 1088 | * 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] | 1089 | * behind the head is penalized and only allowed to a certain extent. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1091 | static struct request * |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 1092 | 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] | 1093 | { |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 1094 | sector_t s1, s2, d1 = 0, d2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | unsigned long back_max; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1096 | #define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */ |
| 1097 | #define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */ |
| 1098 | unsigned wrap = 0; /* bit mask: requests behind the disk head? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1100 | if (rq1 == NULL || rq1 == rq2) |
| 1101 | return rq2; |
| 1102 | if (rq2 == NULL) |
| 1103 | return rq1; |
Jens Axboe | 9c2c38a | 2005-08-24 14:57:54 +0200 | [diff] [blame] | 1104 | |
Namhyung Kim | 229836b | 2011-05-24 10:23:21 +0200 | [diff] [blame] | 1105 | if (rq_is_sync(rq1) != rq_is_sync(rq2)) |
| 1106 | return rq_is_sync(rq1) ? rq1 : rq2; |
| 1107 | |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 1108 | if ((rq1->cmd_flags ^ rq2->cmd_flags) & REQ_PRIO) |
| 1109 | return rq1->cmd_flags & REQ_PRIO ? rq1 : rq2; |
Jens Axboe | b53d1ed | 2011-08-19 08:34:48 +0200 | [diff] [blame] | 1110 | |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 1111 | s1 = blk_rq_pos(rq1); |
| 1112 | s2 = blk_rq_pos(rq2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | /* |
| 1115 | * by definition, 1KiB is 2 sectors |
| 1116 | */ |
| 1117 | back_max = cfqd->cfq_back_max * 2; |
| 1118 | |
| 1119 | /* |
| 1120 | * Strict one way elevator _except_ in the case where we allow |
| 1121 | * short backward seeks which are biased as twice the cost of a |
| 1122 | * similar forward seek. |
| 1123 | */ |
| 1124 | if (s1 >= last) |
| 1125 | d1 = s1 - last; |
| 1126 | else if (s1 + back_max >= last) |
| 1127 | d1 = (last - s1) * cfqd->cfq_back_penalty; |
| 1128 | else |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1129 | wrap |= CFQ_RQ1_WRAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
| 1131 | if (s2 >= last) |
| 1132 | d2 = s2 - last; |
| 1133 | else if (s2 + back_max >= last) |
| 1134 | d2 = (last - s2) * cfqd->cfq_back_penalty; |
| 1135 | else |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1136 | wrap |= CFQ_RQ2_WRAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | |
| 1138 | /* Found required data */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1140 | /* |
| 1141 | * By doing switch() on the bit mask "wrap" we avoid having to |
| 1142 | * check two variables for all permutations: --> faster! |
| 1143 | */ |
| 1144 | switch (wrap) { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1145 | case 0: /* common case for CFQ: rq1 and rq2 not wrapped */ |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1146 | if (d1 < d2) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1147 | return rq1; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1148 | else if (d2 < d1) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1149 | return rq2; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1150 | else { |
| 1151 | if (s1 >= s2) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1152 | return rq1; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1153 | else |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1154 | return rq2; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1155 | } |
| 1156 | |
| 1157 | case CFQ_RQ2_WRAP: |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1158 | return rq1; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1159 | case CFQ_RQ1_WRAP: |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1160 | return rq2; |
| 1161 | case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */ |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1162 | default: |
| 1163 | /* |
| 1164 | * Since both rqs are wrapped, |
| 1165 | * start with the one that's further behind head |
| 1166 | * (--> only *one* back seek required), |
| 1167 | * since back seek takes more time than forward. |
| 1168 | */ |
| 1169 | if (s1 <= s2) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1170 | return rq1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | else |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1172 | return rq2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | } |
| 1174 | } |
| 1175 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 1176 | /* |
| 1177 | * The below is leftmost cache rbtree addon |
| 1178 | */ |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 1179 | static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root) |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1180 | { |
Vivek Goyal | 615f025 | 2009-12-03 12:59:39 -0500 | [diff] [blame] | 1181 | /* Service tree is empty */ |
| 1182 | if (!root->count) |
| 1183 | return NULL; |
| 1184 | |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1185 | if (!root->left) |
| 1186 | root->left = rb_first(&root->rb); |
| 1187 | |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 1188 | if (root->left) |
| 1189 | return rb_entry(root->left, struct cfq_queue, rb_node); |
| 1190 | |
| 1191 | return NULL; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1192 | } |
| 1193 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1194 | static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root) |
| 1195 | { |
| 1196 | if (!root->left) |
| 1197 | root->left = rb_first(&root->rb); |
| 1198 | |
| 1199 | if (root->left) |
| 1200 | return rb_entry_cfqg(root->left); |
| 1201 | |
| 1202 | return NULL; |
| 1203 | } |
| 1204 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 1205 | static void rb_erase_init(struct rb_node *n, struct rb_root *root) |
| 1206 | { |
| 1207 | rb_erase(n, root); |
| 1208 | RB_CLEAR_NODE(n); |
| 1209 | } |
| 1210 | |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1211 | static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root) |
| 1212 | { |
| 1213 | if (root->left == n) |
| 1214 | root->left = NULL; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 1215 | rb_erase_init(n, &root->rb); |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 1216 | --root->count; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1217 | } |
| 1218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | /* |
| 1220 | * would be nice to take fifo expire time into account as well |
| 1221 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1222 | static struct request * |
| 1223 | cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
| 1224 | struct request *last) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | { |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1226 | struct rb_node *rbnext = rb_next(&last->rb_node); |
| 1227 | struct rb_node *rbprev = rb_prev(&last->rb_node); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1228 | struct request *next = NULL, *prev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1230 | BUG_ON(RB_EMPTY_NODE(&last->rb_node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | |
| 1232 | if (rbprev) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1233 | prev = rb_entry_rq(rbprev); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | if (rbnext) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1236 | next = rb_entry_rq(rbnext); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1237 | else { |
| 1238 | rbnext = rb_first(&cfqq->sort_list); |
| 1239 | if (rbnext && rbnext != &last->rb_node) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1240 | next = rb_entry_rq(rbnext); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1241 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 1243 | return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | } |
| 1245 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1246 | static u64 cfq_slice_offset(struct cfq_data *cfqd, |
| 1247 | struct cfq_queue *cfqq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | { |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 1249 | /* |
| 1250 | * just an approximation, should be ok. |
| 1251 | */ |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 1252 | return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) - |
Jens Axboe | 464191c | 2009-11-30 09:38:13 +0100 | [diff] [blame] | 1253 | cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio)); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 1254 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1256 | static inline s64 |
| 1257 | cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg) |
| 1258 | { |
| 1259 | return cfqg->vdisktime - st->min_vdisktime; |
| 1260 | } |
| 1261 | |
| 1262 | static void |
| 1263 | __cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg) |
| 1264 | { |
| 1265 | struct rb_node **node = &st->rb.rb_node; |
| 1266 | struct rb_node *parent = NULL; |
| 1267 | struct cfq_group *__cfqg; |
| 1268 | s64 key = cfqg_key(st, cfqg); |
| 1269 | int left = 1; |
| 1270 | |
| 1271 | while (*node != NULL) { |
| 1272 | parent = *node; |
| 1273 | __cfqg = rb_entry_cfqg(parent); |
| 1274 | |
| 1275 | if (key < cfqg_key(st, __cfqg)) |
| 1276 | node = &parent->rb_left; |
| 1277 | else { |
| 1278 | node = &parent->rb_right; |
| 1279 | left = 0; |
| 1280 | } |
| 1281 | } |
| 1282 | |
| 1283 | if (left) |
| 1284 | st->left = &cfqg->rb_node; |
| 1285 | |
| 1286 | rb_link_node(&cfqg->rb_node, parent, node); |
| 1287 | rb_insert_color(&cfqg->rb_node, &st->rb); |
| 1288 | } |
| 1289 | |
Toshiaki Makita | 7b5af5c | 2014-08-28 17:14:58 +0900 | [diff] [blame] | 1290 | /* |
| 1291 | * This has to be called only on activation of cfqg |
| 1292 | */ |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1293 | static void |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1294 | cfq_update_group_weight(struct cfq_group *cfqg) |
| 1295 | { |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1296 | if (cfqg->new_weight) { |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1297 | cfqg->weight = cfqg->new_weight; |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1298 | cfqg->new_weight = 0; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1299 | } |
Toshiaki Makita | e15693e | 2014-08-26 20:56:36 +0900 | [diff] [blame] | 1300 | } |
| 1301 | |
| 1302 | static void |
| 1303 | cfq_update_group_leaf_weight(struct cfq_group *cfqg) |
| 1304 | { |
| 1305 | BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node)); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1306 | |
| 1307 | if (cfqg->new_leaf_weight) { |
| 1308 | cfqg->leaf_weight = cfqg->new_leaf_weight; |
| 1309 | cfqg->new_leaf_weight = 0; |
| 1310 | } |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1311 | } |
| 1312 | |
| 1313 | static void |
| 1314 | cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg) |
| 1315 | { |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1316 | unsigned int vfr = 1 << CFQ_SERVICE_SHIFT; /* start with 1 */ |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1317 | struct cfq_group *pos = cfqg; |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1318 | struct cfq_group *parent; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1319 | bool propagate; |
| 1320 | |
| 1321 | /* add to the service tree */ |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1322 | BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node)); |
| 1323 | |
Toshiaki Makita | 7b5af5c | 2014-08-28 17:14:58 +0900 | [diff] [blame] | 1324 | /* |
| 1325 | * Update leaf_weight. We cannot update weight at this point |
| 1326 | * because cfqg might already have been activated and is |
| 1327 | * contributing its current weight to the parent's child_weight. |
| 1328 | */ |
Toshiaki Makita | e15693e | 2014-08-26 20:56:36 +0900 | [diff] [blame] | 1329 | cfq_update_group_leaf_weight(cfqg); |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1330 | __cfq_group_service_tree_add(st, cfqg); |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1331 | |
| 1332 | /* |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1333 | * Activate @cfqg and calculate the portion of vfraction @cfqg is |
| 1334 | * entitled to. vfraction is calculated by walking the tree |
| 1335 | * towards the root calculating the fraction it has at each level. |
| 1336 | * The compounded ratio is how much vfraction @cfqg owns. |
| 1337 | * |
| 1338 | * Start with the proportion tasks in this cfqg has against active |
| 1339 | * children cfqgs - its leaf_weight against children_weight. |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1340 | */ |
| 1341 | propagate = !pos->nr_active++; |
| 1342 | pos->children_weight += pos->leaf_weight; |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1343 | vfr = vfr * pos->leaf_weight / pos->children_weight; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1344 | |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1345 | /* |
| 1346 | * Compound ->weight walking up the tree. Both activation and |
| 1347 | * vfraction calculation are done in the same loop. Propagation |
| 1348 | * stops once an already activated node is met. vfraction |
| 1349 | * calculation should always continue to the root. |
| 1350 | */ |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1351 | while ((parent = cfqg_parent(pos))) { |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1352 | if (propagate) { |
Toshiaki Makita | e15693e | 2014-08-26 20:56:36 +0900 | [diff] [blame] | 1353 | cfq_update_group_weight(pos); |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1354 | propagate = !parent->nr_active++; |
| 1355 | parent->children_weight += pos->weight; |
| 1356 | } |
| 1357 | vfr = vfr * pos->weight / parent->children_weight; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1358 | pos = parent; |
| 1359 | } |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1360 | |
| 1361 | cfqg->vfraction = max_t(unsigned, vfr, 1); |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | static void |
| 1365 | 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] | 1366 | { |
| 1367 | struct cfq_rb_root *st = &cfqd->grp_service_tree; |
| 1368 | struct cfq_group *__cfqg; |
| 1369 | struct rb_node *n; |
| 1370 | |
| 1371 | cfqg->nr_cfqq++; |
Gui Jianfeng | 760701b | 2010-11-30 20:52:47 +0100 | [diff] [blame] | 1372 | if (!RB_EMPTY_NODE(&cfqg->rb_node)) |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1373 | return; |
| 1374 | |
| 1375 | /* |
| 1376 | * Currently put the group at the end. Later implement something |
| 1377 | * 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] | 1378 | * if group does not loose all if it was not continuously backlogged. |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1379 | */ |
| 1380 | n = rb_last(&st->rb); |
| 1381 | if (n) { |
| 1382 | __cfqg = rb_entry_cfqg(n); |
| 1383 | cfqg->vdisktime = __cfqg->vdisktime + CFQ_IDLE_DELAY; |
| 1384 | } else |
| 1385 | cfqg->vdisktime = st->min_vdisktime; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1386 | cfq_group_service_tree_add(st, cfqg); |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1387 | } |
| 1388 | |
| 1389 | static void |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1390 | cfq_group_service_tree_del(struct cfq_rb_root *st, struct cfq_group *cfqg) |
| 1391 | { |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1392 | struct cfq_group *pos = cfqg; |
| 1393 | bool propagate; |
| 1394 | |
| 1395 | /* |
| 1396 | * Undo activation from cfq_group_service_tree_add(). Deactivate |
| 1397 | * @cfqg and propagate deactivation upwards. |
| 1398 | */ |
| 1399 | propagate = !--pos->nr_active; |
| 1400 | pos->children_weight -= pos->leaf_weight; |
| 1401 | |
| 1402 | while (propagate) { |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1403 | struct cfq_group *parent = cfqg_parent(pos); |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1404 | |
| 1405 | /* @pos has 0 nr_active at this point */ |
| 1406 | WARN_ON_ONCE(pos->children_weight); |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1407 | pos->vfraction = 0; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1408 | |
| 1409 | if (!parent) |
| 1410 | break; |
| 1411 | |
| 1412 | propagate = !--parent->nr_active; |
| 1413 | parent->children_weight -= pos->weight; |
| 1414 | pos = parent; |
| 1415 | } |
| 1416 | |
| 1417 | /* remove from the service tree */ |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1418 | if (!RB_EMPTY_NODE(&cfqg->rb_node)) |
| 1419 | cfq_rb_erase(&cfqg->rb_node, st); |
| 1420 | } |
| 1421 | |
| 1422 | static void |
| 1423 | 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] | 1424 | { |
| 1425 | struct cfq_rb_root *st = &cfqd->grp_service_tree; |
| 1426 | |
| 1427 | BUG_ON(cfqg->nr_cfqq < 1); |
| 1428 | cfqg->nr_cfqq--; |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 1429 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1430 | /* If there are other cfq queues under this group, don't delete it */ |
| 1431 | if (cfqg->nr_cfqq) |
| 1432 | return; |
| 1433 | |
Vivek Goyal | 2868ef7 | 2009-12-03 12:59:48 -0500 | [diff] [blame] | 1434 | cfq_log_cfqg(cfqd, cfqg, "del_from_rr group"); |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1435 | cfq_group_service_tree_del(st, cfqg); |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 1436 | cfqg->saved_wl_slice = 0; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1437 | cfqg_stats_update_dequeue(cfqg); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1438 | } |
| 1439 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1440 | static inline u64 cfq_cfqq_slice_usage(struct cfq_queue *cfqq, |
| 1441 | u64 *unaccounted_time) |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1442 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1443 | u64 slice_used; |
| 1444 | u64 now = ktime_get_ns(); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1445 | |
| 1446 | /* |
| 1447 | * Queue got expired before even a single request completed or |
| 1448 | * got expired immediately after first request completion. |
| 1449 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1450 | if (!cfqq->slice_start || cfqq->slice_start == now) { |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1451 | /* |
| 1452 | * Also charge the seek time incurred to the group, otherwise |
| 1453 | * if there are mutiple queues in the group, each can dispatch |
| 1454 | * a single request on seeky media and cause lots of seek time |
| 1455 | * and group will never know it. |
| 1456 | */ |
Jan Kara | 0b31c10 | 2016-06-28 09:04:02 +0200 | [diff] [blame] | 1457 | slice_used = max_t(u64, (now - cfqq->dispatch_start), |
| 1458 | jiffies_to_nsecs(1)); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1459 | } else { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1460 | slice_used = now - cfqq->slice_start; |
Justin TerAvest | 167400d | 2011-03-12 16:54:00 +0100 | [diff] [blame] | 1461 | if (slice_used > cfqq->allocated_slice) { |
| 1462 | *unaccounted_time = slice_used - cfqq->allocated_slice; |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 1463 | slice_used = cfqq->allocated_slice; |
Justin TerAvest | 167400d | 2011-03-12 16:54:00 +0100 | [diff] [blame] | 1464 | } |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1465 | if (cfqq->slice_start > cfqq->dispatch_start) |
Justin TerAvest | 167400d | 2011-03-12 16:54:00 +0100 | [diff] [blame] | 1466 | *unaccounted_time += cfqq->slice_start - |
| 1467 | cfqq->dispatch_start; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1468 | } |
| 1469 | |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1470 | return slice_used; |
| 1471 | } |
| 1472 | |
| 1473 | 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] | 1474 | struct cfq_queue *cfqq) |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1475 | { |
| 1476 | struct cfq_rb_root *st = &cfqd->grp_service_tree; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1477 | u64 used_sl, charge, unaccounted_sl = 0; |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 1478 | int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg) |
| 1479 | - cfqg->service_tree_idle.count; |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1480 | unsigned int vfr; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1481 | u64 now = ktime_get_ns(); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1482 | |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 1483 | BUG_ON(nr_sync < 0); |
Justin TerAvest | 167400d | 2011-03-12 16:54:00 +0100 | [diff] [blame] | 1484 | used_sl = charge = cfq_cfqq_slice_usage(cfqq, &unaccounted_sl); |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 1485 | |
Vivek Goyal | 02b3508 | 2010-08-23 12:23:53 +0200 | [diff] [blame] | 1486 | if (iops_mode(cfqd)) |
| 1487 | charge = cfqq->slice_dispatch; |
| 1488 | else if (!cfq_cfqq_sync(cfqq) && !nr_sync) |
| 1489 | charge = cfqq->allocated_slice; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1490 | |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1491 | /* |
| 1492 | * Can't update vdisktime while on service tree and cfqg->vfraction |
| 1493 | * is valid only while on it. Cache vfr, leave the service tree, |
| 1494 | * update vdisktime and go back on. The re-addition to the tree |
| 1495 | * will also update the weights as necessary. |
| 1496 | */ |
| 1497 | vfr = cfqg->vfraction; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1498 | cfq_group_service_tree_del(st, cfqg); |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1499 | cfqg->vdisktime += cfqg_scale_charge(charge, vfr); |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1500 | cfq_group_service_tree_add(st, cfqg); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1501 | |
| 1502 | /* This group is being expired. Save the context */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1503 | if (cfqd->workload_expires > now) { |
| 1504 | cfqg->saved_wl_slice = cfqd->workload_expires - now; |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 1505 | cfqg->saved_wl_type = cfqd->serving_wl_type; |
| 1506 | cfqg->saved_wl_class = cfqd->serving_wl_class; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1507 | } else |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 1508 | cfqg->saved_wl_slice = 0; |
Vivek Goyal | 2868ef7 | 2009-12-03 12:59:48 -0500 | [diff] [blame] | 1509 | |
| 1510 | cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime, |
| 1511 | st->min_vdisktime); |
Joe Perches | fd16d26 | 2011-06-13 10:42:49 +0200 | [diff] [blame] | 1512 | cfq_log_cfqq(cfqq->cfqd, cfqq, |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1513 | "sl_used=%llu disp=%llu charge=%llu iops=%u sect=%lu", |
Joe Perches | fd16d26 | 2011-06-13 10:42:49 +0200 | [diff] [blame] | 1514 | used_sl, cfqq->slice_dispatch, charge, |
| 1515 | iops_mode(cfqd), cfqq->nr_sectors); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1516 | cfqg_stats_update_timeslice_used(cfqg, used_sl, unaccounted_sl); |
| 1517 | cfqg_stats_set_start_empty_time(cfqg); |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1518 | } |
| 1519 | |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 1520 | /** |
| 1521 | * cfq_init_cfqg_base - initialize base part of a cfq_group |
| 1522 | * @cfqg: cfq_group to initialize |
| 1523 | * |
| 1524 | * Initialize the base part which is used whether %CONFIG_CFQ_GROUP_IOSCHED |
| 1525 | * is enabled or not. |
| 1526 | */ |
| 1527 | static void cfq_init_cfqg_base(struct cfq_group *cfqg) |
| 1528 | { |
| 1529 | struct cfq_rb_root *st; |
| 1530 | int i, j; |
| 1531 | |
| 1532 | for_each_cfqg_st(cfqg, i, j, st) |
| 1533 | *st = CFQ_RB_ROOT; |
| 1534 | RB_CLEAR_NODE(&cfqg->rb_node); |
| 1535 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1536 | cfqg->ttime.last_end_request = ktime_get_ns(); |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 1537 | } |
| 1538 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1539 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1540 | static int __cfq_set_weight(struct cgroup_subsys_state *css, u64 val, |
| 1541 | bool on_dfl, bool reset_dev, bool is_leaf_weight); |
| 1542 | |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1543 | static void cfqg_stats_exit(struct cfqg_stats *stats) |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 1544 | { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1545 | blkg_rwstat_exit(&stats->merged); |
| 1546 | blkg_rwstat_exit(&stats->service_time); |
| 1547 | blkg_rwstat_exit(&stats->wait_time); |
| 1548 | blkg_rwstat_exit(&stats->queued); |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1549 | blkg_stat_exit(&stats->time); |
| 1550 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
| 1551 | blkg_stat_exit(&stats->unaccounted_time); |
| 1552 | blkg_stat_exit(&stats->avg_queue_size_sum); |
| 1553 | blkg_stat_exit(&stats->avg_queue_size_samples); |
| 1554 | blkg_stat_exit(&stats->dequeue); |
| 1555 | blkg_stat_exit(&stats->group_wait_time); |
| 1556 | blkg_stat_exit(&stats->idle_time); |
| 1557 | blkg_stat_exit(&stats->empty_time); |
| 1558 | #endif |
| 1559 | } |
| 1560 | |
| 1561 | static int cfqg_stats_init(struct cfqg_stats *stats, gfp_t gfp) |
| 1562 | { |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 1563 | if (blkg_rwstat_init(&stats->merged, gfp) || |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1564 | blkg_rwstat_init(&stats->service_time, gfp) || |
| 1565 | blkg_rwstat_init(&stats->wait_time, gfp) || |
| 1566 | blkg_rwstat_init(&stats->queued, gfp) || |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1567 | blkg_stat_init(&stats->time, gfp)) |
| 1568 | goto err; |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 1569 | |
| 1570 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1571 | if (blkg_stat_init(&stats->unaccounted_time, gfp) || |
| 1572 | blkg_stat_init(&stats->avg_queue_size_sum, gfp) || |
| 1573 | blkg_stat_init(&stats->avg_queue_size_samples, gfp) || |
| 1574 | blkg_stat_init(&stats->dequeue, gfp) || |
| 1575 | blkg_stat_init(&stats->group_wait_time, gfp) || |
| 1576 | blkg_stat_init(&stats->idle_time, gfp) || |
| 1577 | blkg_stat_init(&stats->empty_time, gfp)) |
| 1578 | goto err; |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 1579 | #endif |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1580 | return 0; |
| 1581 | err: |
| 1582 | cfqg_stats_exit(stats); |
| 1583 | return -ENOMEM; |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 1584 | } |
| 1585 | |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 1586 | static struct blkcg_policy_data *cfq_cpd_alloc(gfp_t gfp) |
| 1587 | { |
| 1588 | struct cfq_group_data *cgd; |
| 1589 | |
Tejun Heo | ebc4ff6 | 2016-11-10 11:16:37 -0500 | [diff] [blame] | 1590 | cgd = kzalloc(sizeof(*cgd), gfp); |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 1591 | if (!cgd) |
| 1592 | return NULL; |
| 1593 | return &cgd->cpd; |
| 1594 | } |
| 1595 | |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 1596 | static void cfq_cpd_init(struct blkcg_policy_data *cpd) |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1597 | { |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 1598 | struct cfq_group_data *cgd = cpd_to_cfqgd(cpd); |
Tejun Heo | 9e10a13 | 2015-09-18 11:56:28 -0400 | [diff] [blame] | 1599 | unsigned int weight = cgroup_subsys_on_dfl(io_cgrp_subsys) ? |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1600 | CGROUP_WEIGHT_DFL : CFQ_WEIGHT_LEGACY_DFL; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1601 | |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1602 | if (cpd_to_blkcg(cpd) == &blkcg_root) |
| 1603 | weight *= 2; |
| 1604 | |
| 1605 | cgd->weight = weight; |
| 1606 | cgd->leaf_weight = weight; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1607 | } |
| 1608 | |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 1609 | static void cfq_cpd_free(struct blkcg_policy_data *cpd) |
| 1610 | { |
| 1611 | kfree(cpd_to_cfqgd(cpd)); |
| 1612 | } |
| 1613 | |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1614 | static void cfq_cpd_bind(struct blkcg_policy_data *cpd) |
| 1615 | { |
| 1616 | struct blkcg *blkcg = cpd_to_blkcg(cpd); |
Tejun Heo | 9e10a13 | 2015-09-18 11:56:28 -0400 | [diff] [blame] | 1617 | bool on_dfl = cgroup_subsys_on_dfl(io_cgrp_subsys); |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1618 | unsigned int weight = on_dfl ? CGROUP_WEIGHT_DFL : CFQ_WEIGHT_LEGACY_DFL; |
| 1619 | |
| 1620 | if (blkcg == &blkcg_root) |
| 1621 | weight *= 2; |
| 1622 | |
| 1623 | WARN_ON_ONCE(__cfq_set_weight(&blkcg->css, weight, on_dfl, true, false)); |
| 1624 | WARN_ON_ONCE(__cfq_set_weight(&blkcg->css, weight, on_dfl, true, true)); |
| 1625 | } |
| 1626 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1627 | static struct blkg_policy_data *cfq_pd_alloc(gfp_t gfp, int node) |
| 1628 | { |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 1629 | struct cfq_group *cfqg; |
| 1630 | |
| 1631 | cfqg = kzalloc_node(sizeof(*cfqg), gfp, node); |
| 1632 | if (!cfqg) |
| 1633 | return NULL; |
| 1634 | |
| 1635 | cfq_init_cfqg_base(cfqg); |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1636 | if (cfqg_stats_init(&cfqg->stats, gfp)) { |
| 1637 | kfree(cfqg); |
| 1638 | return NULL; |
| 1639 | } |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 1640 | |
| 1641 | return &cfqg->pd; |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1642 | } |
| 1643 | |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1644 | static void cfq_pd_init(struct blkg_policy_data *pd) |
Vivek Goyal | f469a7b | 2011-05-19 15:38:23 -0400 | [diff] [blame] | 1645 | { |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1646 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
| 1647 | struct cfq_group_data *cgd = blkcg_to_cfqgd(pd->blkg->blkcg); |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1648 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1649 | cfqg->weight = cgd->weight; |
| 1650 | cfqg->leaf_weight = cgd->leaf_weight; |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1651 | } |
| 1652 | |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1653 | static void cfq_pd_offline(struct blkg_policy_data *pd) |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1654 | { |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1655 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 1656 | int i; |
| 1657 | |
| 1658 | for (i = 0; i < IOPRIO_BE_NR; i++) { |
| 1659 | if (cfqg->async_cfqq[0][i]) |
| 1660 | cfq_put_queue(cfqg->async_cfqq[0][i]); |
| 1661 | if (cfqg->async_cfqq[1][i]) |
| 1662 | cfq_put_queue(cfqg->async_cfqq[1][i]); |
| 1663 | } |
| 1664 | |
| 1665 | if (cfqg->async_idle_cfqq) |
| 1666 | cfq_put_queue(cfqg->async_idle_cfqq); |
| 1667 | |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1668 | /* |
| 1669 | * @blkg is going offline and will be ignored by |
| 1670 | * blkg_[rw]stat_recursive_sum(). Transfer stats to the parent so |
| 1671 | * that they don't get lost. If IOs complete after this point, the |
| 1672 | * stats for them will be lost. Oh well... |
| 1673 | */ |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 1674 | cfqg_stats_xfer_dead(cfqg); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1675 | } |
| 1676 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1677 | static void cfq_pd_free(struct blkg_policy_data *pd) |
| 1678 | { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1679 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
| 1680 | |
| 1681 | cfqg_stats_exit(&cfqg->stats); |
| 1682 | return kfree(cfqg); |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1683 | } |
| 1684 | |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1685 | static void cfq_pd_reset_stats(struct blkg_policy_data *pd) |
Tejun Heo | 689665a | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1686 | { |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1687 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
Tejun Heo | 689665a | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1688 | |
| 1689 | cfqg_stats_reset(&cfqg->stats); |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1690 | } |
| 1691 | |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 1692 | static struct cfq_group *cfq_lookup_cfqg(struct cfq_data *cfqd, |
| 1693 | struct blkcg *blkcg) |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1694 | { |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 1695 | struct blkcg_gq *blkg; |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1696 | |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 1697 | blkg = blkg_lookup(blkcg, cfqd->queue); |
| 1698 | if (likely(blkg)) |
| 1699 | return blkg_to_cfqg(blkg); |
| 1700 | return NULL; |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1701 | } |
| 1702 | |
| 1703 | static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) |
| 1704 | { |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1705 | cfqq->cfqg = cfqg; |
Vivek Goyal | b1c3576 | 2009-12-03 12:59:47 -0500 | [diff] [blame] | 1706 | /* cfqq reference on cfqg */ |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 1707 | cfqg_get(cfqg); |
Vivek Goyal | b1c3576 | 2009-12-03 12:59:47 -0500 | [diff] [blame] | 1708 | } |
| 1709 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1710 | static u64 cfqg_prfill_weight_device(struct seq_file *sf, |
| 1711 | struct blkg_policy_data *pd, int off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1712 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1713 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1714 | |
| 1715 | if (!cfqg->dev_weight) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1716 | return 0; |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1717 | return __blkg_prfill_u64(sf, pd, cfqg->dev_weight); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1718 | } |
| 1719 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1720 | static int cfqg_print_weight_device(struct seq_file *sf, void *v) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1721 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1722 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 1723 | cfqg_prfill_weight_device, &blkcg_policy_cfq, |
| 1724 | 0, false); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1725 | return 0; |
| 1726 | } |
| 1727 | |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1728 | static u64 cfqg_prfill_leaf_weight_device(struct seq_file *sf, |
| 1729 | struct blkg_policy_data *pd, int off) |
| 1730 | { |
| 1731 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
| 1732 | |
| 1733 | if (!cfqg->dev_leaf_weight) |
| 1734 | return 0; |
| 1735 | return __blkg_prfill_u64(sf, pd, cfqg->dev_leaf_weight); |
| 1736 | } |
| 1737 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1738 | static int cfqg_print_leaf_weight_device(struct seq_file *sf, void *v) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1739 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1740 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 1741 | cfqg_prfill_leaf_weight_device, &blkcg_policy_cfq, |
| 1742 | 0, false); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1743 | return 0; |
| 1744 | } |
| 1745 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1746 | static int cfq_print_weight(struct seq_file *sf, void *v) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1747 | { |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1748 | struct blkcg *blkcg = css_to_blkcg(seq_css(sf)); |
Jens Axboe | 9470e4a | 2015-06-19 10:19:36 -0600 | [diff] [blame] | 1749 | struct cfq_group_data *cgd = blkcg_to_cfqgd(blkcg); |
| 1750 | unsigned int val = 0; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1751 | |
Jens Axboe | 9470e4a | 2015-06-19 10:19:36 -0600 | [diff] [blame] | 1752 | if (cgd) |
| 1753 | val = cgd->weight; |
| 1754 | |
| 1755 | seq_printf(sf, "%u\n", val); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1756 | return 0; |
| 1757 | } |
| 1758 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1759 | static int cfq_print_leaf_weight(struct seq_file *sf, void *v) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1760 | { |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1761 | struct blkcg *blkcg = css_to_blkcg(seq_css(sf)); |
Jens Axboe | 9470e4a | 2015-06-19 10:19:36 -0600 | [diff] [blame] | 1762 | struct cfq_group_data *cgd = blkcg_to_cfqgd(blkcg); |
| 1763 | unsigned int val = 0; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1764 | |
Jens Axboe | 9470e4a | 2015-06-19 10:19:36 -0600 | [diff] [blame] | 1765 | if (cgd) |
| 1766 | val = cgd->leaf_weight; |
| 1767 | |
| 1768 | seq_printf(sf, "%u\n", val); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1769 | return 0; |
| 1770 | } |
| 1771 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1772 | static ssize_t __cfqg_set_weight_device(struct kernfs_open_file *of, |
| 1773 | char *buf, size_t nbytes, loff_t off, |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1774 | bool on_dfl, bool is_leaf_weight) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1775 | { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1776 | unsigned int min = on_dfl ? CGROUP_WEIGHT_MIN : CFQ_WEIGHT_LEGACY_MIN; |
| 1777 | unsigned int max = on_dfl ? CGROUP_WEIGHT_MAX : CFQ_WEIGHT_LEGACY_MAX; |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1778 | struct blkcg *blkcg = css_to_blkcg(of_css(of)); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1779 | struct blkg_conf_ctx ctx; |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1780 | struct cfq_group *cfqg; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1781 | struct cfq_group_data *cfqgd; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1782 | int ret; |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1783 | u64 v; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1784 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1785 | ret = blkg_conf_prep(blkcg, &blkcg_policy_cfq, buf, &ctx); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1786 | if (ret) |
| 1787 | return ret; |
| 1788 | |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1789 | if (sscanf(ctx.body, "%llu", &v) == 1) { |
| 1790 | /* require "default" on dfl */ |
| 1791 | ret = -ERANGE; |
| 1792 | if (!v && on_dfl) |
| 1793 | goto out_finish; |
| 1794 | } else if (!strcmp(strim(ctx.body), "default")) { |
| 1795 | v = 0; |
| 1796 | } else { |
| 1797 | ret = -EINVAL; |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1798 | goto out_finish; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1799 | } |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1800 | |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1801 | cfqg = blkg_to_cfqg(ctx.blkg); |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1802 | cfqgd = blkcg_to_cfqgd(blkcg); |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1803 | |
Tejun Heo | 20386ce | 2015-08-18 14:55:28 -0700 | [diff] [blame] | 1804 | ret = -ERANGE; |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1805 | if (!v || (v >= min && v <= max)) { |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1806 | if (!is_leaf_weight) { |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1807 | cfqg->dev_weight = v; |
| 1808 | cfqg->new_weight = v ?: cfqgd->weight; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1809 | } else { |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1810 | cfqg->dev_leaf_weight = v; |
| 1811 | cfqg->new_leaf_weight = v ?: cfqgd->leaf_weight; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1812 | } |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1813 | ret = 0; |
| 1814 | } |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1815 | out_finish: |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1816 | blkg_conf_finish(&ctx); |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1817 | return ret ?: nbytes; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1818 | } |
| 1819 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1820 | static ssize_t cfqg_set_weight_device(struct kernfs_open_file *of, |
| 1821 | char *buf, size_t nbytes, loff_t off) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1822 | { |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1823 | return __cfqg_set_weight_device(of, buf, nbytes, off, false, false); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1824 | } |
| 1825 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1826 | static ssize_t cfqg_set_leaf_weight_device(struct kernfs_open_file *of, |
| 1827 | char *buf, size_t nbytes, loff_t off) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1828 | { |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1829 | return __cfqg_set_weight_device(of, buf, nbytes, off, false, true); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1830 | } |
| 1831 | |
Tejun Heo | dd165eb | 2015-08-18 14:55:33 -0700 | [diff] [blame] | 1832 | static int __cfq_set_weight(struct cgroup_subsys_state *css, u64 val, |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1833 | bool on_dfl, bool reset_dev, bool is_leaf_weight) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1834 | { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1835 | unsigned int min = on_dfl ? CGROUP_WEIGHT_MIN : CFQ_WEIGHT_LEGACY_MIN; |
| 1836 | unsigned int max = on_dfl ? CGROUP_WEIGHT_MAX : CFQ_WEIGHT_LEGACY_MAX; |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 1837 | struct blkcg *blkcg = css_to_blkcg(css); |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1838 | struct blkcg_gq *blkg; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1839 | struct cfq_group_data *cfqgd; |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1840 | int ret = 0; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1841 | |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1842 | if (val < min || val > max) |
| 1843 | return -ERANGE; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1844 | |
| 1845 | spin_lock_irq(&blkcg->lock); |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1846 | cfqgd = blkcg_to_cfqgd(blkcg); |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1847 | if (!cfqgd) { |
| 1848 | ret = -EINVAL; |
| 1849 | goto out; |
| 1850 | } |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1851 | |
| 1852 | if (!is_leaf_weight) |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1853 | cfqgd->weight = val; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1854 | else |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1855 | cfqgd->leaf_weight = val; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1856 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1857 | hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) { |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1858 | struct cfq_group *cfqg = blkg_to_cfqg(blkg); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1859 | |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1860 | if (!cfqg) |
| 1861 | continue; |
| 1862 | |
| 1863 | if (!is_leaf_weight) { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1864 | if (reset_dev) |
| 1865 | cfqg->dev_weight = 0; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1866 | if (!cfqg->dev_weight) |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1867 | cfqg->new_weight = cfqgd->weight; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1868 | } else { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1869 | if (reset_dev) |
| 1870 | cfqg->dev_leaf_weight = 0; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1871 | if (!cfqg->dev_leaf_weight) |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1872 | cfqg->new_leaf_weight = cfqgd->leaf_weight; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1873 | } |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1874 | } |
| 1875 | |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1876 | out: |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1877 | spin_unlock_irq(&blkcg->lock); |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1878 | return ret; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1879 | } |
| 1880 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 1881 | static int cfq_set_weight(struct cgroup_subsys_state *css, struct cftype *cft, |
| 1882 | u64 val) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1883 | { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1884 | return __cfq_set_weight(css, val, false, false, false); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1885 | } |
| 1886 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 1887 | static int cfq_set_leaf_weight(struct cgroup_subsys_state *css, |
| 1888 | struct cftype *cft, u64 val) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1889 | { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1890 | return __cfq_set_weight(css, val, false, false, true); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1891 | } |
| 1892 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1893 | static int cfqg_print_stat(struct seq_file *sf, void *v) |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1894 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1895 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), blkg_prfill_stat, |
| 1896 | &blkcg_policy_cfq, seq_cft(sf)->private, false); |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1897 | return 0; |
| 1898 | } |
| 1899 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1900 | static int cfqg_print_rwstat(struct seq_file *sf, void *v) |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1901 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1902 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), blkg_prfill_rwstat, |
| 1903 | &blkcg_policy_cfq, seq_cft(sf)->private, true); |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1904 | return 0; |
| 1905 | } |
| 1906 | |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1907 | static u64 cfqg_prfill_stat_recursive(struct seq_file *sf, |
| 1908 | struct blkg_policy_data *pd, int off) |
| 1909 | { |
Tejun Heo | f12c74c | 2015-08-18 14:55:23 -0700 | [diff] [blame] | 1910 | u64 sum = blkg_stat_recursive_sum(pd_to_blkg(pd), |
| 1911 | &blkcg_policy_cfq, off); |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1912 | return __blkg_prfill_u64(sf, pd, sum); |
| 1913 | } |
| 1914 | |
| 1915 | static u64 cfqg_prfill_rwstat_recursive(struct seq_file *sf, |
| 1916 | struct blkg_policy_data *pd, int off) |
| 1917 | { |
Tejun Heo | f12c74c | 2015-08-18 14:55:23 -0700 | [diff] [blame] | 1918 | struct blkg_rwstat sum = blkg_rwstat_recursive_sum(pd_to_blkg(pd), |
| 1919 | &blkcg_policy_cfq, off); |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1920 | return __blkg_prfill_rwstat(sf, pd, &sum); |
| 1921 | } |
| 1922 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1923 | static int cfqg_print_stat_recursive(struct seq_file *sf, void *v) |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1924 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1925 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 1926 | cfqg_prfill_stat_recursive, &blkcg_policy_cfq, |
| 1927 | seq_cft(sf)->private, false); |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1928 | return 0; |
| 1929 | } |
| 1930 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1931 | static int cfqg_print_rwstat_recursive(struct seq_file *sf, void *v) |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1932 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1933 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 1934 | cfqg_prfill_rwstat_recursive, &blkcg_policy_cfq, |
| 1935 | seq_cft(sf)->private, true); |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1936 | return 0; |
| 1937 | } |
| 1938 | |
Tejun Heo | 702747c | 2015-08-18 14:55:25 -0700 | [diff] [blame] | 1939 | static u64 cfqg_prfill_sectors(struct seq_file *sf, struct blkg_policy_data *pd, |
| 1940 | int off) |
| 1941 | { |
| 1942 | u64 sum = blkg_rwstat_total(&pd->blkg->stat_bytes); |
| 1943 | |
| 1944 | return __blkg_prfill_u64(sf, pd, sum >> 9); |
| 1945 | } |
| 1946 | |
| 1947 | static int cfqg_print_stat_sectors(struct seq_file *sf, void *v) |
| 1948 | { |
| 1949 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 1950 | cfqg_prfill_sectors, &blkcg_policy_cfq, 0, false); |
| 1951 | return 0; |
| 1952 | } |
| 1953 | |
| 1954 | static u64 cfqg_prfill_sectors_recursive(struct seq_file *sf, |
| 1955 | struct blkg_policy_data *pd, int off) |
| 1956 | { |
| 1957 | struct blkg_rwstat tmp = blkg_rwstat_recursive_sum(pd->blkg, NULL, |
| 1958 | offsetof(struct blkcg_gq, stat_bytes)); |
| 1959 | u64 sum = atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_READ]) + |
| 1960 | atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_WRITE]); |
| 1961 | |
| 1962 | return __blkg_prfill_u64(sf, pd, sum >> 9); |
| 1963 | } |
| 1964 | |
| 1965 | static int cfqg_print_stat_sectors_recursive(struct seq_file *sf, void *v) |
| 1966 | { |
| 1967 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 1968 | cfqg_prfill_sectors_recursive, &blkcg_policy_cfq, 0, |
| 1969 | false); |
| 1970 | return 0; |
| 1971 | } |
| 1972 | |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1973 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1974 | static u64 cfqg_prfill_avg_queue_size(struct seq_file *sf, |
| 1975 | struct blkg_policy_data *pd, int off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1976 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1977 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1978 | u64 samples = blkg_stat_read(&cfqg->stats.avg_queue_size_samples); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1979 | u64 v = 0; |
| 1980 | |
| 1981 | if (samples) { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1982 | v = blkg_stat_read(&cfqg->stats.avg_queue_size_sum); |
Anatol Pomozov | f3cff25 | 2013-09-22 12:43:47 -0600 | [diff] [blame] | 1983 | v = div64_u64(v, samples); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1984 | } |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1985 | __blkg_prfill_u64(sf, pd, v); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1986 | return 0; |
| 1987 | } |
| 1988 | |
| 1989 | /* print avg_queue_size */ |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1990 | static int cfqg_print_avg_queue_size(struct seq_file *sf, void *v) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1991 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1992 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 1993 | cfqg_prfill_avg_queue_size, &blkcg_policy_cfq, |
| 1994 | 0, false); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1995 | return 0; |
| 1996 | } |
| 1997 | #endif /* CONFIG_DEBUG_BLK_CGROUP */ |
| 1998 | |
Tejun Heo | 880f50e | 2015-08-18 14:55:30 -0700 | [diff] [blame] | 1999 | static struct cftype cfq_blkcg_legacy_files[] = { |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2000 | /* on root, weight is mapped to leaf_weight */ |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2001 | { |
| 2002 | .name = "weight_device", |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2003 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2004 | .seq_show = cfqg_print_leaf_weight_device, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2005 | .write = cfqg_set_leaf_weight_device, |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2006 | }, |
| 2007 | { |
| 2008 | .name = "weight", |
| 2009 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2010 | .seq_show = cfq_print_leaf_weight, |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2011 | .write_u64 = cfq_set_leaf_weight, |
| 2012 | }, |
| 2013 | |
| 2014 | /* no such mapping necessary for !roots */ |
| 2015 | { |
| 2016 | .name = "weight_device", |
| 2017 | .flags = CFTYPE_NOT_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2018 | .seq_show = cfqg_print_weight_device, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2019 | .write = cfqg_set_weight_device, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2020 | }, |
| 2021 | { |
| 2022 | .name = "weight", |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 2023 | .flags = CFTYPE_NOT_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2024 | .seq_show = cfq_print_weight, |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2025 | .write_u64 = cfq_set_weight, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2026 | }, |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2027 | |
| 2028 | { |
| 2029 | .name = "leaf_weight_device", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2030 | .seq_show = cfqg_print_leaf_weight_device, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2031 | .write = cfqg_set_leaf_weight_device, |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 2032 | }, |
| 2033 | { |
| 2034 | .name = "leaf_weight", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2035 | .seq_show = cfq_print_leaf_weight, |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 2036 | .write_u64 = cfq_set_leaf_weight, |
| 2037 | }, |
| 2038 | |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2039 | /* statistics, covers only the tasks in the cfqg */ |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2040 | { |
| 2041 | .name = "time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2042 | .private = offsetof(struct cfq_group, stats.time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2043 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2044 | }, |
| 2045 | { |
| 2046 | .name = "sectors", |
Tejun Heo | 702747c | 2015-08-18 14:55:25 -0700 | [diff] [blame] | 2047 | .seq_show = cfqg_print_stat_sectors, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2048 | }, |
| 2049 | { |
| 2050 | .name = "io_service_bytes", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 2051 | .private = (unsigned long)&blkcg_policy_cfq, |
| 2052 | .seq_show = blkg_print_stat_bytes, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2053 | }, |
| 2054 | { |
| 2055 | .name = "io_serviced", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 2056 | .private = (unsigned long)&blkcg_policy_cfq, |
| 2057 | .seq_show = blkg_print_stat_ios, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2058 | }, |
| 2059 | { |
| 2060 | .name = "io_service_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2061 | .private = offsetof(struct cfq_group, stats.service_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2062 | .seq_show = cfqg_print_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2063 | }, |
| 2064 | { |
| 2065 | .name = "io_wait_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2066 | .private = offsetof(struct cfq_group, stats.wait_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2067 | .seq_show = cfqg_print_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2068 | }, |
| 2069 | { |
| 2070 | .name = "io_merged", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2071 | .private = offsetof(struct cfq_group, stats.merged), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2072 | .seq_show = cfqg_print_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2073 | }, |
| 2074 | { |
| 2075 | .name = "io_queued", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2076 | .private = offsetof(struct cfq_group, stats.queued), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2077 | .seq_show = cfqg_print_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2078 | }, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2079 | |
| 2080 | /* the same statictics which cover the cfqg and its descendants */ |
| 2081 | { |
| 2082 | .name = "time_recursive", |
| 2083 | .private = offsetof(struct cfq_group, stats.time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2084 | .seq_show = cfqg_print_stat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2085 | }, |
| 2086 | { |
| 2087 | .name = "sectors_recursive", |
Tejun Heo | 702747c | 2015-08-18 14:55:25 -0700 | [diff] [blame] | 2088 | .seq_show = cfqg_print_stat_sectors_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2089 | }, |
| 2090 | { |
| 2091 | .name = "io_service_bytes_recursive", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 2092 | .private = (unsigned long)&blkcg_policy_cfq, |
| 2093 | .seq_show = blkg_print_stat_bytes_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2094 | }, |
| 2095 | { |
| 2096 | .name = "io_serviced_recursive", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 2097 | .private = (unsigned long)&blkcg_policy_cfq, |
| 2098 | .seq_show = blkg_print_stat_ios_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2099 | }, |
| 2100 | { |
| 2101 | .name = "io_service_time_recursive", |
| 2102 | .private = offsetof(struct cfq_group, stats.service_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2103 | .seq_show = cfqg_print_rwstat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2104 | }, |
| 2105 | { |
| 2106 | .name = "io_wait_time_recursive", |
| 2107 | .private = offsetof(struct cfq_group, stats.wait_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2108 | .seq_show = cfqg_print_rwstat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2109 | }, |
| 2110 | { |
| 2111 | .name = "io_merged_recursive", |
| 2112 | .private = offsetof(struct cfq_group, stats.merged), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2113 | .seq_show = cfqg_print_rwstat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2114 | }, |
| 2115 | { |
| 2116 | .name = "io_queued_recursive", |
| 2117 | .private = offsetof(struct cfq_group, stats.queued), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2118 | .seq_show = cfqg_print_rwstat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2119 | }, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2120 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
| 2121 | { |
| 2122 | .name = "avg_queue_size", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2123 | .seq_show = cfqg_print_avg_queue_size, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2124 | }, |
| 2125 | { |
| 2126 | .name = "group_wait_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2127 | .private = offsetof(struct cfq_group, stats.group_wait_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2128 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2129 | }, |
| 2130 | { |
| 2131 | .name = "idle_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2132 | .private = offsetof(struct cfq_group, stats.idle_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2133 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2134 | }, |
| 2135 | { |
| 2136 | .name = "empty_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2137 | .private = offsetof(struct cfq_group, stats.empty_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2138 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2139 | }, |
| 2140 | { |
| 2141 | .name = "dequeue", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2142 | .private = offsetof(struct cfq_group, stats.dequeue), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2143 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2144 | }, |
| 2145 | { |
| 2146 | .name = "unaccounted_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2147 | .private = offsetof(struct cfq_group, stats.unaccounted_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2148 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2149 | }, |
| 2150 | #endif /* CONFIG_DEBUG_BLK_CGROUP */ |
| 2151 | { } /* terminate */ |
| 2152 | }; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 2153 | |
| 2154 | static int cfq_print_weight_on_dfl(struct seq_file *sf, void *v) |
| 2155 | { |
| 2156 | struct blkcg *blkcg = css_to_blkcg(seq_css(sf)); |
| 2157 | struct cfq_group_data *cgd = blkcg_to_cfqgd(blkcg); |
| 2158 | |
| 2159 | seq_printf(sf, "default %u\n", cgd->weight); |
| 2160 | blkcg_print_blkgs(sf, blkcg, cfqg_prfill_weight_device, |
| 2161 | &blkcg_policy_cfq, 0, false); |
| 2162 | return 0; |
| 2163 | } |
| 2164 | |
| 2165 | static ssize_t cfq_set_weight_on_dfl(struct kernfs_open_file *of, |
| 2166 | char *buf, size_t nbytes, loff_t off) |
| 2167 | { |
| 2168 | char *endp; |
| 2169 | int ret; |
| 2170 | u64 v; |
| 2171 | |
| 2172 | buf = strim(buf); |
| 2173 | |
| 2174 | /* "WEIGHT" or "default WEIGHT" sets the default weight */ |
| 2175 | v = simple_strtoull(buf, &endp, 0); |
| 2176 | if (*endp == '\0' || sscanf(buf, "default %llu", &v) == 1) { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 2177 | ret = __cfq_set_weight(of_css(of), v, true, false, false); |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 2178 | return ret ?: nbytes; |
| 2179 | } |
| 2180 | |
| 2181 | /* "MAJ:MIN WEIGHT" */ |
| 2182 | return __cfqg_set_weight_device(of, buf, nbytes, off, true, false); |
| 2183 | } |
| 2184 | |
| 2185 | static struct cftype cfq_blkcg_files[] = { |
| 2186 | { |
| 2187 | .name = "weight", |
| 2188 | .flags = CFTYPE_NOT_ON_ROOT, |
| 2189 | .seq_show = cfq_print_weight_on_dfl, |
| 2190 | .write = cfq_set_weight_on_dfl, |
| 2191 | }, |
| 2192 | { } /* terminate */ |
| 2193 | }; |
| 2194 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2195 | #else /* GROUP_IOSCHED */ |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 2196 | static struct cfq_group *cfq_lookup_cfqg(struct cfq_data *cfqd, |
| 2197 | struct blkcg *blkcg) |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2198 | { |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 2199 | return cfqd->root_group; |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2200 | } |
Vivek Goyal | 7f1dc8a | 2010-04-21 17:44:16 +0200 | [diff] [blame] | 2201 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2202 | static inline void |
| 2203 | cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) { |
| 2204 | cfqq->cfqg = cfqg; |
| 2205 | } |
| 2206 | |
| 2207 | #endif /* GROUP_IOSCHED */ |
| 2208 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2209 | /* |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2210 | * The cfqd->service_trees holds all pending cfq_queue's that have |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2211 | * requests waiting to be processed. It is sorted in the order that |
| 2212 | * we will service the queues. |
| 2213 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2214 | 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] | 2215 | bool add_front) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2216 | { |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2217 | struct rb_node **p, *parent; |
| 2218 | struct cfq_queue *__cfqq; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2219 | u64 rb_key; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2220 | struct cfq_rb_root *st; |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2221 | int left; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 2222 | int new_cfqq = 1; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2223 | u64 now = ktime_get_ns(); |
Vivek Goyal | ae30c28 | 2009-12-03 12:59:55 -0500 | [diff] [blame] | 2224 | |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2225 | st = st_for(cfqq->cfqg, cfqq_class(cfqq), cfqq_type(cfqq)); |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2226 | if (cfq_class_idle(cfqq)) { |
| 2227 | rb_key = CFQ_IDLE_DELAY; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2228 | parent = rb_last(&st->rb); |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2229 | if (parent && parent != &cfqq->rb_node) { |
| 2230 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); |
| 2231 | rb_key += __cfqq->rb_key; |
| 2232 | } else |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2233 | rb_key += now; |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2234 | } else if (!add_front) { |
Jens Axboe | b9c8946 | 2009-10-06 20:53:44 +0200 | [diff] [blame] | 2235 | /* |
| 2236 | * Get our rb key offset. Subtract any residual slice |
| 2237 | * value carried from last service. A negative resid |
| 2238 | * count indicates slice overrun, and this should position |
| 2239 | * the next service time further away in the tree. |
| 2240 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2241 | rb_key = cfq_slice_offset(cfqd, cfqq) + now; |
Jens Axboe | b9c8946 | 2009-10-06 20:53:44 +0200 | [diff] [blame] | 2242 | rb_key -= cfqq->slice_resid; |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2243 | cfqq->slice_resid = 0; |
Corrado Zoccolo | 48e025e | 2009-10-05 08:49:23 +0200 | [diff] [blame] | 2244 | } else { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2245 | rb_key = -NSEC_PER_SEC; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2246 | __cfqq = cfq_rb_first(st); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2247 | rb_key += __cfqq ? __cfqq->rb_key : now; |
Corrado Zoccolo | 48e025e | 2009-10-05 08:49:23 +0200 | [diff] [blame] | 2248 | } |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2249 | |
| 2250 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) { |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 2251 | new_cfqq = 0; |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 2252 | /* |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2253 | * same position, nothing more to do |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 2254 | */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2255 | if (rb_key == cfqq->rb_key && cfqq->service_tree == st) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2256 | return; |
Jens Axboe | 53b03744 | 2006-07-28 09:48:51 +0200 | [diff] [blame] | 2257 | |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 2258 | cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree); |
| 2259 | cfqq->service_tree = NULL; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2260 | } |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2261 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2262 | left = 1; |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2263 | parent = NULL; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2264 | cfqq->service_tree = st; |
| 2265 | p = &st->rb.rb_node; |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2266 | while (*p) { |
| 2267 | parent = *p; |
| 2268 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); |
| 2269 | |
Jens Axboe | 0c534e0 | 2007-04-18 20:01:57 +0200 | [diff] [blame] | 2270 | /* |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2271 | * sort by key, that represents service time. |
Jens Axboe | 0c534e0 | 2007-04-18 20:01:57 +0200 | [diff] [blame] | 2272 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2273 | if (rb_key < __cfqq->rb_key) |
Vivek Goyal | 1f23f12 | 2012-10-03 16:57:00 -0400 | [diff] [blame] | 2274 | p = &parent->rb_left; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2275 | else { |
Vivek Goyal | 1f23f12 | 2012-10-03 16:57:00 -0400 | [diff] [blame] | 2276 | p = &parent->rb_right; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 2277 | left = 0; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2278 | } |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2279 | } |
| 2280 | |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 2281 | if (left) |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2282 | st->left = &cfqq->rb_node; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 2283 | |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2284 | cfqq->rb_key = rb_key; |
| 2285 | rb_link_node(&cfqq->rb_node, parent, p); |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2286 | rb_insert_color(&cfqq->rb_node, &st->rb); |
| 2287 | st->count++; |
Namhyung Kim | 20359f2 | 2011-05-24 10:23:22 +0200 | [diff] [blame] | 2288 | if (add_front || !new_cfqq) |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 2289 | return; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 2290 | cfq_group_notify_queue_add(cfqd, cfqq->cfqg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | } |
| 2292 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2293 | static struct cfq_queue * |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2294 | cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root, |
| 2295 | sector_t sector, struct rb_node **ret_parent, |
| 2296 | struct rb_node ***rb_link) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2297 | { |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2298 | struct rb_node **p, *parent; |
| 2299 | struct cfq_queue *cfqq = NULL; |
| 2300 | |
| 2301 | parent = NULL; |
| 2302 | p = &root->rb_node; |
| 2303 | while (*p) { |
| 2304 | struct rb_node **n; |
| 2305 | |
| 2306 | parent = *p; |
| 2307 | cfqq = rb_entry(parent, struct cfq_queue, p_node); |
| 2308 | |
| 2309 | /* |
| 2310 | * Sort strictly based on sector. Smallest to the left, |
| 2311 | * largest to the right. |
| 2312 | */ |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 2313 | if (sector > blk_rq_pos(cfqq->next_rq)) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2314 | n = &(*p)->rb_right; |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 2315 | else if (sector < blk_rq_pos(cfqq->next_rq)) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2316 | n = &(*p)->rb_left; |
| 2317 | else |
| 2318 | break; |
| 2319 | p = n; |
Jens Axboe | 3ac6c9f | 2009-04-23 12:14:56 +0200 | [diff] [blame] | 2320 | cfqq = NULL; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2321 | } |
| 2322 | |
| 2323 | *ret_parent = parent; |
| 2324 | if (rb_link) |
| 2325 | *rb_link = p; |
Jens Axboe | 3ac6c9f | 2009-04-23 12:14:56 +0200 | [diff] [blame] | 2326 | return cfqq; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2327 | } |
| 2328 | |
| 2329 | static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 2330 | { |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2331 | struct rb_node **p, *parent; |
| 2332 | struct cfq_queue *__cfqq; |
| 2333 | |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2334 | if (cfqq->p_root) { |
| 2335 | rb_erase(&cfqq->p_node, cfqq->p_root); |
| 2336 | cfqq->p_root = NULL; |
| 2337 | } |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2338 | |
| 2339 | if (cfq_class_idle(cfqq)) |
| 2340 | return; |
| 2341 | if (!cfqq->next_rq) |
| 2342 | return; |
| 2343 | |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2344 | cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio]; |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 2345 | __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root, |
| 2346 | blk_rq_pos(cfqq->next_rq), &parent, &p); |
Jens Axboe | 3ac6c9f | 2009-04-23 12:14:56 +0200 | [diff] [blame] | 2347 | if (!__cfqq) { |
| 2348 | rb_link_node(&cfqq->p_node, parent, p); |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2349 | rb_insert_color(&cfqq->p_node, cfqq->p_root); |
| 2350 | } else |
| 2351 | cfqq->p_root = NULL; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2352 | } |
| 2353 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2354 | /* |
| 2355 | * Update cfqq's position in the service tree. |
| 2356 | */ |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2357 | 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] | 2358 | { |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2359 | /* |
| 2360 | * Resorting requires the cfqq to be on the RR list already. |
| 2361 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2362 | if (cfq_cfqq_on_rr(cfqq)) { |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2363 | cfq_service_tree_add(cfqd, cfqq, 0); |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2364 | cfq_prio_tree_add(cfqd, cfqq); |
| 2365 | } |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2366 | } |
| 2367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | /* |
| 2369 | * 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] | 2370 | * the pending list according to last request service |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2371 | */ |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2372 | 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] | 2373 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2374 | cfq_log_cfqq(cfqd, cfqq, "add_to_rr"); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 2375 | BUG_ON(cfq_cfqq_on_rr(cfqq)); |
| 2376 | cfq_mark_cfqq_on_rr(cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | cfqd->busy_queues++; |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 2378 | if (cfq_cfqq_sync(cfqq)) |
| 2379 | cfqd->busy_sync_queues++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2381 | cfq_resort_rr_list(cfqd, cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2382 | } |
| 2383 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2384 | /* |
| 2385 | * Called when the cfqq no longer has requests pending, remove it from |
| 2386 | * the service tree. |
| 2387 | */ |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2388 | 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] | 2389 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2390 | cfq_log_cfqq(cfqd, cfqq, "del_from_rr"); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 2391 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); |
| 2392 | cfq_clear_cfqq_on_rr(cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 2394 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) { |
| 2395 | cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree); |
| 2396 | cfqq->service_tree = NULL; |
| 2397 | } |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2398 | if (cfqq->p_root) { |
| 2399 | rb_erase(&cfqq->p_node, cfqq->p_root); |
| 2400 | cfqq->p_root = NULL; |
| 2401 | } |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2402 | |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 2403 | cfq_group_notify_queue_del(cfqd, cfqq->cfqg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | BUG_ON(!cfqd->busy_queues); |
| 2405 | cfqd->busy_queues--; |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 2406 | if (cfq_cfqq_sync(cfqq)) |
| 2407 | cfqd->busy_sync_queues--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2408 | } |
| 2409 | |
| 2410 | /* |
| 2411 | * rb tree support functions |
| 2412 | */ |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2413 | static void cfq_del_rq_rb(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2414 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2415 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2416 | const int sync = rq_is_sync(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2418 | BUG_ON(!cfqq->queued[sync]); |
| 2419 | cfqq->queued[sync]--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2421 | elv_rb_del(&cfqq->sort_list, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2423 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) { |
| 2424 | /* |
| 2425 | * Queue will be deleted from service tree when we actually |
| 2426 | * expire it later. Right now just remove it from prio tree |
| 2427 | * as it is empty. |
| 2428 | */ |
| 2429 | if (cfqq->p_root) { |
| 2430 | rb_erase(&cfqq->p_node, cfqq->p_root); |
| 2431 | cfqq->p_root = NULL; |
| 2432 | } |
| 2433 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2434 | } |
| 2435 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2436 | static void cfq_add_rq_rb(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2437 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2438 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | struct cfq_data *cfqd = cfqq->cfqd; |
Jeff Moyer | 796d511 | 2011-06-02 21:19:05 +0200 | [diff] [blame] | 2440 | struct request *prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2441 | |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 2442 | cfqq->queued[rq_is_sync(rq)]++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | |
Jeff Moyer | 796d511 | 2011-06-02 21:19:05 +0200 | [diff] [blame] | 2444 | elv_rb_add(&cfqq->sort_list, rq); |
Jens Axboe | 5fccbf6 | 2006-10-31 14:21:55 +0100 | [diff] [blame] | 2445 | |
| 2446 | if (!cfq_cfqq_on_rr(cfqq)) |
| 2447 | cfq_add_cfqq_rr(cfqd, cfqq); |
Jens Axboe | 5044eed | 2007-04-25 11:53:48 +0200 | [diff] [blame] | 2448 | |
| 2449 | /* |
| 2450 | * check if this request is a better next-serve candidate |
| 2451 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2452 | prev = cfqq->next_rq; |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 2453 | 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] | 2454 | |
| 2455 | /* |
| 2456 | * adjust priority tree position, if ->next_rq changes |
| 2457 | */ |
| 2458 | if (prev != cfqq->next_rq) |
| 2459 | cfq_prio_tree_add(cfqd, cfqq); |
| 2460 | |
Jens Axboe | 5044eed | 2007-04-25 11:53:48 +0200 | [diff] [blame] | 2461 | BUG_ON(!cfqq->next_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | } |
| 2463 | |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2464 | 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] | 2465 | { |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 2466 | elv_rb_del(&cfqq->sort_list, rq); |
| 2467 | cfqq->queued[rq_is_sync(rq)]--; |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 2468 | cfqg_stats_update_io_remove(RQ_CFQG(rq), rq->cmd_flags); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2469 | cfq_add_rq_rb(rq); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2470 | cfqg_stats_update_io_add(RQ_CFQG(rq), cfqq->cfqd->serving_group, |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 2471 | rq->cmd_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | } |
| 2473 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2474 | static struct request * |
| 2475 | cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2476 | { |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2477 | struct task_struct *tsk = current; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 2478 | struct cfq_io_cq *cic; |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2479 | struct cfq_queue *cfqq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 | |
Jens Axboe | 4ac845a | 2008-01-24 08:44:49 +0100 | [diff] [blame] | 2481 | cic = cfq_cic_lookup(cfqd, tsk->io_context); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 2482 | if (!cic) |
| 2483 | return NULL; |
| 2484 | |
Christoph Hellwig | aa39ebd | 2016-11-01 07:40:02 -0600 | [diff] [blame] | 2485 | cfqq = cic_to_cfqq(cic, op_is_sync(bio->bi_opf)); |
Kent Overstreet | f73a1c7 | 2012-09-25 15:05:12 -0700 | [diff] [blame] | 2486 | if (cfqq) |
| 2487 | return elv_rb_find(&cfqq->sort_list, bio_end_sector(bio)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2489 | return NULL; |
| 2490 | } |
| 2491 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2492 | static void cfq_activate_request(struct request_queue *q, struct request *rq) |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2493 | { |
| 2494 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 2495 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 2496 | cfqd->rq_in_driver++; |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2497 | cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d", |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 2498 | cfqd->rq_in_driver); |
Jens Axboe | 25776e3 | 2006-06-01 10:12:26 +0200 | [diff] [blame] | 2499 | |
Tejun Heo | 5b93629 | 2009-05-07 22:24:38 +0900 | [diff] [blame] | 2500 | cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq); |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2501 | } |
| 2502 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2503 | static void cfq_deactivate_request(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2504 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2505 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2506 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 2507 | WARN_ON(!cfqd->rq_in_driver); |
| 2508 | cfqd->rq_in_driver--; |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2509 | cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d", |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 2510 | cfqd->rq_in_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | } |
| 2512 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2513 | static void cfq_remove_request(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2515 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 2516 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2517 | if (cfqq->next_rq == rq) |
| 2518 | cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2520 | list_del_init(&rq->queuelist); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2521 | cfq_del_rq_rb(rq); |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 2522 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 2523 | cfqq->cfqd->rq_queued--; |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 2524 | cfqg_stats_update_io_remove(RQ_CFQG(rq), rq->cmd_flags); |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 2525 | if (rq->cmd_flags & REQ_PRIO) { |
| 2526 | WARN_ON(!cfqq->prio_pending); |
| 2527 | cfqq->prio_pending--; |
Jens Axboe | b53d1ed | 2011-08-19 08:34:48 +0200 | [diff] [blame] | 2528 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | } |
| 2530 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2531 | static int cfq_merge(struct request_queue *q, struct request **req, |
| 2532 | struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | { |
| 2534 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 2535 | struct request *__rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2536 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2537 | __rq = cfq_find_rq_fmerge(cfqd, bio); |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 2538 | if (__rq && elv_bio_merge_ok(__rq, bio)) { |
Jens Axboe | 9817064 | 2006-07-28 09:23:08 +0200 | [diff] [blame] | 2539 | *req = __rq; |
| 2540 | return ELEVATOR_FRONT_MERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2541 | } |
| 2542 | |
| 2543 | return ELEVATOR_NO_MERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2544 | } |
| 2545 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2546 | static void cfq_merged_request(struct request_queue *q, struct request *req, |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 2547 | int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2548 | { |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 2549 | if (type == ELEVATOR_FRONT_MERGE) { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2550 | struct cfq_queue *cfqq = RQ_CFQQ(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2551 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2552 | cfq_reposition_rq_rb(cfqq, req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2554 | } |
| 2555 | |
Divyesh Shah | 812d402 | 2010-04-08 21:14:23 -0700 | [diff] [blame] | 2556 | static void cfq_bio_merged(struct request_queue *q, struct request *req, |
| 2557 | struct bio *bio) |
| 2558 | { |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 2559 | cfqg_stats_update_io_merged(RQ_CFQG(req), bio->bi_opf); |
Divyesh Shah | 812d402 | 2010-04-08 21:14:23 -0700 | [diff] [blame] | 2560 | } |
| 2561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2562 | static void |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2563 | cfq_merged_requests(struct request_queue *q, struct request *rq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | struct request *next) |
| 2565 | { |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 2566 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Shaohua Li | 4a0b75c | 2011-12-16 14:00:22 +0100 | [diff] [blame] | 2567 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 2568 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2569 | /* |
| 2570 | * reposition in fifo if next is older than rq |
| 2571 | */ |
| 2572 | if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) && |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2573 | next->fifo_time < rq->fifo_time && |
Shaohua Li | 3d106fba | 2012-11-06 12:39:51 +0100 | [diff] [blame] | 2574 | cfqq == RQ_CFQQ(next)) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2575 | list_move(&rq->queuelist, &next->queuelist); |
Jan Kara | 8b4922d | 2014-02-24 16:39:52 +0100 | [diff] [blame] | 2576 | rq->fifo_time = next->fifo_time; |
Jens Axboe | 30996f4 | 2009-10-05 11:03:39 +0200 | [diff] [blame] | 2577 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2578 | |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 2579 | if (cfqq->next_rq == next) |
| 2580 | cfqq->next_rq = rq; |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2581 | cfq_remove_request(next); |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 2582 | cfqg_stats_update_io_merged(RQ_CFQG(rq), next->cmd_flags); |
Shaohua Li | 4a0b75c | 2011-12-16 14:00:22 +0100 | [diff] [blame] | 2583 | |
| 2584 | cfqq = RQ_CFQQ(next); |
| 2585 | /* |
| 2586 | * all requests of this queue are merged to other queues, delete it |
| 2587 | * from the service tree. If it's the active_queue, |
| 2588 | * cfq_dispatch_requests() will choose to expire it or do idle |
| 2589 | */ |
| 2590 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list) && |
| 2591 | cfqq != cfqd->active_queue) |
| 2592 | cfq_del_cfqq_rr(cfqd, cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2593 | } |
| 2594 | |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 2595 | static int cfq_allow_bio_merge(struct request_queue *q, struct request *rq, |
| 2596 | struct bio *bio) |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2597 | { |
| 2598 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Christoph Hellwig | aa39ebd | 2016-11-01 07:40:02 -0600 | [diff] [blame] | 2599 | bool is_sync = op_is_sync(bio->bi_opf); |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 2600 | struct cfq_io_cq *cic; |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2601 | struct cfq_queue *cfqq; |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2602 | |
| 2603 | /* |
Jens Axboe | ec8acb6 | 2007-01-02 18:32:11 +0100 | [diff] [blame] | 2604 | * Disallow merge of a sync bio into an async request. |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2605 | */ |
Christoph Hellwig | aa39ebd | 2016-11-01 07:40:02 -0600 | [diff] [blame] | 2606 | if (is_sync && !rq_is_sync(rq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 2607 | return false; |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2608 | |
| 2609 | /* |
Tejun Heo | f1a4f4d | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 2610 | * Lookup the cfqq that this bio will be queued with and allow |
Tejun Heo | 07c2bd3 | 2012-02-08 09:19:42 +0100 | [diff] [blame] | 2611 | * merge only if rq is queued there. |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2612 | */ |
Tejun Heo | 07c2bd3 | 2012-02-08 09:19:42 +0100 | [diff] [blame] | 2613 | cic = cfq_cic_lookup(cfqd, current->io_context); |
| 2614 | if (!cic) |
| 2615 | return false; |
Jens Axboe | 719d340 | 2006-12-22 09:38:53 +0100 | [diff] [blame] | 2616 | |
Christoph Hellwig | aa39ebd | 2016-11-01 07:40:02 -0600 | [diff] [blame] | 2617 | cfqq = cic_to_cfqq(cic, is_sync); |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 2618 | return cfqq == RQ_CFQQ(rq); |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2619 | } |
| 2620 | |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 2621 | static int cfq_allow_rq_merge(struct request_queue *q, struct request *rq, |
| 2622 | struct request *next) |
| 2623 | { |
| 2624 | return RQ_CFQQ(rq) == RQ_CFQQ(next); |
| 2625 | } |
| 2626 | |
Divyesh Shah | 812df48 | 2010-04-08 21:15:35 -0700 | [diff] [blame] | 2627 | static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 2628 | { |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 2629 | hrtimer_try_to_cancel(&cfqd->idle_slice_timer); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2630 | cfqg_stats_update_idle_time(cfqq->cfqg); |
Divyesh Shah | 812df48 | 2010-04-08 21:15:35 -0700 | [diff] [blame] | 2631 | } |
| 2632 | |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2633 | static void __cfq_set_active_queue(struct cfq_data *cfqd, |
| 2634 | struct cfq_queue *cfqq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2635 | { |
| 2636 | if (cfqq) { |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 2637 | cfq_log_cfqq(cfqd, cfqq, "set_active wl_class:%d wl_type:%d", |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 2638 | cfqd->serving_wl_class, cfqd->serving_wl_type); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2639 | cfqg_stats_update_avg_queue_size(cfqq->cfqg); |
Justin TerAvest | 62a37f6 | 2011-03-23 08:25:44 +0100 | [diff] [blame] | 2640 | cfqq->slice_start = 0; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2641 | cfqq->dispatch_start = ktime_get_ns(); |
Justin TerAvest | 62a37f6 | 2011-03-23 08:25:44 +0100 | [diff] [blame] | 2642 | cfqq->allocated_slice = 0; |
| 2643 | cfqq->slice_end = 0; |
| 2644 | cfqq->slice_dispatch = 0; |
| 2645 | cfqq->nr_sectors = 0; |
| 2646 | |
| 2647 | cfq_clear_cfqq_wait_request(cfqq); |
| 2648 | cfq_clear_cfqq_must_dispatch(cfqq); |
| 2649 | cfq_clear_cfqq_must_alloc_slice(cfqq); |
| 2650 | cfq_clear_cfqq_fifo_expire(cfqq); |
| 2651 | cfq_mark_cfqq_slice_new(cfqq); |
| 2652 | |
| 2653 | cfq_del_timer(cfqd, cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2654 | } |
| 2655 | |
| 2656 | cfqd->active_queue = cfqq; |
| 2657 | } |
| 2658 | |
| 2659 | /* |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2660 | * current cfqq expired its slice (or was too idle), select new one |
| 2661 | */ |
| 2662 | static void |
| 2663 | __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 2664 | bool timed_out) |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2665 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2666 | cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out); |
| 2667 | |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2668 | if (cfq_cfqq_wait_request(cfqq)) |
Divyesh Shah | 812df48 | 2010-04-08 21:15:35 -0700 | [diff] [blame] | 2669 | cfq_del_timer(cfqd, cfqq); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2670 | |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2671 | cfq_clear_cfqq_wait_request(cfqq); |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 2672 | cfq_clear_cfqq_wait_busy(cfqq); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2673 | |
| 2674 | /* |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 2675 | * If this cfqq is shared between multiple processes, check to |
| 2676 | * make sure that those processes are still issuing I/Os within |
| 2677 | * the mean seek distance. If not, it may be time to break the |
| 2678 | * queues apart again. |
| 2679 | */ |
| 2680 | if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq)) |
| 2681 | cfq_mark_cfqq_split_coop(cfqq); |
| 2682 | |
| 2683 | /* |
Jens Axboe | 6084cdd | 2007-04-23 08:25:00 +0200 | [diff] [blame] | 2684 | * 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] | 2685 | */ |
Shaohua Li | c553f8e | 2011-01-14 08:41:03 +0100 | [diff] [blame] | 2686 | if (timed_out) { |
| 2687 | if (cfq_cfqq_slice_new(cfqq)) |
Vivek Goyal | ba5bd52 | 2011-01-19 08:25:02 -0700 | [diff] [blame] | 2688 | cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq); |
Shaohua Li | c553f8e | 2011-01-14 08:41:03 +0100 | [diff] [blame] | 2689 | else |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2690 | cfqq->slice_resid = cfqq->slice_end - ktime_get_ns(); |
Jan Kara | 93fdf14 | 2016-06-28 09:04:00 +0200 | [diff] [blame] | 2691 | cfq_log_cfqq(cfqd, cfqq, "resid=%lld", cfqq->slice_resid); |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2692 | } |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2693 | |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 2694 | cfq_group_served(cfqd, cfqq->cfqg, cfqq); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 2695 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2696 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) |
| 2697 | cfq_del_cfqq_rr(cfqd, cfqq); |
| 2698 | |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2699 | cfq_resort_rr_list(cfqd, cfqq); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2700 | |
| 2701 | if (cfqq == cfqd->active_queue) |
| 2702 | cfqd->active_queue = NULL; |
| 2703 | |
| 2704 | if (cfqd->active_cic) { |
Tejun Heo | 11a3122 | 2012-02-07 07:51:30 +0100 | [diff] [blame] | 2705 | put_io_context(cfqd->active_cic->icq.ioc); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2706 | cfqd->active_cic = NULL; |
| 2707 | } |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2708 | } |
| 2709 | |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 2710 | 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] | 2711 | { |
| 2712 | struct cfq_queue *cfqq = cfqd->active_queue; |
| 2713 | |
| 2714 | if (cfqq) |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 2715 | __cfq_slice_expired(cfqd, cfqq, timed_out); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2716 | } |
| 2717 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2718 | /* |
| 2719 | * Get next queue for service. Unless we have a queue preemption, |
| 2720 | * we'll simply select the first cfqq in the service tree. |
| 2721 | */ |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2722 | static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2723 | { |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2724 | struct cfq_rb_root *st = st_for(cfqd->serving_group, |
| 2725 | cfqd->serving_wl_class, cfqd->serving_wl_type); |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2726 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2727 | if (!cfqd->rq_queued) |
| 2728 | return NULL; |
| 2729 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 2730 | /* There is nothing to dispatch */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2731 | if (!st) |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 2732 | return NULL; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2733 | if (RB_EMPTY_ROOT(&st->rb)) |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2734 | return NULL; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2735 | return cfq_rb_first(st); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2736 | } |
| 2737 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2738 | static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd) |
| 2739 | { |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2740 | struct cfq_group *cfqg; |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2741 | struct cfq_queue *cfqq; |
| 2742 | int i, j; |
| 2743 | struct cfq_rb_root *st; |
| 2744 | |
| 2745 | if (!cfqd->rq_queued) |
| 2746 | return NULL; |
| 2747 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2748 | cfqg = cfq_get_next_cfqg(cfqd); |
| 2749 | if (!cfqg) |
| 2750 | return NULL; |
| 2751 | |
Markus Elfring | 1cf4175 | 2017-01-21 22:44:07 +0100 | [diff] [blame^] | 2752 | for_each_cfqg_st(cfqg, i, j, st) { |
| 2753 | cfqq = cfq_rb_first(st); |
| 2754 | if (cfqq) |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2755 | return cfqq; |
Markus Elfring | 1cf4175 | 2017-01-21 22:44:07 +0100 | [diff] [blame^] | 2756 | } |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2757 | return NULL; |
| 2758 | } |
| 2759 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2760 | /* |
| 2761 | * Get and set a new active queue for service. |
| 2762 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2763 | static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd, |
| 2764 | struct cfq_queue *cfqq) |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2765 | { |
Jens Axboe | e00ef79 | 2009-11-04 08:54:55 +0100 | [diff] [blame] | 2766 | if (!cfqq) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2767 | cfqq = cfq_get_next_queue(cfqd); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2768 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2769 | __cfq_set_active_queue(cfqd, cfqq); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 2770 | return cfqq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2771 | } |
| 2772 | |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2773 | static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd, |
| 2774 | struct request *rq) |
| 2775 | { |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 2776 | if (blk_rq_pos(rq) >= cfqd->last_position) |
| 2777 | return blk_rq_pos(rq) - cfqd->last_position; |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2778 | else |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 2779 | return cfqd->last_position - blk_rq_pos(rq); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2780 | } |
| 2781 | |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 2782 | 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] | 2783 | struct request *rq) |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2784 | { |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 2785 | return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR; |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2786 | } |
| 2787 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2788 | static struct cfq_queue *cfqq_close(struct cfq_data *cfqd, |
| 2789 | struct cfq_queue *cur_cfqq) |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2790 | { |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2791 | struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio]; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2792 | struct rb_node *parent, *node; |
| 2793 | struct cfq_queue *__cfqq; |
| 2794 | sector_t sector = cfqd->last_position; |
| 2795 | |
| 2796 | if (RB_EMPTY_ROOT(root)) |
| 2797 | return NULL; |
| 2798 | |
| 2799 | /* |
| 2800 | * First, if we find a request starting at the end of the last |
| 2801 | * request, choose it. |
| 2802 | */ |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2803 | __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL); |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2804 | if (__cfqq) |
| 2805 | return __cfqq; |
| 2806 | |
| 2807 | /* |
| 2808 | * If the exact sector wasn't found, the parent of the NULL leaf |
| 2809 | * will contain the closest sector. |
| 2810 | */ |
| 2811 | __cfqq = rb_entry(parent, struct cfq_queue, p_node); |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 2812 | if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq)) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2813 | return __cfqq; |
| 2814 | |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 2815 | if (blk_rq_pos(__cfqq->next_rq) < sector) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2816 | node = rb_next(&__cfqq->p_node); |
| 2817 | else |
| 2818 | node = rb_prev(&__cfqq->p_node); |
| 2819 | if (!node) |
| 2820 | return NULL; |
| 2821 | |
| 2822 | __cfqq = rb_entry(node, struct cfq_queue, p_node); |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 2823 | if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq)) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2824 | return __cfqq; |
| 2825 | |
| 2826 | return NULL; |
| 2827 | } |
| 2828 | |
| 2829 | /* |
| 2830 | * cfqd - obvious |
| 2831 | * cur_cfqq - passed in so that we don't decide that the current queue is |
| 2832 | * closely cooperating with itself. |
| 2833 | * |
| 2834 | * So, basically we're assuming that that cur_cfqq has dispatched at least |
| 2835 | * one request, and that cfqd->last_position reflects a position on the disk |
| 2836 | * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid |
| 2837 | * assumption. |
| 2838 | */ |
| 2839 | static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd, |
Jeff Moyer | b3b6d04 | 2009-10-23 17:14:51 -0400 | [diff] [blame] | 2840 | struct cfq_queue *cur_cfqq) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2841 | { |
| 2842 | struct cfq_queue *cfqq; |
| 2843 | |
Divyesh Shah | 39c01b2 | 2010-03-25 15:45:57 +0100 | [diff] [blame] | 2844 | if (cfq_class_idle(cur_cfqq)) |
| 2845 | return NULL; |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 2846 | if (!cfq_cfqq_sync(cur_cfqq)) |
| 2847 | return NULL; |
| 2848 | if (CFQQ_SEEKY(cur_cfqq)) |
| 2849 | return NULL; |
| 2850 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2851 | /* |
Gui Jianfeng | b9d8f4c | 2009-12-08 08:54:17 +0100 | [diff] [blame] | 2852 | * Don't search priority tree if it's the only queue in the group. |
| 2853 | */ |
| 2854 | if (cur_cfqq->cfqg->nr_cfqq == 1) |
| 2855 | return NULL; |
| 2856 | |
| 2857 | /* |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2858 | * We should notice if some of the queues are cooperating, eg |
| 2859 | * working closely on the same area of the disk. In that case, |
| 2860 | * we can group them together and don't waste time idling. |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2861 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2862 | cfqq = cfqq_close(cfqd, cur_cfqq); |
| 2863 | if (!cfqq) |
| 2864 | return NULL; |
| 2865 | |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 2866 | /* If new queue belongs to different cfq_group, don't choose it */ |
| 2867 | if (cur_cfqq->cfqg != cfqq->cfqg) |
| 2868 | return NULL; |
| 2869 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 2870 | /* |
| 2871 | * It only makes sense to merge sync queues. |
| 2872 | */ |
| 2873 | if (!cfq_cfqq_sync(cfqq)) |
| 2874 | return NULL; |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 2875 | if (CFQQ_SEEKY(cfqq)) |
| 2876 | return NULL; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 2877 | |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2878 | /* |
| 2879 | * Do not merge queues of different priority classes |
| 2880 | */ |
| 2881 | if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq)) |
| 2882 | return NULL; |
| 2883 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2884 | return cfqq; |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2885 | } |
| 2886 | |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2887 | /* |
| 2888 | * Determine whether we should enforce idle window for this queue. |
| 2889 | */ |
| 2890 | |
| 2891 | static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 2892 | { |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 2893 | enum wl_class_t wl_class = cfqq_class(cfqq); |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2894 | struct cfq_rb_root *st = cfqq->service_tree; |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2895 | |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2896 | BUG_ON(!st); |
| 2897 | BUG_ON(!st->count); |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2898 | |
Vivek Goyal | b6508c1 | 2010-08-23 12:23:33 +0200 | [diff] [blame] | 2899 | if (!cfqd->cfq_slice_idle) |
| 2900 | return false; |
| 2901 | |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2902 | /* We never do for idle class queues. */ |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 2903 | if (wl_class == IDLE_WORKLOAD) |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2904 | return false; |
| 2905 | |
| 2906 | /* We do for queues that were marked with idle window flag. */ |
Shaohua Li | 3c764b7 | 2009-12-04 13:12:06 +0100 | [diff] [blame] | 2907 | if (cfq_cfqq_idle_window(cfqq) && |
| 2908 | !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)) |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2909 | return true; |
| 2910 | |
| 2911 | /* |
| 2912 | * Otherwise, we do only if they are the last ones |
| 2913 | * in their service tree. |
| 2914 | */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2915 | if (st->count == 1 && cfq_cfqq_sync(cfqq) && |
| 2916 | !cfq_io_thinktime_big(cfqd, &st->ttime, false)) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 2917 | return true; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2918 | cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d", st->count); |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 2919 | return false; |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2920 | } |
| 2921 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2922 | static void cfq_arm_slice_timer(struct cfq_data *cfqd) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2923 | { |
Jens Axboe | 1792669 | 2007-01-19 11:59:30 +1100 | [diff] [blame] | 2924 | struct cfq_queue *cfqq = cfqd->active_queue; |
Jan Kara | e795421 | 2016-01-12 16:24:15 +0100 | [diff] [blame] | 2925 | struct cfq_rb_root *st = cfqq->service_tree; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 2926 | struct cfq_io_cq *cic; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2927 | u64 sl, group_idle = 0; |
| 2928 | u64 now = ktime_get_ns(); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2929 | |
Jens Axboe | a68bbddba | 2008-09-24 13:03:33 +0200 | [diff] [blame] | 2930 | /* |
Jens Axboe | f7d7b7a | 2008-09-25 11:37:50 +0200 | [diff] [blame] | 2931 | * SSD device without seek penalty, disable idling. But only do so |
| 2932 | * for devices that support queuing, otherwise we still have a problem |
| 2933 | * with sync vs async workloads. |
Jens Axboe | a68bbddba | 2008-09-24 13:03:33 +0200 | [diff] [blame] | 2934 | */ |
Jens Axboe | f7d7b7a | 2008-09-25 11:37:50 +0200 | [diff] [blame] | 2935 | if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag) |
Jens Axboe | a68bbddba | 2008-09-24 13:03:33 +0200 | [diff] [blame] | 2936 | return; |
| 2937 | |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 2938 | WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list)); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2939 | WARN_ON(cfq_cfqq_slice_new(cfqq)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2940 | |
| 2941 | /* |
| 2942 | * idle is disabled, either manually or by past process history |
| 2943 | */ |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 2944 | if (!cfq_should_idle(cfqd, cfqq)) { |
| 2945 | /* no queue idling. Check for group idling */ |
| 2946 | if (cfqd->cfq_group_idle) |
| 2947 | group_idle = cfqd->cfq_group_idle; |
| 2948 | else |
| 2949 | return; |
| 2950 | } |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2951 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2952 | /* |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 2953 | * still active requests from this queue, don't idle |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2954 | */ |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 2955 | if (cfqq->dispatched) |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2956 | return; |
| 2957 | |
| 2958 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2959 | * task has exited, don't wait |
| 2960 | */ |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2961 | cic = cfqd->active_cic; |
Tejun Heo | f6e8d01 | 2012-03-05 13:15:26 -0800 | [diff] [blame] | 2962 | if (!cic || !atomic_read(&cic->icq.ioc->active_ref)) |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2963 | return; |
| 2964 | |
Corrado Zoccolo | 355b659 | 2009-10-08 08:43:32 +0200 | [diff] [blame] | 2965 | /* |
| 2966 | * If our average think time is larger than the remaining time |
| 2967 | * slice, then don't idle. This avoids overrunning the allotted |
| 2968 | * time slice. |
| 2969 | */ |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 2970 | if (sample_valid(cic->ttime.ttime_samples) && |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2971 | (cfqq->slice_end - now < cic->ttime.ttime_mean)) { |
| 2972 | cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%llu", |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 2973 | cic->ttime.ttime_mean); |
Corrado Zoccolo | 355b659 | 2009-10-08 08:43:32 +0200 | [diff] [blame] | 2974 | return; |
Divyesh Shah | b1ffe73 | 2010-03-25 15:45:03 +0100 | [diff] [blame] | 2975 | } |
Corrado Zoccolo | 355b659 | 2009-10-08 08:43:32 +0200 | [diff] [blame] | 2976 | |
Jan Kara | e795421 | 2016-01-12 16:24:15 +0100 | [diff] [blame] | 2977 | /* |
| 2978 | * There are other queues in the group or this is the only group and |
| 2979 | * it has too big thinktime, don't do group idle. |
| 2980 | */ |
| 2981 | if (group_idle && |
| 2982 | (cfqq->cfqg->nr_cfqq > 1 || |
| 2983 | cfq_io_thinktime_big(cfqd, &st->ttime, true))) |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 2984 | return; |
| 2985 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 2986 | cfq_mark_cfqq_wait_request(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2987 | |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 2988 | if (group_idle) |
| 2989 | sl = cfqd->cfq_group_idle; |
| 2990 | else |
| 2991 | sl = cfqd->cfq_slice_idle; |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2992 | |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 2993 | hrtimer_start(&cfqd->idle_slice_timer, ns_to_ktime(sl), |
| 2994 | HRTIMER_MODE_REL); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2995 | cfqg_stats_set_start_idle_time(cfqq->cfqg); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2996 | cfq_log_cfqq(cfqd, cfqq, "arm_idle: %llu group_idle: %d", sl, |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 2997 | group_idle ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2998 | } |
| 2999 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 3000 | /* |
| 3001 | * Move request from internal lists to the request queue dispatch list. |
| 3002 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 3003 | static void cfq_dispatch_insert(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | { |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 3005 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 3006 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3007 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3008 | cfq_log_cfqq(cfqd, cfqq, "dispatch_insert"); |
| 3009 | |
Jeff Moyer | 06d2188 | 2009-09-11 17:08:59 +0200 | [diff] [blame] | 3010 | cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq); |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 3011 | cfq_remove_request(rq); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3012 | cfqq->dispatched++; |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3013 | (RQ_CFQG(rq))->dispatched++; |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 3014 | elv_dispatch_sort(q, rq); |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 3015 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 3016 | cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++; |
Vivek Goyal | c4e7893 | 2010-08-23 12:25:03 +0200 | [diff] [blame] | 3017 | cfqq->nr_sectors += blk_rq_sectors(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3018 | } |
| 3019 | |
| 3020 | /* |
| 3021 | * return expired entry, or NULL to just start from scratch in rbtree |
| 3022 | */ |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 3023 | static struct request *cfq_check_fifo(struct cfq_queue *cfqq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3024 | { |
Jens Axboe | 30996f4 | 2009-10-05 11:03:39 +0200 | [diff] [blame] | 3025 | struct request *rq = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3026 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3027 | if (cfq_cfqq_fifo_expire(cfqq)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3028 | return NULL; |
Jens Axboe | cb88741 | 2007-01-19 12:01:16 +1100 | [diff] [blame] | 3029 | |
| 3030 | cfq_mark_cfqq_fifo_expire(cfqq); |
| 3031 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3032 | if (list_empty(&cfqq->fifo)) |
| 3033 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3034 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3035 | rq = rq_entry_fifo(cfqq->fifo.next); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3036 | if (ktime_get_ns() < rq->fifo_time) |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3037 | rq = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3038 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3039 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3040 | } |
| 3041 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3042 | static inline int |
| 3043 | cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 3044 | { |
| 3045 | const int base_rq = cfqd->cfq_slice_async_rq; |
| 3046 | |
| 3047 | WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR); |
| 3048 | |
Namhyung Kim | b9f8ce0 | 2011-05-24 10:23:21 +0200 | [diff] [blame] | 3049 | return 2 * base_rq * (IOPRIO_BE_NR - cfqq->ioprio); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3050 | } |
| 3051 | |
| 3052 | /* |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3053 | * Must be called with the queue_lock held. |
| 3054 | */ |
| 3055 | static int cfqq_process_refs(struct cfq_queue *cfqq) |
| 3056 | { |
| 3057 | int process_refs, io_refs; |
| 3058 | |
| 3059 | io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE]; |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3060 | process_refs = cfqq->ref - io_refs; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3061 | BUG_ON(process_refs < 0); |
| 3062 | return process_refs; |
| 3063 | } |
| 3064 | |
| 3065 | static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq) |
| 3066 | { |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3067 | int process_refs, new_process_refs; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3068 | struct cfq_queue *__cfqq; |
| 3069 | |
Jeff Moyer | c10b61f | 2010-06-17 10:19:11 -0400 | [diff] [blame] | 3070 | /* |
| 3071 | * If there are no process references on the new_cfqq, then it is |
| 3072 | * unsafe to follow the ->new_cfqq chain as other cfqq's in the |
| 3073 | * chain may have dropped their last reference (not just their |
| 3074 | * last process reference). |
| 3075 | */ |
| 3076 | if (!cfqq_process_refs(new_cfqq)) |
| 3077 | return; |
| 3078 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3079 | /* Avoid a circular list and skip interim queue merges */ |
| 3080 | while ((__cfqq = new_cfqq->new_cfqq)) { |
| 3081 | if (__cfqq == cfqq) |
| 3082 | return; |
| 3083 | new_cfqq = __cfqq; |
| 3084 | } |
| 3085 | |
| 3086 | process_refs = cfqq_process_refs(cfqq); |
Jeff Moyer | c10b61f | 2010-06-17 10:19:11 -0400 | [diff] [blame] | 3087 | new_process_refs = cfqq_process_refs(new_cfqq); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3088 | /* |
| 3089 | * If the process for the cfqq has gone away, there is no |
| 3090 | * sense in merging the queues. |
| 3091 | */ |
Jeff Moyer | c10b61f | 2010-06-17 10:19:11 -0400 | [diff] [blame] | 3092 | if (process_refs == 0 || new_process_refs == 0) |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3093 | return; |
| 3094 | |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3095 | /* |
| 3096 | * Merge in the direction of the lesser amount of work. |
| 3097 | */ |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3098 | if (new_process_refs >= process_refs) { |
| 3099 | cfqq->new_cfqq = new_cfqq; |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3100 | new_cfqq->ref += process_refs; |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3101 | } else { |
| 3102 | new_cfqq->new_cfqq = cfqq; |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3103 | cfqq->ref += new_process_refs; |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3104 | } |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3105 | } |
| 3106 | |
Vivek Goyal | 6d816ec | 2012-10-03 16:56:59 -0400 | [diff] [blame] | 3107 | static enum wl_type_t cfq_choose_wl_type(struct cfq_data *cfqd, |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 3108 | struct cfq_group *cfqg, enum wl_class_t wl_class) |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3109 | { |
| 3110 | struct cfq_queue *queue; |
| 3111 | int i; |
| 3112 | bool key_valid = false; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3113 | u64 lowest_key = 0; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3114 | enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD; |
| 3115 | |
Vivek Goyal | 65b32a5 | 2009-12-16 17:52:59 -0500 | [diff] [blame] | 3116 | for (i = 0; i <= SYNC_WORKLOAD; ++i) { |
| 3117 | /* select the one with lowest rb_key */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 3118 | queue = cfq_rb_first(st_for(cfqg, wl_class, i)); |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3119 | if (queue && |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3120 | (!key_valid || queue->rb_key < lowest_key)) { |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3121 | lowest_key = queue->rb_key; |
| 3122 | cur_best = i; |
| 3123 | key_valid = true; |
| 3124 | } |
| 3125 | } |
| 3126 | |
| 3127 | return cur_best; |
| 3128 | } |
| 3129 | |
Vivek Goyal | 6d816ec | 2012-10-03 16:56:59 -0400 | [diff] [blame] | 3130 | static void |
| 3131 | choose_wl_class_and_type(struct cfq_data *cfqd, struct cfq_group *cfqg) |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3132 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3133 | u64 slice; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3134 | unsigned count; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3135 | struct cfq_rb_root *st; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3136 | u64 group_slice; |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3137 | enum wl_class_t original_class = cfqd->serving_wl_class; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3138 | u64 now = ktime_get_ns(); |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3139 | |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3140 | /* Choose next priority. RT > BE > IDLE */ |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 3141 | if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg)) |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3142 | cfqd->serving_wl_class = RT_WORKLOAD; |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 3143 | else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg)) |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3144 | cfqd->serving_wl_class = BE_WORKLOAD; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3145 | else { |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3146 | cfqd->serving_wl_class = IDLE_WORKLOAD; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3147 | cfqd->workload_expires = now + jiffies_to_nsecs(1); |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3148 | return; |
| 3149 | } |
| 3150 | |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3151 | if (original_class != cfqd->serving_wl_class) |
Shaohua Li writes | e4ea0c1 | 2010-12-13 14:32:22 +0100 | [diff] [blame] | 3152 | goto new_workload; |
| 3153 | |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3154 | /* |
| 3155 | * For RT and BE, we have to choose also the type |
| 3156 | * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload |
| 3157 | * expiration time |
| 3158 | */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 3159 | st = st_for(cfqg, cfqd->serving_wl_class, cfqd->serving_wl_type); |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3160 | count = st->count; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3161 | |
| 3162 | /* |
Vivek Goyal | 65b32a5 | 2009-12-16 17:52:59 -0500 | [diff] [blame] | 3163 | * check workload expiration, and that we still have other queues ready |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3164 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3165 | if (count && !(now > cfqd->workload_expires)) |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3166 | return; |
| 3167 | |
Shaohua Li writes | e4ea0c1 | 2010-12-13 14:32:22 +0100 | [diff] [blame] | 3168 | new_workload: |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3169 | /* otherwise select new workload type */ |
Vivek Goyal | 6d816ec | 2012-10-03 16:56:59 -0400 | [diff] [blame] | 3170 | cfqd->serving_wl_type = cfq_choose_wl_type(cfqd, cfqg, |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3171 | cfqd->serving_wl_class); |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 3172 | st = st_for(cfqg, cfqd->serving_wl_class, cfqd->serving_wl_type); |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3173 | count = st->count; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3174 | |
| 3175 | /* |
| 3176 | * the workload slice is computed as a fraction of target latency |
| 3177 | * proportional to the number of queues in that workload, over |
| 3178 | * all the queues in the same priority class |
| 3179 | */ |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 3180 | group_slice = cfq_group_slice(cfqd, cfqg); |
| 3181 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3182 | slice = div_u64(group_slice * count, |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3183 | max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_wl_class], |
| 3184 | cfq_group_busy_queues_wl(cfqd->serving_wl_class, cfqd, |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3185 | cfqg))); |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3186 | |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3187 | if (cfqd->serving_wl_type == ASYNC_WORKLOAD) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3188 | u64 tmp; |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 3189 | |
| 3190 | /* |
| 3191 | * Async queues are currently system wide. Just taking |
| 3192 | * proportion of queues with-in same group will lead to higher |
| 3193 | * async ratio system wide as generally root group is going |
| 3194 | * to have higher weight. A more accurate thing would be to |
| 3195 | * calculate system wide asnc/sync ratio. |
| 3196 | */ |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 3197 | tmp = cfqd->cfq_target_latency * |
| 3198 | cfqg_busy_async_queues(cfqd, cfqg); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3199 | tmp = div_u64(tmp, cfqd->busy_queues); |
| 3200 | slice = min_t(u64, slice, tmp); |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 3201 | |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3202 | /* async workload slice is scaled down according to |
| 3203 | * the sync/async slice ratio. */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3204 | slice = div64_u64(slice*cfqd->cfq_slice[0], cfqd->cfq_slice[1]); |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 3205 | } else |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3206 | /* sync workload slice is at least 2 * cfq_slice_idle */ |
| 3207 | slice = max(slice, 2 * cfqd->cfq_slice_idle); |
| 3208 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3209 | slice = max_t(u64, slice, CFQ_MIN_TT); |
| 3210 | cfq_log(cfqd, "workload slice:%llu", slice); |
| 3211 | cfqd->workload_expires = now + slice; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3212 | } |
| 3213 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3214 | static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd) |
| 3215 | { |
| 3216 | struct cfq_rb_root *st = &cfqd->grp_service_tree; |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 3217 | struct cfq_group *cfqg; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3218 | |
| 3219 | if (RB_EMPTY_ROOT(&st->rb)) |
| 3220 | return NULL; |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 3221 | cfqg = cfq_rb_first_group(st); |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 3222 | update_min_vdisktime(st); |
| 3223 | return cfqg; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3224 | } |
| 3225 | |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3226 | static void cfq_choose_cfqg(struct cfq_data *cfqd) |
| 3227 | { |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3228 | struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3229 | u64 now = ktime_get_ns(); |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3230 | |
| 3231 | cfqd->serving_group = cfqg; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 3232 | |
| 3233 | /* Restore the workload type data */ |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3234 | if (cfqg->saved_wl_slice) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3235 | cfqd->workload_expires = now + cfqg->saved_wl_slice; |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3236 | cfqd->serving_wl_type = cfqg->saved_wl_type; |
| 3237 | cfqd->serving_wl_class = cfqg->saved_wl_class; |
Gui Jianfeng | 66ae291 | 2009-12-15 10:08:45 +0100 | [diff] [blame] | 3238 | } else |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3239 | cfqd->workload_expires = now - 1; |
Gui Jianfeng | 66ae291 | 2009-12-15 10:08:45 +0100 | [diff] [blame] | 3240 | |
Vivek Goyal | 6d816ec | 2012-10-03 16:56:59 -0400 | [diff] [blame] | 3241 | choose_wl_class_and_type(cfqd, cfqg); |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3242 | } |
| 3243 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3244 | /* |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 3245 | * Select a queue for service. If we have a current active queue, |
| 3246 | * 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] | 3247 | */ |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3248 | static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3249 | { |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3250 | struct cfq_queue *cfqq, *new_cfqq = NULL; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3251 | u64 now = ktime_get_ns(); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3252 | |
| 3253 | cfqq = cfqd->active_queue; |
| 3254 | if (!cfqq) |
| 3255 | goto new_queue; |
| 3256 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 3257 | if (!cfqd->rq_queued) |
| 3258 | return NULL; |
Vivek Goyal | c244bb5 | 2009-12-08 17:52:57 -0500 | [diff] [blame] | 3259 | |
| 3260 | /* |
| 3261 | * We were waiting for group to get backlogged. Expire the queue |
| 3262 | */ |
| 3263 | if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list)) |
| 3264 | goto expire; |
| 3265 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3266 | /* |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3267 | * 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] | 3268 | */ |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 3269 | if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) { |
| 3270 | /* |
| 3271 | * If slice had not expired at the completion of last request |
| 3272 | * we might not have turned on wait_busy flag. Don't expire |
| 3273 | * the queue yet. Allow the group to get backlogged. |
| 3274 | * |
| 3275 | * The very fact that we have used the slice, that means we |
| 3276 | * have been idling all along on this queue and it should be |
| 3277 | * ok to wait for this request to complete. |
| 3278 | */ |
Vivek Goyal | 82bbbf2 | 2009-12-10 19:25:41 +0100 | [diff] [blame] | 3279 | if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list) |
| 3280 | && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) { |
| 3281 | cfqq = NULL; |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 3282 | goto keep_queue; |
Vivek Goyal | 82bbbf2 | 2009-12-10 19:25:41 +0100 | [diff] [blame] | 3283 | } else |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3284 | goto check_group_idle; |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 3285 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3286 | |
| 3287 | /* |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3288 | * The active queue has requests and isn't expired, allow it to |
| 3289 | * dispatch. |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3290 | */ |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 3291 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3292 | goto keep_queue; |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3293 | |
| 3294 | /* |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3295 | * If another queue has a request waiting within our mean seek |
| 3296 | * distance, let it run. The expire code will check for close |
| 3297 | * cooperators and put the close queue at the front of the service |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3298 | * tree. If possible, merge the expiring queue with the new cfqq. |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3299 | */ |
Jeff Moyer | b3b6d04 | 2009-10-23 17:14:51 -0400 | [diff] [blame] | 3300 | new_cfqq = cfq_close_cooperator(cfqd, cfqq); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3301 | if (new_cfqq) { |
| 3302 | if (!cfqq->new_cfqq) |
| 3303 | cfq_setup_merge(cfqq, new_cfqq); |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3304 | goto expire; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3305 | } |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3306 | |
| 3307 | /* |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3308 | * No requests pending. If the active queue still has requests in |
| 3309 | * flight or is idling for a new request, allow either of these |
| 3310 | * conditions to happen (or time out) before selecting a new queue. |
| 3311 | */ |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 3312 | if (hrtimer_active(&cfqd->idle_slice_timer)) { |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3313 | cfqq = NULL; |
| 3314 | goto keep_queue; |
| 3315 | } |
| 3316 | |
Shaohua Li | 8e1ac66 | 2010-11-08 15:01:04 +0100 | [diff] [blame] | 3317 | /* |
| 3318 | * This is a deep seek queue, but the device is much faster than |
| 3319 | * the queue can deliver, don't idle |
| 3320 | **/ |
| 3321 | if (CFQQ_SEEKY(cfqq) && cfq_cfqq_idle_window(cfqq) && |
| 3322 | (cfq_cfqq_slice_new(cfqq) || |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3323 | (cfqq->slice_end - now > now - cfqq->slice_start))) { |
Shaohua Li | 8e1ac66 | 2010-11-08 15:01:04 +0100 | [diff] [blame] | 3324 | cfq_clear_cfqq_deep(cfqq); |
| 3325 | cfq_clear_cfqq_idle_window(cfqq); |
| 3326 | } |
| 3327 | |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3328 | if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) { |
| 3329 | cfqq = NULL; |
| 3330 | goto keep_queue; |
| 3331 | } |
| 3332 | |
| 3333 | /* |
| 3334 | * If group idle is enabled and there are requests dispatched from |
| 3335 | * this group, wait for requests to complete. |
| 3336 | */ |
| 3337 | check_group_idle: |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 3338 | if (cfqd->cfq_group_idle && cfqq->cfqg->nr_cfqq == 1 && |
| 3339 | cfqq->cfqg->dispatched && |
| 3340 | !cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) { |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3341 | cfqq = NULL; |
| 3342 | goto keep_queue; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3343 | } |
| 3344 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3345 | expire: |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 3346 | cfq_slice_expired(cfqd, 0); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3347 | new_queue: |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3348 | /* |
| 3349 | * Current queue expired. Check if we have to switch to a new |
| 3350 | * service tree |
| 3351 | */ |
| 3352 | if (!new_cfqq) |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3353 | cfq_choose_cfqg(cfqd); |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3354 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3355 | cfqq = cfq_set_active_queue(cfqd, new_cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3356 | keep_queue: |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3357 | return cfqq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3358 | } |
| 3359 | |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 3360 | static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 3361 | { |
| 3362 | int dispatched = 0; |
| 3363 | |
| 3364 | while (cfqq->next_rq) { |
| 3365 | cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq); |
| 3366 | dispatched++; |
| 3367 | } |
| 3368 | |
| 3369 | BUG_ON(!list_empty(&cfqq->fifo)); |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 3370 | |
| 3371 | /* 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] | 3372 | __cfq_slice_expired(cfqq->cfqd, cfqq, 0); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 3373 | return dispatched; |
| 3374 | } |
| 3375 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 3376 | /* |
| 3377 | * Drain our current requests. Used for barriers and when switching |
| 3378 | * io schedulers on-the-fly. |
| 3379 | */ |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 3380 | static int cfq_forced_dispatch(struct cfq_data *cfqd) |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3381 | { |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 3382 | struct cfq_queue *cfqq; |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 3383 | int dispatched = 0; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3384 | |
Divyesh Shah | 3440c49 | 2010-04-09 09:29:57 +0200 | [diff] [blame] | 3385 | /* Expire the timeslice of the current active queue first */ |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 3386 | cfq_slice_expired(cfqd, 0); |
Divyesh Shah | 3440c49 | 2010-04-09 09:29:57 +0200 | [diff] [blame] | 3387 | while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) { |
| 3388 | __cfq_set_active_queue(cfqd, cfqq); |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 3389 | dispatched += __cfq_forced_dispatch_cfqq(cfqq); |
Divyesh Shah | 3440c49 | 2010-04-09 09:29:57 +0200 | [diff] [blame] | 3390 | } |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3391 | |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3392 | BUG_ON(cfqd->busy_queues); |
| 3393 | |
Jeff Moyer | 6923715a | 2009-06-12 15:29:30 +0200 | [diff] [blame] | 3394 | cfq_log(cfqd, "forced_dispatch=%d", dispatched); |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3395 | return dispatched; |
| 3396 | } |
| 3397 | |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3398 | static inline bool cfq_slice_used_soon(struct cfq_data *cfqd, |
| 3399 | struct cfq_queue *cfqq) |
| 3400 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3401 | u64 now = ktime_get_ns(); |
| 3402 | |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3403 | /* the queue hasn't finished any request, can't estimate */ |
| 3404 | if (cfq_cfqq_slice_new(cfqq)) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 3405 | return true; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3406 | if (now + cfqd->cfq_slice_idle * cfqq->dispatched > cfqq->slice_end) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 3407 | return true; |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3408 | |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 3409 | return false; |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3410 | } |
| 3411 | |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3412 | 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] | 3413 | { |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3414 | unsigned int max_dispatch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3415 | |
Glauber Costa | 3932a86 | 2016-09-22 20:59:59 -0400 | [diff] [blame] | 3416 | if (cfq_cfqq_must_dispatch(cfqq)) |
| 3417 | return true; |
| 3418 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3419 | /* |
Jens Axboe | 5ad531d | 2009-07-03 12:57:48 +0200 | [diff] [blame] | 3420 | * Drain async requests before we start sync IO |
| 3421 | */ |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 3422 | 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] | 3423 | return false; |
Jens Axboe | 5ad531d | 2009-07-03 12:57:48 +0200 | [diff] [blame] | 3424 | |
| 3425 | /* |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3426 | * If this is an async queue and we have sync IO in flight, let it wait |
| 3427 | */ |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 3428 | if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq)) |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3429 | return false; |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3430 | |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3431 | max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1); |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3432 | if (cfq_class_idle(cfqq)) |
| 3433 | max_dispatch = 1; |
| 3434 | |
| 3435 | /* |
| 3436 | * Does this cfqq already have too much IO in flight? |
| 3437 | */ |
| 3438 | if (cfqq->dispatched >= max_dispatch) { |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3439 | bool promote_sync = false; |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3440 | /* |
| 3441 | * idle queue must always only have a single IO in flight |
| 3442 | */ |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 3443 | if (cfq_class_idle(cfqq)) |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3444 | return false; |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 3445 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3446 | /* |
Li, Shaohua | c4ade94 | 2011-03-23 08:30:34 +0100 | [diff] [blame] | 3447 | * If there is only one sync queue |
| 3448 | * we can ignore async queue here and give the sync |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3449 | * queue no dispatch limit. The reason is a sync queue can |
| 3450 | * preempt async queue, limiting the sync queue doesn't make |
| 3451 | * sense. This is useful for aiostress test. |
| 3452 | */ |
Li, Shaohua | c4ade94 | 2011-03-23 08:30:34 +0100 | [diff] [blame] | 3453 | if (cfq_cfqq_sync(cfqq) && cfqd->busy_sync_queues == 1) |
| 3454 | promote_sync = true; |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3455 | |
| 3456 | /* |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3457 | * We have other queues, don't allow more IO from this one |
| 3458 | */ |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3459 | if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq) && |
| 3460 | !promote_sync) |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3461 | return false; |
Jens Axboe | 9ede209 | 2007-01-19 12:11:44 +1100 | [diff] [blame] | 3462 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3463 | /* |
Shaohua Li | 474b18c | 2009-12-03 12:58:05 +0100 | [diff] [blame] | 3464 | * Sole queue user, no limit |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 3465 | */ |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3466 | if (cfqd->busy_queues == 1 || promote_sync) |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3467 | max_dispatch = -1; |
| 3468 | else |
| 3469 | /* |
| 3470 | * Normally we start throttling cfqq when cfq_quantum/2 |
| 3471 | * requests have been dispatched. But we can drive |
| 3472 | * deeper queue depths at the beginning of slice |
| 3473 | * subjected to upper limit of cfq_quantum. |
| 3474 | * */ |
| 3475 | max_dispatch = cfqd->cfq_quantum; |
Jens Axboe | 8e29675 | 2009-10-03 16:26:03 +0200 | [diff] [blame] | 3476 | } |
| 3477 | |
| 3478 | /* |
| 3479 | * Async queues must wait a bit before being allowed dispatch. |
| 3480 | * We also ramp up the dispatch depth gradually for async IO, |
| 3481 | * based on the last sync IO we serviced |
| 3482 | */ |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 3483 | if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3484 | u64 last_sync = ktime_get_ns() - cfqd->last_delayed_sync; |
Jens Axboe | 8e29675 | 2009-10-03 16:26:03 +0200 | [diff] [blame] | 3485 | unsigned int depth; |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 3486 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3487 | depth = div64_u64(last_sync, cfqd->cfq_slice[1]); |
Jens Axboe | e00c54c | 2009-10-04 20:36:19 +0200 | [diff] [blame] | 3488 | if (!depth && !cfqq->dispatched) |
| 3489 | depth = 1; |
Jens Axboe | 8e29675 | 2009-10-03 16:26:03 +0200 | [diff] [blame] | 3490 | if (depth < max_dispatch) |
| 3491 | max_dispatch = depth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3492 | } |
| 3493 | |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3494 | /* |
| 3495 | * If we're below the current max, allow a dispatch |
| 3496 | */ |
| 3497 | return cfqq->dispatched < max_dispatch; |
| 3498 | } |
| 3499 | |
| 3500 | /* |
| 3501 | * Dispatch a request from cfqq, moving them to the request queue |
| 3502 | * dispatch list. |
| 3503 | */ |
| 3504 | static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 3505 | { |
| 3506 | struct request *rq; |
| 3507 | |
| 3508 | BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list)); |
| 3509 | |
Glauber Costa | 3932a86 | 2016-09-22 20:59:59 -0400 | [diff] [blame] | 3510 | rq = cfq_check_fifo(cfqq); |
| 3511 | if (rq) |
| 3512 | cfq_mark_cfqq_must_dispatch(cfqq); |
| 3513 | |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3514 | if (!cfq_may_dispatch(cfqd, cfqq)) |
| 3515 | return false; |
| 3516 | |
| 3517 | /* |
| 3518 | * follow expired path, else get first next available |
| 3519 | */ |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3520 | if (!rq) |
| 3521 | rq = cfqq->next_rq; |
Glauber Costa | 3932a86 | 2016-09-22 20:59:59 -0400 | [diff] [blame] | 3522 | else |
| 3523 | cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq); |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3524 | |
| 3525 | /* |
| 3526 | * insert request into driver dispatch list |
| 3527 | */ |
| 3528 | cfq_dispatch_insert(cfqd->queue, rq); |
| 3529 | |
| 3530 | if (!cfqd->active_cic) { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3531 | struct cfq_io_cq *cic = RQ_CIC(rq); |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3532 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3533 | atomic_long_inc(&cic->icq.ioc->refcount); |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3534 | cfqd->active_cic = cic; |
| 3535 | } |
| 3536 | |
| 3537 | return true; |
| 3538 | } |
| 3539 | |
| 3540 | /* |
| 3541 | * Find the cfqq that we need to service and move a request from that to the |
| 3542 | * dispatch list |
| 3543 | */ |
| 3544 | static int cfq_dispatch_requests(struct request_queue *q, int force) |
| 3545 | { |
| 3546 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 3547 | struct cfq_queue *cfqq; |
| 3548 | |
| 3549 | if (!cfqd->busy_queues) |
| 3550 | return 0; |
| 3551 | |
| 3552 | if (unlikely(force)) |
| 3553 | return cfq_forced_dispatch(cfqd); |
| 3554 | |
| 3555 | cfqq = cfq_select_queue(cfqd); |
| 3556 | if (!cfqq) |
Jens Axboe | 8e29675 | 2009-10-03 16:26:03 +0200 | [diff] [blame] | 3557 | return 0; |
| 3558 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3559 | /* |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3560 | * Dispatch a request from this cfqq, if it is allowed |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3561 | */ |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3562 | if (!cfq_dispatch_request(cfqd, cfqq)) |
| 3563 | return 0; |
| 3564 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3565 | cfqq->slice_dispatch++; |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 3566 | cfq_clear_cfqq_must_dispatch(cfqq); |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3567 | |
| 3568 | /* |
| 3569 | * expire an async queue immediately if it has used up its slice. idle |
| 3570 | * queue always expire after 1 dispatch round. |
| 3571 | */ |
| 3572 | if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) && |
| 3573 | cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) || |
| 3574 | cfq_class_idle(cfqq))) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3575 | cfqq->slice_end = ktime_get_ns() + 1; |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 3576 | cfq_slice_expired(cfqd, 0); |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3577 | } |
| 3578 | |
Shan Wei | b217a90 | 2009-09-01 10:06:42 +0200 | [diff] [blame] | 3579 | cfq_log_cfqq(cfqd, cfqq, "dispatched a request"); |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3580 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3581 | } |
| 3582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3583 | /* |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 3584 | * task holds one reference to the queue, dropped when task exits. each rq |
| 3585 | * 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] | 3586 | * |
Vivek Goyal | b1c3576 | 2009-12-03 12:59:47 -0500 | [diff] [blame] | 3587 | * 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] | 3588 | * queue lock must be held here. |
| 3589 | */ |
| 3590 | static void cfq_put_queue(struct cfq_queue *cfqq) |
| 3591 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3592 | struct cfq_data *cfqd = cfqq->cfqd; |
Justin TerAvest | 0bbfeb8 | 2011-03-01 15:05:08 -0500 | [diff] [blame] | 3593 | struct cfq_group *cfqg; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3594 | |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3595 | BUG_ON(cfqq->ref <= 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3596 | |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3597 | cfqq->ref--; |
| 3598 | if (cfqq->ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3599 | return; |
| 3600 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3601 | cfq_log_cfqq(cfqd, cfqq, "put_queue"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3602 | BUG_ON(rb_first(&cfqq->sort_list)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3603 | BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]); |
Vivek Goyal | b1c3576 | 2009-12-03 12:59:47 -0500 | [diff] [blame] | 3604 | cfqg = cfqq->cfqg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3605 | |
Jens Axboe | 28f95cbc | 2007-01-19 12:09:53 +1100 | [diff] [blame] | 3606 | if (unlikely(cfqd->active_queue == cfqq)) { |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 3607 | __cfq_slice_expired(cfqd, cfqq, 0); |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 3608 | cfq_schedule_dispatch(cfqd); |
Jens Axboe | 28f95cbc | 2007-01-19 12:09:53 +1100 | [diff] [blame] | 3609 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3610 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 3611 | BUG_ON(cfq_cfqq_on_rr(cfqq)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3612 | kmem_cache_free(cfq_pool, cfqq); |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 3613 | cfqg_put(cfqg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3614 | } |
| 3615 | |
Shaohua Li | d02a2c0 | 2010-05-25 10:16:53 +0200 | [diff] [blame] | 3616 | static void cfq_put_cooperator(struct cfq_queue *cfqq) |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3617 | { |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3618 | struct cfq_queue *__cfqq, *next; |
| 3619 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3620 | /* |
| 3621 | * If this queue was scheduled to merge with another queue, be |
| 3622 | * sure to drop the reference taken on that queue (and others in |
| 3623 | * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs. |
| 3624 | */ |
| 3625 | __cfqq = cfqq->new_cfqq; |
| 3626 | while (__cfqq) { |
| 3627 | if (__cfqq == cfqq) { |
| 3628 | WARN(1, "cfqq->new_cfqq loop detected\n"); |
| 3629 | break; |
| 3630 | } |
| 3631 | next = __cfqq->new_cfqq; |
| 3632 | cfq_put_queue(__cfqq); |
| 3633 | __cfqq = next; |
| 3634 | } |
Shaohua Li | d02a2c0 | 2010-05-25 10:16:53 +0200 | [diff] [blame] | 3635 | } |
| 3636 | |
| 3637 | static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 3638 | { |
| 3639 | if (unlikely(cfqq == cfqd->active_queue)) { |
| 3640 | __cfq_slice_expired(cfqd, cfqq, 0); |
| 3641 | cfq_schedule_dispatch(cfqd); |
| 3642 | } |
| 3643 | |
| 3644 | cfq_put_cooperator(cfqq); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3645 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3646 | cfq_put_queue(cfqq); |
| 3647 | } |
| 3648 | |
Tejun Heo | 9b84cac | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 3649 | static void cfq_init_icq(struct io_cq *icq) |
| 3650 | { |
| 3651 | struct cfq_io_cq *cic = icq_to_cic(icq); |
| 3652 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3653 | cic->ttime.last_end_request = ktime_get_ns(); |
Tejun Heo | 9b84cac | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 3654 | } |
| 3655 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3656 | static void cfq_exit_icq(struct io_cq *icq) |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3657 | { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3658 | struct cfq_io_cq *cic = icq_to_cic(icq); |
Tejun Heo | 283287a | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 3659 | struct cfq_data *cfqd = cic_to_cfqd(cic); |
Fabio Checconi | 4faa3c8 | 2008-04-10 08:28:01 +0200 | [diff] [blame] | 3660 | |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3661 | if (cic_to_cfqq(cic, false)) { |
| 3662 | cfq_exit_cfqq(cfqd, cic_to_cfqq(cic, false)); |
| 3663 | cic_set_cfqq(cic, NULL, false); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3664 | } |
| 3665 | |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3666 | if (cic_to_cfqq(cic, true)) { |
| 3667 | cfq_exit_cfqq(cfqd, cic_to_cfqq(cic, true)); |
| 3668 | cic_set_cfqq(cic, NULL, true); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3669 | } |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3670 | } |
| 3671 | |
Tejun Heo | abede6d | 2012-03-19 15:10:57 -0700 | [diff] [blame] | 3672 | static void cfq_init_prio_data(struct cfq_queue *cfqq, struct cfq_io_cq *cic) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3673 | { |
| 3674 | struct task_struct *tsk = current; |
| 3675 | int ioprio_class; |
| 3676 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3677 | if (!cfq_cfqq_prio_changed(cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3678 | return; |
| 3679 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3680 | ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3681 | switch (ioprio_class) { |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3682 | default: |
| 3683 | printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class); |
| 3684 | case IOPRIO_CLASS_NONE: |
| 3685 | /* |
Jens Axboe | 6d63c27 | 2008-05-07 09:51:23 +0200 | [diff] [blame] | 3686 | * no prio set, inherit CPU scheduling settings |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3687 | */ |
| 3688 | cfqq->ioprio = task_nice_ioprio(tsk); |
Jens Axboe | 6d63c27 | 2008-05-07 09:51:23 +0200 | [diff] [blame] | 3689 | cfqq->ioprio_class = task_nice_ioclass(tsk); |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3690 | break; |
| 3691 | case IOPRIO_CLASS_RT: |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3692 | cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio); |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3693 | cfqq->ioprio_class = IOPRIO_CLASS_RT; |
| 3694 | break; |
| 3695 | case IOPRIO_CLASS_BE: |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3696 | cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio); |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3697 | cfqq->ioprio_class = IOPRIO_CLASS_BE; |
| 3698 | break; |
| 3699 | case IOPRIO_CLASS_IDLE: |
| 3700 | cfqq->ioprio_class = IOPRIO_CLASS_IDLE; |
| 3701 | cfqq->ioprio = 7; |
| 3702 | cfq_clear_cfqq_idle_window(cfqq); |
| 3703 | break; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3704 | } |
| 3705 | |
| 3706 | /* |
| 3707 | * keep track of original prio settings in case we have to temporarily |
| 3708 | * elevate the priority of this queue |
| 3709 | */ |
| 3710 | cfqq->org_ioprio = cfqq->ioprio; |
Jens Axboe | b8269db | 2016-06-09 15:47:29 -0600 | [diff] [blame] | 3711 | cfqq->org_ioprio_class = cfqq->ioprio_class; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3712 | cfq_clear_cfqq_prio_changed(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3713 | } |
| 3714 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3715 | static void check_ioprio_changed(struct cfq_io_cq *cic, struct bio *bio) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3716 | { |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3717 | int ioprio = cic->icq.ioc->ioprio; |
Konstantin Khlebnikov | bca4b91 | 2010-05-20 23:21:34 +0400 | [diff] [blame] | 3718 | struct cfq_data *cfqd = cic_to_cfqd(cic); |
Al Viro | 478a82b | 2006-03-18 13:25:24 -0500 | [diff] [blame] | 3719 | struct cfq_queue *cfqq; |
Jens Axboe | 35e6077 | 2006-06-14 09:10:45 +0200 | [diff] [blame] | 3720 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3721 | /* |
| 3722 | * Check whether ioprio has changed. The condition may trigger |
| 3723 | * spuriously on a newly created cic but there's no harm. |
| 3724 | */ |
| 3725 | if (unlikely(!cfqd) || likely(cic->ioprio == ioprio)) |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3726 | return; |
| 3727 | |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3728 | cfqq = cic_to_cfqq(cic, false); |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3729 | if (cfqq) { |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3730 | cfq_put_queue(cfqq); |
Tejun Heo | 2da8de0 | 2015-08-18 14:55:02 -0700 | [diff] [blame] | 3731 | cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic, bio); |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3732 | cic_set_cfqq(cic, cfqq, false); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3733 | } |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3734 | |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3735 | cfqq = cic_to_cfqq(cic, true); |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3736 | if (cfqq) |
| 3737 | cfq_mark_cfqq_prio_changed(cfqq); |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3738 | |
| 3739 | cic->ioprio = ioprio; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3740 | } |
| 3741 | |
Jens Axboe | d5036d7 | 2009-06-26 10:44:34 +0200 | [diff] [blame] | 3742 | 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] | 3743 | pid_t pid, bool is_sync) |
Jens Axboe | d5036d7 | 2009-06-26 10:44:34 +0200 | [diff] [blame] | 3744 | { |
| 3745 | RB_CLEAR_NODE(&cfqq->rb_node); |
| 3746 | RB_CLEAR_NODE(&cfqq->p_node); |
| 3747 | INIT_LIST_HEAD(&cfqq->fifo); |
| 3748 | |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3749 | cfqq->ref = 0; |
Jens Axboe | d5036d7 | 2009-06-26 10:44:34 +0200 | [diff] [blame] | 3750 | cfqq->cfqd = cfqd; |
| 3751 | |
| 3752 | cfq_mark_cfqq_prio_changed(cfqq); |
| 3753 | |
| 3754 | if (is_sync) { |
| 3755 | if (!cfq_class_idle(cfqq)) |
| 3756 | cfq_mark_cfqq_idle_window(cfqq); |
| 3757 | cfq_mark_cfqq_sync(cfqq); |
| 3758 | } |
| 3759 | cfqq->pid = pid; |
| 3760 | } |
| 3761 | |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3762 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3763 | static void check_blkcg_changed(struct cfq_io_cq *cic, struct bio *bio) |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3764 | { |
Konstantin Khlebnikov | bca4b91 | 2010-05-20 23:21:34 +0400 | [diff] [blame] | 3765 | struct cfq_data *cfqd = cic_to_cfqd(cic); |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3766 | struct cfq_queue *cfqq; |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 3767 | uint64_t serial_nr; |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 3768 | bool nonroot_cg; |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3769 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3770 | rcu_read_lock(); |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 3771 | serial_nr = bio_blkcg(bio)->css.serial_nr; |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 3772 | nonroot_cg = bio_blkcg(bio) != &blkcg_root; |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3773 | rcu_read_unlock(); |
| 3774 | |
| 3775 | /* |
| 3776 | * Check whether blkcg has changed. The condition may trigger |
| 3777 | * spuriously on a newly created cic but there's no harm. |
| 3778 | */ |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 3779 | if (unlikely(!cfqd) || likely(cic->blkcg_serial_nr == serial_nr)) |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3780 | return; |
| 3781 | |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3782 | /* |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 3783 | * If we have a non-root cgroup, we can depend on that to |
| 3784 | * do proper throttling of writes. Turn off wbt for that |
Jens Axboe | fa224ee | 2016-11-28 09:25:50 -0700 | [diff] [blame] | 3785 | * case, if it was enabled by default. |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 3786 | */ |
Jens Axboe | fa224ee | 2016-11-28 09:25:50 -0700 | [diff] [blame] | 3787 | if (nonroot_cg) |
| 3788 | wbt_disable_default(cfqd->queue); |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 3789 | |
| 3790 | /* |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3791 | * Drop reference to queues. New queues will be assigned in new |
| 3792 | * group upon arrival of fresh requests. |
| 3793 | */ |
| 3794 | cfqq = cic_to_cfqq(cic, false); |
| 3795 | if (cfqq) { |
| 3796 | cfq_log_cfqq(cfqd, cfqq, "changed cgroup"); |
| 3797 | cic_set_cfqq(cic, NULL, false); |
| 3798 | cfq_put_queue(cfqq); |
| 3799 | } |
| 3800 | |
| 3801 | cfqq = cic_to_cfqq(cic, true); |
| 3802 | if (cfqq) { |
| 3803 | cfq_log_cfqq(cfqd, cfqq, "changed cgroup"); |
| 3804 | cic_set_cfqq(cic, NULL, true); |
| 3805 | cfq_put_queue(cfqq); |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3806 | } |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3807 | |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 3808 | cic->blkcg_serial_nr = serial_nr; |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3809 | } |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3810 | #else |
| 3811 | static inline void check_blkcg_changed(struct cfq_io_cq *cic, struct bio *bio) { } |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3812 | #endif /* CONFIG_CFQ_GROUP_IOSCHED */ |
| 3813 | |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3814 | static struct cfq_queue ** |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3815 | cfq_async_queue_prio(struct cfq_group *cfqg, int ioprio_class, int ioprio) |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3816 | { |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3817 | switch (ioprio_class) { |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3818 | case IOPRIO_CLASS_RT: |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3819 | return &cfqg->async_cfqq[0][ioprio]; |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3820 | case IOPRIO_CLASS_NONE: |
| 3821 | ioprio = IOPRIO_NORM; |
| 3822 | /* fall through */ |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3823 | case IOPRIO_CLASS_BE: |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3824 | return &cfqg->async_cfqq[1][ioprio]; |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3825 | case IOPRIO_CLASS_IDLE: |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3826 | return &cfqg->async_idle_cfqq; |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3827 | default: |
| 3828 | BUG(); |
| 3829 | } |
| 3830 | } |
| 3831 | |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3832 | static struct cfq_queue * |
Tejun Heo | abede6d | 2012-03-19 15:10:57 -0700 | [diff] [blame] | 3833 | cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct cfq_io_cq *cic, |
Tejun Heo | 2da8de0 | 2015-08-18 14:55:02 -0700 | [diff] [blame] | 3834 | struct bio *bio) |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3835 | { |
Jeff Moyer | c6ce194 | 2015-01-12 15:21:01 -0500 | [diff] [blame] | 3836 | int ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio); |
| 3837 | int ioprio = IOPRIO_PRIO_DATA(cic->ioprio); |
Tejun Heo | d4aad7f | 2015-08-18 14:55:04 -0700 | [diff] [blame] | 3838 | struct cfq_queue **async_cfqq = NULL; |
Tejun Heo | 4ebc1c6 | 2015-08-18 14:54:57 -0700 | [diff] [blame] | 3839 | struct cfq_queue *cfqq; |
Tejun Heo | 322731e | 2015-08-18 14:55:03 -0700 | [diff] [blame] | 3840 | struct cfq_group *cfqg; |
| 3841 | |
| 3842 | rcu_read_lock(); |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 3843 | cfqg = cfq_lookup_cfqg(cfqd, bio_blkcg(bio)); |
Tejun Heo | 322731e | 2015-08-18 14:55:03 -0700 | [diff] [blame] | 3844 | if (!cfqg) { |
| 3845 | cfqq = &cfqd->oom_cfqq; |
| 3846 | goto out; |
| 3847 | } |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3848 | |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3849 | if (!is_sync) { |
Jeff Moyer | c6ce194 | 2015-01-12 15:21:01 -0500 | [diff] [blame] | 3850 | if (!ioprio_valid(cic->ioprio)) { |
| 3851 | struct task_struct *tsk = current; |
| 3852 | ioprio = task_nice_ioprio(tsk); |
| 3853 | ioprio_class = task_nice_ioclass(tsk); |
| 3854 | } |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3855 | async_cfqq = cfq_async_queue_prio(cfqg, ioprio_class, ioprio); |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3856 | cfqq = *async_cfqq; |
Tejun Heo | 4ebc1c6 | 2015-08-18 14:54:57 -0700 | [diff] [blame] | 3857 | if (cfqq) |
| 3858 | goto out; |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3859 | } |
| 3860 | |
Tejun Heo | e00f4f4 | 2016-11-21 18:03:32 -0500 | [diff] [blame] | 3861 | cfqq = kmem_cache_alloc_node(cfq_pool, |
| 3862 | GFP_NOWAIT | __GFP_ZERO | __GFP_NOWARN, |
Tejun Heo | d4aad7f | 2015-08-18 14:55:04 -0700 | [diff] [blame] | 3863 | cfqd->queue->node); |
| 3864 | if (!cfqq) { |
| 3865 | cfqq = &cfqd->oom_cfqq; |
| 3866 | goto out; |
| 3867 | } |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3868 | |
Alexander Potapenko | 4d608ba | 2017-01-23 15:06:43 +0100 | [diff] [blame] | 3869 | /* cfq_init_cfqq() assumes cfqq->ioprio_class is initialized. */ |
| 3870 | cfqq->ioprio_class = IOPRIO_CLASS_NONE; |
Tejun Heo | d4aad7f | 2015-08-18 14:55:04 -0700 | [diff] [blame] | 3871 | cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync); |
| 3872 | cfq_init_prio_data(cfqq, cic); |
| 3873 | cfq_link_cfqq_cfqg(cfqq, cfqg); |
| 3874 | cfq_log_cfqq(cfqd, cfqq, "alloced"); |
| 3875 | |
| 3876 | if (async_cfqq) { |
| 3877 | /* a new async queue is created, pin and remember */ |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3878 | cfqq->ref++; |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3879 | *async_cfqq = cfqq; |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3880 | } |
Tejun Heo | 4ebc1c6 | 2015-08-18 14:54:57 -0700 | [diff] [blame] | 3881 | out: |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3882 | cfqq->ref++; |
Tejun Heo | 322731e | 2015-08-18 14:55:03 -0700 | [diff] [blame] | 3883 | rcu_read_unlock(); |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3884 | return cfqq; |
| 3885 | } |
| 3886 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3887 | static void |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3888 | __cfq_update_io_thinktime(struct cfq_ttime *ttime, u64 slice_idle) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3889 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3890 | u64 elapsed = ktime_get_ns() - ttime->last_end_request; |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3891 | elapsed = min(elapsed, 2UL * slice_idle); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3892 | |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3893 | ttime->ttime_samples = (7*ttime->ttime_samples + 256) / 8; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3894 | ttime->ttime_total = div_u64(7*ttime->ttime_total + 256*elapsed, 8); |
| 3895 | ttime->ttime_mean = div64_ul(ttime->ttime_total + 128, |
| 3896 | ttime->ttime_samples); |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3897 | } |
| 3898 | |
| 3899 | static void |
| 3900 | cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3901 | struct cfq_io_cq *cic) |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3902 | { |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 3903 | if (cfq_cfqq_sync(cfqq)) { |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3904 | __cfq_update_io_thinktime(&cic->ttime, cfqd->cfq_slice_idle); |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 3905 | __cfq_update_io_thinktime(&cfqq->service_tree->ttime, |
| 3906 | cfqd->cfq_slice_idle); |
| 3907 | } |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 3908 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
| 3909 | __cfq_update_io_thinktime(&cfqq->cfqg->ttime, cfqd->cfq_group_idle); |
| 3910 | #endif |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3911 | } |
| 3912 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 3913 | static void |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 3914 | cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3915 | struct request *rq) |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 3916 | { |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 3917 | sector_t sdist = 0; |
Corrado Zoccolo | 41647e7 | 2010-02-27 19:45:40 +0100 | [diff] [blame] | 3918 | sector_t n_sec = blk_rq_sectors(rq); |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 3919 | if (cfqq->last_request_pos) { |
| 3920 | if (cfqq->last_request_pos < blk_rq_pos(rq)) |
| 3921 | sdist = blk_rq_pos(rq) - cfqq->last_request_pos; |
| 3922 | else |
| 3923 | sdist = cfqq->last_request_pos - blk_rq_pos(rq); |
| 3924 | } |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 3925 | |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 3926 | cfqq->seek_history <<= 1; |
Corrado Zoccolo | 41647e7 | 2010-02-27 19:45:40 +0100 | [diff] [blame] | 3927 | if (blk_queue_nonrot(cfqd->queue)) |
| 3928 | cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT); |
| 3929 | else |
| 3930 | cfqq->seek_history |= (sdist > CFQQ_SEEK_THR); |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 3931 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3932 | |
Christoph Hellwig | a2b8096 | 2016-11-01 07:40:09 -0600 | [diff] [blame] | 3933 | static inline bool req_noidle(struct request *req) |
| 3934 | { |
| 3935 | return req_op(req) == REQ_OP_WRITE && |
| 3936 | (req->cmd_flags & (REQ_SYNC | REQ_IDLE)) == REQ_SYNC; |
| 3937 | } |
| 3938 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3939 | /* |
| 3940 | * Disable idle window if the process thinks too long or seeks so much that |
| 3941 | * it doesn't matter |
| 3942 | */ |
| 3943 | static void |
| 3944 | cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3945 | struct cfq_io_cq *cic) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3946 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3947 | int old_idle, enable_idle; |
Jens Axboe | 1be92f2f | 2007-04-19 14:32:26 +0200 | [diff] [blame] | 3948 | |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 3949 | /* |
| 3950 | * Don't idle for async or idle io prio class |
| 3951 | */ |
| 3952 | if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq)) |
Jens Axboe | 1be92f2f | 2007-04-19 14:32:26 +0200 | [diff] [blame] | 3953 | return; |
| 3954 | |
Jens Axboe | c265a7f | 2008-06-26 13:49:33 +0200 | [diff] [blame] | 3955 | enable_idle = old_idle = cfq_cfqq_idle_window(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3956 | |
Corrado Zoccolo | 76280af | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 3957 | if (cfqq->queued[0] + cfqq->queued[1] >= 4) |
| 3958 | cfq_mark_cfqq_deep(cfqq); |
| 3959 | |
Christoph Hellwig | a2b8096 | 2016-11-01 07:40:09 -0600 | [diff] [blame] | 3960 | if (cfqq->next_rq && req_noidle(cfqq->next_rq)) |
Corrado Zoccolo | 749ef9f | 2010-09-20 15:24:50 +0200 | [diff] [blame] | 3961 | enable_idle = 0; |
Tejun Heo | f6e8d01 | 2012-03-05 13:15:26 -0800 | [diff] [blame] | 3962 | else if (!atomic_read(&cic->icq.ioc->active_ref) || |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3963 | !cfqd->cfq_slice_idle || |
| 3964 | (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq))) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3965 | enable_idle = 0; |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3966 | else if (sample_valid(cic->ttime.ttime_samples)) { |
| 3967 | if (cic->ttime.ttime_mean > cfqd->cfq_slice_idle) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3968 | enable_idle = 0; |
| 3969 | else |
| 3970 | enable_idle = 1; |
| 3971 | } |
| 3972 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3973 | if (old_idle != enable_idle) { |
| 3974 | cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle); |
| 3975 | if (enable_idle) |
| 3976 | cfq_mark_cfqq_idle_window(cfqq); |
| 3977 | else |
| 3978 | cfq_clear_cfqq_idle_window(cfqq); |
| 3979 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3980 | } |
| 3981 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3982 | /* |
| 3983 | * Check if new_cfqq should preempt the currently active queue. Return 0 for |
| 3984 | * no or if we aren't sure, a 1 will cause a preempt. |
| 3985 | */ |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 3986 | static bool |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3987 | cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq, |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 3988 | struct request *rq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3989 | { |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3990 | struct cfq_queue *cfqq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3991 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3992 | cfqq = cfqd->active_queue; |
| 3993 | if (!cfqq) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 3994 | return false; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3995 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3996 | if (cfq_class_idle(new_cfqq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 3997 | return false; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3998 | |
| 3999 | if (cfq_class_idle(cfqq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4000 | return true; |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4001 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4002 | /* |
Divyesh Shah | 875feb6 | 2010-01-06 18:58:20 -0800 | [diff] [blame] | 4003 | * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice. |
| 4004 | */ |
| 4005 | if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq)) |
| 4006 | return false; |
| 4007 | |
| 4008 | /* |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 4009 | * if the new request is sync, but the currently running queue is |
| 4010 | * not, let the sync request have priority. |
| 4011 | */ |
Glauber Costa | 3932a86 | 2016-09-22 20:59:59 -0400 | [diff] [blame] | 4012 | if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4013 | return true; |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4014 | |
Jan Kara | 3984aa5 | 2016-01-12 16:24:19 +0100 | [diff] [blame] | 4015 | /* |
| 4016 | * Treat ancestors of current cgroup the same way as current cgroup. |
| 4017 | * For anybody else we disallow preemption to guarantee service |
| 4018 | * fairness among cgroups. |
| 4019 | */ |
| 4020 | if (!cfqg_is_descendant(cfqq->cfqg, new_cfqq->cfqg)) |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 4021 | return false; |
| 4022 | |
| 4023 | if (cfq_slice_used(cfqq)) |
| 4024 | return true; |
| 4025 | |
Jan Kara | 6c80731c | 2016-01-12 16:24:16 +0100 | [diff] [blame] | 4026 | /* |
| 4027 | * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice. |
| 4028 | */ |
| 4029 | if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq)) |
| 4030 | return true; |
| 4031 | |
| 4032 | WARN_ON_ONCE(cfqq->ioprio_class != new_cfqq->ioprio_class); |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 4033 | /* Allow preemption only if we are idling on sync-noidle tree */ |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 4034 | if (cfqd->serving_wl_type == SYNC_NOIDLE_WORKLOAD && |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 4035 | cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD && |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 4036 | RB_EMPTY_ROOT(&cfqq->sort_list)) |
| 4037 | return true; |
| 4038 | |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 4039 | /* |
Jens Axboe | b53d1ed | 2011-08-19 08:34:48 +0200 | [diff] [blame] | 4040 | * So both queues are sync. Let the new request get disk time if |
| 4041 | * it's a metadata request and the current queue is doing regular IO. |
| 4042 | */ |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 4043 | if ((rq->cmd_flags & REQ_PRIO) && !cfqq->prio_pending) |
Jens Axboe | b53d1ed | 2011-08-19 08:34:48 +0200 | [diff] [blame] | 4044 | return true; |
| 4045 | |
Shaohua Li | d2d59e1 | 2010-11-08 15:01:03 +0100 | [diff] [blame] | 4046 | /* An idle queue should not be idle now for some reason */ |
| 4047 | if (RB_EMPTY_ROOT(&cfqq->sort_list) && !cfq_should_idle(cfqd, cfqq)) |
| 4048 | return true; |
| 4049 | |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4050 | if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4051 | return false; |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4052 | |
| 4053 | /* |
| 4054 | * if this request is as-good as one we would expect from the |
| 4055 | * current cfqq, let it preempt |
| 4056 | */ |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 4057 | if (cfq_rq_close(cfqd, cfqq, rq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4058 | return true; |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4059 | |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4060 | return false; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4061 | } |
| 4062 | |
| 4063 | /* |
| 4064 | * cfqq preempts the active queue. if we allowed preempt with no slice left, |
| 4065 | * let it have half of its nominal slice. |
| 4066 | */ |
| 4067 | static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 4068 | { |
Shaohua Li | df0793a | 2012-01-19 09:20:09 +0100 | [diff] [blame] | 4069 | enum wl_type_t old_type = cfqq_type(cfqd->active_queue); |
| 4070 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 4071 | cfq_log_cfqq(cfqd, cfqq, "preempt"); |
Shaohua Li | df0793a | 2012-01-19 09:20:09 +0100 | [diff] [blame] | 4072 | cfq_slice_expired(cfqd, 1); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4073 | |
Jens Axboe | bf57225 | 2006-07-19 20:29:12 +0200 | [diff] [blame] | 4074 | /* |
Shaohua Li | f8ae6e3 | 2011-01-14 08:41:02 +0100 | [diff] [blame] | 4075 | * workload type is changed, don't save slice, otherwise preempt |
| 4076 | * doesn't happen |
| 4077 | */ |
Shaohua Li | df0793a | 2012-01-19 09:20:09 +0100 | [diff] [blame] | 4078 | if (old_type != cfqq_type(cfqq)) |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 4079 | cfqq->cfqg->saved_wl_slice = 0; |
Shaohua Li | f8ae6e3 | 2011-01-14 08:41:02 +0100 | [diff] [blame] | 4080 | |
| 4081 | /* |
Jens Axboe | bf57225 | 2006-07-19 20:29:12 +0200 | [diff] [blame] | 4082 | * Put the new queue at the front of the of the current list, |
| 4083 | * so we know that it will be selected next. |
| 4084 | */ |
| 4085 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 4086 | |
| 4087 | cfq_service_tree_add(cfqd, cfqq, 1); |
Justin TerAvest | eda5e0c | 2011-03-22 21:26:49 +0100 | [diff] [blame] | 4088 | |
Justin TerAvest | 62a37f6 | 2011-03-23 08:25:44 +0100 | [diff] [blame] | 4089 | cfqq->slice_end = 0; |
| 4090 | cfq_mark_cfqq_slice_new(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4091 | } |
| 4092 | |
| 4093 | /* |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4094 | * 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] | 4095 | * something we should do about it |
| 4096 | */ |
| 4097 | static void |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4098 | cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
| 4099 | struct request *rq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4100 | { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4101 | struct cfq_io_cq *cic = RQ_CIC(rq); |
Jens Axboe | 12e9fdd | 2006-06-01 10:09:56 +0200 | [diff] [blame] | 4102 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4103 | cfqd->rq_queued++; |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 4104 | if (rq->cmd_flags & REQ_PRIO) |
| 4105 | cfqq->prio_pending++; |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 4106 | |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 4107 | cfq_update_io_thinktime(cfqd, cfqq, cic); |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 4108 | cfq_update_io_seektime(cfqd, cfqq, rq); |
Jens Axboe | 9c2c38a | 2005-08-24 14:57:54 +0200 | [diff] [blame] | 4109 | cfq_update_idle_window(cfqd, cfqq, cic); |
| 4110 | |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 4111 | cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4112 | |
| 4113 | if (cfqq == cfqd->active_queue) { |
| 4114 | /* |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 4115 | * Remember that we saw a request from this process, but |
| 4116 | * don't start queuing just yet. Otherwise we risk seeing lots |
| 4117 | * of tiny requests, because we disrupt the normal plugging |
Jens Axboe | d6ceb25 | 2009-04-14 14:18:16 +0200 | [diff] [blame] | 4118 | * and merging. If the request is already larger than a single |
| 4119 | * page, let it rip immediately. For that case we assume that |
Jens Axboe | 2d87072 | 2009-04-15 12:12:46 +0200 | [diff] [blame] | 4120 | * merging is already done. Ditto for a busy system that |
| 4121 | * has other work pending, don't risk delaying until the |
| 4122 | * idle timer unplug to continue working. |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4123 | */ |
Jens Axboe | d6ceb25 | 2009-04-14 14:18:16 +0200 | [diff] [blame] | 4124 | if (cfq_cfqq_wait_request(cfqq)) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4125 | if (blk_rq_bytes(rq) > PAGE_SIZE || |
Jens Axboe | 2d87072 | 2009-04-15 12:12:46 +0200 | [diff] [blame] | 4126 | cfqd->busy_queues > 1) { |
Divyesh Shah | 812df48 | 2010-04-08 21:15:35 -0700 | [diff] [blame] | 4127 | cfq_del_timer(cfqd, cfqq); |
Gui Jianfeng | 554554f | 2009-12-10 09:38:39 +0100 | [diff] [blame] | 4128 | cfq_clear_cfqq_wait_request(cfqq); |
Christoph Hellwig | 24ecfbe | 2011-04-18 11:41:33 +0200 | [diff] [blame] | 4129 | __blk_run_queue(cfqd->queue); |
Divyesh Shah | a11cdaa | 2010-04-13 19:59:17 +0200 | [diff] [blame] | 4130 | } else { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 4131 | cfqg_stats_update_idle_time(cfqq->cfqg); |
Vivek Goyal | bf791937 | 2009-12-03 12:59:37 -0500 | [diff] [blame] | 4132 | cfq_mark_cfqq_must_dispatch(cfqq); |
Divyesh Shah | a11cdaa | 2010-04-13 19:59:17 +0200 | [diff] [blame] | 4133 | } |
Jens Axboe | d6ceb25 | 2009-04-14 14:18:16 +0200 | [diff] [blame] | 4134 | } |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4135 | } else if (cfq_should_preempt(cfqd, cfqq, rq)) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4136 | /* |
| 4137 | * not the active queue - expire current slice if it is |
| 4138 | * idle and has expired it's mean thinktime or this new queue |
Divyesh Shah | 3a9a3f6 | 2009-01-30 12:46:41 +0100 | [diff] [blame] | 4139 | * has some old slice time left and is of higher priority or |
| 4140 | * this new queue is RT and the current one is BE |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4141 | */ |
| 4142 | cfq_preempt_queue(cfqd, cfqq); |
Christoph Hellwig | 24ecfbe | 2011-04-18 11:41:33 +0200 | [diff] [blame] | 4143 | __blk_run_queue(cfqd->queue); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4144 | } |
| 4145 | } |
| 4146 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4147 | static void cfq_insert_request(struct request_queue *q, struct request *rq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4148 | { |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 4149 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4150 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4151 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 4152 | cfq_log_cfqq(cfqd, cfqq, "insert_request"); |
Tejun Heo | abede6d | 2012-03-19 15:10:57 -0700 | [diff] [blame] | 4153 | cfq_init_prio_data(cfqq, RQ_CIC(rq)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4154 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4155 | rq->fifo_time = ktime_get_ns() + cfqd->cfq_fifo_expire[rq_is_sync(rq)]; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4156 | list_add_tail(&rq->queuelist, &cfqq->fifo); |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 4157 | cfq_add_rq_rb(rq); |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 4158 | cfqg_stats_update_io_add(RQ_CFQG(rq), cfqd->serving_group, |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 4159 | rq->cmd_flags); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4160 | cfq_rq_enqueued(cfqd, cfqq, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4161 | } |
| 4162 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4163 | /* |
| 4164 | * Update hw_tag based on peak queue depth over 50 samples under |
| 4165 | * sufficient load. |
| 4166 | */ |
| 4167 | static void cfq_update_hw_tag(struct cfq_data *cfqd) |
| 4168 | { |
Shaohua Li | 1a1238a | 2009-10-27 08:46:23 +0100 | [diff] [blame] | 4169 | struct cfq_queue *cfqq = cfqd->active_queue; |
| 4170 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4171 | if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth) |
| 4172 | cfqd->hw_tag_est_depth = cfqd->rq_in_driver; |
Corrado Zoccolo | e459dd0 | 2009-11-26 10:02:57 +0100 | [diff] [blame] | 4173 | |
| 4174 | if (cfqd->hw_tag == 1) |
| 4175 | return; |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4176 | |
| 4177 | if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN && |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4178 | cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN) |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4179 | return; |
| 4180 | |
Shaohua Li | 1a1238a | 2009-10-27 08:46:23 +0100 | [diff] [blame] | 4181 | /* |
| 4182 | * If active queue hasn't enough requests and can idle, cfq might not |
| 4183 | * dispatch sufficient requests to hardware. Don't zero hw_tag in this |
| 4184 | * case |
| 4185 | */ |
| 4186 | if (cfqq && cfq_cfqq_idle_window(cfqq) && |
| 4187 | cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] < |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4188 | CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN) |
Shaohua Li | 1a1238a | 2009-10-27 08:46:23 +0100 | [diff] [blame] | 4189 | return; |
| 4190 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4191 | if (cfqd->hw_tag_samples++ < 50) |
| 4192 | return; |
| 4193 | |
Corrado Zoccolo | e459dd0 | 2009-11-26 10:02:57 +0100 | [diff] [blame] | 4194 | if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN) |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4195 | cfqd->hw_tag = 1; |
| 4196 | else |
| 4197 | cfqd->hw_tag = 0; |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4198 | } |
| 4199 | |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4200 | static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 4201 | { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4202 | struct cfq_io_cq *cic = cfqd->active_cic; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4203 | u64 now = ktime_get_ns(); |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4204 | |
Justin TerAvest | 02a8f01 | 2011-02-09 14:20:03 +0100 | [diff] [blame] | 4205 | /* If the queue already has requests, don't wait */ |
| 4206 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
| 4207 | return false; |
| 4208 | |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4209 | /* If there are other queues in the group, don't wait */ |
| 4210 | if (cfqq->cfqg->nr_cfqq > 1) |
| 4211 | return false; |
| 4212 | |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 4213 | /* the only queue in the group, but think time is big */ |
| 4214 | if (cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) |
| 4215 | return false; |
| 4216 | |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4217 | if (cfq_slice_used(cfqq)) |
| 4218 | return true; |
| 4219 | |
| 4220 | /* if slice left is less than think time, wait busy */ |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 4221 | if (cic && sample_valid(cic->ttime.ttime_samples) |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4222 | && (cfqq->slice_end - now < cic->ttime.ttime_mean)) |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4223 | return true; |
| 4224 | |
| 4225 | /* |
| 4226 | * If think times is less than a jiffy than ttime_mean=0 and above |
| 4227 | * will not be true. It might happen that slice has not expired yet |
| 4228 | * but will expire soon (4-5 ns) during select_queue(). To cover the |
| 4229 | * case where think time is less than a jiffy, mark the queue wait |
| 4230 | * busy if only 1 jiffy is left in the slice. |
| 4231 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4232 | if (cfqq->slice_end - now <= jiffies_to_nsecs(1)) |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4233 | return true; |
| 4234 | |
| 4235 | return false; |
| 4236 | } |
| 4237 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4238 | static void cfq_completed_request(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4239 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4240 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 4241 | struct cfq_data *cfqd = cfqq->cfqd; |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 4242 | const int sync = rq_is_sync(rq); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4243 | u64 now = ktime_get_ns(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4244 | |
Christoph Hellwig | a2b8096 | 2016-11-01 07:40:09 -0600 | [diff] [blame] | 4245 | cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d", req_noidle(rq)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4246 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4247 | cfq_update_hw_tag(cfqd); |
| 4248 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4249 | WARN_ON(!cfqd->rq_in_driver); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 4250 | WARN_ON(!cfqq->dispatched); |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4251 | cfqd->rq_in_driver--; |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 4252 | cfqq->dispatched--; |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4253 | (RQ_CFQG(rq))->dispatched--; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 4254 | cfqg_stats_update_completion(cfqq->cfqg, rq_start_time_ns(rq), |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 4255 | rq_io_start_time_ns(rq), rq->cmd_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4256 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4257 | cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--; |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 4258 | |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 4259 | if (sync) { |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 4260 | struct cfq_rb_root *st; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 4261 | |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 4262 | RQ_CIC(rq)->ttime.last_end_request = now; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 4263 | |
| 4264 | if (cfq_cfqq_on_rr(cfqq)) |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 4265 | st = cfqq->service_tree; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 4266 | else |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 4267 | st = st_for(cfqq->cfqg, cfqq_class(cfqq), |
| 4268 | cfqq_type(cfqq)); |
| 4269 | |
| 4270 | st->ttime.last_end_request = now; |
Jan Kara | 149321a | 2016-06-28 09:04:01 +0200 | [diff] [blame] | 4271 | /* |
| 4272 | * We have to do this check in jiffies since start_time is in |
| 4273 | * jiffies and it is not trivial to convert to ns. If |
| 4274 | * cfq_fifo_expire[1] ever comes close to 1 jiffie, this test |
| 4275 | * will become problematic but so far we are fine (the default |
| 4276 | * is 128 ms). |
| 4277 | */ |
| 4278 | if (!time_after(rq->start_time + |
| 4279 | nsecs_to_jiffies(cfqd->cfq_fifo_expire[1]), |
| 4280 | jiffies)) |
Corrado Zoccolo | 573412b | 2009-12-06 11:48:52 +0100 | [diff] [blame] | 4281 | cfqd->last_delayed_sync = now; |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 4282 | } |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 4283 | |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 4284 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
| 4285 | cfqq->cfqg->ttime.last_end_request = now; |
| 4286 | #endif |
| 4287 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 4288 | /* |
| 4289 | * If this is the active queue, check if it needs to be expired, |
| 4290 | * or if we want to idle in case it has no pending requests. |
| 4291 | */ |
| 4292 | if (cfqd->active_queue == cfqq) { |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 4293 | const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list); |
| 4294 | |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 4295 | if (cfq_cfqq_slice_new(cfqq)) { |
| 4296 | cfq_set_prio_slice(cfqd, cfqq); |
| 4297 | cfq_clear_cfqq_slice_new(cfqq); |
| 4298 | } |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 4299 | |
| 4300 | /* |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4301 | * Should we wait for next request to come in before we expire |
| 4302 | * the queue. |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 4303 | */ |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4304 | if (cfq_should_wait_busy(cfqd, cfqq)) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4305 | u64 extend_sl = cfqd->cfq_slice_idle; |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4306 | if (!cfqd->cfq_slice_idle) |
| 4307 | extend_sl = cfqd->cfq_group_idle; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4308 | cfqq->slice_end = now + extend_sl; |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 4309 | cfq_mark_cfqq_wait_busy(cfqq); |
Divyesh Shah | b1ffe73 | 2010-03-25 15:45:03 +0100 | [diff] [blame] | 4310 | cfq_log_cfqq(cfqd, cfqq, "will busy wait"); |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 4311 | } |
| 4312 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 4313 | /* |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 4314 | * Idling is not enabled on: |
| 4315 | * - expired queues |
| 4316 | * - idle-priority queues |
| 4317 | * - async queues |
| 4318 | * - queues with still some requests queued |
| 4319 | * - when there is a close cooperator |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 4320 | */ |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 4321 | if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq)) |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 4322 | cfq_slice_expired(cfqd, 1); |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 4323 | else if (sync && cfqq_empty && |
| 4324 | !cfq_close_cooperator(cfqd, cfqq)) { |
Corrado Zoccolo | 749ef9f | 2010-09-20 15:24:50 +0200 | [diff] [blame] | 4325 | cfq_arm_slice_timer(cfqd); |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 4326 | } |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 4327 | } |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 4328 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4329 | if (!cfqd->rq_in_driver) |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4330 | cfq_schedule_dispatch(cfqd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4331 | } |
| 4332 | |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 4333 | static void cfqq_boost_on_prio(struct cfq_queue *cfqq, unsigned int op) |
Jens Axboe | b8269db | 2016-06-09 15:47:29 -0600 | [diff] [blame] | 4334 | { |
| 4335 | /* |
| 4336 | * If REQ_PRIO is set, boost class and prio level, if it's below |
| 4337 | * BE/NORM. If prio is not set, restore the potentially boosted |
| 4338 | * class/prio level. |
| 4339 | */ |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 4340 | if (!(op & REQ_PRIO)) { |
Jens Axboe | b8269db | 2016-06-09 15:47:29 -0600 | [diff] [blame] | 4341 | cfqq->ioprio_class = cfqq->org_ioprio_class; |
| 4342 | cfqq->ioprio = cfqq->org_ioprio; |
| 4343 | } else { |
| 4344 | if (cfq_class_idle(cfqq)) |
| 4345 | cfqq->ioprio_class = IOPRIO_CLASS_BE; |
| 4346 | if (cfqq->ioprio > IOPRIO_NORM) |
| 4347 | cfqq->ioprio = IOPRIO_NORM; |
| 4348 | } |
| 4349 | } |
| 4350 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 4351 | static inline int __cfq_may_queue(struct cfq_queue *cfqq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4352 | { |
Jens Axboe | 1b379d8 | 2009-08-11 08:26:11 +0200 | [diff] [blame] | 4353 | if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) { |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4354 | cfq_mark_cfqq_must_alloc_slice(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4355 | return ELV_MQUEUE_MUST; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4356 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4357 | |
| 4358 | return ELV_MQUEUE_MAY; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4359 | } |
| 4360 | |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 4361 | static int cfq_may_queue(struct request_queue *q, unsigned int op) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4362 | { |
| 4363 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 4364 | struct task_struct *tsk = current; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4365 | struct cfq_io_cq *cic; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4366 | struct cfq_queue *cfqq; |
| 4367 | |
| 4368 | /* |
| 4369 | * don't force setup of a queue from here, as a call to may_queue |
| 4370 | * does not necessarily imply that a request actually will be queued. |
| 4371 | * so just lookup a possibly existing queue, or return 'may queue' |
| 4372 | * if that fails |
| 4373 | */ |
Jens Axboe | 4ac845a | 2008-01-24 08:44:49 +0100 | [diff] [blame] | 4374 | cic = cfq_cic_lookup(cfqd, tsk->io_context); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 4375 | if (!cic) |
| 4376 | return ELV_MQUEUE_MAY; |
| 4377 | |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 4378 | cfqq = cic_to_cfqq(cic, op_is_sync(op)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4379 | if (cfqq) { |
Tejun Heo | abede6d | 2012-03-19 15:10:57 -0700 | [diff] [blame] | 4380 | cfq_init_prio_data(cfqq, cic); |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 4381 | cfqq_boost_on_prio(cfqq, op); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4382 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 4383 | return __cfq_may_queue(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4384 | } |
| 4385 | |
| 4386 | return ELV_MQUEUE_MAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4387 | } |
| 4388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4389 | /* |
| 4390 | * queue lock held here |
| 4391 | */ |
Jens Axboe | bb37b94 | 2006-12-01 10:42:33 +0100 | [diff] [blame] | 4392 | static void cfq_put_request(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4393 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4394 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4395 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4396 | if (cfqq) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4397 | const int rw = rq_data_dir(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4398 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4399 | BUG_ON(!cfqq->allocated[rw]); |
| 4400 | cfqq->allocated[rw]--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4401 | |
Vivek Goyal | 7f1dc8a | 2010-04-21 17:44:16 +0200 | [diff] [blame] | 4402 | /* Put down rq reference on cfqg */ |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 4403 | cfqg_put(RQ_CFQG(rq)); |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4404 | rq->elv.priv[0] = NULL; |
| 4405 | rq->elv.priv[1] = NULL; |
Vivek Goyal | 7f1dc8a | 2010-04-21 17:44:16 +0200 | [diff] [blame] | 4406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4407 | cfq_put_queue(cfqq); |
| 4408 | } |
| 4409 | } |
| 4410 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4411 | static struct cfq_queue * |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4412 | cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_cq *cic, |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4413 | struct cfq_queue *cfqq) |
| 4414 | { |
| 4415 | cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq); |
| 4416 | cic_set_cfqq(cic, cfqq->new_cfqq, 1); |
Jeff Moyer | b3b6d04 | 2009-10-23 17:14:51 -0400 | [diff] [blame] | 4417 | cfq_mark_cfqq_coop(cfqq->new_cfqq); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4418 | cfq_put_queue(cfqq); |
| 4419 | return cic_to_cfqq(cic, 1); |
| 4420 | } |
| 4421 | |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4422 | /* |
| 4423 | * Returns NULL if a new cfqq should be allocated, or the old cfqq if this |
| 4424 | * was the last process referring to said cfqq. |
| 4425 | */ |
| 4426 | static struct cfq_queue * |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4427 | split_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq) |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4428 | { |
| 4429 | if (cfqq_process_refs(cfqq) == 1) { |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4430 | cfqq->pid = current->pid; |
| 4431 | cfq_clear_cfqq_coop(cfqq); |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 4432 | cfq_clear_cfqq_split_coop(cfqq); |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4433 | return cfqq; |
| 4434 | } |
| 4435 | |
| 4436 | cic_set_cfqq(cic, NULL, 1); |
Shaohua Li | d02a2c0 | 2010-05-25 10:16:53 +0200 | [diff] [blame] | 4437 | |
| 4438 | cfq_put_cooperator(cfqq); |
| 4439 | |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4440 | cfq_put_queue(cfqq); |
| 4441 | return NULL; |
| 4442 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4443 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4444 | * Allocate cfq data structures associated with this request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4445 | */ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4446 | static int |
Tejun Heo | 852c788 | 2012-03-05 13:15:27 -0800 | [diff] [blame] | 4447 | cfq_set_request(struct request_queue *q, struct request *rq, struct bio *bio, |
| 4448 | gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4449 | { |
| 4450 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Tejun Heo | f1f8cc9 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4451 | struct cfq_io_cq *cic = icq_to_cic(rq->elv.icq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4452 | const int rw = rq_data_dir(rq); |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4453 | const bool is_sync = rq_is_sync(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4454 | struct cfq_queue *cfqq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4455 | |
Tejun Heo | 216284c | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 4456 | spin_lock_irq(q->queue_lock); |
Tejun Heo | f1f8cc9 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4457 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 4458 | check_ioprio_changed(cic, bio); |
| 4459 | check_blkcg_changed(cic, bio); |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4460 | new_queue: |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 4461 | cfqq = cic_to_cfqq(cic, is_sync); |
Vivek Goyal | 32f2e80 | 2009-07-09 22:13:16 +0200 | [diff] [blame] | 4462 | if (!cfqq || cfqq == &cfqd->oom_cfqq) { |
Tejun Heo | bce6133 | 2015-08-18 14:54:59 -0700 | [diff] [blame] | 4463 | if (cfqq) |
| 4464 | cfq_put_queue(cfqq); |
Tejun Heo | 2da8de0 | 2015-08-18 14:55:02 -0700 | [diff] [blame] | 4465 | cfqq = cfq_get_queue(cfqd, is_sync, cic, bio); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 4466 | cic_set_cfqq(cic, cfqq, is_sync); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4467 | } else { |
| 4468 | /* |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4469 | * If the queue was seeky for too long, break it apart. |
| 4470 | */ |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 4471 | if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) { |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4472 | cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq"); |
| 4473 | cfqq = split_cfqq(cic, cfqq); |
| 4474 | if (!cfqq) |
| 4475 | goto new_queue; |
| 4476 | } |
| 4477 | |
| 4478 | /* |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4479 | * Check to see if this queue is scheduled to merge with |
| 4480 | * another, closely cooperating queue. The merging of |
| 4481 | * queues happens here as it must be done in process context. |
| 4482 | * The reference on new_cfqq was taken in merge_cfqqs. |
| 4483 | */ |
| 4484 | if (cfqq->new_cfqq) |
| 4485 | cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 4486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4487 | |
| 4488 | cfqq->allocated[rw]++; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4489 | |
Jens Axboe | 6fae9c2 | 2011-03-01 15:04:39 -0500 | [diff] [blame] | 4490 | cfqq->ref++; |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 4491 | cfqg_get(cfqq->cfqg); |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4492 | rq->elv.priv[0] = cfqq; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 4493 | rq->elv.priv[1] = cfqq->cfqg; |
Tejun Heo | 216284c | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 4494 | spin_unlock_irq(q->queue_lock); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4495 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4496 | } |
| 4497 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 4498 | static void cfq_kick_queue(struct work_struct *work) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4499 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 4500 | struct cfq_data *cfqd = |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4501 | container_of(work, struct cfq_data, unplug_work); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4502 | struct request_queue *q = cfqd->queue; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4503 | |
Jens Axboe | 40bb54d | 2009-04-15 12:11:10 +0200 | [diff] [blame] | 4504 | spin_lock_irq(q->queue_lock); |
Christoph Hellwig | 24ecfbe | 2011-04-18 11:41:33 +0200 | [diff] [blame] | 4505 | __blk_run_queue(cfqd->queue); |
Jens Axboe | 40bb54d | 2009-04-15 12:11:10 +0200 | [diff] [blame] | 4506 | spin_unlock_irq(q->queue_lock); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4507 | } |
| 4508 | |
| 4509 | /* |
| 4510 | * Timer running if the active_queue is currently idling inside its time slice |
| 4511 | */ |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4512 | static enum hrtimer_restart cfq_idle_slice_timer(struct hrtimer *timer) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4513 | { |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4514 | struct cfq_data *cfqd = container_of(timer, struct cfq_data, |
| 4515 | idle_slice_timer); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4516 | struct cfq_queue *cfqq; |
| 4517 | unsigned long flags; |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 4518 | int timed_out = 1; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4519 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 4520 | cfq_log(cfqd, "idle timer fired"); |
| 4521 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4522 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); |
| 4523 | |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 4524 | cfqq = cfqd->active_queue; |
| 4525 | if (cfqq) { |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 4526 | timed_out = 0; |
| 4527 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4528 | /* |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 4529 | * We saw a request before the queue expired, let it through |
| 4530 | */ |
| 4531 | if (cfq_cfqq_must_dispatch(cfqq)) |
| 4532 | goto out_kick; |
| 4533 | |
| 4534 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4535 | * expired |
| 4536 | */ |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 4537 | if (cfq_slice_used(cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4538 | goto expire; |
| 4539 | |
| 4540 | /* |
| 4541 | * only expire and reinvoke request handler, if there are |
| 4542 | * other queues with pending requests |
| 4543 | */ |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 4544 | if (!cfqd->busy_queues) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4545 | goto out_cont; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4546 | |
| 4547 | /* |
| 4548 | * not expired and it has a request pending, let it dispatch |
| 4549 | */ |
Jens Axboe | 75e5098 | 2009-04-07 08:56:14 +0200 | [diff] [blame] | 4550 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4551 | goto out_kick; |
Corrado Zoccolo | 76280af | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 4552 | |
| 4553 | /* |
| 4554 | * Queue depth flag is reset only when the idle didn't succeed |
| 4555 | */ |
| 4556 | cfq_clear_cfqq_deep(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4557 | } |
| 4558 | expire: |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 4559 | cfq_slice_expired(cfqd, timed_out); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4560 | out_kick: |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4561 | cfq_schedule_dispatch(cfqd); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4562 | out_cont: |
| 4563 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4564 | return HRTIMER_NORESTART; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4565 | } |
| 4566 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4567 | static void cfq_shutdown_timer_wq(struct cfq_data *cfqd) |
| 4568 | { |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4569 | hrtimer_cancel(&cfqd->idle_slice_timer); |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4570 | cancel_work_sync(&cfqd->unplug_work); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4571 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4572 | |
Jens Axboe | b374d18 | 2008-10-31 10:05:07 +0100 | [diff] [blame] | 4573 | static void cfq_exit_queue(struct elevator_queue *e) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4574 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4575 | struct cfq_data *cfqd = e->elevator_data; |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4576 | struct request_queue *q = cfqd->queue; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4577 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4578 | cfq_shutdown_timer_wq(cfqd); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 4579 | |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 4580 | spin_lock_irq(q->queue_lock); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 4581 | |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 4582 | if (cfqd->active_queue) |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 4583 | __cfq_slice_expired(cfqd, cfqd->active_queue, 0); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 4584 | |
Tejun Heo | 03aa264 | 2012-03-05 13:15:19 -0800 | [diff] [blame] | 4585 | spin_unlock_irq(q->queue_lock); |
| 4586 | |
Al Viro | a90d742 | 2006-03-18 12:05:37 -0500 | [diff] [blame] | 4587 | cfq_shutdown_timer_wq(cfqd); |
| 4588 | |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4589 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
| 4590 | blkcg_deactivate_policy(q, &blkcg_policy_cfq); |
| 4591 | #else |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4592 | kfree(cfqd->root_group); |
Vivek Goyal | 2abae55 | 2011-05-23 10:02:19 +0200 | [diff] [blame] | 4593 | #endif |
Vivek Goyal | 56edf7d | 2011-05-19 15:38:22 -0400 | [diff] [blame] | 4594 | kfree(cfqd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4595 | } |
| 4596 | |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4597 | static int cfq_init_queue(struct request_queue *q, struct elevator_type *e) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4598 | { |
| 4599 | struct cfq_data *cfqd; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4600 | struct blkcg_gq *blkg __maybe_unused; |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4601 | int i, ret; |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4602 | struct elevator_queue *eq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4603 | |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4604 | eq = elevator_alloc(q, e); |
| 4605 | if (!eq) |
Tejun Heo | b2fab5a | 2012-03-05 13:14:57 -0800 | [diff] [blame] | 4606 | return -ENOMEM; |
Konstantin Khlebnikov | 80b15c7 | 2010-05-20 23:21:41 +0400 | [diff] [blame] | 4607 | |
Joe Perches | c1b511e | 2013-08-29 15:21:42 -0700 | [diff] [blame] | 4608 | cfqd = kzalloc_node(sizeof(*cfqd), GFP_KERNEL, q->node); |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4609 | if (!cfqd) { |
| 4610 | kobject_put(&eq->kobj); |
| 4611 | return -ENOMEM; |
| 4612 | } |
| 4613 | eq->elevator_data = cfqd; |
| 4614 | |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4615 | cfqd->queue = q; |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4616 | spin_lock_irq(q->queue_lock); |
| 4617 | q->elevator = eq; |
| 4618 | spin_unlock_irq(q->queue_lock); |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4619 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 4620 | /* Init root service tree */ |
| 4621 | cfqd->grp_service_tree = CFQ_RB_ROOT; |
| 4622 | |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4623 | /* Init root group and prefer root group over other groups by default */ |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 4624 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4625 | ret = blkcg_activate_policy(q, &blkcg_policy_cfq); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4626 | if (ret) |
| 4627 | goto out_free; |
Vivek Goyal | 5624a4e | 2011-05-19 15:38:28 -0400 | [diff] [blame] | 4628 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4629 | cfqd->root_group = blkg_to_cfqg(q->root_blkg); |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4630 | #else |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4631 | ret = -ENOMEM; |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4632 | cfqd->root_group = kzalloc_node(sizeof(*cfqd->root_group), |
| 4633 | GFP_KERNEL, cfqd->queue->node); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4634 | if (!cfqd->root_group) |
| 4635 | goto out_free; |
Vivek Goyal | 5624a4e | 2011-05-19 15:38:28 -0400 | [diff] [blame] | 4636 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4637 | cfq_init_cfqg_base(cfqd->root_group); |
Tejun Heo | 3ecca62 | 2015-08-18 14:55:35 -0700 | [diff] [blame] | 4638 | cfqd->root_group->weight = 2 * CFQ_WEIGHT_LEGACY_DFL; |
| 4639 | cfqd->root_group->leaf_weight = 2 * CFQ_WEIGHT_LEGACY_DFL; |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 4640 | #endif |
Vivek Goyal | 5624a4e | 2011-05-19 15:38:28 -0400 | [diff] [blame] | 4641 | |
Jens Axboe | 26a2ac0 | 2009-04-23 12:13:27 +0200 | [diff] [blame] | 4642 | /* |
| 4643 | * Not strictly needed (since RB_ROOT just clears the node and we |
| 4644 | * zeroed cfqd on alloc), but better be safe in case someone decides |
| 4645 | * to add magic to the rb code |
| 4646 | */ |
| 4647 | for (i = 0; i < CFQ_PRIO_LISTS; i++) |
| 4648 | cfqd->prio_trees[i] = RB_ROOT; |
| 4649 | |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 4650 | /* |
Tejun Heo | d4aad7f | 2015-08-18 14:55:04 -0700 | [diff] [blame] | 4651 | * Our fallback cfqq if cfq_get_queue() runs into OOM issues. |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 4652 | * Grab a permanent reference to it, so that the normal code flow |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4653 | * will not attempt to free it. oom_cfqq is linked to root_group |
| 4654 | * but shouldn't hold a reference as it'll never be unlinked. Lose |
| 4655 | * the reference from linking right away. |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 4656 | */ |
| 4657 | cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0); |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 4658 | cfqd->oom_cfqq.ref++; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 4659 | |
| 4660 | spin_lock_irq(q->queue_lock); |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4661 | cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, cfqd->root_group); |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 4662 | cfqg_put(cfqd->root_group); |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 4663 | spin_unlock_irq(q->queue_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4664 | |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4665 | hrtimer_init(&cfqd->idle_slice_timer, CLOCK_MONOTONIC, |
| 4666 | HRTIMER_MODE_REL); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4667 | cfqd->idle_slice_timer.function = cfq_idle_slice_timer; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4668 | |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4669 | INIT_WORK(&cfqd->unplug_work, cfq_kick_queue); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4671 | cfqd->cfq_quantum = cfq_quantum; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4672 | cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0]; |
| 4673 | cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4674 | cfqd->cfq_back_max = cfq_back_max; |
| 4675 | cfqd->cfq_back_penalty = cfq_back_penalty; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4676 | cfqd->cfq_slice[0] = cfq_slice_async; |
| 4677 | cfqd->cfq_slice[1] = cfq_slice_sync; |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 4678 | cfqd->cfq_target_latency = cfq_target_latency; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4679 | cfqd->cfq_slice_async_rq = cfq_slice_async_rq; |
Jens Axboe | 0bb9794 | 2015-06-10 08:01:20 -0600 | [diff] [blame] | 4680 | cfqd->cfq_slice_idle = cfq_slice_idle; |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4681 | cfqd->cfq_group_idle = cfq_group_idle; |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 4682 | cfqd->cfq_latency = 1; |
Corrado Zoccolo | e459dd0 | 2009-11-26 10:02:57 +0100 | [diff] [blame] | 4683 | cfqd->hw_tag = -1; |
Corrado Zoccolo | edc7113 | 2009-12-09 20:56:04 +0100 | [diff] [blame] | 4684 | /* |
| 4685 | * we optimistically start assuming sync ops weren't delayed in last |
| 4686 | * second, in order to have larger depth for async operations. |
| 4687 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4688 | cfqd->last_delayed_sync = ktime_get_ns() - NSEC_PER_SEC; |
Tejun Heo | b2fab5a | 2012-03-05 13:14:57 -0800 | [diff] [blame] | 4689 | return 0; |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4690 | |
| 4691 | out_free: |
| 4692 | kfree(cfqd); |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4693 | kobject_put(&eq->kobj); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4694 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4695 | } |
| 4696 | |
Jens Axboe | 0bb9794 | 2015-06-10 08:01:20 -0600 | [diff] [blame] | 4697 | static void cfq_registered_queue(struct request_queue *q) |
| 4698 | { |
| 4699 | struct elevator_queue *e = q->elevator; |
| 4700 | struct cfq_data *cfqd = e->elevator_data; |
| 4701 | |
| 4702 | /* |
| 4703 | * Default to IOPS mode with no idling for SSDs |
| 4704 | */ |
| 4705 | if (blk_queue_nonrot(q)) |
| 4706 | cfqd->cfq_slice_idle = 0; |
| 4707 | } |
| 4708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4709 | /* |
| 4710 | * sysfs parts below --> |
| 4711 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4712 | static ssize_t |
| 4713 | cfq_var_show(unsigned int var, char *page) |
| 4714 | { |
Masanari Iida | 176167a | 2014-04-28 12:38:34 +0900 | [diff] [blame] | 4715 | return sprintf(page, "%u\n", var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4716 | } |
| 4717 | |
| 4718 | static ssize_t |
| 4719 | cfq_var_store(unsigned int *var, const char *page, size_t count) |
| 4720 | { |
| 4721 | char *p = (char *) page; |
| 4722 | |
| 4723 | *var = simple_strtoul(p, &p, 10); |
| 4724 | return count; |
| 4725 | } |
| 4726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4727 | #define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \ |
Jens Axboe | b374d18 | 2008-10-31 10:05:07 +0100 | [diff] [blame] | 4728 | static ssize_t __FUNC(struct elevator_queue *e, char *page) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4729 | { \ |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 4730 | struct cfq_data *cfqd = e->elevator_data; \ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4731 | u64 __data = __VAR; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4732 | if (__CONV) \ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4733 | __data = div_u64(__data, NSEC_PER_MSEC); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4734 | return cfq_var_show(__data, (page)); \ |
| 4735 | } |
| 4736 | SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4737 | SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1); |
| 4738 | 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] | 4739 | SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0); |
| 4740 | SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4741 | SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1); |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4742 | SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4743 | SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1); |
| 4744 | SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1); |
| 4745 | 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] | 4746 | SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0); |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 4747 | SHOW_FUNCTION(cfq_target_latency_show, cfqd->cfq_target_latency, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4748 | #undef SHOW_FUNCTION |
| 4749 | |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4750 | #define USEC_SHOW_FUNCTION(__FUNC, __VAR) \ |
| 4751 | static ssize_t __FUNC(struct elevator_queue *e, char *page) \ |
| 4752 | { \ |
| 4753 | struct cfq_data *cfqd = e->elevator_data; \ |
| 4754 | u64 __data = __VAR; \ |
| 4755 | __data = div_u64(__data, NSEC_PER_USEC); \ |
| 4756 | return cfq_var_show(__data, (page)); \ |
| 4757 | } |
| 4758 | USEC_SHOW_FUNCTION(cfq_slice_idle_us_show, cfqd->cfq_slice_idle); |
| 4759 | USEC_SHOW_FUNCTION(cfq_group_idle_us_show, cfqd->cfq_group_idle); |
| 4760 | USEC_SHOW_FUNCTION(cfq_slice_sync_us_show, cfqd->cfq_slice[1]); |
| 4761 | USEC_SHOW_FUNCTION(cfq_slice_async_us_show, cfqd->cfq_slice[0]); |
| 4762 | USEC_SHOW_FUNCTION(cfq_target_latency_us_show, cfqd->cfq_target_latency); |
| 4763 | #undef USEC_SHOW_FUNCTION |
| 4764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4765 | #define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \ |
Jens Axboe | b374d18 | 2008-10-31 10:05:07 +0100 | [diff] [blame] | 4766 | 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] | 4767 | { \ |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 4768 | struct cfq_data *cfqd = e->elevator_data; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4769 | unsigned int __data; \ |
| 4770 | int ret = cfq_var_store(&__data, (page), count); \ |
| 4771 | if (__data < (MIN)) \ |
| 4772 | __data = (MIN); \ |
| 4773 | else if (__data > (MAX)) \ |
| 4774 | __data = (MAX); \ |
| 4775 | if (__CONV) \ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4776 | *(__PTR) = (u64)__data * NSEC_PER_MSEC; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4777 | else \ |
| 4778 | *(__PTR) = __data; \ |
| 4779 | return ret; \ |
| 4780 | } |
| 4781 | STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0); |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 4782 | STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1, |
| 4783 | UINT_MAX, 1); |
| 4784 | STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1, |
| 4785 | UINT_MAX, 1); |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4786 | 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] | 4787 | STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1, |
| 4788 | UINT_MAX, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4789 | 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] | 4790 | 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] | 4791 | STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1); |
| 4792 | 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] | 4793 | STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1, |
| 4794 | UINT_MAX, 0); |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 4795 | STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0); |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 4796 | STORE_FUNCTION(cfq_target_latency_store, &cfqd->cfq_target_latency, 1, UINT_MAX, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4797 | #undef STORE_FUNCTION |
| 4798 | |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4799 | #define USEC_STORE_FUNCTION(__FUNC, __PTR, MIN, MAX) \ |
| 4800 | static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \ |
| 4801 | { \ |
| 4802 | struct cfq_data *cfqd = e->elevator_data; \ |
| 4803 | unsigned int __data; \ |
| 4804 | int ret = cfq_var_store(&__data, (page), count); \ |
| 4805 | if (__data < (MIN)) \ |
| 4806 | __data = (MIN); \ |
| 4807 | else if (__data > (MAX)) \ |
| 4808 | __data = (MAX); \ |
| 4809 | *(__PTR) = (u64)__data * NSEC_PER_USEC; \ |
| 4810 | return ret; \ |
| 4811 | } |
| 4812 | USEC_STORE_FUNCTION(cfq_slice_idle_us_store, &cfqd->cfq_slice_idle, 0, UINT_MAX); |
| 4813 | USEC_STORE_FUNCTION(cfq_group_idle_us_store, &cfqd->cfq_group_idle, 0, UINT_MAX); |
| 4814 | USEC_STORE_FUNCTION(cfq_slice_sync_us_store, &cfqd->cfq_slice[1], 1, UINT_MAX); |
| 4815 | USEC_STORE_FUNCTION(cfq_slice_async_us_store, &cfqd->cfq_slice[0], 1, UINT_MAX); |
| 4816 | USEC_STORE_FUNCTION(cfq_target_latency_us_store, &cfqd->cfq_target_latency, 1, UINT_MAX); |
| 4817 | #undef USEC_STORE_FUNCTION |
| 4818 | |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4819 | #define CFQ_ATTR(name) \ |
| 4820 | __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store) |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4821 | |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4822 | static struct elv_fs_entry cfq_attrs[] = { |
| 4823 | CFQ_ATTR(quantum), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4824 | CFQ_ATTR(fifo_expire_sync), |
| 4825 | CFQ_ATTR(fifo_expire_async), |
| 4826 | CFQ_ATTR(back_seek_max), |
| 4827 | CFQ_ATTR(back_seek_penalty), |
| 4828 | CFQ_ATTR(slice_sync), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4829 | CFQ_ATTR(slice_sync_us), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4830 | CFQ_ATTR(slice_async), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4831 | CFQ_ATTR(slice_async_us), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4832 | CFQ_ATTR(slice_async_rq), |
| 4833 | CFQ_ATTR(slice_idle), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4834 | CFQ_ATTR(slice_idle_us), |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4835 | CFQ_ATTR(group_idle), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4836 | CFQ_ATTR(group_idle_us), |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 4837 | CFQ_ATTR(low_latency), |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 4838 | CFQ_ATTR(target_latency), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4839 | CFQ_ATTR(target_latency_us), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4840 | __ATTR_NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4841 | }; |
| 4842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4843 | static struct elevator_type iosched_cfq = { |
Jens Axboe | c51ca6c | 2016-12-10 15:13:59 -0700 | [diff] [blame] | 4844 | .ops.sq = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4845 | .elevator_merge_fn = cfq_merge, |
| 4846 | .elevator_merged_fn = cfq_merged_request, |
| 4847 | .elevator_merge_req_fn = cfq_merged_requests, |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 4848 | .elevator_allow_bio_merge_fn = cfq_allow_bio_merge, |
| 4849 | .elevator_allow_rq_merge_fn = cfq_allow_rq_merge, |
Divyesh Shah | 812d402 | 2010-04-08 21:14:23 -0700 | [diff] [blame] | 4850 | .elevator_bio_merged_fn = cfq_bio_merged, |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 4851 | .elevator_dispatch_fn = cfq_dispatch_requests, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4852 | .elevator_add_req_fn = cfq_insert_request, |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 4853 | .elevator_activate_req_fn = cfq_activate_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4854 | .elevator_deactivate_req_fn = cfq_deactivate_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4855 | .elevator_completed_req_fn = cfq_completed_request, |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 4856 | .elevator_former_req_fn = elv_rb_former_request, |
| 4857 | .elevator_latter_req_fn = elv_rb_latter_request, |
Tejun Heo | 9b84cac | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4858 | .elevator_init_icq_fn = cfq_init_icq, |
Tejun Heo | 7e5a879 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4859 | .elevator_exit_icq_fn = cfq_exit_icq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4860 | .elevator_set_req_fn = cfq_set_request, |
| 4861 | .elevator_put_req_fn = cfq_put_request, |
| 4862 | .elevator_may_queue_fn = cfq_may_queue, |
| 4863 | .elevator_init_fn = cfq_init_queue, |
| 4864 | .elevator_exit_fn = cfq_exit_queue, |
Jens Axboe | 0bb9794 | 2015-06-10 08:01:20 -0600 | [diff] [blame] | 4865 | .elevator_registered_fn = cfq_registered_queue, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4866 | }, |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4867 | .icq_size = sizeof(struct cfq_io_cq), |
| 4868 | .icq_align = __alignof__(struct cfq_io_cq), |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 4869 | .elevator_attrs = cfq_attrs, |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4870 | .elevator_name = "cfq", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4871 | .elevator_owner = THIS_MODULE, |
| 4872 | }; |
| 4873 | |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 4874 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4875 | static struct blkcg_policy blkcg_policy_cfq = { |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 4876 | .dfl_cftypes = cfq_blkcg_files, |
Tejun Heo | 880f50e | 2015-08-18 14:55:30 -0700 | [diff] [blame] | 4877 | .legacy_cftypes = cfq_blkcg_legacy_files, |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 4878 | |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 4879 | .cpd_alloc_fn = cfq_cpd_alloc, |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 4880 | .cpd_init_fn = cfq_cpd_init, |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 4881 | .cpd_free_fn = cfq_cpd_free, |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 4882 | .cpd_bind_fn = cfq_cpd_bind, |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 4883 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 4884 | .pd_alloc_fn = cfq_pd_alloc, |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 4885 | .pd_init_fn = cfq_pd_init, |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 4886 | .pd_offline_fn = cfq_pd_offline, |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 4887 | .pd_free_fn = cfq_pd_free, |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 4888 | .pd_reset_stats_fn = cfq_pd_reset_stats, |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 4889 | }; |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 4890 | #endif |
| 4891 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4892 | static int __init cfq_init(void) |
| 4893 | { |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4894 | int ret; |
| 4895 | |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4896 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4897 | ret = blkcg_policy_register(&blkcg_policy_cfq); |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4898 | if (ret) |
| 4899 | return ret; |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4900 | #else |
| 4901 | cfq_group_idle = 0; |
| 4902 | #endif |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4903 | |
Tejun Heo | fd79495 | 2012-06-04 10:01:38 +0200 | [diff] [blame] | 4904 | ret = -ENOMEM; |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4905 | cfq_pool = KMEM_CACHE(cfq_queue, 0); |
| 4906 | if (!cfq_pool) |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4907 | goto err_pol_unreg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4908 | |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4909 | ret = elv_register(&iosched_cfq); |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4910 | if (ret) |
| 4911 | goto err_free_pool; |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4912 | |
Adrian Bunk | 2fdd82b | 2007-12-12 18:51:56 +0100 | [diff] [blame] | 4913 | return 0; |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4914 | |
| 4915 | err_free_pool: |
| 4916 | kmem_cache_destroy(cfq_pool); |
| 4917 | err_pol_unreg: |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4918 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4919 | blkcg_policy_unregister(&blkcg_policy_cfq); |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4920 | #endif |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4921 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4922 | } |
| 4923 | |
| 4924 | static void __exit cfq_exit(void) |
| 4925 | { |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4926 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4927 | blkcg_policy_unregister(&blkcg_policy_cfq); |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4928 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4929 | elv_unregister(&iosched_cfq); |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4930 | kmem_cache_destroy(cfq_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4931 | } |
| 4932 | |
| 4933 | module_init(cfq_init); |
| 4934 | module_exit(cfq_exit); |
| 4935 | |
| 4936 | MODULE_AUTHOR("Jens Axboe"); |
| 4937 | MODULE_LICENSE("GPL"); |
| 4938 | MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler"); |