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" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | /* |
| 21 | * tunables |
| 22 | */ |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 23 | /* max queue in one round of service */ |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 24 | static const int cfq_quantum = 8; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 25 | 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] | 26 | /* maximum backwards seek, in KiB */ |
| 27 | static const int cfq_back_max = 16 * 1024; |
| 28 | /* penalty of a backwards seek */ |
| 29 | static const int cfq_back_penalty = 2; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 30 | static const u64 cfq_slice_sync = NSEC_PER_SEC / 10; |
| 31 | static u64 cfq_slice_async = NSEC_PER_SEC / 25; |
Arjan van de Ven | 6410009 | 2006-01-06 09:46:02 +0100 | [diff] [blame] | 32 | static const int cfq_slice_async_rq = 2; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 33 | static u64 cfq_slice_idle = NSEC_PER_SEC / 125; |
| 34 | static u64 cfq_group_idle = NSEC_PER_SEC / 125; |
| 35 | 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] | 36 | static const int cfq_hist_divisor = 4; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 37 | |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 38 | /* |
Hou Tao | 08229c1 | 2017-03-01 09:02:33 +0800 | [diff] [blame] | 39 | * offset from end of queue service tree for idle class |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 40 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 41 | #define CFQ_IDLE_DELAY (NSEC_PER_SEC / 5) |
Hou Tao | 08229c1 | 2017-03-01 09:02:33 +0800 | [diff] [blame] | 42 | /* offset from end of group service tree under time slice mode */ |
| 43 | #define CFQ_SLICE_MODE_GROUP_DELAY (NSEC_PER_SEC / 5) |
| 44 | /* offset from end of group service under IOPS mode */ |
| 45 | #define CFQ_IOPS_MODE_GROUP_DELAY (HZ / 5) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 46 | |
| 47 | /* |
| 48 | * below this threshold, we consider thinktime immediate |
| 49 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 50 | #define CFQ_MIN_TT (2 * NSEC_PER_SEC / HZ) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 51 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 52 | #define CFQ_SLICE_SCALE (5) |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 53 | #define CFQ_HW_QUEUE_MIN (5) |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 54 | #define CFQ_SERVICE_SHIFT 12 |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 55 | |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 56 | #define CFQQ_SEEK_THR (sector_t)(8 * 100) |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 57 | #define CFQQ_CLOSE_THR (sector_t)(8 * 1024) |
Corrado Zoccolo | 41647e7 | 2010-02-27 19:45:40 +0100 | [diff] [blame] | 58 | #define CFQQ_SECT_THR_NONROT (sector_t)(2 * 32) |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 59 | #define CFQQ_SEEKY(cfqq) (hweight32(cfqq->seek_history) > 32/8) |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 60 | |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 61 | #define RQ_CIC(rq) icq_to_cic((rq)->elv.icq) |
| 62 | #define RQ_CFQQ(rq) (struct cfq_queue *) ((rq)->elv.priv[0]) |
| 63 | #define RQ_CFQG(rq) (struct cfq_group *) ((rq)->elv.priv[1]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 65 | static struct kmem_cache *cfq_pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 67 | #define CFQ_PRIO_LISTS IOPRIO_BE_NR |
| 68 | #define cfq_class_idle(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_IDLE) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 69 | #define cfq_class_rt(cfqq) ((cfqq)->ioprio_class == IOPRIO_CLASS_RT) |
| 70 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 71 | #define sample_valid(samples) ((samples) > 80) |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 72 | #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] | 73 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 74 | /* blkio-related constants */ |
Tejun Heo | 3ecca62 | 2015-08-18 14:55:35 -0700 | [diff] [blame] | 75 | #define CFQ_WEIGHT_LEGACY_MIN 10 |
| 76 | #define CFQ_WEIGHT_LEGACY_DFL 500 |
| 77 | #define CFQ_WEIGHT_LEGACY_MAX 1000 |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 78 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 79 | struct cfq_ttime { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 80 | u64 last_end_request; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 81 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 82 | u64 ttime_total; |
| 83 | u64 ttime_mean; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 84 | unsigned long ttime_samples; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 85 | }; |
| 86 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 87 | /* |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 88 | * Most of our rbtree usage is for sorting with min extraction, so |
| 89 | * if we cache the leftmost node we don't have to walk down the tree |
| 90 | * to find it. Idea borrowed from Ingo Molnars CFS scheduler. We should |
| 91 | * move this into the elevator for the rq sorting as well. |
| 92 | */ |
| 93 | struct cfq_rb_root { |
| 94 | struct rb_root rb; |
| 95 | struct rb_node *left; |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 96 | unsigned count; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 97 | u64 min_vdisktime; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 98 | struct cfq_ttime ttime; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 99 | }; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 100 | #define CFQ_RB_ROOT (struct cfq_rb_root) { .rb = RB_ROOT, \ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 101 | .ttime = {.last_end_request = ktime_get_ns(),},} |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 102 | |
| 103 | /* |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 104 | * Per process-grouping structure |
| 105 | */ |
| 106 | struct cfq_queue { |
| 107 | /* reference count */ |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 108 | int ref; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 109 | /* various state flags, see below */ |
| 110 | unsigned int flags; |
| 111 | /* parent cfq_data */ |
| 112 | struct cfq_data *cfqd; |
| 113 | /* service_tree member */ |
| 114 | struct rb_node rb_node; |
| 115 | /* service_tree key */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 116 | u64 rb_key; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 117 | /* prio tree member */ |
| 118 | struct rb_node p_node; |
| 119 | /* prio tree root we belong to, if any */ |
| 120 | struct rb_root *p_root; |
| 121 | /* sorted list of pending requests */ |
| 122 | struct rb_root sort_list; |
| 123 | /* if fifo isn't expired, next request to serve */ |
| 124 | struct request *next_rq; |
| 125 | /* requests queued in sort_list */ |
| 126 | int queued[2]; |
| 127 | /* currently allocated requests */ |
| 128 | int allocated[2]; |
| 129 | /* fifo list of requests in sort_list */ |
| 130 | struct list_head fifo; |
| 131 | |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 132 | /* time when queue got scheduled in to dispatch first request. */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 133 | u64 dispatch_start; |
| 134 | u64 allocated_slice; |
| 135 | u64 slice_dispatch; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 136 | /* time when first request from queue completed and slice started. */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 137 | u64 slice_start; |
| 138 | u64 slice_end; |
Jan Kara | 93fdf14 | 2016-06-28 09:04:00 +0200 | [diff] [blame] | 139 | s64 slice_resid; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 140 | |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 141 | /* pending priority requests */ |
| 142 | int prio_pending; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 143 | /* number of requests that are on the dispatch list or inside driver */ |
| 144 | int dispatched; |
| 145 | |
| 146 | /* io prio of this group */ |
| 147 | unsigned short ioprio, org_ioprio; |
Jens Axboe | b8269db | 2016-06-09 15:47:29 -0600 | [diff] [blame] | 148 | unsigned short ioprio_class, org_ioprio_class; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 149 | |
Richard Kennedy | c4081ba | 2010-02-22 13:49:24 +0100 | [diff] [blame] | 150 | pid_t pid; |
| 151 | |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 152 | u32 seek_history; |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 153 | sector_t last_request_pos; |
| 154 | |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 155 | struct cfq_rb_root *service_tree; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 156 | struct cfq_queue *new_cfqq; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 157 | struct cfq_group *cfqg; |
Vivek Goyal | c4e7893 | 2010-08-23 12:25:03 +0200 | [diff] [blame] | 158 | /* Number of sectors dispatched from queue in single dispatch round */ |
| 159 | unsigned long nr_sectors; |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 160 | }; |
| 161 | |
| 162 | /* |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 163 | * First index in the service_trees. |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 164 | * IDLE is handled separately, so it has negative index |
| 165 | */ |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 166 | enum wl_class_t { |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 167 | BE_WORKLOAD = 0, |
Vivek Goyal | 615f025 | 2009-12-03 12:59:39 -0500 | [diff] [blame] | 168 | RT_WORKLOAD = 1, |
| 169 | IDLE_WORKLOAD = 2, |
Vivek Goyal | b462732 | 2010-10-22 09:48:43 +0200 | [diff] [blame] | 170 | CFQ_PRIO_NR, |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | /* |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 174 | * Second index in the service_trees. |
| 175 | */ |
| 176 | enum wl_type_t { |
| 177 | ASYNC_WORKLOAD = 0, |
| 178 | SYNC_NOIDLE_WORKLOAD = 1, |
| 179 | SYNC_WORKLOAD = 2 |
| 180 | }; |
| 181 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 182 | struct cfqg_stats { |
| 183 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 184 | /* number of ios merged */ |
| 185 | struct blkg_rwstat merged; |
| 186 | /* total time spent on device in ns, may not be accurate w/ queueing */ |
| 187 | struct blkg_rwstat service_time; |
| 188 | /* total time spent waiting in scheduler queue in ns */ |
| 189 | struct blkg_rwstat wait_time; |
| 190 | /* number of IOs queued up */ |
| 191 | struct blkg_rwstat queued; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 192 | /* total disk time and nr sectors dispatched by this group */ |
| 193 | struct blkg_stat time; |
| 194 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
| 195 | /* time not charged to this cgroup */ |
| 196 | struct blkg_stat unaccounted_time; |
| 197 | /* sum of number of ios queued across all samples */ |
| 198 | struct blkg_stat avg_queue_size_sum; |
| 199 | /* count of samples taken for average */ |
| 200 | struct blkg_stat avg_queue_size_samples; |
| 201 | /* how many times this group has been removed from service tree */ |
| 202 | struct blkg_stat dequeue; |
| 203 | /* total time spent waiting for it to be assigned a timeslice. */ |
| 204 | struct blkg_stat group_wait_time; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 205 | /* time spent idling for this blkcg_gq */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 206 | struct blkg_stat idle_time; |
| 207 | /* total time with empty current active q with other requests queued */ |
| 208 | struct blkg_stat empty_time; |
| 209 | /* fields after this shouldn't be cleared on stat reset */ |
| 210 | uint64_t start_group_wait_time; |
| 211 | uint64_t start_idle_time; |
| 212 | uint64_t start_empty_time; |
| 213 | uint16_t flags; |
| 214 | #endif /* CONFIG_DEBUG_BLK_CGROUP */ |
| 215 | #endif /* CONFIG_CFQ_GROUP_IOSCHED */ |
| 216 | }; |
| 217 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 218 | /* Per-cgroup data */ |
| 219 | struct cfq_group_data { |
| 220 | /* must be the first member */ |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 221 | struct blkcg_policy_data cpd; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 222 | |
| 223 | unsigned int weight; |
| 224 | unsigned int leaf_weight; |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 225 | u64 group_idle; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 226 | }; |
| 227 | |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 228 | /* This is per cgroup per device grouping structure */ |
| 229 | struct cfq_group { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 230 | /* must be the first member */ |
| 231 | struct blkg_policy_data pd; |
| 232 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 233 | /* group service_tree member */ |
| 234 | struct rb_node rb_node; |
| 235 | |
| 236 | /* group service_tree key */ |
| 237 | u64 vdisktime; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 238 | |
| 239 | /* |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 240 | * The number of active cfqgs and sum of their weights under this |
| 241 | * cfqg. This covers this cfqg's leaf_weight and all children's |
| 242 | * weights, but does not cover weights of further descendants. |
| 243 | * |
| 244 | * If a cfqg is on the service tree, it's active. An active cfqg |
| 245 | * also activates its parent and contributes to the children_weight |
| 246 | * of the parent. |
| 247 | */ |
| 248 | int nr_active; |
| 249 | unsigned int children_weight; |
| 250 | |
| 251 | /* |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 252 | * vfraction is the fraction of vdisktime that the tasks in this |
| 253 | * cfqg are entitled to. This is determined by compounding the |
| 254 | * ratios walking up from this cfqg to the root. |
| 255 | * |
| 256 | * It is in fixed point w/ CFQ_SERVICE_SHIFT and the sum of all |
| 257 | * vfractions on a service tree is approximately 1. The sum may |
| 258 | * deviate a bit due to rounding errors and fluctuations caused by |
| 259 | * cfqgs entering and leaving the service tree. |
| 260 | */ |
| 261 | unsigned int vfraction; |
| 262 | |
| 263 | /* |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 264 | * There are two weights - (internal) weight is the weight of this |
| 265 | * cfqg against the sibling cfqgs. leaf_weight is the wight of |
| 266 | * this cfqg against the child cfqgs. For the root cfqg, both |
| 267 | * weights are kept in sync for backward compatibility. |
| 268 | */ |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 269 | unsigned int weight; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 270 | unsigned int new_weight; |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 271 | unsigned int dev_weight; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 272 | |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 273 | unsigned int leaf_weight; |
| 274 | unsigned int new_leaf_weight; |
| 275 | unsigned int dev_leaf_weight; |
| 276 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 277 | /* number of cfqq currently on this group */ |
| 278 | int nr_cfqq; |
| 279 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 280 | /* |
Kyungmin Park | 4495a7d | 2011-05-31 10:04:09 +0200 | [diff] [blame] | 281 | * Per group busy queues average. Useful for workload slice calc. We |
Vivek Goyal | b462732 | 2010-10-22 09:48:43 +0200 | [diff] [blame] | 282 | * create the array for each prio class but at run time it is used |
| 283 | * only for RT and BE class and slot for IDLE class remains unused. |
| 284 | * This is primarily done to avoid confusion and a gcc warning. |
| 285 | */ |
| 286 | unsigned int busy_queues_avg[CFQ_PRIO_NR]; |
| 287 | /* |
| 288 | * rr lists of queues with requests. We maintain service trees for |
| 289 | * RT and BE classes. These trees are subdivided in subclasses |
| 290 | * of SYNC, SYNC_NOIDLE and ASYNC based on workload type. For IDLE |
| 291 | * class there is no subclassification and all the cfq queues go on |
| 292 | * a single tree service_tree_idle. |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 293 | * Counts are embedded in the cfq_rb_root |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 294 | */ |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 295 | struct cfq_rb_root service_trees[2][3]; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 296 | struct cfq_rb_root service_tree_idle; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 297 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 298 | u64 saved_wl_slice; |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 299 | enum wl_type_t saved_wl_type; |
| 300 | enum wl_class_t saved_wl_class; |
Tejun Heo | 4eef304 | 2012-03-05 13:15:18 -0800 | [diff] [blame] | 301 | |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 302 | /* number of requests that are on the dispatch list or inside driver */ |
| 303 | int dispatched; |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 304 | struct cfq_ttime ttime; |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 305 | struct cfqg_stats stats; /* stats for this cfqg */ |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 306 | |
| 307 | /* async queue for each priority case */ |
| 308 | struct cfq_queue *async_cfqq[2][IOPRIO_BE_NR]; |
| 309 | struct cfq_queue *async_idle_cfqq; |
| 310 | |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 311 | u64 group_idle; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 312 | }; |
| 313 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 314 | struct cfq_io_cq { |
| 315 | struct io_cq icq; /* must be the first member */ |
| 316 | struct cfq_queue *cfqq[2]; |
| 317 | struct cfq_ttime ttime; |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 318 | int ioprio; /* the current ioprio */ |
| 319 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 320 | uint64_t blkcg_serial_nr; /* the current blkcg serial */ |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 321 | #endif |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 322 | }; |
| 323 | |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 324 | /* |
| 325 | * Per block device queue structure |
| 326 | */ |
| 327 | struct cfq_data { |
| 328 | struct request_queue *queue; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 329 | /* Root service tree for cfq_groups */ |
| 330 | struct cfq_rb_root grp_service_tree; |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 331 | struct cfq_group *root_group; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 332 | |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 333 | /* |
| 334 | * The priority currently being served |
| 335 | */ |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 336 | enum wl_class_t serving_wl_class; |
| 337 | enum wl_type_t serving_wl_type; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 338 | u64 workload_expires; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 339 | struct cfq_group *serving_group; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 340 | |
| 341 | /* |
| 342 | * Each priority tree is sorted by next_request position. These |
| 343 | * trees are used when determining if two or more queues are |
| 344 | * interleaving requests (see cfq_close_cooperator). |
| 345 | */ |
| 346 | struct rb_root prio_trees[CFQ_PRIO_LISTS]; |
| 347 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 348 | unsigned int busy_queues; |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 349 | unsigned int busy_sync_queues; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 350 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 351 | int rq_in_driver; |
| 352 | int rq_in_flight[2]; |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 353 | |
| 354 | /* |
| 355 | * queue-depth detection |
| 356 | */ |
| 357 | int rq_queued; |
Jens Axboe | 25776e3 | 2006-06-01 10:12:26 +0200 | [diff] [blame] | 358 | int hw_tag; |
Corrado Zoccolo | e459dd0 | 2009-11-26 10:02:57 +0100 | [diff] [blame] | 359 | /* |
| 360 | * hw_tag can be |
| 361 | * -1 => indeterminate, (cfq will behave as if NCQ is present, to allow better detection) |
| 362 | * 1 => NCQ is present (hw_tag_est_depth is the estimated max depth) |
| 363 | * 0 => no NCQ |
| 364 | */ |
| 365 | int hw_tag_est_depth; |
| 366 | unsigned int hw_tag_samples; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 367 | |
| 368 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 369 | * idle window management |
| 370 | */ |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 371 | struct hrtimer idle_slice_timer; |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 372 | struct work_struct unplug_work; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 373 | |
| 374 | struct cfq_queue *active_queue; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 375 | struct cfq_io_cq *active_cic; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 376 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 377 | sector_t last_position; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | /* |
| 380 | * tunables, see top of file |
| 381 | */ |
| 382 | unsigned int cfq_quantum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | unsigned int cfq_back_penalty; |
| 384 | unsigned int cfq_back_max; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 385 | unsigned int cfq_slice_async_rq; |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 386 | unsigned int cfq_latency; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 387 | u64 cfq_fifo_expire[2]; |
| 388 | u64 cfq_slice[2]; |
| 389 | u64 cfq_slice_idle; |
| 390 | u64 cfq_group_idle; |
| 391 | u64 cfq_target_latency; |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 392 | |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 393 | /* |
| 394 | * Fallback dummy cfqq for extreme OOM conditions |
| 395 | */ |
| 396 | struct cfq_queue oom_cfqq; |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 397 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 398 | u64 last_delayed_sync; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | }; |
| 400 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 401 | static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd); |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 402 | static void cfq_put_queue(struct cfq_queue *cfqq); |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 403 | |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 404 | static struct cfq_rb_root *st_for(struct cfq_group *cfqg, |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 405 | enum wl_class_t class, |
Vivek Goyal | 65b32a5 | 2009-12-16 17:52:59 -0500 | [diff] [blame] | 406 | enum wl_type_t type) |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 407 | { |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 408 | if (!cfqg) |
| 409 | return NULL; |
| 410 | |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 411 | if (class == IDLE_WORKLOAD) |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 412 | return &cfqg->service_tree_idle; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 413 | |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 414 | return &cfqg->service_trees[class][type]; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 415 | } |
| 416 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 417 | enum cfqq_state_flags { |
Jens Axboe | b0b8d749 | 2007-01-19 11:35:30 +1100 | [diff] [blame] | 418 | CFQ_CFQQ_FLAG_on_rr = 0, /* on round-robin busy list */ |
| 419 | CFQ_CFQQ_FLAG_wait_request, /* waiting for a request */ |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 420 | CFQ_CFQQ_FLAG_must_dispatch, /* must be allowed a dispatch */ |
Jens Axboe | b0b8d749 | 2007-01-19 11:35:30 +1100 | [diff] [blame] | 421 | CFQ_CFQQ_FLAG_must_alloc_slice, /* per-slice must_alloc flag */ |
Jens Axboe | b0b8d749 | 2007-01-19 11:35:30 +1100 | [diff] [blame] | 422 | CFQ_CFQQ_FLAG_fifo_expire, /* FIFO checked in this slice */ |
| 423 | CFQ_CFQQ_FLAG_idle_window, /* slice idling enabled */ |
| 424 | CFQ_CFQQ_FLAG_prio_changed, /* task priority has changed */ |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 425 | CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */ |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 426 | CFQ_CFQQ_FLAG_sync, /* synchronous queue */ |
Jeff Moyer | b3b6d04 | 2009-10-23 17:14:51 -0400 | [diff] [blame] | 427 | CFQ_CFQQ_FLAG_coop, /* cfqq is shared */ |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 428 | CFQ_CFQQ_FLAG_split_coop, /* shared cfqq will be splitted */ |
Corrado Zoccolo | 76280af | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 429 | CFQ_CFQQ_FLAG_deep, /* sync cfqq experienced large depth */ |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 430 | CFQ_CFQQ_FLAG_wait_busy, /* Waiting for next request */ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 431 | }; |
| 432 | |
| 433 | #define CFQ_CFQQ_FNS(name) \ |
| 434 | static inline void cfq_mark_cfqq_##name(struct cfq_queue *cfqq) \ |
| 435 | { \ |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 436 | (cfqq)->flags |= (1 << CFQ_CFQQ_FLAG_##name); \ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 437 | } \ |
| 438 | static inline void cfq_clear_cfqq_##name(struct cfq_queue *cfqq) \ |
| 439 | { \ |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 440 | (cfqq)->flags &= ~(1 << CFQ_CFQQ_FLAG_##name); \ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 441 | } \ |
| 442 | static inline int cfq_cfqq_##name(const struct cfq_queue *cfqq) \ |
| 443 | { \ |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 444 | return ((cfqq)->flags & (1 << CFQ_CFQQ_FLAG_##name)) != 0; \ |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | CFQ_CFQQ_FNS(on_rr); |
| 448 | CFQ_CFQQ_FNS(wait_request); |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 449 | CFQ_CFQQ_FNS(must_dispatch); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 450 | CFQ_CFQQ_FNS(must_alloc_slice); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 451 | CFQ_CFQQ_FNS(fifo_expire); |
| 452 | CFQ_CFQQ_FNS(idle_window); |
| 453 | CFQ_CFQQ_FNS(prio_changed); |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 454 | CFQ_CFQQ_FNS(slice_new); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 455 | CFQ_CFQQ_FNS(sync); |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 456 | CFQ_CFQQ_FNS(coop); |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 457 | CFQ_CFQQ_FNS(split_coop); |
Corrado Zoccolo | 76280af | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 458 | CFQ_CFQQ_FNS(deep); |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 459 | CFQ_CFQQ_FNS(wait_busy); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 460 | #undef CFQ_CFQQ_FNS |
| 461 | |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 462 | #if defined(CONFIG_CFQ_GROUP_IOSCHED) && defined(CONFIG_DEBUG_BLK_CGROUP) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 463 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 464 | /* cfqg stats flags */ |
| 465 | enum cfqg_stats_flags { |
| 466 | CFQG_stats_waiting = 0, |
| 467 | CFQG_stats_idling, |
| 468 | CFQG_stats_empty, |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 469 | }; |
| 470 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 471 | #define CFQG_FLAG_FNS(name) \ |
| 472 | static inline void cfqg_stats_mark_##name(struct cfqg_stats *stats) \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 473 | { \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 474 | stats->flags |= (1 << CFQG_stats_##name); \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 475 | } \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 476 | static inline void cfqg_stats_clear_##name(struct cfqg_stats *stats) \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 477 | { \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 478 | stats->flags &= ~(1 << CFQG_stats_##name); \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 479 | } \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 480 | static inline int cfqg_stats_##name(struct cfqg_stats *stats) \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 481 | { \ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 482 | return (stats->flags & (1 << CFQG_stats_##name)) != 0; \ |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 483 | } \ |
| 484 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 485 | CFQG_FLAG_FNS(waiting) |
| 486 | CFQG_FLAG_FNS(idling) |
| 487 | CFQG_FLAG_FNS(empty) |
| 488 | #undef CFQG_FLAG_FNS |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 489 | |
| 490 | /* This should be called with the queue_lock held. */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 491 | static void cfqg_stats_update_group_wait_time(struct cfqg_stats *stats) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 492 | { |
| 493 | unsigned long long now; |
| 494 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 495 | if (!cfqg_stats_waiting(stats)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 496 | return; |
| 497 | |
| 498 | now = sched_clock(); |
| 499 | if (time_after64(now, stats->start_group_wait_time)) |
| 500 | blkg_stat_add(&stats->group_wait_time, |
| 501 | now - stats->start_group_wait_time); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 502 | cfqg_stats_clear_waiting(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | /* This should be called with the queue_lock held. */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 506 | static void cfqg_stats_set_start_group_wait_time(struct cfq_group *cfqg, |
| 507 | struct cfq_group *curr_cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 508 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 509 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 510 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 511 | if (cfqg_stats_waiting(stats)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 512 | return; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 513 | if (cfqg == curr_cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 514 | return; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 515 | stats->start_group_wait_time = sched_clock(); |
| 516 | cfqg_stats_mark_waiting(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | /* This should be called with the queue_lock held. */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 520 | static void cfqg_stats_end_empty_time(struct cfqg_stats *stats) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 521 | { |
| 522 | unsigned long long now; |
| 523 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 524 | if (!cfqg_stats_empty(stats)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 525 | return; |
| 526 | |
| 527 | now = sched_clock(); |
| 528 | if (time_after64(now, stats->start_empty_time)) |
| 529 | blkg_stat_add(&stats->empty_time, |
| 530 | now - stats->start_empty_time); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 531 | cfqg_stats_clear_empty(stats); |
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_update_dequeue(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 | blkg_stat_add(&cfqg->stats.dequeue, 1); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 537 | } |
| 538 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 539 | static void cfqg_stats_set_start_empty_time(struct cfq_group *cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 540 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 541 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 542 | |
Tejun Heo | 4d5e80a | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 543 | if (blkg_rwstat_total(&stats->queued)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 544 | return; |
| 545 | |
| 546 | /* |
| 547 | * group is already marked empty. This can happen if cfqq got new |
| 548 | * request in parent group and moved to this group while being added |
| 549 | * to service tree. Just ignore the event and move on. |
| 550 | */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 551 | if (cfqg_stats_empty(stats)) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 552 | return; |
| 553 | |
| 554 | stats->start_empty_time = sched_clock(); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 555 | cfqg_stats_mark_empty(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 556 | } |
| 557 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 558 | static void cfqg_stats_update_idle_time(struct cfq_group *cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 559 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 560 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 561 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 562 | if (cfqg_stats_idling(stats)) { |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 563 | unsigned long long now = sched_clock(); |
| 564 | |
| 565 | if (time_after64(now, stats->start_idle_time)) |
| 566 | blkg_stat_add(&stats->idle_time, |
| 567 | now - stats->start_idle_time); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 568 | cfqg_stats_clear_idling(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 569 | } |
| 570 | } |
| 571 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 572 | static void cfqg_stats_set_start_idle_time(struct cfq_group *cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 573 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 574 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 575 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 576 | BUG_ON(cfqg_stats_idling(stats)); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 577 | |
| 578 | stats->start_idle_time = sched_clock(); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 579 | cfqg_stats_mark_idling(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 580 | } |
| 581 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 582 | static void cfqg_stats_update_avg_queue_size(struct cfq_group *cfqg) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 583 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 584 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 585 | |
| 586 | blkg_stat_add(&stats->avg_queue_size_sum, |
Tejun Heo | 4d5e80a | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 587 | blkg_rwstat_total(&stats->queued)); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 588 | blkg_stat_add(&stats->avg_queue_size_samples, 1); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 589 | cfqg_stats_update_group_wait_time(stats); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | #else /* CONFIG_CFQ_GROUP_IOSCHED && CONFIG_DEBUG_BLK_CGROUP */ |
| 593 | |
Tejun Heo | f48ec1d | 2012-04-13 13:11:25 -0700 | [diff] [blame] | 594 | static inline void cfqg_stats_set_start_group_wait_time(struct cfq_group *cfqg, struct cfq_group *curr_cfqg) { } |
| 595 | static inline void cfqg_stats_end_empty_time(struct cfqg_stats *stats) { } |
| 596 | static inline void cfqg_stats_update_dequeue(struct cfq_group *cfqg) { } |
| 597 | static inline void cfqg_stats_set_start_empty_time(struct cfq_group *cfqg) { } |
| 598 | static inline void cfqg_stats_update_idle_time(struct cfq_group *cfqg) { } |
| 599 | static inline void cfqg_stats_set_start_idle_time(struct cfq_group *cfqg) { } |
| 600 | 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] | 601 | |
| 602 | #endif /* CONFIG_CFQ_GROUP_IOSCHED && CONFIG_DEBUG_BLK_CGROUP */ |
| 603 | |
| 604 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 605 | |
Jens Axboe | 4ceab71 | 2015-06-19 10:13:01 -0600 | [diff] [blame] | 606 | static inline struct cfq_group *pd_to_cfqg(struct blkg_policy_data *pd) |
| 607 | { |
| 608 | return pd ? container_of(pd, struct cfq_group, pd) : NULL; |
| 609 | } |
| 610 | |
| 611 | static struct cfq_group_data |
| 612 | *cpd_to_cfqgd(struct blkcg_policy_data *cpd) |
| 613 | { |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 614 | return cpd ? container_of(cpd, struct cfq_group_data, cpd) : NULL; |
Jens Axboe | 4ceab71 | 2015-06-19 10:13:01 -0600 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | static inline struct blkcg_gq *cfqg_to_blkg(struct cfq_group *cfqg) |
| 618 | { |
| 619 | return pd_to_blkg(&cfqg->pd); |
| 620 | } |
| 621 | |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 622 | static struct blkcg_policy blkcg_policy_cfq; |
| 623 | |
| 624 | static inline struct cfq_group *blkg_to_cfqg(struct blkcg_gq *blkg) |
| 625 | { |
| 626 | return pd_to_cfqg(blkg_to_pd(blkg, &blkcg_policy_cfq)); |
| 627 | } |
| 628 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 629 | static struct cfq_group_data *blkcg_to_cfqgd(struct blkcg *blkcg) |
| 630 | { |
| 631 | return cpd_to_cfqgd(blkcg_to_cpd(blkcg, &blkcg_policy_cfq)); |
| 632 | } |
| 633 | |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 634 | static inline struct cfq_group *cfqg_parent(struct cfq_group *cfqg) |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 635 | { |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 636 | struct blkcg_gq *pblkg = cfqg_to_blkg(cfqg)->parent; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 637 | |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 638 | return pblkg ? blkg_to_cfqg(pblkg) : NULL; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 639 | } |
| 640 | |
Jan Kara | 3984aa5 | 2016-01-12 16:24:19 +0100 | [diff] [blame] | 641 | static inline bool cfqg_is_descendant(struct cfq_group *cfqg, |
| 642 | struct cfq_group *ancestor) |
| 643 | { |
| 644 | return cgroup_is_descendant(cfqg_to_blkg(cfqg)->blkcg->css.cgroup, |
| 645 | cfqg_to_blkg(ancestor)->blkcg->css.cgroup); |
| 646 | } |
| 647 | |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 648 | static inline void cfqg_get(struct cfq_group *cfqg) |
| 649 | { |
| 650 | return blkg_get(cfqg_to_blkg(cfqg)); |
| 651 | } |
| 652 | |
| 653 | static inline void cfqg_put(struct cfq_group *cfqg) |
| 654 | { |
| 655 | return blkg_put(cfqg_to_blkg(cfqg)); |
| 656 | } |
| 657 | |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 658 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) do { \ |
| 659 | char __pbuf[128]; \ |
| 660 | \ |
| 661 | blkg_path(cfqg_to_blkg((cfqq)->cfqg), __pbuf, sizeof(__pbuf)); \ |
Vivek Goyal | b226e5c | 2012-10-03 16:57:01 -0400 | [diff] [blame] | 662 | blk_add_trace_msg((cfqd)->queue, "cfq%d%c%c %s " fmt, (cfqq)->pid, \ |
| 663 | cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \ |
| 664 | cfqq_type((cfqq)) == SYNC_NOIDLE_WORKLOAD ? 'N' : ' ',\ |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 665 | __pbuf, ##args); \ |
| 666 | } while (0) |
Vivek Goyal | 2868ef7 | 2009-12-03 12:59:48 -0500 | [diff] [blame] | 667 | |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 668 | #define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do { \ |
| 669 | char __pbuf[128]; \ |
| 670 | \ |
| 671 | blkg_path(cfqg_to_blkg(cfqg), __pbuf, sizeof(__pbuf)); \ |
| 672 | blk_add_trace_msg((cfqd)->queue, "%s " fmt, __pbuf, ##args); \ |
| 673 | } while (0) |
Vivek Goyal | 2868ef7 | 2009-12-03 12:59:48 -0500 | [diff] [blame] | 674 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 675 | static inline void cfqg_stats_update_io_add(struct cfq_group *cfqg, |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 676 | struct cfq_group *curr_cfqg, int op, |
| 677 | int op_flags) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 678 | { |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 679 | blkg_rwstat_add(&cfqg->stats.queued, op, op_flags, 1); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 680 | cfqg_stats_end_empty_time(&cfqg->stats); |
| 681 | cfqg_stats_set_start_group_wait_time(cfqg, curr_cfqg); |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 682 | } |
| 683 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 684 | static inline void cfqg_stats_update_timeslice_used(struct cfq_group *cfqg, |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 685 | uint64_t time, unsigned long unaccounted_time) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 686 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 687 | blkg_stat_add(&cfqg->stats.time, time); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 688 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 689 | blkg_stat_add(&cfqg->stats.unaccounted_time, unaccounted_time); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 690 | #endif |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 691 | } |
| 692 | |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 693 | static inline void cfqg_stats_update_io_remove(struct cfq_group *cfqg, int op, |
| 694 | int op_flags) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 695 | { |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 696 | blkg_rwstat_add(&cfqg->stats.queued, op, op_flags, -1); |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 697 | } |
| 698 | |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 699 | static inline void cfqg_stats_update_io_merged(struct cfq_group *cfqg, int op, |
| 700 | int op_flags) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 701 | { |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 702 | blkg_rwstat_add(&cfqg->stats.merged, op, op_flags, 1); |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 703 | } |
| 704 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 705 | static inline void cfqg_stats_update_completion(struct cfq_group *cfqg, |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 706 | uint64_t start_time, uint64_t io_start_time, int op, |
| 707 | int op_flags) |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 708 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 709 | struct cfqg_stats *stats = &cfqg->stats; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 710 | unsigned long long now = sched_clock(); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 711 | |
| 712 | if (time_after64(now, io_start_time)) |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 713 | blkg_rwstat_add(&stats->service_time, op, op_flags, |
| 714 | now - io_start_time); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 715 | if (time_after64(io_start_time, start_time)) |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 716 | blkg_rwstat_add(&stats->wait_time, op, op_flags, |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 717 | io_start_time - start_time); |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 718 | } |
| 719 | |
Tejun Heo | 689665a | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 720 | /* @stats = 0 */ |
| 721 | static void cfqg_stats_reset(struct cfqg_stats *stats) |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 722 | { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 723 | /* queued stats shouldn't be cleared */ |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 724 | blkg_rwstat_reset(&stats->merged); |
| 725 | blkg_rwstat_reset(&stats->service_time); |
| 726 | blkg_rwstat_reset(&stats->wait_time); |
| 727 | blkg_stat_reset(&stats->time); |
| 728 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
| 729 | blkg_stat_reset(&stats->unaccounted_time); |
| 730 | blkg_stat_reset(&stats->avg_queue_size_sum); |
| 731 | blkg_stat_reset(&stats->avg_queue_size_samples); |
| 732 | blkg_stat_reset(&stats->dequeue); |
| 733 | blkg_stat_reset(&stats->group_wait_time); |
| 734 | blkg_stat_reset(&stats->idle_time); |
| 735 | blkg_stat_reset(&stats->empty_time); |
| 736 | #endif |
| 737 | } |
| 738 | |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 739 | /* @to += @from */ |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 740 | 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] | 741 | { |
| 742 | /* queued stats shouldn't be cleared */ |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 743 | blkg_rwstat_add_aux(&to->merged, &from->merged); |
| 744 | blkg_rwstat_add_aux(&to->service_time, &from->service_time); |
| 745 | blkg_rwstat_add_aux(&to->wait_time, &from->wait_time); |
| 746 | blkg_stat_add_aux(&from->time, &from->time); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 747 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 748 | blkg_stat_add_aux(&to->unaccounted_time, &from->unaccounted_time); |
| 749 | blkg_stat_add_aux(&to->avg_queue_size_sum, &from->avg_queue_size_sum); |
| 750 | blkg_stat_add_aux(&to->avg_queue_size_samples, &from->avg_queue_size_samples); |
| 751 | blkg_stat_add_aux(&to->dequeue, &from->dequeue); |
| 752 | blkg_stat_add_aux(&to->group_wait_time, &from->group_wait_time); |
| 753 | blkg_stat_add_aux(&to->idle_time, &from->idle_time); |
| 754 | blkg_stat_add_aux(&to->empty_time, &from->empty_time); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 755 | #endif |
| 756 | } |
| 757 | |
| 758 | /* |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 759 | * 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] | 760 | * recursive stats can still account for the amount used by this cfqg after |
| 761 | * it's gone. |
| 762 | */ |
| 763 | static void cfqg_stats_xfer_dead(struct cfq_group *cfqg) |
| 764 | { |
| 765 | struct cfq_group *parent = cfqg_parent(cfqg); |
| 766 | |
| 767 | lockdep_assert_held(cfqg_to_blkg(cfqg)->q->queue_lock); |
| 768 | |
| 769 | if (unlikely(!parent)) |
| 770 | return; |
| 771 | |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 772 | cfqg_stats_add_aux(&parent->stats, &cfqg->stats); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 773 | cfqg_stats_reset(&cfqg->stats); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 774 | } |
| 775 | |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 776 | #else /* CONFIG_CFQ_GROUP_IOSCHED */ |
| 777 | |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 778 | 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] | 779 | static inline bool cfqg_is_descendant(struct cfq_group *cfqg, |
| 780 | struct cfq_group *ancestor) |
| 781 | { |
| 782 | return true; |
| 783 | } |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 784 | static inline void cfqg_get(struct cfq_group *cfqg) { } |
| 785 | static inline void cfqg_put(struct cfq_group *cfqg) { } |
| 786 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 787 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \ |
Vivek Goyal | b226e5c | 2012-10-03 16:57:01 -0400 | [diff] [blame] | 788 | blk_add_trace_msg((cfqd)->queue, "cfq%d%c%c " fmt, (cfqq)->pid, \ |
| 789 | cfq_cfqq_sync((cfqq)) ? 'S' : 'A', \ |
| 790 | cfqq_type((cfqq)) == SYNC_NOIDLE_WORKLOAD ? 'N' : ' ',\ |
| 791 | ##args) |
Kyungmin Park | 4495a7d | 2011-05-31 10:04:09 +0200 | [diff] [blame] | 792 | #define cfq_log_cfqg(cfqd, cfqg, fmt, args...) do {} while (0) |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 793 | |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 794 | static inline void cfqg_stats_update_io_add(struct cfq_group *cfqg, |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 795 | struct cfq_group *curr_cfqg, int op, int op_flags) { } |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 796 | static inline void cfqg_stats_update_timeslice_used(struct cfq_group *cfqg, |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 797 | uint64_t time, unsigned long unaccounted_time) { } |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 798 | static inline void cfqg_stats_update_io_remove(struct cfq_group *cfqg, int op, |
| 799 | int op_flags) { } |
| 800 | static inline void cfqg_stats_update_io_merged(struct cfq_group *cfqg, int op, |
| 801 | int op_flags) { } |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 802 | static inline void cfqg_stats_update_completion(struct cfq_group *cfqg, |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 803 | uint64_t start_time, uint64_t io_start_time, int op, |
| 804 | int op_flags) { } |
Tejun Heo | 2ce4d50 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 805 | |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 806 | #endif /* CONFIG_CFQ_GROUP_IOSCHED */ |
| 807 | |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 808 | static inline u64 get_group_idle(struct cfq_data *cfqd) |
| 809 | { |
| 810 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
| 811 | struct cfq_queue *cfqq = cfqd->active_queue; |
| 812 | |
| 813 | if (cfqq && cfqq->cfqg) |
| 814 | return cfqq->cfqg->group_idle; |
| 815 | #endif |
| 816 | return cfqd->cfq_group_idle; |
| 817 | } |
| 818 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 819 | #define cfq_log(cfqd, fmt, args...) \ |
| 820 | blk_add_trace_msg((cfqd)->queue, "cfq " fmt, ##args) |
| 821 | |
Vivek Goyal | 615f025 | 2009-12-03 12:59:39 -0500 | [diff] [blame] | 822 | /* Traverses through cfq group service trees */ |
| 823 | #define for_each_cfqg_st(cfqg, i, j, st) \ |
| 824 | for (i = 0; i <= IDLE_WORKLOAD; i++) \ |
| 825 | for (j = 0, st = i < IDLE_WORKLOAD ? &cfqg->service_trees[i][j]\ |
| 826 | : &cfqg->service_tree_idle; \ |
| 827 | (i < IDLE_WORKLOAD && j <= SYNC_WORKLOAD) || \ |
| 828 | (i == IDLE_WORKLOAD && j == 0); \ |
| 829 | j++, st = i < IDLE_WORKLOAD ? \ |
| 830 | &cfqg->service_trees[i][j]: NULL) \ |
| 831 | |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 832 | static inline bool cfq_io_thinktime_big(struct cfq_data *cfqd, |
| 833 | struct cfq_ttime *ttime, bool group_idle) |
| 834 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 835 | u64 slice; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 836 | if (!sample_valid(ttime->ttime_samples)) |
| 837 | return false; |
| 838 | if (group_idle) |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 839 | slice = get_group_idle(cfqd); |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 840 | else |
| 841 | slice = cfqd->cfq_slice_idle; |
| 842 | return ttime->ttime_mean > slice; |
| 843 | } |
Vivek Goyal | 615f025 | 2009-12-03 12:59:39 -0500 | [diff] [blame] | 844 | |
Vivek Goyal | 02b3508 | 2010-08-23 12:23:53 +0200 | [diff] [blame] | 845 | static inline bool iops_mode(struct cfq_data *cfqd) |
| 846 | { |
| 847 | /* |
| 848 | * If we are not idling on queues and it is a NCQ drive, parallel |
| 849 | * execution of requests is on and measuring time is not possible |
| 850 | * in most of the cases until and unless we drive shallower queue |
| 851 | * depths and that becomes a performance bottleneck. In such cases |
| 852 | * switch to start providing fairness in terms of number of IOs. |
| 853 | */ |
| 854 | if (!cfqd->cfq_slice_idle && cfqd->hw_tag) |
| 855 | return true; |
| 856 | else |
| 857 | return false; |
| 858 | } |
| 859 | |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 860 | static inline enum wl_class_t cfqq_class(struct cfq_queue *cfqq) |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 861 | { |
| 862 | if (cfq_class_idle(cfqq)) |
| 863 | return IDLE_WORKLOAD; |
| 864 | if (cfq_class_rt(cfqq)) |
| 865 | return RT_WORKLOAD; |
| 866 | return BE_WORKLOAD; |
| 867 | } |
| 868 | |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 869 | |
| 870 | static enum wl_type_t cfqq_type(struct cfq_queue *cfqq) |
| 871 | { |
| 872 | if (!cfq_cfqq_sync(cfqq)) |
| 873 | return ASYNC_WORKLOAD; |
| 874 | if (!cfq_cfqq_idle_window(cfqq)) |
| 875 | return SYNC_NOIDLE_WORKLOAD; |
| 876 | return SYNC_WORKLOAD; |
| 877 | } |
| 878 | |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 879 | 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] | 880 | struct cfq_data *cfqd, |
| 881 | struct cfq_group *cfqg) |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 882 | { |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 883 | if (wl_class == IDLE_WORKLOAD) |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 884 | return cfqg->service_tree_idle.count; |
| 885 | |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 886 | return cfqg->service_trees[wl_class][ASYNC_WORKLOAD].count + |
| 887 | cfqg->service_trees[wl_class][SYNC_NOIDLE_WORKLOAD].count + |
| 888 | cfqg->service_trees[wl_class][SYNC_WORKLOAD].count; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 889 | } |
| 890 | |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 891 | static inline int cfqg_busy_async_queues(struct cfq_data *cfqd, |
| 892 | struct cfq_group *cfqg) |
| 893 | { |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 894 | return cfqg->service_trees[RT_WORKLOAD][ASYNC_WORKLOAD].count + |
| 895 | cfqg->service_trees[BE_WORKLOAD][ASYNC_WORKLOAD].count; |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 896 | } |
| 897 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 898 | static void cfq_dispatch_insert(struct request_queue *, struct request *); |
Tejun Heo | 4f85cb9 | 2012-03-05 13:15:28 -0800 | [diff] [blame] | 899 | 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] | 900 | struct cfq_io_cq *cic, struct bio *bio); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 901 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 902 | static inline struct cfq_io_cq *icq_to_cic(struct io_cq *icq) |
| 903 | { |
| 904 | /* cic->icq is the first member, %NULL will convert to %NULL */ |
| 905 | return container_of(icq, struct cfq_io_cq, icq); |
| 906 | } |
| 907 | |
Tejun Heo | 47fdd4c | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 908 | static inline struct cfq_io_cq *cfq_cic_lookup(struct cfq_data *cfqd, |
| 909 | struct io_context *ioc) |
| 910 | { |
| 911 | if (ioc) |
| 912 | return icq_to_cic(ioc_lookup_icq(ioc, cfqd->queue)); |
| 913 | return NULL; |
| 914 | } |
| 915 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 916 | 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] | 917 | { |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 918 | return cic->cfqq[is_sync]; |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 919 | } |
| 920 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 921 | static inline void cic_set_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq, |
| 922 | bool is_sync) |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 923 | { |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 924 | cic->cfqq[is_sync] = cfqq; |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 925 | } |
| 926 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 927 | 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] | 928 | { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 929 | return cic->icq.q->elevator->elevator_data; |
Konstantin Khlebnikov | bca4b91 | 2010-05-20 23:21:34 +0400 | [diff] [blame] | 930 | } |
| 931 | |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 932 | /* |
| 933 | * We regard a request as SYNC, if it's either a read or has the SYNC bit |
| 934 | * set (in which case it could also be direct WRITE). |
| 935 | */ |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 936 | static inline bool cfq_bio_sync(struct bio *bio) |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 937 | { |
Jens Axboe | 1eff9d3 | 2016-08-05 15:35:16 -0600 | [diff] [blame] | 938 | return bio_data_dir(bio) == READ || (bio->bi_opf & REQ_SYNC); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 939 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | /* |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 942 | * scheduler run of queue, if there are requests pending and no one in the |
| 943 | * driver that will restart queueing |
| 944 | */ |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 945 | static inline void cfq_schedule_dispatch(struct cfq_data *cfqd) |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 946 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 947 | if (cfqd->busy_queues) { |
| 948 | cfq_log(cfqd, "schedule dispatch"); |
Jens Axboe | 59c3d45 | 2014-04-08 09:15:35 -0600 | [diff] [blame] | 949 | kblockd_schedule_work(&cfqd->unplug_work); |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 950 | } |
Andrew Morton | 99f95e5 | 2005-06-27 20:14:05 -0700 | [diff] [blame] | 951 | } |
| 952 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | /* |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 954 | * Scale schedule slice based on io priority. Use the sync time slice only |
| 955 | * if a queue is marked sync and has sync io queued. A sync queue with async |
| 956 | * io only, should not get full sync slice length. |
| 957 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 958 | static inline u64 cfq_prio_slice(struct cfq_data *cfqd, bool sync, |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 959 | unsigned short prio) |
| 960 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 961 | u64 base_slice = cfqd->cfq_slice[sync]; |
| 962 | u64 slice = div_u64(base_slice, CFQ_SLICE_SCALE); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 963 | |
| 964 | WARN_ON(prio >= IOPRIO_BE_NR); |
| 965 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 966 | return base_slice + (slice * (4 - prio)); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 967 | } |
| 968 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 969 | static inline u64 |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 970 | cfq_prio_to_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 971 | { |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 972 | return cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio); |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 973 | } |
| 974 | |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 975 | /** |
| 976 | * cfqg_scale_charge - scale disk time charge according to cfqg weight |
| 977 | * @charge: disk time being charged |
| 978 | * @vfraction: vfraction of the cfqg, fixed point w/ CFQ_SERVICE_SHIFT |
| 979 | * |
| 980 | * Scale @charge according to @vfraction, which is in range (0, 1]. The |
| 981 | * scaling is inversely proportional. |
| 982 | * |
| 983 | * scaled = charge / vfraction |
| 984 | * |
| 985 | * The result is also in fixed point w/ CFQ_SERVICE_SHIFT. |
| 986 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 987 | static inline u64 cfqg_scale_charge(u64 charge, |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 988 | unsigned int vfraction) |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 989 | { |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 990 | u64 c = charge << CFQ_SERVICE_SHIFT; /* make it fixed point */ |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 991 | |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 992 | /* charge / vfraction */ |
| 993 | c <<= CFQ_SERVICE_SHIFT; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 994 | return div_u64(c, vfraction); |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 995 | } |
| 996 | |
| 997 | static inline u64 max_vdisktime(u64 min_vdisktime, u64 vdisktime) |
| 998 | { |
| 999 | s64 delta = (s64)(vdisktime - min_vdisktime); |
| 1000 | if (delta > 0) |
| 1001 | min_vdisktime = vdisktime; |
| 1002 | |
| 1003 | return min_vdisktime; |
| 1004 | } |
| 1005 | |
| 1006 | static inline u64 min_vdisktime(u64 min_vdisktime, u64 vdisktime) |
| 1007 | { |
| 1008 | s64 delta = (s64)(vdisktime - min_vdisktime); |
| 1009 | if (delta < 0) |
| 1010 | min_vdisktime = vdisktime; |
| 1011 | |
| 1012 | return min_vdisktime; |
| 1013 | } |
| 1014 | |
| 1015 | static void update_min_vdisktime(struct cfq_rb_root *st) |
| 1016 | { |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 1017 | struct cfq_group *cfqg; |
| 1018 | |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 1019 | if (st->left) { |
| 1020 | cfqg = rb_entry_cfqg(st->left); |
Gui Jianfeng | a603271 | 2011-03-07 09:28:09 +0100 | [diff] [blame] | 1021 | st->min_vdisktime = max_vdisktime(st->min_vdisktime, |
| 1022 | cfqg->vdisktime); |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 1023 | } |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 1024 | } |
| 1025 | |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1026 | /* |
| 1027 | * get averaged number of queues of RT/BE priority. |
| 1028 | * average is updated, with a formula that gives more weight to higher numbers, |
| 1029 | * to quickly follows sudden increases and decrease slowly |
| 1030 | */ |
| 1031 | |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1032 | static inline unsigned cfq_group_get_avg_queues(struct cfq_data *cfqd, |
| 1033 | struct cfq_group *cfqg, bool rt) |
Jens Axboe | 5869619c | 2009-10-28 09:27:07 +0100 | [diff] [blame] | 1034 | { |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1035 | unsigned min_q, max_q; |
| 1036 | unsigned mult = cfq_hist_divisor - 1; |
| 1037 | unsigned round = cfq_hist_divisor / 2; |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1038 | unsigned busy = cfq_group_busy_queues_wl(rt, cfqd, cfqg); |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1039 | |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1040 | min_q = min(cfqg->busy_queues_avg[rt], busy); |
| 1041 | max_q = max(cfqg->busy_queues_avg[rt], busy); |
| 1042 | cfqg->busy_queues_avg[rt] = (mult * max_q + min_q + round) / |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1043 | cfq_hist_divisor; |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1044 | return cfqg->busy_queues_avg[rt]; |
| 1045 | } |
| 1046 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1047 | static inline u64 |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1048 | cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg) |
| 1049 | { |
Tejun Heo | 41cad6a | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1050 | return cfqd->cfq_target_latency * cfqg->vfraction >> CFQ_SERVICE_SHIFT; |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1051 | } |
| 1052 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1053 | static inline u64 |
Vivek Goyal | ba5bd52 | 2011-01-19 08:25:02 -0700 | [diff] [blame] | 1054 | cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1055 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1056 | u64 slice = cfq_prio_to_slice(cfqd, cfqq); |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1057 | if (cfqd->cfq_latency) { |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1058 | /* |
| 1059 | * interested queues (we consider only the ones with the same |
| 1060 | * priority class in the cfq group) |
| 1061 | */ |
| 1062 | unsigned iq = cfq_group_get_avg_queues(cfqd, cfqq->cfqg, |
| 1063 | cfq_class_rt(cfqq)); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1064 | u64 sync_slice = cfqd->cfq_slice[1]; |
| 1065 | u64 expect_latency = sync_slice * iq; |
| 1066 | u64 group_slice = cfq_group_slice(cfqd, cfqq->cfqg); |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 1067 | |
| 1068 | if (expect_latency > group_slice) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1069 | u64 base_low_slice = 2 * cfqd->cfq_slice_idle; |
| 1070 | u64 low_slice; |
| 1071 | |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1072 | /* scale low_slice according to IO priority |
| 1073 | * and sync vs async */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1074 | low_slice = div64_u64(base_low_slice*slice, sync_slice); |
| 1075 | low_slice = min(slice, low_slice); |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1076 | /* the adapted slice value is scaled to fit all iqs |
| 1077 | * into the target latency */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1078 | slice = div64_u64(slice*group_slice, expect_latency); |
| 1079 | slice = max(slice, low_slice); |
Corrado Zoccolo | 5db5d64 | 2009-10-26 22:44:04 +0100 | [diff] [blame] | 1080 | } |
| 1081 | } |
Shaohua Li | c553f8e | 2011-01-14 08:41:03 +0100 | [diff] [blame] | 1082 | return slice; |
| 1083 | } |
| 1084 | |
| 1085 | static inline void |
| 1086 | cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 1087 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1088 | u64 slice = cfq_scaled_cfqq_slice(cfqd, cfqq); |
| 1089 | u64 now = ktime_get_ns(); |
Shaohua Li | c553f8e | 2011-01-14 08:41:03 +0100 | [diff] [blame] | 1090 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1091 | cfqq->slice_start = now; |
| 1092 | cfqq->slice_end = now + slice; |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 1093 | cfqq->allocated_slice = slice; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1094 | cfq_log_cfqq(cfqd, cfqq, "set_slice=%llu", cfqq->slice_end - now); |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1095 | } |
| 1096 | |
| 1097 | /* |
| 1098 | * We need to wrap this check in cfq_cfqq_slice_new(), since ->slice_end |
| 1099 | * isn't valid until the first request from the dispatch is activated |
| 1100 | * and the slice time set. |
| 1101 | */ |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 1102 | static inline bool cfq_slice_used(struct cfq_queue *cfqq) |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1103 | { |
| 1104 | if (cfq_cfqq_slice_new(cfqq)) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 1105 | return false; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1106 | if (ktime_get_ns() < cfqq->slice_end) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 1107 | return false; |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1108 | |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 1109 | return true; |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 1110 | } |
| 1111 | |
| 1112 | /* |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1113 | * 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] | 1114 | * 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] | 1115 | * behind the head is penalized and only allowed to a certain extent. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1117 | static struct request * |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 1118 | 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] | 1119 | { |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 1120 | sector_t s1, s2, d1 = 0, d2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | unsigned long back_max; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1122 | #define CFQ_RQ1_WRAP 0x01 /* request 1 wraps */ |
| 1123 | #define CFQ_RQ2_WRAP 0x02 /* request 2 wraps */ |
| 1124 | unsigned wrap = 0; /* bit mask: requests behind the disk head? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1126 | if (rq1 == NULL || rq1 == rq2) |
| 1127 | return rq2; |
| 1128 | if (rq2 == NULL) |
| 1129 | return rq1; |
Jens Axboe | 9c2c38a | 2005-08-24 14:57:54 +0200 | [diff] [blame] | 1130 | |
Namhyung Kim | 229836b | 2011-05-24 10:23:21 +0200 | [diff] [blame] | 1131 | if (rq_is_sync(rq1) != rq_is_sync(rq2)) |
| 1132 | return rq_is_sync(rq1) ? rq1 : rq2; |
| 1133 | |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 1134 | if ((rq1->cmd_flags ^ rq2->cmd_flags) & REQ_PRIO) |
| 1135 | return rq1->cmd_flags & REQ_PRIO ? rq1 : rq2; |
Jens Axboe | b53d1ed | 2011-08-19 08:34:48 +0200 | [diff] [blame] | 1136 | |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 1137 | s1 = blk_rq_pos(rq1); |
| 1138 | s2 = blk_rq_pos(rq2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | /* |
| 1141 | * by definition, 1KiB is 2 sectors |
| 1142 | */ |
| 1143 | back_max = cfqd->cfq_back_max * 2; |
| 1144 | |
| 1145 | /* |
| 1146 | * Strict one way elevator _except_ in the case where we allow |
| 1147 | * short backward seeks which are biased as twice the cost of a |
| 1148 | * similar forward seek. |
| 1149 | */ |
| 1150 | if (s1 >= last) |
| 1151 | d1 = s1 - last; |
| 1152 | else if (s1 + back_max >= last) |
| 1153 | d1 = (last - s1) * cfqd->cfq_back_penalty; |
| 1154 | else |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1155 | wrap |= CFQ_RQ1_WRAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | |
| 1157 | if (s2 >= last) |
| 1158 | d2 = s2 - last; |
| 1159 | else if (s2 + back_max >= last) |
| 1160 | d2 = (last - s2) * cfqd->cfq_back_penalty; |
| 1161 | else |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1162 | wrap |= CFQ_RQ2_WRAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
| 1164 | /* Found required data */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1166 | /* |
| 1167 | * By doing switch() on the bit mask "wrap" we avoid having to |
| 1168 | * check two variables for all permutations: --> faster! |
| 1169 | */ |
| 1170 | switch (wrap) { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1171 | case 0: /* common case for CFQ: rq1 and rq2 not wrapped */ |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1172 | if (d1 < d2) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1173 | return rq1; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1174 | else if (d2 < d1) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1175 | return rq2; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1176 | else { |
| 1177 | if (s1 >= s2) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1178 | return rq1; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1179 | else |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1180 | return rq2; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1181 | } |
| 1182 | |
| 1183 | case CFQ_RQ2_WRAP: |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1184 | return rq1; |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1185 | case CFQ_RQ1_WRAP: |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1186 | return rq2; |
| 1187 | case (CFQ_RQ1_WRAP|CFQ_RQ2_WRAP): /* both rqs wrapped */ |
Andreas Mohr | e8a9905 | 2006-03-28 08:59:49 +0200 | [diff] [blame] | 1188 | default: |
| 1189 | /* |
| 1190 | * Since both rqs are wrapped, |
| 1191 | * start with the one that's further behind head |
| 1192 | * (--> only *one* back seek required), |
| 1193 | * since back seek takes more time than forward. |
| 1194 | */ |
| 1195 | if (s1 <= s2) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1196 | return rq1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | else |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1198 | return rq2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | } |
| 1200 | } |
| 1201 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 1202 | /* |
| 1203 | * The below is leftmost cache rbtree addon |
| 1204 | */ |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 1205 | static struct cfq_queue *cfq_rb_first(struct cfq_rb_root *root) |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1206 | { |
Vivek Goyal | 615f025 | 2009-12-03 12:59:39 -0500 | [diff] [blame] | 1207 | /* Service tree is empty */ |
| 1208 | if (!root->count) |
| 1209 | return NULL; |
| 1210 | |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1211 | if (!root->left) |
| 1212 | root->left = rb_first(&root->rb); |
| 1213 | |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 1214 | if (root->left) |
| 1215 | return rb_entry(root->left, struct cfq_queue, rb_node); |
| 1216 | |
| 1217 | return NULL; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1218 | } |
| 1219 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1220 | static struct cfq_group *cfq_rb_first_group(struct cfq_rb_root *root) |
| 1221 | { |
| 1222 | if (!root->left) |
| 1223 | root->left = rb_first(&root->rb); |
| 1224 | |
| 1225 | if (root->left) |
| 1226 | return rb_entry_cfqg(root->left); |
| 1227 | |
| 1228 | return NULL; |
| 1229 | } |
| 1230 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 1231 | static void rb_erase_init(struct rb_node *n, struct rb_root *root) |
| 1232 | { |
| 1233 | rb_erase(n, root); |
| 1234 | RB_CLEAR_NODE(n); |
| 1235 | } |
| 1236 | |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1237 | static void cfq_rb_erase(struct rb_node *n, struct cfq_rb_root *root) |
| 1238 | { |
| 1239 | if (root->left == n) |
| 1240 | root->left = NULL; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 1241 | rb_erase_init(n, &root->rb); |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 1242 | --root->count; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 1243 | } |
| 1244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | /* |
| 1246 | * would be nice to take fifo expire time into account as well |
| 1247 | */ |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1248 | static struct request * |
| 1249 | cfq_find_next_rq(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
| 1250 | struct request *last) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | { |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1252 | struct rb_node *rbnext = rb_next(&last->rb_node); |
| 1253 | struct rb_node *rbprev = rb_prev(&last->rb_node); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1254 | struct request *next = NULL, *prev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1256 | BUG_ON(RB_EMPTY_NODE(&last->rb_node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | |
| 1258 | if (rbprev) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1259 | prev = rb_entry_rq(rbprev); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | if (rbnext) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1262 | next = rb_entry_rq(rbnext); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1263 | else { |
| 1264 | rbnext = rb_first(&cfqq->sort_list); |
| 1265 | if (rbnext && rbnext != &last->rb_node) |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 1266 | next = rb_entry_rq(rbnext); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 1267 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 1269 | return cfq_choose_req(cfqd, next, prev, blk_rq_pos(last)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | } |
| 1271 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1272 | static u64 cfq_slice_offset(struct cfq_data *cfqd, |
| 1273 | struct cfq_queue *cfqq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | { |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 1275 | /* |
| 1276 | * just an approximation, should be ok. |
| 1277 | */ |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 1278 | return (cfqq->cfqg->nr_cfqq - 1) * (cfq_prio_slice(cfqd, 1, 0) - |
Jens Axboe | 464191c | 2009-11-30 09:38:13 +0100 | [diff] [blame] | 1279 | cfq_prio_slice(cfqd, cfq_cfqq_sync(cfqq), cfqq->ioprio)); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 1280 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1282 | static inline s64 |
| 1283 | cfqg_key(struct cfq_rb_root *st, struct cfq_group *cfqg) |
| 1284 | { |
| 1285 | return cfqg->vdisktime - st->min_vdisktime; |
| 1286 | } |
| 1287 | |
| 1288 | static void |
| 1289 | __cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg) |
| 1290 | { |
| 1291 | struct rb_node **node = &st->rb.rb_node; |
| 1292 | struct rb_node *parent = NULL; |
| 1293 | struct cfq_group *__cfqg; |
| 1294 | s64 key = cfqg_key(st, cfqg); |
| 1295 | int left = 1; |
| 1296 | |
| 1297 | while (*node != NULL) { |
| 1298 | parent = *node; |
| 1299 | __cfqg = rb_entry_cfqg(parent); |
| 1300 | |
| 1301 | if (key < cfqg_key(st, __cfqg)) |
| 1302 | node = &parent->rb_left; |
| 1303 | else { |
| 1304 | node = &parent->rb_right; |
| 1305 | left = 0; |
| 1306 | } |
| 1307 | } |
| 1308 | |
| 1309 | if (left) |
| 1310 | st->left = &cfqg->rb_node; |
| 1311 | |
| 1312 | rb_link_node(&cfqg->rb_node, parent, node); |
| 1313 | rb_insert_color(&cfqg->rb_node, &st->rb); |
| 1314 | } |
| 1315 | |
Toshiaki Makita | 7b5af5c | 2014-08-28 17:14:58 +0900 | [diff] [blame] | 1316 | /* |
| 1317 | * This has to be called only on activation of cfqg |
| 1318 | */ |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1319 | static void |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1320 | cfq_update_group_weight(struct cfq_group *cfqg) |
| 1321 | { |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1322 | if (cfqg->new_weight) { |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1323 | cfqg->weight = cfqg->new_weight; |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1324 | cfqg->new_weight = 0; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1325 | } |
Toshiaki Makita | e15693e | 2014-08-26 20:56:36 +0900 | [diff] [blame] | 1326 | } |
| 1327 | |
| 1328 | static void |
| 1329 | cfq_update_group_leaf_weight(struct cfq_group *cfqg) |
| 1330 | { |
| 1331 | BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node)); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1332 | |
| 1333 | if (cfqg->new_leaf_weight) { |
| 1334 | cfqg->leaf_weight = cfqg->new_leaf_weight; |
| 1335 | cfqg->new_leaf_weight = 0; |
| 1336 | } |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1337 | } |
| 1338 | |
| 1339 | static void |
| 1340 | cfq_group_service_tree_add(struct cfq_rb_root *st, struct cfq_group *cfqg) |
| 1341 | { |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1342 | unsigned int vfr = 1 << CFQ_SERVICE_SHIFT; /* start with 1 */ |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1343 | struct cfq_group *pos = cfqg; |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1344 | struct cfq_group *parent; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1345 | bool propagate; |
| 1346 | |
| 1347 | /* add to the service tree */ |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1348 | BUG_ON(!RB_EMPTY_NODE(&cfqg->rb_node)); |
| 1349 | |
Toshiaki Makita | 7b5af5c | 2014-08-28 17:14:58 +0900 | [diff] [blame] | 1350 | /* |
| 1351 | * Update leaf_weight. We cannot update weight at this point |
| 1352 | * because cfqg might already have been activated and is |
| 1353 | * contributing its current weight to the parent's child_weight. |
| 1354 | */ |
Toshiaki Makita | e15693e | 2014-08-26 20:56:36 +0900 | [diff] [blame] | 1355 | cfq_update_group_leaf_weight(cfqg); |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1356 | __cfq_group_service_tree_add(st, cfqg); |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1357 | |
| 1358 | /* |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1359 | * Activate @cfqg and calculate the portion of vfraction @cfqg is |
| 1360 | * entitled to. vfraction is calculated by walking the tree |
| 1361 | * towards the root calculating the fraction it has at each level. |
| 1362 | * The compounded ratio is how much vfraction @cfqg owns. |
| 1363 | * |
| 1364 | * Start with the proportion tasks in this cfqg has against active |
| 1365 | * children cfqgs - its leaf_weight against children_weight. |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1366 | */ |
| 1367 | propagate = !pos->nr_active++; |
| 1368 | pos->children_weight += pos->leaf_weight; |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1369 | vfr = vfr * pos->leaf_weight / pos->children_weight; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1370 | |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1371 | /* |
| 1372 | * Compound ->weight walking up the tree. Both activation and |
| 1373 | * vfraction calculation are done in the same loop. Propagation |
| 1374 | * stops once an already activated node is met. vfraction |
| 1375 | * calculation should always continue to the root. |
| 1376 | */ |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1377 | while ((parent = cfqg_parent(pos))) { |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1378 | if (propagate) { |
Toshiaki Makita | e15693e | 2014-08-26 20:56:36 +0900 | [diff] [blame] | 1379 | cfq_update_group_weight(pos); |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1380 | propagate = !parent->nr_active++; |
| 1381 | parent->children_weight += pos->weight; |
| 1382 | } |
| 1383 | vfr = vfr * pos->weight / parent->children_weight; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1384 | pos = parent; |
| 1385 | } |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1386 | |
| 1387 | cfqg->vfraction = max_t(unsigned, vfr, 1); |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1388 | } |
| 1389 | |
Hou Tao | 08229c1 | 2017-03-01 09:02:33 +0800 | [diff] [blame] | 1390 | static inline u64 cfq_get_cfqg_vdisktime_delay(struct cfq_data *cfqd) |
| 1391 | { |
| 1392 | if (!iops_mode(cfqd)) |
| 1393 | return CFQ_SLICE_MODE_GROUP_DELAY; |
| 1394 | else |
| 1395 | return CFQ_IOPS_MODE_GROUP_DELAY; |
| 1396 | } |
| 1397 | |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1398 | static void |
| 1399 | 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] | 1400 | { |
| 1401 | struct cfq_rb_root *st = &cfqd->grp_service_tree; |
| 1402 | struct cfq_group *__cfqg; |
| 1403 | struct rb_node *n; |
| 1404 | |
| 1405 | cfqg->nr_cfqq++; |
Gui Jianfeng | 760701b | 2010-11-30 20:52:47 +0100 | [diff] [blame] | 1406 | if (!RB_EMPTY_NODE(&cfqg->rb_node)) |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1407 | return; |
| 1408 | |
| 1409 | /* |
| 1410 | * Currently put the group at the end. Later implement something |
| 1411 | * 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] | 1412 | * if group does not loose all if it was not continuously backlogged. |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1413 | */ |
| 1414 | n = rb_last(&st->rb); |
| 1415 | if (n) { |
| 1416 | __cfqg = rb_entry_cfqg(n); |
Hou Tao | 08229c1 | 2017-03-01 09:02:33 +0800 | [diff] [blame] | 1417 | cfqg->vdisktime = __cfqg->vdisktime + |
| 1418 | cfq_get_cfqg_vdisktime_delay(cfqd); |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1419 | } else |
| 1420 | cfqg->vdisktime = st->min_vdisktime; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1421 | cfq_group_service_tree_add(st, cfqg); |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1422 | } |
| 1423 | |
| 1424 | static void |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1425 | cfq_group_service_tree_del(struct cfq_rb_root *st, struct cfq_group *cfqg) |
| 1426 | { |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1427 | struct cfq_group *pos = cfqg; |
| 1428 | bool propagate; |
| 1429 | |
| 1430 | /* |
| 1431 | * Undo activation from cfq_group_service_tree_add(). Deactivate |
| 1432 | * @cfqg and propagate deactivation upwards. |
| 1433 | */ |
| 1434 | propagate = !--pos->nr_active; |
| 1435 | pos->children_weight -= pos->leaf_weight; |
| 1436 | |
| 1437 | while (propagate) { |
Tejun Heo | d02f7aa | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1438 | struct cfq_group *parent = cfqg_parent(pos); |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1439 | |
| 1440 | /* @pos has 0 nr_active at this point */ |
| 1441 | WARN_ON_ONCE(pos->children_weight); |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1442 | pos->vfraction = 0; |
Tejun Heo | 7918ffb | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1443 | |
| 1444 | if (!parent) |
| 1445 | break; |
| 1446 | |
| 1447 | propagate = !--parent->nr_active; |
| 1448 | parent->children_weight -= pos->weight; |
| 1449 | pos = parent; |
| 1450 | } |
| 1451 | |
| 1452 | /* remove from the service tree */ |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1453 | if (!RB_EMPTY_NODE(&cfqg->rb_node)) |
| 1454 | cfq_rb_erase(&cfqg->rb_node, st); |
| 1455 | } |
| 1456 | |
| 1457 | static void |
| 1458 | 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] | 1459 | { |
| 1460 | struct cfq_rb_root *st = &cfqd->grp_service_tree; |
| 1461 | |
| 1462 | BUG_ON(cfqg->nr_cfqq < 1); |
| 1463 | cfqg->nr_cfqq--; |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 1464 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1465 | /* If there are other cfq queues under this group, don't delete it */ |
| 1466 | if (cfqg->nr_cfqq) |
| 1467 | return; |
| 1468 | |
Vivek Goyal | 2868ef7 | 2009-12-03 12:59:48 -0500 | [diff] [blame] | 1469 | cfq_log_cfqg(cfqd, cfqg, "del_from_rr group"); |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1470 | cfq_group_service_tree_del(st, cfqg); |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 1471 | cfqg->saved_wl_slice = 0; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1472 | cfqg_stats_update_dequeue(cfqg); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1473 | } |
| 1474 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1475 | static inline u64 cfq_cfqq_slice_usage(struct cfq_queue *cfqq, |
| 1476 | u64 *unaccounted_time) |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1477 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1478 | u64 slice_used; |
| 1479 | u64 now = ktime_get_ns(); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1480 | |
| 1481 | /* |
| 1482 | * Queue got expired before even a single request completed or |
| 1483 | * got expired immediately after first request completion. |
| 1484 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1485 | if (!cfqq->slice_start || cfqq->slice_start == now) { |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1486 | /* |
| 1487 | * Also charge the seek time incurred to the group, otherwise |
| 1488 | * if there are mutiple queues in the group, each can dispatch |
| 1489 | * a single request on seeky media and cause lots of seek time |
| 1490 | * and group will never know it. |
| 1491 | */ |
Jan Kara | 0b31c10 | 2016-06-28 09:04:02 +0200 | [diff] [blame] | 1492 | slice_used = max_t(u64, (now - cfqq->dispatch_start), |
| 1493 | jiffies_to_nsecs(1)); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1494 | } else { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1495 | slice_used = now - cfqq->slice_start; |
Justin TerAvest | 167400d | 2011-03-12 16:54:00 +0100 | [diff] [blame] | 1496 | if (slice_used > cfqq->allocated_slice) { |
| 1497 | *unaccounted_time = slice_used - cfqq->allocated_slice; |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 1498 | slice_used = cfqq->allocated_slice; |
Justin TerAvest | 167400d | 2011-03-12 16:54:00 +0100 | [diff] [blame] | 1499 | } |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1500 | if (cfqq->slice_start > cfqq->dispatch_start) |
Justin TerAvest | 167400d | 2011-03-12 16:54:00 +0100 | [diff] [blame] | 1501 | *unaccounted_time += cfqq->slice_start - |
| 1502 | cfqq->dispatch_start; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1503 | } |
| 1504 | |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1505 | return slice_used; |
| 1506 | } |
| 1507 | |
| 1508 | 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] | 1509 | struct cfq_queue *cfqq) |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1510 | { |
| 1511 | struct cfq_rb_root *st = &cfqd->grp_service_tree; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1512 | u64 used_sl, charge, unaccounted_sl = 0; |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 1513 | int nr_sync = cfqg->nr_cfqq - cfqg_busy_async_queues(cfqd, cfqg) |
| 1514 | - cfqg->service_tree_idle.count; |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1515 | unsigned int vfr; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1516 | u64 now = ktime_get_ns(); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1517 | |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 1518 | BUG_ON(nr_sync < 0); |
Justin TerAvest | 167400d | 2011-03-12 16:54:00 +0100 | [diff] [blame] | 1519 | used_sl = charge = cfq_cfqq_slice_usage(cfqq, &unaccounted_sl); |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 1520 | |
Vivek Goyal | 02b3508 | 2010-08-23 12:23:53 +0200 | [diff] [blame] | 1521 | if (iops_mode(cfqd)) |
| 1522 | charge = cfqq->slice_dispatch; |
| 1523 | else if (!cfq_cfqq_sync(cfqq) && !nr_sync) |
| 1524 | charge = cfqq->allocated_slice; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1525 | |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1526 | /* |
| 1527 | * Can't update vdisktime while on service tree and cfqg->vfraction |
| 1528 | * is valid only while on it. Cache vfr, leave the service tree, |
| 1529 | * update vdisktime and go back on. The re-addition to the tree |
| 1530 | * will also update the weights as necessary. |
| 1531 | */ |
| 1532 | vfr = cfqg->vfraction; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1533 | cfq_group_service_tree_del(st, cfqg); |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 1534 | cfqg->vdisktime += cfqg_scale_charge(charge, vfr); |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 1535 | cfq_group_service_tree_add(st, cfqg); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1536 | |
| 1537 | /* This group is being expired. Save the context */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1538 | if (cfqd->workload_expires > now) { |
| 1539 | cfqg->saved_wl_slice = cfqd->workload_expires - now; |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 1540 | cfqg->saved_wl_type = cfqd->serving_wl_type; |
| 1541 | cfqg->saved_wl_class = cfqd->serving_wl_class; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 1542 | } else |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 1543 | cfqg->saved_wl_slice = 0; |
Vivek Goyal | 2868ef7 | 2009-12-03 12:59:48 -0500 | [diff] [blame] | 1544 | |
| 1545 | cfq_log_cfqg(cfqd, cfqg, "served: vt=%llu min_vt=%llu", cfqg->vdisktime, |
| 1546 | st->min_vdisktime); |
Joe Perches | fd16d26 | 2011-06-13 10:42:49 +0200 | [diff] [blame] | 1547 | cfq_log_cfqq(cfqq->cfqd, cfqq, |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1548 | "sl_used=%llu disp=%llu charge=%llu iops=%u sect=%lu", |
Joe Perches | fd16d26 | 2011-06-13 10:42:49 +0200 | [diff] [blame] | 1549 | used_sl, cfqq->slice_dispatch, charge, |
| 1550 | iops_mode(cfqd), cfqq->nr_sectors); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1551 | cfqg_stats_update_timeslice_used(cfqg, used_sl, unaccounted_sl); |
| 1552 | cfqg_stats_set_start_empty_time(cfqg); |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 1553 | } |
| 1554 | |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 1555 | /** |
| 1556 | * cfq_init_cfqg_base - initialize base part of a cfq_group |
| 1557 | * @cfqg: cfq_group to initialize |
| 1558 | * |
| 1559 | * Initialize the base part which is used whether %CONFIG_CFQ_GROUP_IOSCHED |
| 1560 | * is enabled or not. |
| 1561 | */ |
| 1562 | static void cfq_init_cfqg_base(struct cfq_group *cfqg) |
| 1563 | { |
| 1564 | struct cfq_rb_root *st; |
| 1565 | int i, j; |
| 1566 | |
| 1567 | for_each_cfqg_st(cfqg, i, j, st) |
| 1568 | *st = CFQ_RB_ROOT; |
| 1569 | RB_CLEAR_NODE(&cfqg->rb_node); |
| 1570 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 1571 | cfqg->ttime.last_end_request = ktime_get_ns(); |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 1572 | } |
| 1573 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1574 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1575 | static int __cfq_set_weight(struct cgroup_subsys_state *css, u64 val, |
| 1576 | bool on_dfl, bool reset_dev, bool is_leaf_weight); |
| 1577 | |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1578 | static void cfqg_stats_exit(struct cfqg_stats *stats) |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 1579 | { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1580 | blkg_rwstat_exit(&stats->merged); |
| 1581 | blkg_rwstat_exit(&stats->service_time); |
| 1582 | blkg_rwstat_exit(&stats->wait_time); |
| 1583 | blkg_rwstat_exit(&stats->queued); |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1584 | blkg_stat_exit(&stats->time); |
| 1585 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
| 1586 | blkg_stat_exit(&stats->unaccounted_time); |
| 1587 | blkg_stat_exit(&stats->avg_queue_size_sum); |
| 1588 | blkg_stat_exit(&stats->avg_queue_size_samples); |
| 1589 | blkg_stat_exit(&stats->dequeue); |
| 1590 | blkg_stat_exit(&stats->group_wait_time); |
| 1591 | blkg_stat_exit(&stats->idle_time); |
| 1592 | blkg_stat_exit(&stats->empty_time); |
| 1593 | #endif |
| 1594 | } |
| 1595 | |
| 1596 | static int cfqg_stats_init(struct cfqg_stats *stats, gfp_t gfp) |
| 1597 | { |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 1598 | if (blkg_rwstat_init(&stats->merged, gfp) || |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1599 | blkg_rwstat_init(&stats->service_time, gfp) || |
| 1600 | blkg_rwstat_init(&stats->wait_time, gfp) || |
| 1601 | blkg_rwstat_init(&stats->queued, gfp) || |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1602 | blkg_stat_init(&stats->time, gfp)) |
| 1603 | goto err; |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 1604 | |
| 1605 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1606 | if (blkg_stat_init(&stats->unaccounted_time, gfp) || |
| 1607 | blkg_stat_init(&stats->avg_queue_size_sum, gfp) || |
| 1608 | blkg_stat_init(&stats->avg_queue_size_samples, gfp) || |
| 1609 | blkg_stat_init(&stats->dequeue, gfp) || |
| 1610 | blkg_stat_init(&stats->group_wait_time, gfp) || |
| 1611 | blkg_stat_init(&stats->idle_time, gfp) || |
| 1612 | blkg_stat_init(&stats->empty_time, gfp)) |
| 1613 | goto err; |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 1614 | #endif |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1615 | return 0; |
| 1616 | err: |
| 1617 | cfqg_stats_exit(stats); |
| 1618 | return -ENOMEM; |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 1619 | } |
| 1620 | |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 1621 | static struct blkcg_policy_data *cfq_cpd_alloc(gfp_t gfp) |
| 1622 | { |
| 1623 | struct cfq_group_data *cgd; |
| 1624 | |
Tejun Heo | f57d871 | 2016-11-10 11:16:37 -0500 | [diff] [blame] | 1625 | cgd = kzalloc(sizeof(*cgd), gfp); |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 1626 | if (!cgd) |
| 1627 | return NULL; |
| 1628 | return &cgd->cpd; |
| 1629 | } |
| 1630 | |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 1631 | static void cfq_cpd_init(struct blkcg_policy_data *cpd) |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1632 | { |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 1633 | struct cfq_group_data *cgd = cpd_to_cfqgd(cpd); |
Tejun Heo | 9e10a13 | 2015-09-18 11:56:28 -0400 | [diff] [blame] | 1634 | unsigned int weight = cgroup_subsys_on_dfl(io_cgrp_subsys) ? |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1635 | CGROUP_WEIGHT_DFL : CFQ_WEIGHT_LEGACY_DFL; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1636 | |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1637 | if (cpd_to_blkcg(cpd) == &blkcg_root) |
| 1638 | weight *= 2; |
| 1639 | |
| 1640 | cgd->weight = weight; |
| 1641 | cgd->leaf_weight = weight; |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 1642 | cgd->group_idle = cfq_group_idle; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1643 | } |
| 1644 | |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 1645 | static void cfq_cpd_free(struct blkcg_policy_data *cpd) |
| 1646 | { |
| 1647 | kfree(cpd_to_cfqgd(cpd)); |
| 1648 | } |
| 1649 | |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1650 | static void cfq_cpd_bind(struct blkcg_policy_data *cpd) |
| 1651 | { |
| 1652 | struct blkcg *blkcg = cpd_to_blkcg(cpd); |
Tejun Heo | 9e10a13 | 2015-09-18 11:56:28 -0400 | [diff] [blame] | 1653 | bool on_dfl = cgroup_subsys_on_dfl(io_cgrp_subsys); |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1654 | unsigned int weight = on_dfl ? CGROUP_WEIGHT_DFL : CFQ_WEIGHT_LEGACY_DFL; |
| 1655 | |
| 1656 | if (blkcg == &blkcg_root) |
| 1657 | weight *= 2; |
| 1658 | |
| 1659 | WARN_ON_ONCE(__cfq_set_weight(&blkcg->css, weight, on_dfl, true, false)); |
| 1660 | WARN_ON_ONCE(__cfq_set_weight(&blkcg->css, weight, on_dfl, true, true)); |
| 1661 | } |
| 1662 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1663 | static struct blkg_policy_data *cfq_pd_alloc(gfp_t gfp, int node) |
| 1664 | { |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 1665 | struct cfq_group *cfqg; |
| 1666 | |
| 1667 | cfqg = kzalloc_node(sizeof(*cfqg), gfp, node); |
| 1668 | if (!cfqg) |
| 1669 | return NULL; |
| 1670 | |
| 1671 | cfq_init_cfqg_base(cfqg); |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1672 | if (cfqg_stats_init(&cfqg->stats, gfp)) { |
| 1673 | kfree(cfqg); |
| 1674 | return NULL; |
| 1675 | } |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 1676 | |
| 1677 | return &cfqg->pd; |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1678 | } |
| 1679 | |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1680 | static void cfq_pd_init(struct blkg_policy_data *pd) |
Vivek Goyal | f469a7b | 2011-05-19 15:38:23 -0400 | [diff] [blame] | 1681 | { |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1682 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
| 1683 | struct cfq_group_data *cgd = blkcg_to_cfqgd(pd->blkg->blkcg); |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1684 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1685 | cfqg->weight = cgd->weight; |
| 1686 | cfqg->leaf_weight = cgd->leaf_weight; |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 1687 | cfqg->group_idle = cgd->group_idle; |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1688 | } |
| 1689 | |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1690 | static void cfq_pd_offline(struct blkg_policy_data *pd) |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1691 | { |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1692 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 1693 | int i; |
| 1694 | |
| 1695 | for (i = 0; i < IOPRIO_BE_NR; i++) { |
| 1696 | if (cfqg->async_cfqq[0][i]) |
| 1697 | cfq_put_queue(cfqg->async_cfqq[0][i]); |
| 1698 | if (cfqg->async_cfqq[1][i]) |
| 1699 | cfq_put_queue(cfqg->async_cfqq[1][i]); |
| 1700 | } |
| 1701 | |
| 1702 | if (cfqg->async_idle_cfqq) |
| 1703 | cfq_put_queue(cfqg->async_idle_cfqq); |
| 1704 | |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1705 | /* |
| 1706 | * @blkg is going offline and will be ignored by |
| 1707 | * blkg_[rw]stat_recursive_sum(). Transfer stats to the parent so |
| 1708 | * that they don't get lost. If IOs complete after this point, the |
| 1709 | * stats for them will be lost. Oh well... |
| 1710 | */ |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 1711 | cfqg_stats_xfer_dead(cfqg); |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1712 | } |
| 1713 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1714 | static void cfq_pd_free(struct blkg_policy_data *pd) |
| 1715 | { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 1716 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
| 1717 | |
| 1718 | cfqg_stats_exit(&cfqg->stats); |
| 1719 | return kfree(cfqg); |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1720 | } |
| 1721 | |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1722 | static void cfq_pd_reset_stats(struct blkg_policy_data *pd) |
Tejun Heo | 689665a | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1723 | { |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 1724 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
Tejun Heo | 689665a | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1725 | |
| 1726 | cfqg_stats_reset(&cfqg->stats); |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1727 | } |
| 1728 | |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 1729 | static struct cfq_group *cfq_lookup_cfqg(struct cfq_data *cfqd, |
| 1730 | struct blkcg *blkcg) |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1731 | { |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 1732 | struct blkcg_gq *blkg; |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1733 | |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 1734 | blkg = blkg_lookup(blkcg, cfqd->queue); |
| 1735 | if (likely(blkg)) |
| 1736 | return blkg_to_cfqg(blkg); |
| 1737 | return NULL; |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1738 | } |
| 1739 | |
| 1740 | static void cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) |
| 1741 | { |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 1742 | cfqq->cfqg = cfqg; |
Vivek Goyal | b1c3576 | 2009-12-03 12:59:47 -0500 | [diff] [blame] | 1743 | /* cfqq reference on cfqg */ |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 1744 | cfqg_get(cfqg); |
Vivek Goyal | b1c3576 | 2009-12-03 12:59:47 -0500 | [diff] [blame] | 1745 | } |
| 1746 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1747 | static u64 cfqg_prfill_weight_device(struct seq_file *sf, |
| 1748 | struct blkg_policy_data *pd, int off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1749 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1750 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1751 | |
| 1752 | if (!cfqg->dev_weight) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1753 | return 0; |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1754 | return __blkg_prfill_u64(sf, pd, cfqg->dev_weight); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1755 | } |
| 1756 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1757 | static int cfqg_print_weight_device(struct seq_file *sf, void *v) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1758 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1759 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 1760 | cfqg_prfill_weight_device, &blkcg_policy_cfq, |
| 1761 | 0, false); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1762 | return 0; |
| 1763 | } |
| 1764 | |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1765 | static u64 cfqg_prfill_leaf_weight_device(struct seq_file *sf, |
| 1766 | struct blkg_policy_data *pd, int off) |
| 1767 | { |
| 1768 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
| 1769 | |
| 1770 | if (!cfqg->dev_leaf_weight) |
| 1771 | return 0; |
| 1772 | return __blkg_prfill_u64(sf, pd, cfqg->dev_leaf_weight); |
| 1773 | } |
| 1774 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1775 | 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] | 1776 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1777 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 1778 | cfqg_prfill_leaf_weight_device, &blkcg_policy_cfq, |
| 1779 | 0, false); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1780 | return 0; |
| 1781 | } |
| 1782 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1783 | static int cfq_print_weight(struct seq_file *sf, void *v) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1784 | { |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1785 | struct blkcg *blkcg = css_to_blkcg(seq_css(sf)); |
Jens Axboe | 9470e4a | 2015-06-19 10:19:36 -0600 | [diff] [blame] | 1786 | struct cfq_group_data *cgd = blkcg_to_cfqgd(blkcg); |
| 1787 | unsigned int val = 0; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1788 | |
Jens Axboe | 9470e4a | 2015-06-19 10:19:36 -0600 | [diff] [blame] | 1789 | if (cgd) |
| 1790 | val = cgd->weight; |
| 1791 | |
| 1792 | seq_printf(sf, "%u\n", val); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1793 | return 0; |
| 1794 | } |
| 1795 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1796 | static int cfq_print_leaf_weight(struct seq_file *sf, void *v) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1797 | { |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1798 | struct blkcg *blkcg = css_to_blkcg(seq_css(sf)); |
Jens Axboe | 9470e4a | 2015-06-19 10:19:36 -0600 | [diff] [blame] | 1799 | struct cfq_group_data *cgd = blkcg_to_cfqgd(blkcg); |
| 1800 | unsigned int val = 0; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1801 | |
Jens Axboe | 9470e4a | 2015-06-19 10:19:36 -0600 | [diff] [blame] | 1802 | if (cgd) |
| 1803 | val = cgd->leaf_weight; |
| 1804 | |
| 1805 | seq_printf(sf, "%u\n", val); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1806 | return 0; |
| 1807 | } |
| 1808 | |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 1809 | static int cfq_print_group_idle(struct seq_file *sf, void *v) |
| 1810 | { |
| 1811 | struct blkcg *blkcg = css_to_blkcg(seq_css(sf)); |
| 1812 | struct cfq_group_data *cgd = blkcg_to_cfqgd(blkcg); |
| 1813 | u64 val = 0; |
| 1814 | |
| 1815 | if (cgd) |
| 1816 | val = cgd->group_idle; |
| 1817 | |
| 1818 | seq_printf(sf, "%llu\n", div_u64(val, NSEC_PER_USEC)); |
| 1819 | return 0; |
| 1820 | } |
| 1821 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1822 | static ssize_t __cfqg_set_weight_device(struct kernfs_open_file *of, |
| 1823 | char *buf, size_t nbytes, loff_t off, |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1824 | bool on_dfl, bool is_leaf_weight) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1825 | { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1826 | unsigned int min = on_dfl ? CGROUP_WEIGHT_MIN : CFQ_WEIGHT_LEGACY_MIN; |
| 1827 | unsigned int max = on_dfl ? CGROUP_WEIGHT_MAX : CFQ_WEIGHT_LEGACY_MAX; |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1828 | struct blkcg *blkcg = css_to_blkcg(of_css(of)); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1829 | struct blkg_conf_ctx ctx; |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1830 | struct cfq_group *cfqg; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1831 | struct cfq_group_data *cfqgd; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1832 | int ret; |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1833 | u64 v; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1834 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1835 | ret = blkg_conf_prep(blkcg, &blkcg_policy_cfq, buf, &ctx); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1836 | if (ret) |
| 1837 | return ret; |
| 1838 | |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1839 | if (sscanf(ctx.body, "%llu", &v) == 1) { |
| 1840 | /* require "default" on dfl */ |
| 1841 | ret = -ERANGE; |
| 1842 | if (!v && on_dfl) |
| 1843 | goto out_finish; |
| 1844 | } else if (!strcmp(strim(ctx.body), "default")) { |
| 1845 | v = 0; |
| 1846 | } else { |
| 1847 | ret = -EINVAL; |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1848 | goto out_finish; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1849 | } |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1850 | |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1851 | cfqg = blkg_to_cfqg(ctx.blkg); |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1852 | cfqgd = blkcg_to_cfqgd(blkcg); |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1853 | |
Tejun Heo | 20386ce | 2015-08-18 14:55:28 -0700 | [diff] [blame] | 1854 | ret = -ERANGE; |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1855 | if (!v || (v >= min && v <= max)) { |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1856 | if (!is_leaf_weight) { |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1857 | cfqg->dev_weight = v; |
| 1858 | cfqg->new_weight = v ?: cfqgd->weight; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1859 | } else { |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1860 | cfqg->dev_leaf_weight = v; |
| 1861 | cfqg->new_leaf_weight = v ?: cfqgd->leaf_weight; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1862 | } |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1863 | ret = 0; |
| 1864 | } |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1865 | out_finish: |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1866 | blkg_conf_finish(&ctx); |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1867 | return ret ?: nbytes; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1868 | } |
| 1869 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1870 | static ssize_t cfqg_set_weight_device(struct kernfs_open_file *of, |
| 1871 | char *buf, size_t nbytes, loff_t off) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1872 | { |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1873 | return __cfqg_set_weight_device(of, buf, nbytes, off, false, false); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1874 | } |
| 1875 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1876 | static ssize_t cfqg_set_leaf_weight_device(struct kernfs_open_file *of, |
| 1877 | char *buf, size_t nbytes, loff_t off) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1878 | { |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1879 | return __cfqg_set_weight_device(of, buf, nbytes, off, false, true); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1880 | } |
| 1881 | |
Tejun Heo | dd165eb | 2015-08-18 14:55:33 -0700 | [diff] [blame] | 1882 | static int __cfq_set_weight(struct cgroup_subsys_state *css, u64 val, |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1883 | bool on_dfl, bool reset_dev, bool is_leaf_weight) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1884 | { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1885 | unsigned int min = on_dfl ? CGROUP_WEIGHT_MIN : CFQ_WEIGHT_LEGACY_MIN; |
| 1886 | unsigned int max = on_dfl ? CGROUP_WEIGHT_MAX : CFQ_WEIGHT_LEGACY_MAX; |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 1887 | struct blkcg *blkcg = css_to_blkcg(css); |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1888 | struct blkcg_gq *blkg; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1889 | struct cfq_group_data *cfqgd; |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1890 | int ret = 0; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1891 | |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1892 | if (val < min || val > max) |
| 1893 | return -ERANGE; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1894 | |
| 1895 | spin_lock_irq(&blkcg->lock); |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1896 | cfqgd = blkcg_to_cfqgd(blkcg); |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1897 | if (!cfqgd) { |
| 1898 | ret = -EINVAL; |
| 1899 | goto out; |
| 1900 | } |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1901 | |
| 1902 | if (!is_leaf_weight) |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1903 | cfqgd->weight = val; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1904 | else |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1905 | cfqgd->leaf_weight = val; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1906 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1907 | hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) { |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1908 | struct cfq_group *cfqg = blkg_to_cfqg(blkg); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1909 | |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1910 | if (!cfqg) |
| 1911 | continue; |
| 1912 | |
| 1913 | if (!is_leaf_weight) { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1914 | if (reset_dev) |
| 1915 | cfqg->dev_weight = 0; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1916 | if (!cfqg->dev_weight) |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1917 | cfqg->new_weight = cfqgd->weight; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1918 | } else { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1919 | if (reset_dev) |
| 1920 | cfqg->dev_leaf_weight = 0; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1921 | if (!cfqg->dev_leaf_weight) |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 1922 | cfqg->new_leaf_weight = cfqgd->leaf_weight; |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1923 | } |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1924 | } |
| 1925 | |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1926 | out: |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1927 | spin_unlock_irq(&blkcg->lock); |
Jens Axboe | ae994ea | 2015-06-20 10:26:50 -0600 | [diff] [blame] | 1928 | return ret; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1929 | } |
| 1930 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 1931 | static int cfq_set_weight(struct cgroup_subsys_state *css, struct cftype *cft, |
| 1932 | u64 val) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1933 | { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1934 | return __cfq_set_weight(css, val, false, false, false); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1935 | } |
| 1936 | |
Tejun Heo | 182446d | 2013-08-08 20:11:24 -0400 | [diff] [blame] | 1937 | static int cfq_set_leaf_weight(struct cgroup_subsys_state *css, |
| 1938 | struct cftype *cft, u64 val) |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1939 | { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 1940 | return __cfq_set_weight(css, val, false, false, true); |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 1941 | } |
| 1942 | |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 1943 | static int cfq_set_group_idle(struct cgroup_subsys_state *css, |
| 1944 | struct cftype *cft, u64 val) |
| 1945 | { |
| 1946 | struct blkcg *blkcg = css_to_blkcg(css); |
| 1947 | struct cfq_group_data *cfqgd; |
| 1948 | struct blkcg_gq *blkg; |
| 1949 | int ret = 0; |
| 1950 | |
| 1951 | spin_lock_irq(&blkcg->lock); |
| 1952 | cfqgd = blkcg_to_cfqgd(blkcg); |
| 1953 | if (!cfqgd) { |
| 1954 | ret = -EINVAL; |
| 1955 | goto out; |
| 1956 | } |
| 1957 | |
| 1958 | cfqgd->group_idle = val * NSEC_PER_USEC; |
| 1959 | |
| 1960 | hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) { |
| 1961 | struct cfq_group *cfqg = blkg_to_cfqg(blkg); |
| 1962 | |
| 1963 | if (!cfqg) |
| 1964 | continue; |
| 1965 | |
| 1966 | cfqg->group_idle = cfqgd->group_idle; |
| 1967 | } |
| 1968 | |
| 1969 | out: |
| 1970 | spin_unlock_irq(&blkcg->lock); |
| 1971 | return ret; |
| 1972 | } |
| 1973 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1974 | static int cfqg_print_stat(struct seq_file *sf, void *v) |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1975 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1976 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), blkg_prfill_stat, |
| 1977 | &blkcg_policy_cfq, seq_cft(sf)->private, false); |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1978 | return 0; |
| 1979 | } |
| 1980 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1981 | static int cfqg_print_rwstat(struct seq_file *sf, void *v) |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1982 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1983 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), blkg_prfill_rwstat, |
| 1984 | &blkcg_policy_cfq, seq_cft(sf)->private, true); |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1985 | return 0; |
| 1986 | } |
| 1987 | |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1988 | static u64 cfqg_prfill_stat_recursive(struct seq_file *sf, |
| 1989 | struct blkg_policy_data *pd, int off) |
| 1990 | { |
Tejun Heo | f12c74c | 2015-08-18 14:55:23 -0700 | [diff] [blame] | 1991 | u64 sum = blkg_stat_recursive_sum(pd_to_blkg(pd), |
| 1992 | &blkcg_policy_cfq, off); |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 1993 | return __blkg_prfill_u64(sf, pd, sum); |
| 1994 | } |
| 1995 | |
| 1996 | static u64 cfqg_prfill_rwstat_recursive(struct seq_file *sf, |
| 1997 | struct blkg_policy_data *pd, int off) |
| 1998 | { |
Tejun Heo | f12c74c | 2015-08-18 14:55:23 -0700 | [diff] [blame] | 1999 | struct blkg_rwstat sum = blkg_rwstat_recursive_sum(pd_to_blkg(pd), |
| 2000 | &blkcg_policy_cfq, off); |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2001 | return __blkg_prfill_rwstat(sf, pd, &sum); |
| 2002 | } |
| 2003 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2004 | static int cfqg_print_stat_recursive(struct seq_file *sf, void *v) |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2005 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2006 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 2007 | cfqg_prfill_stat_recursive, &blkcg_policy_cfq, |
| 2008 | seq_cft(sf)->private, false); |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2009 | return 0; |
| 2010 | } |
| 2011 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2012 | static int cfqg_print_rwstat_recursive(struct seq_file *sf, void *v) |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2013 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2014 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 2015 | cfqg_prfill_rwstat_recursive, &blkcg_policy_cfq, |
| 2016 | seq_cft(sf)->private, true); |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2017 | return 0; |
| 2018 | } |
| 2019 | |
Tejun Heo | 702747c | 2015-08-18 14:55:25 -0700 | [diff] [blame] | 2020 | static u64 cfqg_prfill_sectors(struct seq_file *sf, struct blkg_policy_data *pd, |
| 2021 | int off) |
| 2022 | { |
| 2023 | u64 sum = blkg_rwstat_total(&pd->blkg->stat_bytes); |
| 2024 | |
| 2025 | return __blkg_prfill_u64(sf, pd, sum >> 9); |
| 2026 | } |
| 2027 | |
| 2028 | static int cfqg_print_stat_sectors(struct seq_file *sf, void *v) |
| 2029 | { |
| 2030 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 2031 | cfqg_prfill_sectors, &blkcg_policy_cfq, 0, false); |
| 2032 | return 0; |
| 2033 | } |
| 2034 | |
| 2035 | static u64 cfqg_prfill_sectors_recursive(struct seq_file *sf, |
| 2036 | struct blkg_policy_data *pd, int off) |
| 2037 | { |
| 2038 | struct blkg_rwstat tmp = blkg_rwstat_recursive_sum(pd->blkg, NULL, |
| 2039 | offsetof(struct blkcg_gq, stat_bytes)); |
| 2040 | u64 sum = atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_READ]) + |
| 2041 | atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_WRITE]); |
| 2042 | |
| 2043 | return __blkg_prfill_u64(sf, pd, sum >> 9); |
| 2044 | } |
| 2045 | |
| 2046 | static int cfqg_print_stat_sectors_recursive(struct seq_file *sf, void *v) |
| 2047 | { |
| 2048 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 2049 | cfqg_prfill_sectors_recursive, &blkcg_policy_cfq, 0, |
| 2050 | false); |
| 2051 | return 0; |
| 2052 | } |
| 2053 | |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2054 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 2055 | static u64 cfqg_prfill_avg_queue_size(struct seq_file *sf, |
| 2056 | struct blkg_policy_data *pd, int off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2057 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 2058 | struct cfq_group *cfqg = pd_to_cfqg(pd); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2059 | u64 samples = blkg_stat_read(&cfqg->stats.avg_queue_size_samples); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2060 | u64 v = 0; |
| 2061 | |
| 2062 | if (samples) { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2063 | v = blkg_stat_read(&cfqg->stats.avg_queue_size_sum); |
Anatol Pomozov | f3cff25 | 2013-09-22 12:43:47 -0600 | [diff] [blame] | 2064 | v = div64_u64(v, samples); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2065 | } |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 2066 | __blkg_prfill_u64(sf, pd, v); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2067 | return 0; |
| 2068 | } |
| 2069 | |
| 2070 | /* print avg_queue_size */ |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2071 | 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] | 2072 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2073 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), |
| 2074 | cfqg_prfill_avg_queue_size, &blkcg_policy_cfq, |
| 2075 | 0, false); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2076 | return 0; |
| 2077 | } |
| 2078 | #endif /* CONFIG_DEBUG_BLK_CGROUP */ |
| 2079 | |
Tejun Heo | 880f50e | 2015-08-18 14:55:30 -0700 | [diff] [blame] | 2080 | static struct cftype cfq_blkcg_legacy_files[] = { |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2081 | /* on root, weight is mapped to leaf_weight */ |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2082 | { |
| 2083 | .name = "weight_device", |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2084 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2085 | .seq_show = cfqg_print_leaf_weight_device, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2086 | .write = cfqg_set_leaf_weight_device, |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2087 | }, |
| 2088 | { |
| 2089 | .name = "weight", |
| 2090 | .flags = CFTYPE_ONLY_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2091 | .seq_show = cfq_print_leaf_weight, |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2092 | .write_u64 = cfq_set_leaf_weight, |
| 2093 | }, |
| 2094 | |
| 2095 | /* no such mapping necessary for !roots */ |
| 2096 | { |
| 2097 | .name = "weight_device", |
| 2098 | .flags = CFTYPE_NOT_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2099 | .seq_show = cfqg_print_weight_device, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2100 | .write = cfqg_set_weight_device, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2101 | }, |
| 2102 | { |
| 2103 | .name = "weight", |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 2104 | .flags = CFTYPE_NOT_ON_ROOT, |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2105 | .seq_show = cfq_print_weight, |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2106 | .write_u64 = cfq_set_weight, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2107 | }, |
Tejun Heo | 1d3650f | 2013-01-09 08:05:11 -0800 | [diff] [blame] | 2108 | |
| 2109 | { |
| 2110 | .name = "leaf_weight_device", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2111 | .seq_show = cfqg_print_leaf_weight_device, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 2112 | .write = cfqg_set_leaf_weight_device, |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 2113 | }, |
| 2114 | { |
| 2115 | .name = "leaf_weight", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2116 | .seq_show = cfq_print_leaf_weight, |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 2117 | .write_u64 = cfq_set_leaf_weight, |
| 2118 | }, |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 2119 | { |
| 2120 | .name = "group_idle", |
| 2121 | .seq_show = cfq_print_group_idle, |
| 2122 | .write_u64 = cfq_set_group_idle, |
| 2123 | }, |
Tejun Heo | e71357e | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 2124 | |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2125 | /* statistics, covers only the tasks in the cfqg */ |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2126 | { |
| 2127 | .name = "time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2128 | .private = offsetof(struct cfq_group, stats.time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2129 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2130 | }, |
| 2131 | { |
| 2132 | .name = "sectors", |
Tejun Heo | 702747c | 2015-08-18 14:55:25 -0700 | [diff] [blame] | 2133 | .seq_show = cfqg_print_stat_sectors, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2134 | }, |
| 2135 | { |
| 2136 | .name = "io_service_bytes", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 2137 | .private = (unsigned long)&blkcg_policy_cfq, |
| 2138 | .seq_show = blkg_print_stat_bytes, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2139 | }, |
| 2140 | { |
| 2141 | .name = "io_serviced", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 2142 | .private = (unsigned long)&blkcg_policy_cfq, |
| 2143 | .seq_show = blkg_print_stat_ios, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2144 | }, |
| 2145 | { |
| 2146 | .name = "io_service_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2147 | .private = offsetof(struct cfq_group, stats.service_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2148 | .seq_show = cfqg_print_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2149 | }, |
| 2150 | { |
| 2151 | .name = "io_wait_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2152 | .private = offsetof(struct cfq_group, stats.wait_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2153 | .seq_show = cfqg_print_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2154 | }, |
| 2155 | { |
| 2156 | .name = "io_merged", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2157 | .private = offsetof(struct cfq_group, stats.merged), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2158 | .seq_show = cfqg_print_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2159 | }, |
| 2160 | { |
| 2161 | .name = "io_queued", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2162 | .private = offsetof(struct cfq_group, stats.queued), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2163 | .seq_show = cfqg_print_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2164 | }, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2165 | |
| 2166 | /* the same statictics which cover the cfqg and its descendants */ |
| 2167 | { |
| 2168 | .name = "time_recursive", |
| 2169 | .private = offsetof(struct cfq_group, stats.time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2170 | .seq_show = cfqg_print_stat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2171 | }, |
| 2172 | { |
| 2173 | .name = "sectors_recursive", |
Tejun Heo | 702747c | 2015-08-18 14:55:25 -0700 | [diff] [blame] | 2174 | .seq_show = cfqg_print_stat_sectors_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2175 | }, |
| 2176 | { |
| 2177 | .name = "io_service_bytes_recursive", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 2178 | .private = (unsigned long)&blkcg_policy_cfq, |
| 2179 | .seq_show = blkg_print_stat_bytes_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2180 | }, |
| 2181 | { |
| 2182 | .name = "io_serviced_recursive", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 2183 | .private = (unsigned long)&blkcg_policy_cfq, |
| 2184 | .seq_show = blkg_print_stat_ios_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2185 | }, |
| 2186 | { |
| 2187 | .name = "io_service_time_recursive", |
| 2188 | .private = offsetof(struct cfq_group, stats.service_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2189 | .seq_show = cfqg_print_rwstat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2190 | }, |
| 2191 | { |
| 2192 | .name = "io_wait_time_recursive", |
| 2193 | .private = offsetof(struct cfq_group, stats.wait_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2194 | .seq_show = cfqg_print_rwstat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2195 | }, |
| 2196 | { |
| 2197 | .name = "io_merged_recursive", |
| 2198 | .private = offsetof(struct cfq_group, stats.merged), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2199 | .seq_show = cfqg_print_rwstat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2200 | }, |
| 2201 | { |
| 2202 | .name = "io_queued_recursive", |
| 2203 | .private = offsetof(struct cfq_group, stats.queued), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2204 | .seq_show = cfqg_print_rwstat_recursive, |
Tejun Heo | 4311401 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 2205 | }, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2206 | #ifdef CONFIG_DEBUG_BLK_CGROUP |
| 2207 | { |
| 2208 | .name = "avg_queue_size", |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2209 | .seq_show = cfqg_print_avg_queue_size, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2210 | }, |
| 2211 | { |
| 2212 | .name = "group_wait_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2213 | .private = offsetof(struct cfq_group, stats.group_wait_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2214 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2215 | }, |
| 2216 | { |
| 2217 | .name = "idle_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2218 | .private = offsetof(struct cfq_group, stats.idle_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2219 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2220 | }, |
| 2221 | { |
| 2222 | .name = "empty_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2223 | .private = offsetof(struct cfq_group, stats.empty_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2224 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2225 | }, |
| 2226 | { |
| 2227 | .name = "dequeue", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2228 | .private = offsetof(struct cfq_group, stats.dequeue), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2229 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2230 | }, |
| 2231 | { |
| 2232 | .name = "unaccounted_time", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 2233 | .private = offsetof(struct cfq_group, stats.unaccounted_time), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 2234 | .seq_show = cfqg_print_stat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 2235 | }, |
| 2236 | #endif /* CONFIG_DEBUG_BLK_CGROUP */ |
| 2237 | { } /* terminate */ |
| 2238 | }; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 2239 | |
| 2240 | static int cfq_print_weight_on_dfl(struct seq_file *sf, void *v) |
| 2241 | { |
| 2242 | struct blkcg *blkcg = css_to_blkcg(seq_css(sf)); |
| 2243 | struct cfq_group_data *cgd = blkcg_to_cfqgd(blkcg); |
| 2244 | |
| 2245 | seq_printf(sf, "default %u\n", cgd->weight); |
| 2246 | blkcg_print_blkgs(sf, blkcg, cfqg_prfill_weight_device, |
| 2247 | &blkcg_policy_cfq, 0, false); |
| 2248 | return 0; |
| 2249 | } |
| 2250 | |
| 2251 | static ssize_t cfq_set_weight_on_dfl(struct kernfs_open_file *of, |
| 2252 | char *buf, size_t nbytes, loff_t off) |
| 2253 | { |
| 2254 | char *endp; |
| 2255 | int ret; |
| 2256 | u64 v; |
| 2257 | |
| 2258 | buf = strim(buf); |
| 2259 | |
| 2260 | /* "WEIGHT" or "default WEIGHT" sets the default weight */ |
| 2261 | v = simple_strtoull(buf, &endp, 0); |
| 2262 | if (*endp == '\0' || sscanf(buf, "default %llu", &v) == 1) { |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 2263 | ret = __cfq_set_weight(of_css(of), v, true, false, false); |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 2264 | return ret ?: nbytes; |
| 2265 | } |
| 2266 | |
| 2267 | /* "MAJ:MIN WEIGHT" */ |
| 2268 | return __cfqg_set_weight_device(of, buf, nbytes, off, true, false); |
| 2269 | } |
| 2270 | |
| 2271 | static struct cftype cfq_blkcg_files[] = { |
| 2272 | { |
| 2273 | .name = "weight", |
| 2274 | .flags = CFTYPE_NOT_ON_ROOT, |
| 2275 | .seq_show = cfq_print_weight_on_dfl, |
| 2276 | .write = cfq_set_weight_on_dfl, |
| 2277 | }, |
| 2278 | { } /* terminate */ |
| 2279 | }; |
| 2280 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2281 | #else /* GROUP_IOSCHED */ |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 2282 | static struct cfq_group *cfq_lookup_cfqg(struct cfq_data *cfqd, |
| 2283 | struct blkcg *blkcg) |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2284 | { |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 2285 | return cfqd->root_group; |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2286 | } |
Vivek Goyal | 7f1dc8a | 2010-04-21 17:44:16 +0200 | [diff] [blame] | 2287 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2288 | static inline void |
| 2289 | cfq_link_cfqq_cfqg(struct cfq_queue *cfqq, struct cfq_group *cfqg) { |
| 2290 | cfqq->cfqg = cfqg; |
| 2291 | } |
| 2292 | |
| 2293 | #endif /* GROUP_IOSCHED */ |
| 2294 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2295 | /* |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2296 | * The cfqd->service_trees holds all pending cfq_queue's that have |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2297 | * requests waiting to be processed. It is sorted in the order that |
| 2298 | * we will service the queues. |
| 2299 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2300 | 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] | 2301 | bool add_front) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2302 | { |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2303 | struct rb_node **p, *parent; |
| 2304 | struct cfq_queue *__cfqq; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2305 | u64 rb_key; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2306 | struct cfq_rb_root *st; |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2307 | int left; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 2308 | int new_cfqq = 1; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2309 | u64 now = ktime_get_ns(); |
Vivek Goyal | ae30c28 | 2009-12-03 12:59:55 -0500 | [diff] [blame] | 2310 | |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2311 | st = st_for(cfqq->cfqg, cfqq_class(cfqq), cfqq_type(cfqq)); |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2312 | if (cfq_class_idle(cfqq)) { |
| 2313 | rb_key = CFQ_IDLE_DELAY; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2314 | parent = rb_last(&st->rb); |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2315 | if (parent && parent != &cfqq->rb_node) { |
| 2316 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); |
| 2317 | rb_key += __cfqq->rb_key; |
| 2318 | } else |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2319 | rb_key += now; |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2320 | } else if (!add_front) { |
Jens Axboe | b9c8946 | 2009-10-06 20:53:44 +0200 | [diff] [blame] | 2321 | /* |
| 2322 | * Get our rb key offset. Subtract any residual slice |
| 2323 | * value carried from last service. A negative resid |
| 2324 | * count indicates slice overrun, and this should position |
| 2325 | * the next service time further away in the tree. |
| 2326 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2327 | rb_key = cfq_slice_offset(cfqd, cfqq) + now; |
Jens Axboe | b9c8946 | 2009-10-06 20:53:44 +0200 | [diff] [blame] | 2328 | rb_key -= cfqq->slice_resid; |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2329 | cfqq->slice_resid = 0; |
Corrado Zoccolo | 48e025e | 2009-10-05 08:49:23 +0200 | [diff] [blame] | 2330 | } else { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2331 | rb_key = -NSEC_PER_SEC; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2332 | __cfqq = cfq_rb_first(st); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2333 | rb_key += __cfqq ? __cfqq->rb_key : now; |
Corrado Zoccolo | 48e025e | 2009-10-05 08:49:23 +0200 | [diff] [blame] | 2334 | } |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2335 | |
| 2336 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) { |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 2337 | new_cfqq = 0; |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 2338 | /* |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2339 | * same position, nothing more to do |
Jens Axboe | 99f9628 | 2007-02-05 11:56:25 +0100 | [diff] [blame] | 2340 | */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2341 | if (rb_key == cfqq->rb_key && cfqq->service_tree == st) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2342 | return; |
Jens Axboe | 53b03744 | 2006-07-28 09:48:51 +0200 | [diff] [blame] | 2343 | |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 2344 | cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree); |
| 2345 | cfqq->service_tree = NULL; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2346 | } |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2347 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2348 | left = 1; |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 2349 | parent = NULL; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2350 | cfqq->service_tree = st; |
| 2351 | p = &st->rb.rb_node; |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2352 | while (*p) { |
| 2353 | parent = *p; |
| 2354 | __cfqq = rb_entry(parent, struct cfq_queue, rb_node); |
| 2355 | |
Jens Axboe | 0c534e0 | 2007-04-18 20:01:57 +0200 | [diff] [blame] | 2356 | /* |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2357 | * sort by key, that represents service time. |
Jens Axboe | 0c534e0 | 2007-04-18 20:01:57 +0200 | [diff] [blame] | 2358 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2359 | if (rb_key < __cfqq->rb_key) |
Vivek Goyal | 1f23f12 | 2012-10-03 16:57:00 -0400 | [diff] [blame] | 2360 | p = &parent->rb_left; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2361 | else { |
Vivek Goyal | 1f23f12 | 2012-10-03 16:57:00 -0400 | [diff] [blame] | 2362 | p = &parent->rb_right; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 2363 | left = 0; |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2364 | } |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2365 | } |
| 2366 | |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 2367 | if (left) |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2368 | st->left = &cfqq->rb_node; |
Jens Axboe | cc09e29 | 2007-04-26 12:53:50 +0200 | [diff] [blame] | 2369 | |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2370 | cfqq->rb_key = rb_key; |
| 2371 | rb_link_node(&cfqq->rb_node, parent, p); |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2372 | rb_insert_color(&cfqq->rb_node, &st->rb); |
| 2373 | st->count++; |
Namhyung Kim | 20359f2 | 2011-05-24 10:23:22 +0200 | [diff] [blame] | 2374 | if (add_front || !new_cfqq) |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 2375 | return; |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 2376 | cfq_group_notify_queue_add(cfqd, cfqq->cfqg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | } |
| 2378 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2379 | static struct cfq_queue * |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2380 | cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root, |
| 2381 | sector_t sector, struct rb_node **ret_parent, |
| 2382 | struct rb_node ***rb_link) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2383 | { |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2384 | struct rb_node **p, *parent; |
| 2385 | struct cfq_queue *cfqq = NULL; |
| 2386 | |
| 2387 | parent = NULL; |
| 2388 | p = &root->rb_node; |
| 2389 | while (*p) { |
| 2390 | struct rb_node **n; |
| 2391 | |
| 2392 | parent = *p; |
| 2393 | cfqq = rb_entry(parent, struct cfq_queue, p_node); |
| 2394 | |
| 2395 | /* |
| 2396 | * Sort strictly based on sector. Smallest to the left, |
| 2397 | * largest to the right. |
| 2398 | */ |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 2399 | if (sector > blk_rq_pos(cfqq->next_rq)) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2400 | n = &(*p)->rb_right; |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 2401 | else if (sector < blk_rq_pos(cfqq->next_rq)) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2402 | n = &(*p)->rb_left; |
| 2403 | else |
| 2404 | break; |
| 2405 | p = n; |
Jens Axboe | 3ac6c9f | 2009-04-23 12:14:56 +0200 | [diff] [blame] | 2406 | cfqq = NULL; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2407 | } |
| 2408 | |
| 2409 | *ret_parent = parent; |
| 2410 | if (rb_link) |
| 2411 | *rb_link = p; |
Jens Axboe | 3ac6c9f | 2009-04-23 12:14:56 +0200 | [diff] [blame] | 2412 | return cfqq; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2413 | } |
| 2414 | |
| 2415 | static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 2416 | { |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2417 | struct rb_node **p, *parent; |
| 2418 | struct cfq_queue *__cfqq; |
| 2419 | |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2420 | if (cfqq->p_root) { |
| 2421 | rb_erase(&cfqq->p_node, cfqq->p_root); |
| 2422 | cfqq->p_root = NULL; |
| 2423 | } |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2424 | |
| 2425 | if (cfq_class_idle(cfqq)) |
| 2426 | return; |
| 2427 | if (!cfqq->next_rq) |
| 2428 | return; |
| 2429 | |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2430 | cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio]; |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 2431 | __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root, |
| 2432 | blk_rq_pos(cfqq->next_rq), &parent, &p); |
Jens Axboe | 3ac6c9f | 2009-04-23 12:14:56 +0200 | [diff] [blame] | 2433 | if (!__cfqq) { |
| 2434 | rb_link_node(&cfqq->p_node, parent, p); |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2435 | rb_insert_color(&cfqq->p_node, cfqq->p_root); |
| 2436 | } else |
| 2437 | cfqq->p_root = NULL; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2438 | } |
| 2439 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2440 | /* |
| 2441 | * Update cfqq's position in the service tree. |
| 2442 | */ |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2443 | 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] | 2444 | { |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2445 | /* |
| 2446 | * Resorting requires the cfqq to be on the RR list already. |
| 2447 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2448 | if (cfq_cfqq_on_rr(cfqq)) { |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2449 | cfq_service_tree_add(cfqd, cfqq, 0); |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2450 | cfq_prio_tree_add(cfqd, cfqq); |
| 2451 | } |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2452 | } |
| 2453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | /* |
| 2455 | * 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] | 2456 | * the pending list according to last request service |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | */ |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2458 | 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] | 2459 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2460 | cfq_log_cfqq(cfqd, cfqq, "add_to_rr"); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 2461 | BUG_ON(cfq_cfqq_on_rr(cfqq)); |
| 2462 | cfq_mark_cfqq_on_rr(cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | cfqd->busy_queues++; |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 2464 | if (cfq_cfqq_sync(cfqq)) |
| 2465 | cfqd->busy_sync_queues++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2467 | cfq_resort_rr_list(cfqd, cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2468 | } |
| 2469 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2470 | /* |
| 2471 | * Called when the cfqq no longer has requests pending, remove it from |
| 2472 | * the service tree. |
| 2473 | */ |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2474 | 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] | 2475 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2476 | cfq_log_cfqq(cfqd, cfqq, "del_from_rr"); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 2477 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); |
| 2478 | cfq_clear_cfqq_on_rr(cfqq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2479 | |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 2480 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) { |
| 2481 | cfq_rb_erase(&cfqq->rb_node, cfqq->service_tree); |
| 2482 | cfqq->service_tree = NULL; |
| 2483 | } |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2484 | if (cfqq->p_root) { |
| 2485 | rb_erase(&cfqq->p_node, cfqq->p_root); |
| 2486 | cfqq->p_root = NULL; |
| 2487 | } |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2488 | |
Justin TerAvest | 8184f93 | 2011-03-17 16:12:36 +0100 | [diff] [blame] | 2489 | cfq_group_notify_queue_del(cfqd, cfqq->cfqg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2490 | BUG_ON(!cfqd->busy_queues); |
| 2491 | cfqd->busy_queues--; |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 2492 | if (cfq_cfqq_sync(cfqq)) |
| 2493 | cfqd->busy_sync_queues--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2494 | } |
| 2495 | |
| 2496 | /* |
| 2497 | * rb tree support functions |
| 2498 | */ |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2499 | static void cfq_del_rq_rb(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2501 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2502 | const int sync = rq_is_sync(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2504 | BUG_ON(!cfqq->queued[sync]); |
| 2505 | cfqq->queued[sync]--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2506 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2507 | elv_rb_del(&cfqq->sort_list, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2508 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2509 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) { |
| 2510 | /* |
| 2511 | * Queue will be deleted from service tree when we actually |
| 2512 | * expire it later. Right now just remove it from prio tree |
| 2513 | * as it is empty. |
| 2514 | */ |
| 2515 | if (cfqq->p_root) { |
| 2516 | rb_erase(&cfqq->p_node, cfqq->p_root); |
| 2517 | cfqq->p_root = NULL; |
| 2518 | } |
| 2519 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2520 | } |
| 2521 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2522 | static void cfq_add_rq_rb(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2523 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2524 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2525 | struct cfq_data *cfqd = cfqq->cfqd; |
Jeff Moyer | 796d511 | 2011-06-02 21:19:05 +0200 | [diff] [blame] | 2526 | struct request *prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2527 | |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 2528 | cfqq->queued[rq_is_sync(rq)]++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | |
Jeff Moyer | 796d511 | 2011-06-02 21:19:05 +0200 | [diff] [blame] | 2530 | elv_rb_add(&cfqq->sort_list, rq); |
Jens Axboe | 5fccbf6 | 2006-10-31 14:21:55 +0100 | [diff] [blame] | 2531 | |
| 2532 | if (!cfq_cfqq_on_rr(cfqq)) |
| 2533 | cfq_add_cfqq_rr(cfqd, cfqq); |
Jens Axboe | 5044eed | 2007-04-25 11:53:48 +0200 | [diff] [blame] | 2534 | |
| 2535 | /* |
| 2536 | * check if this request is a better next-serve candidate |
| 2537 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2538 | prev = cfqq->next_rq; |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 2539 | 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] | 2540 | |
| 2541 | /* |
| 2542 | * adjust priority tree position, if ->next_rq changes |
| 2543 | */ |
| 2544 | if (prev != cfqq->next_rq) |
| 2545 | cfq_prio_tree_add(cfqd, cfqq); |
| 2546 | |
Jens Axboe | 5044eed | 2007-04-25 11:53:48 +0200 | [diff] [blame] | 2547 | BUG_ON(!cfqq->next_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2548 | } |
| 2549 | |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2550 | 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] | 2551 | { |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 2552 | elv_rb_del(&cfqq->sort_list, rq); |
| 2553 | cfqq->queued[rq_is_sync(rq)]--; |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 2554 | cfqg_stats_update_io_remove(RQ_CFQG(rq), req_op(rq), rq->cmd_flags); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2555 | cfq_add_rq_rb(rq); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2556 | cfqg_stats_update_io_add(RQ_CFQG(rq), cfqq->cfqd->serving_group, |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 2557 | req_op(rq), rq->cmd_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | } |
| 2559 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2560 | static struct request * |
| 2561 | cfq_find_rq_fmerge(struct cfq_data *cfqd, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2562 | { |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2563 | struct task_struct *tsk = current; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 2564 | struct cfq_io_cq *cic; |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2565 | struct cfq_queue *cfqq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2566 | |
Jens Axboe | 4ac845a | 2008-01-24 08:44:49 +0100 | [diff] [blame] | 2567 | cic = cfq_cic_lookup(cfqd, tsk->io_context); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 2568 | if (!cic) |
| 2569 | return NULL; |
| 2570 | |
| 2571 | cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio)); |
Kent Overstreet | f73a1c7 | 2012-09-25 15:05:12 -0700 | [diff] [blame] | 2572 | if (cfqq) |
| 2573 | return elv_rb_find(&cfqq->sort_list, bio_end_sector(bio)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | return NULL; |
| 2576 | } |
| 2577 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2578 | static void cfq_activate_request(struct request_queue *q, struct request *rq) |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2579 | { |
| 2580 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 2581 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 2582 | cfqd->rq_in_driver++; |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2583 | cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "activate rq, drv=%d", |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 2584 | cfqd->rq_in_driver); |
Jens Axboe | 25776e3 | 2006-06-01 10:12:26 +0200 | [diff] [blame] | 2585 | |
Tejun Heo | 5b93629 | 2009-05-07 22:24:38 +0900 | [diff] [blame] | 2586 | cfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq); |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2587 | } |
| 2588 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2589 | static void cfq_deactivate_request(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2591 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 2593 | WARN_ON(!cfqd->rq_in_driver); |
| 2594 | cfqd->rq_in_driver--; |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2595 | cfq_log_cfqq(cfqd, RQ_CFQQ(rq), "deactivate rq, drv=%d", |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 2596 | cfqd->rq_in_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2597 | } |
| 2598 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2599 | static void cfq_remove_request(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2600 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2601 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 2602 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2603 | if (cfqq->next_rq == rq) |
| 2604 | cfqq->next_rq = cfq_find_next_rq(cfqq->cfqd, cfqq, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2605 | |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2606 | list_del_init(&rq->queuelist); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2607 | cfq_del_rq_rb(rq); |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 2608 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 2609 | cfqq->cfqd->rq_queued--; |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 2610 | cfqg_stats_update_io_remove(RQ_CFQG(rq), req_op(rq), rq->cmd_flags); |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 2611 | if (rq->cmd_flags & REQ_PRIO) { |
| 2612 | WARN_ON(!cfqq->prio_pending); |
| 2613 | cfqq->prio_pending--; |
Jens Axboe | b53d1ed | 2011-08-19 08:34:48 +0200 | [diff] [blame] | 2614 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | } |
| 2616 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2617 | static int cfq_merge(struct request_queue *q, struct request **req, |
| 2618 | struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2619 | { |
| 2620 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 2621 | struct request *__rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 2623 | __rq = cfq_find_rq_fmerge(cfqd, bio); |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 2624 | if (__rq && elv_bio_merge_ok(__rq, bio)) { |
Jens Axboe | 9817064 | 2006-07-28 09:23:08 +0200 | [diff] [blame] | 2625 | *req = __rq; |
| 2626 | return ELEVATOR_FRONT_MERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2627 | } |
| 2628 | |
| 2629 | return ELEVATOR_NO_MERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | } |
| 2631 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2632 | static void cfq_merged_request(struct request_queue *q, struct request *req, |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 2633 | int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2634 | { |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 2635 | if (type == ELEVATOR_FRONT_MERGE) { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2636 | struct cfq_queue *cfqq = RQ_CFQQ(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 2638 | cfq_reposition_rq_rb(cfqq, req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2640 | } |
| 2641 | |
Divyesh Shah | 812d402 | 2010-04-08 21:14:23 -0700 | [diff] [blame] | 2642 | static void cfq_bio_merged(struct request_queue *q, struct request *req, |
| 2643 | struct bio *bio) |
| 2644 | { |
Jens Axboe | 1eff9d3 | 2016-08-05 15:35:16 -0600 | [diff] [blame] | 2645 | cfqg_stats_update_io_merged(RQ_CFQG(req), bio_op(bio), bio->bi_opf); |
Divyesh Shah | 812d402 | 2010-04-08 21:14:23 -0700 | [diff] [blame] | 2646 | } |
| 2647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2648 | static void |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2649 | cfq_merged_requests(struct request_queue *q, struct request *rq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | struct request *next) |
| 2651 | { |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 2652 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Shaohua Li | 4a0b75c | 2011-12-16 14:00:22 +0100 | [diff] [blame] | 2653 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 2654 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2655 | /* |
| 2656 | * reposition in fifo if next is older than rq |
| 2657 | */ |
| 2658 | if (!list_empty(&rq->queuelist) && !list_empty(&next->queuelist) && |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2659 | next->fifo_time < rq->fifo_time && |
Shaohua Li | 3d106fba | 2012-11-06 12:39:51 +0100 | [diff] [blame] | 2660 | cfqq == RQ_CFQQ(next)) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2661 | list_move(&rq->queuelist, &next->queuelist); |
Jan Kara | 8b4922d | 2014-02-24 16:39:52 +0100 | [diff] [blame] | 2662 | rq->fifo_time = next->fifo_time; |
Jens Axboe | 30996f4 | 2009-10-05 11:03:39 +0200 | [diff] [blame] | 2663 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2664 | |
Corrado Zoccolo | cf7c25c | 2009-11-08 17:16:46 +0100 | [diff] [blame] | 2665 | if (cfqq->next_rq == next) |
| 2666 | cfqq->next_rq = rq; |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 2667 | cfq_remove_request(next); |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 2668 | cfqg_stats_update_io_merged(RQ_CFQG(rq), req_op(next), next->cmd_flags); |
Shaohua Li | 4a0b75c | 2011-12-16 14:00:22 +0100 | [diff] [blame] | 2669 | |
| 2670 | cfqq = RQ_CFQQ(next); |
| 2671 | /* |
| 2672 | * all requests of this queue are merged to other queues, delete it |
| 2673 | * from the service tree. If it's the active_queue, |
| 2674 | * cfq_dispatch_requests() will choose to expire it or do idle |
| 2675 | */ |
| 2676 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list) && |
| 2677 | cfqq != cfqd->active_queue) |
| 2678 | cfq_del_cfqq_rr(cfqd, cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2679 | } |
| 2680 | |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 2681 | static int cfq_allow_bio_merge(struct request_queue *q, struct request *rq, |
| 2682 | struct bio *bio) |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2683 | { |
| 2684 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 2685 | struct cfq_io_cq *cic; |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2686 | struct cfq_queue *cfqq; |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2687 | |
| 2688 | /* |
Jens Axboe | ec8acb6 | 2007-01-02 18:32:11 +0100 | [diff] [blame] | 2689 | * Disallow merge of a sync bio into an async request. |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2690 | */ |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 2691 | if (cfq_bio_sync(bio) && !rq_is_sync(rq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 2692 | return false; |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2693 | |
| 2694 | /* |
Tejun Heo | f1a4f4d | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 2695 | * Lookup the cfqq that this bio will be queued with and allow |
Tejun Heo | 07c2bd3 | 2012-02-08 09:19:42 +0100 | [diff] [blame] | 2696 | * merge only if rq is queued there. |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2697 | */ |
Tejun Heo | 07c2bd3 | 2012-02-08 09:19:42 +0100 | [diff] [blame] | 2698 | cic = cfq_cic_lookup(cfqd, current->io_context); |
| 2699 | if (!cic) |
| 2700 | return false; |
Jens Axboe | 719d340 | 2006-12-22 09:38:53 +0100 | [diff] [blame] | 2701 | |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 2702 | cfqq = cic_to_cfqq(cic, cfq_bio_sync(bio)); |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 2703 | return cfqq == RQ_CFQQ(rq); |
Jens Axboe | da77526 | 2006-12-20 11:04:12 +0100 | [diff] [blame] | 2704 | } |
| 2705 | |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 2706 | static int cfq_allow_rq_merge(struct request_queue *q, struct request *rq, |
| 2707 | struct request *next) |
| 2708 | { |
| 2709 | return RQ_CFQQ(rq) == RQ_CFQQ(next); |
| 2710 | } |
| 2711 | |
Divyesh Shah | 812df48 | 2010-04-08 21:15:35 -0700 | [diff] [blame] | 2712 | static inline void cfq_del_timer(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 2713 | { |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 2714 | hrtimer_try_to_cancel(&cfqd->idle_slice_timer); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2715 | cfqg_stats_update_idle_time(cfqq->cfqg); |
Divyesh Shah | 812df48 | 2010-04-08 21:15:35 -0700 | [diff] [blame] | 2716 | } |
| 2717 | |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 2718 | static void __cfq_set_active_queue(struct cfq_data *cfqd, |
| 2719 | struct cfq_queue *cfqq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2720 | { |
| 2721 | if (cfqq) { |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 2722 | 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] | 2723 | cfqd->serving_wl_class, cfqd->serving_wl_type); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 2724 | cfqg_stats_update_avg_queue_size(cfqq->cfqg); |
Justin TerAvest | 62a37f6 | 2011-03-23 08:25:44 +0100 | [diff] [blame] | 2725 | cfqq->slice_start = 0; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2726 | cfqq->dispatch_start = ktime_get_ns(); |
Justin TerAvest | 62a37f6 | 2011-03-23 08:25:44 +0100 | [diff] [blame] | 2727 | cfqq->allocated_slice = 0; |
| 2728 | cfqq->slice_end = 0; |
| 2729 | cfqq->slice_dispatch = 0; |
| 2730 | cfqq->nr_sectors = 0; |
| 2731 | |
| 2732 | cfq_clear_cfqq_wait_request(cfqq); |
| 2733 | cfq_clear_cfqq_must_dispatch(cfqq); |
| 2734 | cfq_clear_cfqq_must_alloc_slice(cfqq); |
| 2735 | cfq_clear_cfqq_fifo_expire(cfqq); |
| 2736 | cfq_mark_cfqq_slice_new(cfqq); |
| 2737 | |
| 2738 | cfq_del_timer(cfqd, cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2739 | } |
| 2740 | |
| 2741 | cfqd->active_queue = cfqq; |
| 2742 | } |
| 2743 | |
| 2744 | /* |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2745 | * current cfqq expired its slice (or was too idle), select new one |
| 2746 | */ |
| 2747 | static void |
| 2748 | __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 2749 | bool timed_out) |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2750 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2751 | cfq_log_cfqq(cfqd, cfqq, "slice expired t=%d", timed_out); |
| 2752 | |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2753 | if (cfq_cfqq_wait_request(cfqq)) |
Divyesh Shah | 812df48 | 2010-04-08 21:15:35 -0700 | [diff] [blame] | 2754 | cfq_del_timer(cfqd, cfqq); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2755 | |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2756 | cfq_clear_cfqq_wait_request(cfqq); |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 2757 | cfq_clear_cfqq_wait_busy(cfqq); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2758 | |
| 2759 | /* |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 2760 | * If this cfqq is shared between multiple processes, check to |
| 2761 | * make sure that those processes are still issuing I/Os within |
| 2762 | * the mean seek distance. If not, it may be time to break the |
| 2763 | * queues apart again. |
| 2764 | */ |
| 2765 | if (cfq_cfqq_coop(cfqq) && CFQQ_SEEKY(cfqq)) |
| 2766 | cfq_mark_cfqq_split_coop(cfqq); |
| 2767 | |
| 2768 | /* |
Jens Axboe | 6084cdd | 2007-04-23 08:25:00 +0200 | [diff] [blame] | 2769 | * 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] | 2770 | */ |
Shaohua Li | c553f8e | 2011-01-14 08:41:03 +0100 | [diff] [blame] | 2771 | if (timed_out) { |
| 2772 | if (cfq_cfqq_slice_new(cfqq)) |
Vivek Goyal | ba5bd52 | 2011-01-19 08:25:02 -0700 | [diff] [blame] | 2773 | cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq); |
Shaohua Li | c553f8e | 2011-01-14 08:41:03 +0100 | [diff] [blame] | 2774 | else |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 2775 | cfqq->slice_resid = cfqq->slice_end - ktime_get_ns(); |
Jan Kara | 93fdf14 | 2016-06-28 09:04:00 +0200 | [diff] [blame] | 2776 | cfq_log_cfqq(cfqd, cfqq, "resid=%lld", cfqq->slice_resid); |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 2777 | } |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2778 | |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 2779 | cfq_group_served(cfqd, cfqq->cfqg, cfqq); |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 2780 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2781 | if (cfq_cfqq_on_rr(cfqq) && RB_EMPTY_ROOT(&cfqq->sort_list)) |
| 2782 | cfq_del_cfqq_rr(cfqd, cfqq); |
| 2783 | |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2784 | cfq_resort_rr_list(cfqd, cfqq); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2785 | |
| 2786 | if (cfqq == cfqd->active_queue) |
| 2787 | cfqd->active_queue = NULL; |
| 2788 | |
| 2789 | if (cfqd->active_cic) { |
Tejun Heo | 11a3122 | 2012-02-07 07:51:30 +0100 | [diff] [blame] | 2790 | put_io_context(cfqd->active_cic->icq.ioc); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2791 | cfqd->active_cic = NULL; |
| 2792 | } |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2793 | } |
| 2794 | |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 2795 | 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] | 2796 | { |
| 2797 | struct cfq_queue *cfqq = cfqd->active_queue; |
| 2798 | |
| 2799 | if (cfqq) |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 2800 | __cfq_slice_expired(cfqd, cfqq, timed_out); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 2801 | } |
| 2802 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2803 | /* |
| 2804 | * Get next queue for service. Unless we have a queue preemption, |
| 2805 | * we'll simply select the first cfqq in the service tree. |
| 2806 | */ |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2807 | static struct cfq_queue *cfq_get_next_queue(struct cfq_data *cfqd) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2808 | { |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2809 | struct cfq_rb_root *st = st_for(cfqd->serving_group, |
| 2810 | cfqd->serving_wl_class, cfqd->serving_wl_type); |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 2811 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2812 | if (!cfqd->rq_queued) |
| 2813 | return NULL; |
| 2814 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 2815 | /* There is nothing to dispatch */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2816 | if (!st) |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 2817 | return NULL; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2818 | if (RB_EMPTY_ROOT(&st->rb)) |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2819 | return NULL; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2820 | return cfq_rb_first(st); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2821 | } |
| 2822 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2823 | static struct cfq_queue *cfq_get_next_queue_forced(struct cfq_data *cfqd) |
| 2824 | { |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2825 | struct cfq_group *cfqg; |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2826 | struct cfq_queue *cfqq; |
| 2827 | int i, j; |
| 2828 | struct cfq_rb_root *st; |
| 2829 | |
| 2830 | if (!cfqd->rq_queued) |
| 2831 | return NULL; |
| 2832 | |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 2833 | cfqg = cfq_get_next_cfqg(cfqd); |
| 2834 | if (!cfqg) |
| 2835 | return NULL; |
| 2836 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2837 | for_each_cfqg_st(cfqg, i, j, st) |
| 2838 | if ((cfqq = cfq_rb_first(st)) != NULL) |
| 2839 | return cfqq; |
| 2840 | return NULL; |
| 2841 | } |
| 2842 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 2843 | /* |
| 2844 | * Get and set a new active queue for service. |
| 2845 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2846 | static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd, |
| 2847 | struct cfq_queue *cfqq) |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2848 | { |
Jens Axboe | e00ef79 | 2009-11-04 08:54:55 +0100 | [diff] [blame] | 2849 | if (!cfqq) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2850 | cfqq = cfq_get_next_queue(cfqd); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2851 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2852 | __cfq_set_active_queue(cfqd, cfqq); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 2853 | return cfqq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2854 | } |
| 2855 | |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2856 | static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd, |
| 2857 | struct request *rq) |
| 2858 | { |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 2859 | if (blk_rq_pos(rq) >= cfqd->last_position) |
| 2860 | return blk_rq_pos(rq) - cfqd->last_position; |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2861 | else |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 2862 | return cfqd->last_position - blk_rq_pos(rq); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2863 | } |
| 2864 | |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 2865 | 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] | 2866 | struct request *rq) |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2867 | { |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 2868 | return cfq_dist_from_last(cfqd, rq) <= CFQQ_CLOSE_THR; |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2869 | } |
| 2870 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2871 | static struct cfq_queue *cfqq_close(struct cfq_data *cfqd, |
| 2872 | struct cfq_queue *cur_cfqq) |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2873 | { |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2874 | struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio]; |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2875 | struct rb_node *parent, *node; |
| 2876 | struct cfq_queue *__cfqq; |
| 2877 | sector_t sector = cfqd->last_position; |
| 2878 | |
| 2879 | if (RB_EMPTY_ROOT(root)) |
| 2880 | return NULL; |
| 2881 | |
| 2882 | /* |
| 2883 | * First, if we find a request starting at the end of the last |
| 2884 | * request, choose it. |
| 2885 | */ |
Jens Axboe | f2d1f0a | 2009-04-23 12:19:38 +0200 | [diff] [blame] | 2886 | __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL); |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2887 | if (__cfqq) |
| 2888 | return __cfqq; |
| 2889 | |
| 2890 | /* |
| 2891 | * If the exact sector wasn't found, the parent of the NULL leaf |
| 2892 | * will contain the closest sector. |
| 2893 | */ |
| 2894 | __cfqq = rb_entry(parent, struct cfq_queue, p_node); |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 2895 | if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq)) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2896 | return __cfqq; |
| 2897 | |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 2898 | if (blk_rq_pos(__cfqq->next_rq) < sector) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2899 | node = rb_next(&__cfqq->p_node); |
| 2900 | else |
| 2901 | node = rb_prev(&__cfqq->p_node); |
| 2902 | if (!node) |
| 2903 | return NULL; |
| 2904 | |
| 2905 | __cfqq = rb_entry(node, struct cfq_queue, p_node); |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 2906 | if (cfq_rq_close(cfqd, cur_cfqq, __cfqq->next_rq)) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2907 | return __cfqq; |
| 2908 | |
| 2909 | return NULL; |
| 2910 | } |
| 2911 | |
| 2912 | /* |
| 2913 | * cfqd - obvious |
| 2914 | * cur_cfqq - passed in so that we don't decide that the current queue is |
| 2915 | * closely cooperating with itself. |
| 2916 | * |
| 2917 | * So, basically we're assuming that that cur_cfqq has dispatched at least |
| 2918 | * one request, and that cfqd->last_position reflects a position on the disk |
| 2919 | * associated with the I/O issued by cur_cfqq. I'm not sure this is a valid |
| 2920 | * assumption. |
| 2921 | */ |
| 2922 | static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd, |
Jeff Moyer | b3b6d04 | 2009-10-23 17:14:51 -0400 | [diff] [blame] | 2923 | struct cfq_queue *cur_cfqq) |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2924 | { |
| 2925 | struct cfq_queue *cfqq; |
| 2926 | |
Divyesh Shah | 39c01b2 | 2010-03-25 15:45:57 +0100 | [diff] [blame] | 2927 | if (cfq_class_idle(cur_cfqq)) |
| 2928 | return NULL; |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 2929 | if (!cfq_cfqq_sync(cur_cfqq)) |
| 2930 | return NULL; |
| 2931 | if (CFQQ_SEEKY(cur_cfqq)) |
| 2932 | return NULL; |
| 2933 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2934 | /* |
Gui Jianfeng | b9d8f4c | 2009-12-08 08:54:17 +0100 | [diff] [blame] | 2935 | * Don't search priority tree if it's the only queue in the group. |
| 2936 | */ |
| 2937 | if (cur_cfqq->cfqg->nr_cfqq == 1) |
| 2938 | return NULL; |
| 2939 | |
| 2940 | /* |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 2941 | * We should notice if some of the queues are cooperating, eg |
| 2942 | * working closely on the same area of the disk. In that case, |
| 2943 | * we can group them together and don't waste time idling. |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2944 | */ |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2945 | cfqq = cfqq_close(cfqd, cur_cfqq); |
| 2946 | if (!cfqq) |
| 2947 | return NULL; |
| 2948 | |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 2949 | /* If new queue belongs to different cfq_group, don't choose it */ |
| 2950 | if (cur_cfqq->cfqg != cfqq->cfqg) |
| 2951 | return NULL; |
| 2952 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 2953 | /* |
| 2954 | * It only makes sense to merge sync queues. |
| 2955 | */ |
| 2956 | if (!cfq_cfqq_sync(cfqq)) |
| 2957 | return NULL; |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 2958 | if (CFQQ_SEEKY(cfqq)) |
| 2959 | return NULL; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 2960 | |
Corrado Zoccolo | c0324a0 | 2009-10-27 19:16:03 +0100 | [diff] [blame] | 2961 | /* |
| 2962 | * Do not merge queues of different priority classes |
| 2963 | */ |
| 2964 | if (cfq_class_rt(cfqq) != cfq_class_rt(cur_cfqq)) |
| 2965 | return NULL; |
| 2966 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 2967 | return cfqq; |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 2968 | } |
| 2969 | |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2970 | /* |
| 2971 | * Determine whether we should enforce idle window for this queue. |
| 2972 | */ |
| 2973 | |
| 2974 | static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 2975 | { |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 2976 | enum wl_class_t wl_class = cfqq_class(cfqq); |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2977 | struct cfq_rb_root *st = cfqq->service_tree; |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2978 | |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2979 | BUG_ON(!st); |
| 2980 | BUG_ON(!st->count); |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 2981 | |
Vivek Goyal | b6508c1 | 2010-08-23 12:23:33 +0200 | [diff] [blame] | 2982 | if (!cfqd->cfq_slice_idle) |
| 2983 | return false; |
| 2984 | |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2985 | /* We never do for idle class queues. */ |
Vivek Goyal | 3bf10fe | 2012-10-03 16:56:56 -0400 | [diff] [blame] | 2986 | if (wl_class == IDLE_WORKLOAD) |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2987 | return false; |
| 2988 | |
| 2989 | /* We do for queues that were marked with idle window flag. */ |
Shaohua Li | 3c764b7 | 2009-12-04 13:12:06 +0100 | [diff] [blame] | 2990 | if (cfq_cfqq_idle_window(cfqq) && |
| 2991 | !(blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag)) |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 2992 | return true; |
| 2993 | |
| 2994 | /* |
| 2995 | * Otherwise, we do only if they are the last ones |
| 2996 | * in their service tree. |
| 2997 | */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 2998 | if (st->count == 1 && cfq_cfqq_sync(cfqq) && |
| 2999 | !cfq_io_thinktime_big(cfqd, &st->ttime, false)) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 3000 | return true; |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 3001 | cfq_log_cfqq(cfqd, cfqq, "Not idling. st->count:%d", st->count); |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 3002 | return false; |
Corrado Zoccolo | a6d44e9 | 2009-10-26 22:45:11 +0100 | [diff] [blame] | 3003 | } |
| 3004 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3005 | static void cfq_arm_slice_timer(struct cfq_data *cfqd) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3006 | { |
Jens Axboe | 1792669 | 2007-01-19 11:59:30 +1100 | [diff] [blame] | 3007 | struct cfq_queue *cfqq = cfqd->active_queue; |
Jan Kara | e795421 | 2016-01-12 16:24:15 +0100 | [diff] [blame] | 3008 | struct cfq_rb_root *st = cfqq->service_tree; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3009 | struct cfq_io_cq *cic; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3010 | u64 sl, group_idle = 0; |
| 3011 | u64 now = ktime_get_ns(); |
Jens Axboe | 7b14e3b | 2006-02-28 09:35:11 +0100 | [diff] [blame] | 3012 | |
Jens Axboe | a68bbdd | 2008-09-24 13:03:33 +0200 | [diff] [blame] | 3013 | /* |
Jens Axboe | f7d7b7a | 2008-09-25 11:37:50 +0200 | [diff] [blame] | 3014 | * SSD device without seek penalty, disable idling. But only do so |
Ritesh Harjani | 940c0b4 | 2017-08-08 10:20:56 +0530 | [diff] [blame] | 3015 | * for devices that support queuing (and when group idle is 0), |
| 3016 | * otherwise we still have a problem with sync vs async workloads. |
Jens Axboe | a68bbdd | 2008-09-24 13:03:33 +0200 | [diff] [blame] | 3017 | */ |
Ritesh Harjani | 940c0b4 | 2017-08-08 10:20:56 +0530 | [diff] [blame] | 3018 | if (blk_queue_nonrot(cfqd->queue) && cfqd->hw_tag && |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 3019 | !get_group_idle(cfqd)) |
Jens Axboe | a68bbdd | 2008-09-24 13:03:33 +0200 | [diff] [blame] | 3020 | return; |
| 3021 | |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 3022 | WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list)); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3023 | WARN_ON(cfq_cfqq_slice_new(cfqq)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3024 | |
| 3025 | /* |
| 3026 | * idle is disabled, either manually or by past process history |
| 3027 | */ |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3028 | if (!cfq_should_idle(cfqd, cfqq)) { |
| 3029 | /* no queue idling. Check for group idling */ |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 3030 | group_idle = get_group_idle(cfqd); |
| 3031 | if (!group_idle) |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3032 | return; |
| 3033 | } |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3034 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3035 | /* |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 3036 | * still active requests from this queue, don't idle |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3037 | */ |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 3038 | if (cfqq->dispatched) |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3039 | return; |
| 3040 | |
| 3041 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3042 | * task has exited, don't wait |
| 3043 | */ |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 3044 | cic = cfqd->active_cic; |
Tejun Heo | f6e8d01 | 2012-03-05 13:15:26 -0800 | [diff] [blame] | 3045 | if (!cic || !atomic_read(&cic->icq.ioc->active_ref)) |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3046 | return; |
| 3047 | |
Corrado Zoccolo | 355b659 | 2009-10-08 08:43:32 +0200 | [diff] [blame] | 3048 | /* |
| 3049 | * If our average think time is larger than the remaining time |
| 3050 | * slice, then don't idle. This avoids overrunning the allotted |
| 3051 | * time slice. |
| 3052 | */ |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3053 | if (sample_valid(cic->ttime.ttime_samples) && |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3054 | (cfqq->slice_end - now < cic->ttime.ttime_mean)) { |
| 3055 | cfq_log_cfqq(cfqd, cfqq, "Not idling. think_time:%llu", |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3056 | cic->ttime.ttime_mean); |
Corrado Zoccolo | 355b659 | 2009-10-08 08:43:32 +0200 | [diff] [blame] | 3057 | return; |
Divyesh Shah | b1ffe73 | 2010-03-25 15:45:03 +0100 | [diff] [blame] | 3058 | } |
Corrado Zoccolo | 355b659 | 2009-10-08 08:43:32 +0200 | [diff] [blame] | 3059 | |
Jan Kara | e795421 | 2016-01-12 16:24:15 +0100 | [diff] [blame] | 3060 | /* |
| 3061 | * There are other queues in the group or this is the only group and |
| 3062 | * it has too big thinktime, don't do group idle. |
| 3063 | */ |
| 3064 | if (group_idle && |
| 3065 | (cfqq->cfqg->nr_cfqq > 1 || |
| 3066 | cfq_io_thinktime_big(cfqd, &st->ttime, true))) |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3067 | return; |
| 3068 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3069 | cfq_mark_cfqq_wait_request(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3070 | |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3071 | if (group_idle) |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 3072 | sl = group_idle; |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3073 | else |
| 3074 | sl = cfqd->cfq_slice_idle; |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 3075 | |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 3076 | hrtimer_start(&cfqd->idle_slice_timer, ns_to_ktime(sl), |
| 3077 | HRTIMER_MODE_REL); |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 3078 | cfqg_stats_set_start_idle_time(cfqq->cfqg); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3079 | cfq_log_cfqq(cfqd, cfqq, "arm_idle: %llu group_idle: %d", sl, |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3080 | group_idle ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3081 | } |
| 3082 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 3083 | /* |
| 3084 | * Move request from internal lists to the request queue dispatch list. |
| 3085 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 3086 | static void cfq_dispatch_insert(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3087 | { |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 3088 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 3089 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3090 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3091 | cfq_log_cfqq(cfqd, cfqq, "dispatch_insert"); |
| 3092 | |
Jeff Moyer | 06d2188 | 2009-09-11 17:08:59 +0200 | [diff] [blame] | 3093 | cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq); |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 3094 | cfq_remove_request(rq); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3095 | cfqq->dispatched++; |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3096 | (RQ_CFQG(rq))->dispatched++; |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 3097 | elv_dispatch_sort(q, rq); |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 3098 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 3099 | cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]++; |
Vivek Goyal | c4e7893 | 2010-08-23 12:25:03 +0200 | [diff] [blame] | 3100 | cfqq->nr_sectors += blk_rq_sectors(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3101 | } |
| 3102 | |
| 3103 | /* |
| 3104 | * return expired entry, or NULL to just start from scratch in rbtree |
| 3105 | */ |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 3106 | static struct request *cfq_check_fifo(struct cfq_queue *cfqq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3107 | { |
Jens Axboe | 30996f4 | 2009-10-05 11:03:39 +0200 | [diff] [blame] | 3108 | struct request *rq = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3109 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3110 | if (cfq_cfqq_fifo_expire(cfqq)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | return NULL; |
Jens Axboe | cb88741 | 2007-01-19 12:01:16 +1100 | [diff] [blame] | 3112 | |
| 3113 | cfq_mark_cfqq_fifo_expire(cfqq); |
| 3114 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3115 | if (list_empty(&cfqq->fifo)) |
| 3116 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3117 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3118 | rq = rq_entry_fifo(cfqq->fifo.next); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3119 | if (ktime_get_ns() < rq->fifo_time) |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3120 | rq = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3121 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3122 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3123 | } |
| 3124 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3125 | static inline int |
| 3126 | cfq_prio_to_maxrq(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 3127 | { |
| 3128 | const int base_rq = cfqd->cfq_slice_async_rq; |
| 3129 | |
| 3130 | WARN_ON(cfqq->ioprio >= IOPRIO_BE_NR); |
| 3131 | |
Namhyung Kim | b9f8ce0 | 2011-05-24 10:23:21 +0200 | [diff] [blame] | 3132 | return 2 * base_rq * (IOPRIO_BE_NR - cfqq->ioprio); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3133 | } |
| 3134 | |
| 3135 | /* |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3136 | * Must be called with the queue_lock held. |
| 3137 | */ |
| 3138 | static int cfqq_process_refs(struct cfq_queue *cfqq) |
| 3139 | { |
| 3140 | int process_refs, io_refs; |
| 3141 | |
| 3142 | io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE]; |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3143 | process_refs = cfqq->ref - io_refs; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3144 | BUG_ON(process_refs < 0); |
| 3145 | return process_refs; |
| 3146 | } |
| 3147 | |
| 3148 | static void cfq_setup_merge(struct cfq_queue *cfqq, struct cfq_queue *new_cfqq) |
| 3149 | { |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3150 | int process_refs, new_process_refs; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3151 | struct cfq_queue *__cfqq; |
| 3152 | |
Jeff Moyer | c10b61f | 2010-06-17 10:19:11 -0400 | [diff] [blame] | 3153 | /* |
| 3154 | * If there are no process references on the new_cfqq, then it is |
| 3155 | * unsafe to follow the ->new_cfqq chain as other cfqq's in the |
| 3156 | * chain may have dropped their last reference (not just their |
| 3157 | * last process reference). |
| 3158 | */ |
| 3159 | if (!cfqq_process_refs(new_cfqq)) |
| 3160 | return; |
| 3161 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3162 | /* Avoid a circular list and skip interim queue merges */ |
| 3163 | while ((__cfqq = new_cfqq->new_cfqq)) { |
| 3164 | if (__cfqq == cfqq) |
| 3165 | return; |
| 3166 | new_cfqq = __cfqq; |
| 3167 | } |
| 3168 | |
| 3169 | process_refs = cfqq_process_refs(cfqq); |
Jeff Moyer | c10b61f | 2010-06-17 10:19:11 -0400 | [diff] [blame] | 3170 | new_process_refs = cfqq_process_refs(new_cfqq); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3171 | /* |
| 3172 | * If the process for the cfqq has gone away, there is no |
| 3173 | * sense in merging the queues. |
| 3174 | */ |
Jeff Moyer | c10b61f | 2010-06-17 10:19:11 -0400 | [diff] [blame] | 3175 | if (process_refs == 0 || new_process_refs == 0) |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3176 | return; |
| 3177 | |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3178 | /* |
| 3179 | * Merge in the direction of the lesser amount of work. |
| 3180 | */ |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3181 | if (new_process_refs >= process_refs) { |
| 3182 | cfqq->new_cfqq = new_cfqq; |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3183 | new_cfqq->ref += process_refs; |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3184 | } else { |
| 3185 | new_cfqq->new_cfqq = cfqq; |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3186 | cfqq->ref += new_process_refs; |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 3187 | } |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3188 | } |
| 3189 | |
Vivek Goyal | 6d816ec | 2012-10-03 16:56:59 -0400 | [diff] [blame] | 3190 | 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] | 3191 | struct cfq_group *cfqg, enum wl_class_t wl_class) |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3192 | { |
| 3193 | struct cfq_queue *queue; |
| 3194 | int i; |
| 3195 | bool key_valid = false; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3196 | u64 lowest_key = 0; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3197 | enum wl_type_t cur_best = SYNC_NOIDLE_WORKLOAD; |
| 3198 | |
Vivek Goyal | 65b32a5 | 2009-12-16 17:52:59 -0500 | [diff] [blame] | 3199 | for (i = 0; i <= SYNC_WORKLOAD; ++i) { |
| 3200 | /* select the one with lowest rb_key */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 3201 | queue = cfq_rb_first(st_for(cfqg, wl_class, i)); |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3202 | if (queue && |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3203 | (!key_valid || queue->rb_key < lowest_key)) { |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3204 | lowest_key = queue->rb_key; |
| 3205 | cur_best = i; |
| 3206 | key_valid = true; |
| 3207 | } |
| 3208 | } |
| 3209 | |
| 3210 | return cur_best; |
| 3211 | } |
| 3212 | |
Vivek Goyal | 6d816ec | 2012-10-03 16:56:59 -0400 | [diff] [blame] | 3213 | static void |
| 3214 | 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] | 3215 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3216 | u64 slice; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3217 | unsigned count; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3218 | struct cfq_rb_root *st; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3219 | u64 group_slice; |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3220 | enum wl_class_t original_class = cfqd->serving_wl_class; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3221 | u64 now = ktime_get_ns(); |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3222 | |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3223 | /* Choose next priority. RT > BE > IDLE */ |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 3224 | if (cfq_group_busy_queues_wl(RT_WORKLOAD, cfqd, cfqg)) |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3225 | cfqd->serving_wl_class = RT_WORKLOAD; |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 3226 | else if (cfq_group_busy_queues_wl(BE_WORKLOAD, cfqd, cfqg)) |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3227 | cfqd->serving_wl_class = BE_WORKLOAD; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3228 | else { |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3229 | cfqd->serving_wl_class = IDLE_WORKLOAD; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3230 | cfqd->workload_expires = now + jiffies_to_nsecs(1); |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3231 | return; |
| 3232 | } |
| 3233 | |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3234 | if (original_class != cfqd->serving_wl_class) |
Shaohua Li writes | e4ea0c1 | 2010-12-13 14:32:22 +0100 | [diff] [blame] | 3235 | goto new_workload; |
| 3236 | |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3237 | /* |
| 3238 | * For RT and BE, we have to choose also the type |
| 3239 | * (SYNC, SYNC_NOIDLE, ASYNC), and to compute a workload |
| 3240 | * expiration time |
| 3241 | */ |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 3242 | st = st_for(cfqg, cfqd->serving_wl_class, cfqd->serving_wl_type); |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3243 | count = st->count; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3244 | |
| 3245 | /* |
Vivek Goyal | 65b32a5 | 2009-12-16 17:52:59 -0500 | [diff] [blame] | 3246 | * check workload expiration, and that we still have other queues ready |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3247 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3248 | if (count && !(now > cfqd->workload_expires)) |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3249 | return; |
| 3250 | |
Shaohua Li writes | e4ea0c1 | 2010-12-13 14:32:22 +0100 | [diff] [blame] | 3251 | new_workload: |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3252 | /* otherwise select new workload type */ |
Vivek Goyal | 6d816ec | 2012-10-03 16:56:59 -0400 | [diff] [blame] | 3253 | cfqd->serving_wl_type = cfq_choose_wl_type(cfqd, cfqg, |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3254 | cfqd->serving_wl_class); |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 3255 | st = st_for(cfqg, cfqd->serving_wl_class, cfqd->serving_wl_type); |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3256 | count = st->count; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3257 | |
| 3258 | /* |
| 3259 | * the workload slice is computed as a fraction of target latency |
| 3260 | * proportional to the number of queues in that workload, over |
| 3261 | * all the queues in the same priority class |
| 3262 | */ |
Vivek Goyal | 58ff82f | 2009-12-03 12:59:44 -0500 | [diff] [blame] | 3263 | group_slice = cfq_group_slice(cfqd, cfqg); |
| 3264 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3265 | slice = div_u64(group_slice * count, |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3266 | max_t(unsigned, cfqg->busy_queues_avg[cfqd->serving_wl_class], |
| 3267 | cfq_group_busy_queues_wl(cfqd->serving_wl_class, cfqd, |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3268 | cfqg))); |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3269 | |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3270 | if (cfqd->serving_wl_type == ASYNC_WORKLOAD) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3271 | u64 tmp; |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 3272 | |
| 3273 | /* |
| 3274 | * Async queues are currently system wide. Just taking |
| 3275 | * proportion of queues with-in same group will lead to higher |
| 3276 | * async ratio system wide as generally root group is going |
| 3277 | * to have higher weight. A more accurate thing would be to |
| 3278 | * calculate system wide asnc/sync ratio. |
| 3279 | */ |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 3280 | tmp = cfqd->cfq_target_latency * |
| 3281 | cfqg_busy_async_queues(cfqd, cfqg); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3282 | tmp = div_u64(tmp, cfqd->busy_queues); |
| 3283 | slice = min_t(u64, slice, tmp); |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 3284 | |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3285 | /* async workload slice is scaled down according to |
| 3286 | * the sync/async slice ratio. */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3287 | slice = div64_u64(slice*cfqd->cfq_slice[0], cfqd->cfq_slice[1]); |
Vivek Goyal | f26bd1f | 2009-12-03 12:59:54 -0500 | [diff] [blame] | 3288 | } else |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3289 | /* sync workload slice is at least 2 * cfq_slice_idle */ |
| 3290 | slice = max(slice, 2 * cfqd->cfq_slice_idle); |
| 3291 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3292 | slice = max_t(u64, slice, CFQ_MIN_TT); |
| 3293 | cfq_log(cfqd, "workload slice:%llu", slice); |
| 3294 | cfqd->workload_expires = now + slice; |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3295 | } |
| 3296 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3297 | static struct cfq_group *cfq_get_next_cfqg(struct cfq_data *cfqd) |
| 3298 | { |
| 3299 | struct cfq_rb_root *st = &cfqd->grp_service_tree; |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 3300 | struct cfq_group *cfqg; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3301 | |
| 3302 | if (RB_EMPTY_ROOT(&st->rb)) |
| 3303 | return NULL; |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 3304 | cfqg = cfq_rb_first_group(st); |
Vivek Goyal | 25bc6b0 | 2009-12-03 12:59:43 -0500 | [diff] [blame] | 3305 | update_min_vdisktime(st); |
| 3306 | return cfqg; |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3307 | } |
| 3308 | |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3309 | static void cfq_choose_cfqg(struct cfq_data *cfqd) |
| 3310 | { |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3311 | struct cfq_group *cfqg = cfq_get_next_cfqg(cfqd); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3312 | u64 now = ktime_get_ns(); |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 3313 | |
| 3314 | cfqd->serving_group = cfqg; |
Vivek Goyal | dae739e | 2009-12-03 12:59:45 -0500 | [diff] [blame] | 3315 | |
| 3316 | /* Restore the workload type data */ |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3317 | if (cfqg->saved_wl_slice) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3318 | cfqd->workload_expires = now + cfqg->saved_wl_slice; |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 3319 | cfqd->serving_wl_type = cfqg->saved_wl_type; |
| 3320 | cfqd->serving_wl_class = cfqg->saved_wl_class; |
Gui Jianfeng | 66ae291 | 2009-12-15 10:08:45 +0100 | [diff] [blame] | 3321 | } else |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3322 | cfqd->workload_expires = now - 1; |
Gui Jianfeng | 66ae291 | 2009-12-15 10:08:45 +0100 | [diff] [blame] | 3323 | |
Vivek Goyal | 6d816ec | 2012-10-03 16:56:59 -0400 | [diff] [blame] | 3324 | choose_wl_class_and_type(cfqd, cfqg); |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3325 | } |
| 3326 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3327 | /* |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 3328 | * Select a queue for service. If we have a current active queue, |
| 3329 | * 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] | 3330 | */ |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3331 | static struct cfq_queue *cfq_select_queue(struct cfq_data *cfqd) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3332 | { |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3333 | struct cfq_queue *cfqq, *new_cfqq = NULL; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3334 | u64 now = ktime_get_ns(); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3335 | |
| 3336 | cfqq = cfqd->active_queue; |
| 3337 | if (!cfqq) |
| 3338 | goto new_queue; |
| 3339 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 3340 | if (!cfqd->rq_queued) |
| 3341 | return NULL; |
Vivek Goyal | c244bb5 | 2009-12-08 17:52:57 -0500 | [diff] [blame] | 3342 | |
| 3343 | /* |
| 3344 | * We were waiting for group to get backlogged. Expire the queue |
| 3345 | */ |
| 3346 | if (cfq_cfqq_wait_busy(cfqq) && !RB_EMPTY_ROOT(&cfqq->sort_list)) |
| 3347 | goto expire; |
| 3348 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3349 | /* |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3350 | * 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] | 3351 | */ |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 3352 | if (cfq_slice_used(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) { |
| 3353 | /* |
| 3354 | * If slice had not expired at the completion of last request |
| 3355 | * we might not have turned on wait_busy flag. Don't expire |
| 3356 | * the queue yet. Allow the group to get backlogged. |
| 3357 | * |
| 3358 | * The very fact that we have used the slice, that means we |
| 3359 | * have been idling all along on this queue and it should be |
| 3360 | * ok to wait for this request to complete. |
| 3361 | */ |
Vivek Goyal | 82bbbf2 | 2009-12-10 19:25:41 +0100 | [diff] [blame] | 3362 | if (cfqq->cfqg->nr_cfqq == 1 && RB_EMPTY_ROOT(&cfqq->sort_list) |
| 3363 | && cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) { |
| 3364 | cfqq = NULL; |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 3365 | goto keep_queue; |
Vivek Goyal | 82bbbf2 | 2009-12-10 19:25:41 +0100 | [diff] [blame] | 3366 | } else |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3367 | goto check_group_idle; |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 3368 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3369 | |
| 3370 | /* |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3371 | * The active queue has requests and isn't expired, allow it to |
| 3372 | * dispatch. |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3373 | */ |
Jens Axboe | dd67d05 | 2006-06-21 09:36:18 +0200 | [diff] [blame] | 3374 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3375 | goto keep_queue; |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3376 | |
| 3377 | /* |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3378 | * If another queue has a request waiting within our mean seek |
| 3379 | * distance, let it run. The expire code will check for close |
| 3380 | * cooperators and put the close queue at the front of the service |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3381 | * tree. If possible, merge the expiring queue with the new cfqq. |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3382 | */ |
Jeff Moyer | b3b6d04 | 2009-10-23 17:14:51 -0400 | [diff] [blame] | 3383 | new_cfqq = cfq_close_cooperator(cfqd, cfqq); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3384 | if (new_cfqq) { |
| 3385 | if (!cfqq->new_cfqq) |
| 3386 | cfq_setup_merge(cfqq, new_cfqq); |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3387 | goto expire; |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3388 | } |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3389 | |
| 3390 | /* |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3391 | * No requests pending. If the active queue still has requests in |
| 3392 | * flight or is idling for a new request, allow either of these |
| 3393 | * conditions to happen (or time out) before selecting a new queue. |
| 3394 | */ |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 3395 | if (hrtimer_active(&cfqd->idle_slice_timer)) { |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3396 | cfqq = NULL; |
| 3397 | goto keep_queue; |
| 3398 | } |
| 3399 | |
Shaohua Li | 8e1ac66 | 2010-11-08 15:01:04 +0100 | [diff] [blame] | 3400 | /* |
| 3401 | * This is a deep seek queue, but the device is much faster than |
| 3402 | * the queue can deliver, don't idle |
| 3403 | **/ |
| 3404 | if (CFQQ_SEEKY(cfqq) && cfq_cfqq_idle_window(cfqq) && |
| 3405 | (cfq_cfqq_slice_new(cfqq) || |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3406 | (cfqq->slice_end - now > now - cfqq->slice_start))) { |
Shaohua Li | 8e1ac66 | 2010-11-08 15:01:04 +0100 | [diff] [blame] | 3407 | cfq_clear_cfqq_deep(cfqq); |
| 3408 | cfq_clear_cfqq_idle_window(cfqq); |
| 3409 | } |
| 3410 | |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 3411 | if (cfqq->dispatched && cfq_should_idle(cfqd, cfqq)) { |
| 3412 | cfqq = NULL; |
| 3413 | goto keep_queue; |
| 3414 | } |
| 3415 | |
| 3416 | /* |
| 3417 | * If group idle is enabled and there are requests dispatched from |
| 3418 | * this group, wait for requests to complete. |
| 3419 | */ |
| 3420 | check_group_idle: |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 3421 | if (get_group_idle(cfqd) && cfqq->cfqg->nr_cfqq == 1 && |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 3422 | cfqq->cfqg->dispatched && |
| 3423 | !cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) { |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3424 | cfqq = NULL; |
| 3425 | goto keep_queue; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3426 | } |
| 3427 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3428 | expire: |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 3429 | cfq_slice_expired(cfqd, 0); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3430 | new_queue: |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3431 | /* |
| 3432 | * Current queue expired. Check if we have to switch to a new |
| 3433 | * service tree |
| 3434 | */ |
| 3435 | if (!new_cfqq) |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3436 | cfq_choose_cfqg(cfqd); |
Corrado Zoccolo | 718eee0 | 2009-10-26 22:45:29 +0100 | [diff] [blame] | 3437 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 3438 | cfqq = cfq_set_active_queue(cfqd, new_cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3439 | keep_queue: |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3440 | return cfqq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3441 | } |
| 3442 | |
Jens Axboe | febffd6 | 2008-01-28 13:19:43 +0100 | [diff] [blame] | 3443 | static int __cfq_forced_dispatch_cfqq(struct cfq_queue *cfqq) |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 3444 | { |
| 3445 | int dispatched = 0; |
| 3446 | |
| 3447 | while (cfqq->next_rq) { |
| 3448 | cfq_dispatch_insert(cfqq->cfqd->queue, cfqq->next_rq); |
| 3449 | dispatched++; |
| 3450 | } |
| 3451 | |
| 3452 | BUG_ON(!list_empty(&cfqq->fifo)); |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 3453 | |
| 3454 | /* 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] | 3455 | __cfq_slice_expired(cfqq->cfqd, cfqq, 0); |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 3456 | return dispatched; |
| 3457 | } |
| 3458 | |
Jens Axboe | 498d3aa2 | 2007-04-26 12:54:48 +0200 | [diff] [blame] | 3459 | /* |
| 3460 | * Drain our current requests. Used for barriers and when switching |
| 3461 | * io schedulers on-the-fly. |
| 3462 | */ |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 3463 | static int cfq_forced_dispatch(struct cfq_data *cfqd) |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3464 | { |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 3465 | struct cfq_queue *cfqq; |
Jens Axboe | d9e7620 | 2007-04-20 14:27:50 +0200 | [diff] [blame] | 3466 | int dispatched = 0; |
Vivek Goyal | cdb16e8 | 2009-12-03 12:59:38 -0500 | [diff] [blame] | 3467 | |
Divyesh Shah | 3440c49 | 2010-04-09 09:29:57 +0200 | [diff] [blame] | 3468 | /* Expire the timeslice of the current active queue first */ |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 3469 | cfq_slice_expired(cfqd, 0); |
Divyesh Shah | 3440c49 | 2010-04-09 09:29:57 +0200 | [diff] [blame] | 3470 | while ((cfqq = cfq_get_next_queue_forced(cfqd)) != NULL) { |
| 3471 | __cfq_set_active_queue(cfqd, cfqq); |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 3472 | dispatched += __cfq_forced_dispatch_cfqq(cfqq); |
Divyesh Shah | 3440c49 | 2010-04-09 09:29:57 +0200 | [diff] [blame] | 3473 | } |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3474 | |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3475 | BUG_ON(cfqd->busy_queues); |
| 3476 | |
Jeff Moyer | 6923715 | 2009-06-12 15:29:30 +0200 | [diff] [blame] | 3477 | cfq_log(cfqd, "forced_dispatch=%d", dispatched); |
Tejun Heo | 1b5ed5e1 | 2005-11-10 08:49:19 +0100 | [diff] [blame] | 3478 | return dispatched; |
| 3479 | } |
| 3480 | |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3481 | static inline bool cfq_slice_used_soon(struct cfq_data *cfqd, |
| 3482 | struct cfq_queue *cfqq) |
| 3483 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3484 | u64 now = ktime_get_ns(); |
| 3485 | |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3486 | /* the queue hasn't finished any request, can't estimate */ |
| 3487 | if (cfq_cfqq_slice_new(cfqq)) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 3488 | return true; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3489 | if (now + cfqd->cfq_slice_idle * cfqq->dispatched > cfqq->slice_end) |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 3490 | return true; |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3491 | |
Shaohua Li | c1e4475 | 2010-11-08 15:01:02 +0100 | [diff] [blame] | 3492 | return false; |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3493 | } |
| 3494 | |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3495 | 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] | 3496 | { |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3497 | unsigned int max_dispatch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3498 | |
Glauber Costa | 3932a86 | 2016-09-22 20:59:59 -0400 | [diff] [blame] | 3499 | if (cfq_cfqq_must_dispatch(cfqq)) |
| 3500 | return true; |
| 3501 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3502 | /* |
Jens Axboe | 5ad531d | 2009-07-03 12:57:48 +0200 | [diff] [blame] | 3503 | * Drain async requests before we start sync IO |
| 3504 | */ |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 3505 | 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] | 3506 | return false; |
Jens Axboe | 5ad531d | 2009-07-03 12:57:48 +0200 | [diff] [blame] | 3507 | |
| 3508 | /* |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3509 | * If this is an async queue and we have sync IO in flight, let it wait |
| 3510 | */ |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 3511 | if (cfqd->rq_in_flight[BLK_RW_SYNC] && !cfq_cfqq_sync(cfqq)) |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3512 | return false; |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3513 | |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3514 | max_dispatch = max_t(unsigned int, cfqd->cfq_quantum / 2, 1); |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3515 | if (cfq_class_idle(cfqq)) |
| 3516 | max_dispatch = 1; |
| 3517 | |
| 3518 | /* |
| 3519 | * Does this cfqq already have too much IO in flight? |
| 3520 | */ |
| 3521 | if (cfqq->dispatched >= max_dispatch) { |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3522 | bool promote_sync = false; |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3523 | /* |
| 3524 | * idle queue must always only have a single IO in flight |
| 3525 | */ |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 3526 | if (cfq_class_idle(cfqq)) |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3527 | return false; |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 3528 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3529 | /* |
Li, Shaohua | c4ade94 | 2011-03-23 08:30:34 +0100 | [diff] [blame] | 3530 | * If there is only one sync queue |
| 3531 | * we can ignore async queue here and give the sync |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3532 | * queue no dispatch limit. The reason is a sync queue can |
| 3533 | * preempt async queue, limiting the sync queue doesn't make |
| 3534 | * sense. This is useful for aiostress test. |
| 3535 | */ |
Li, Shaohua | c4ade94 | 2011-03-23 08:30:34 +0100 | [diff] [blame] | 3536 | if (cfq_cfqq_sync(cfqq) && cfqd->busy_sync_queues == 1) |
| 3537 | promote_sync = true; |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3538 | |
| 3539 | /* |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3540 | * We have other queues, don't allow more IO from this one |
| 3541 | */ |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3542 | if (cfqd->busy_queues > 1 && cfq_slice_used_soon(cfqd, cfqq) && |
| 3543 | !promote_sync) |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3544 | return false; |
Jens Axboe | 9ede209 | 2007-01-19 12:11:44 +1100 | [diff] [blame] | 3545 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3546 | /* |
Shaohua Li | 474b18c | 2009-12-03 12:58:05 +0100 | [diff] [blame] | 3547 | * Sole queue user, no limit |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 3548 | */ |
Shaohua Li | ef8a41d | 2011-03-07 09:26:29 +0100 | [diff] [blame] | 3549 | if (cfqd->busy_queues == 1 || promote_sync) |
Shaohua Li | abc3c74 | 2010-03-01 09:20:54 +0100 | [diff] [blame] | 3550 | max_dispatch = -1; |
| 3551 | else |
| 3552 | /* |
| 3553 | * Normally we start throttling cfqq when cfq_quantum/2 |
| 3554 | * requests have been dispatched. But we can drive |
| 3555 | * deeper queue depths at the beginning of slice |
| 3556 | * subjected to upper limit of cfq_quantum. |
| 3557 | * */ |
| 3558 | max_dispatch = cfqd->cfq_quantum; |
Jens Axboe | 8e29675 | 2009-10-03 16:26:03 +0200 | [diff] [blame] | 3559 | } |
| 3560 | |
| 3561 | /* |
| 3562 | * Async queues must wait a bit before being allowed dispatch. |
| 3563 | * We also ramp up the dispatch depth gradually for async IO, |
| 3564 | * based on the last sync IO we serviced |
| 3565 | */ |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 3566 | if (!cfq_cfqq_sync(cfqq) && cfqd->cfq_latency) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3567 | u64 last_sync = ktime_get_ns() - cfqd->last_delayed_sync; |
Jens Axboe | 8e29675 | 2009-10-03 16:26:03 +0200 | [diff] [blame] | 3568 | unsigned int depth; |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 3569 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3570 | depth = div64_u64(last_sync, cfqd->cfq_slice[1]); |
Jens Axboe | e00c54c | 2009-10-04 20:36:19 +0200 | [diff] [blame] | 3571 | if (!depth && !cfqq->dispatched) |
| 3572 | depth = 1; |
Jens Axboe | 8e29675 | 2009-10-03 16:26:03 +0200 | [diff] [blame] | 3573 | if (depth < max_dispatch) |
| 3574 | max_dispatch = depth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3575 | } |
| 3576 | |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3577 | /* |
| 3578 | * If we're below the current max, allow a dispatch |
| 3579 | */ |
| 3580 | return cfqq->dispatched < max_dispatch; |
| 3581 | } |
| 3582 | |
| 3583 | /* |
| 3584 | * Dispatch a request from cfqq, moving them to the request queue |
| 3585 | * dispatch list. |
| 3586 | */ |
| 3587 | static bool cfq_dispatch_request(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 3588 | { |
| 3589 | struct request *rq; |
| 3590 | |
| 3591 | BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list)); |
| 3592 | |
Glauber Costa | 3932a86 | 2016-09-22 20:59:59 -0400 | [diff] [blame] | 3593 | rq = cfq_check_fifo(cfqq); |
| 3594 | if (rq) |
| 3595 | cfq_mark_cfqq_must_dispatch(cfqq); |
| 3596 | |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3597 | if (!cfq_may_dispatch(cfqd, cfqq)) |
| 3598 | return false; |
| 3599 | |
| 3600 | /* |
| 3601 | * follow expired path, else get first next available |
| 3602 | */ |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3603 | if (!rq) |
| 3604 | rq = cfqq->next_rq; |
Glauber Costa | 3932a86 | 2016-09-22 20:59:59 -0400 | [diff] [blame] | 3605 | else |
| 3606 | cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq); |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3607 | |
| 3608 | /* |
| 3609 | * insert request into driver dispatch list |
| 3610 | */ |
| 3611 | cfq_dispatch_insert(cfqd->queue, rq); |
| 3612 | |
| 3613 | if (!cfqd->active_cic) { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3614 | struct cfq_io_cq *cic = RQ_CIC(rq); |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3615 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3616 | atomic_long_inc(&cic->icq.ioc->refcount); |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3617 | cfqd->active_cic = cic; |
| 3618 | } |
| 3619 | |
| 3620 | return true; |
| 3621 | } |
| 3622 | |
| 3623 | /* |
| 3624 | * Find the cfqq that we need to service and move a request from that to the |
| 3625 | * dispatch list |
| 3626 | */ |
| 3627 | static int cfq_dispatch_requests(struct request_queue *q, int force) |
| 3628 | { |
| 3629 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 3630 | struct cfq_queue *cfqq; |
| 3631 | |
| 3632 | if (!cfqd->busy_queues) |
| 3633 | return 0; |
| 3634 | |
| 3635 | if (unlikely(force)) |
| 3636 | return cfq_forced_dispatch(cfqd); |
| 3637 | |
| 3638 | cfqq = cfq_select_queue(cfqd); |
| 3639 | if (!cfqq) |
Jens Axboe | 8e29675 | 2009-10-03 16:26:03 +0200 | [diff] [blame] | 3640 | return 0; |
| 3641 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3642 | /* |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3643 | * Dispatch a request from this cfqq, if it is allowed |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3644 | */ |
Jens Axboe | 0b182d6 | 2009-10-06 20:49:37 +0200 | [diff] [blame] | 3645 | if (!cfq_dispatch_request(cfqd, cfqq)) |
| 3646 | return 0; |
| 3647 | |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3648 | cfqq->slice_dispatch++; |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 3649 | cfq_clear_cfqq_must_dispatch(cfqq); |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3650 | |
| 3651 | /* |
| 3652 | * expire an async queue immediately if it has used up its slice. idle |
| 3653 | * queue always expire after 1 dispatch round. |
| 3654 | */ |
| 3655 | if (cfqd->busy_queues > 1 && ((!cfq_cfqq_sync(cfqq) && |
| 3656 | cfqq->slice_dispatch >= cfq_prio_to_maxrq(cfqd, cfqq)) || |
| 3657 | cfq_class_idle(cfqq))) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3658 | cfqq->slice_end = ktime_get_ns() + 1; |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 3659 | cfq_slice_expired(cfqd, 0); |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3660 | } |
| 3661 | |
Shan Wei | b217a90 | 2009-09-01 10:06:42 +0200 | [diff] [blame] | 3662 | cfq_log_cfqq(cfqd, cfqq, "dispatched a request"); |
Jens Axboe | 2f5cb73 | 2009-04-07 08:51:19 +0200 | [diff] [blame] | 3663 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3664 | } |
| 3665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3666 | /* |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 3667 | * task holds one reference to the queue, dropped when task exits. each rq |
| 3668 | * 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] | 3669 | * |
Vivek Goyal | b1c3576 | 2009-12-03 12:59:47 -0500 | [diff] [blame] | 3670 | * 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] | 3671 | * queue lock must be held here. |
| 3672 | */ |
| 3673 | static void cfq_put_queue(struct cfq_queue *cfqq) |
| 3674 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3675 | struct cfq_data *cfqd = cfqq->cfqd; |
Justin TerAvest | 0bbfeb8 | 2011-03-01 15:05:08 -0500 | [diff] [blame] | 3676 | struct cfq_group *cfqg; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3677 | |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3678 | BUG_ON(cfqq->ref <= 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3679 | |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3680 | cfqq->ref--; |
| 3681 | if (cfqq->ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3682 | return; |
| 3683 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 3684 | cfq_log_cfqq(cfqd, cfqq, "put_queue"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3685 | BUG_ON(rb_first(&cfqq->sort_list)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3686 | BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]); |
Vivek Goyal | b1c3576 | 2009-12-03 12:59:47 -0500 | [diff] [blame] | 3687 | cfqg = cfqq->cfqg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3688 | |
Jens Axboe | 28f95cbc | 2007-01-19 12:09:53 +1100 | [diff] [blame] | 3689 | if (unlikely(cfqd->active_queue == cfqq)) { |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 3690 | __cfq_slice_expired(cfqd, cfqq, 0); |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 3691 | cfq_schedule_dispatch(cfqd); |
Jens Axboe | 28f95cbc | 2007-01-19 12:09:53 +1100 | [diff] [blame] | 3692 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3693 | |
Vivek Goyal | f04a642 | 2009-12-03 12:59:40 -0500 | [diff] [blame] | 3694 | BUG_ON(cfq_cfqq_on_rr(cfqq)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3695 | kmem_cache_free(cfq_pool, cfqq); |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 3696 | cfqg_put(cfqg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3697 | } |
| 3698 | |
Shaohua Li | d02a2c0 | 2010-05-25 10:16:53 +0200 | [diff] [blame] | 3699 | static void cfq_put_cooperator(struct cfq_queue *cfqq) |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3700 | { |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3701 | struct cfq_queue *__cfqq, *next; |
| 3702 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3703 | /* |
| 3704 | * If this queue was scheduled to merge with another queue, be |
| 3705 | * sure to drop the reference taken on that queue (and others in |
| 3706 | * the merge chain). See cfq_setup_merge and cfq_merge_cfqqs. |
| 3707 | */ |
| 3708 | __cfqq = cfqq->new_cfqq; |
| 3709 | while (__cfqq) { |
| 3710 | if (__cfqq == cfqq) { |
| 3711 | WARN(1, "cfqq->new_cfqq loop detected\n"); |
| 3712 | break; |
| 3713 | } |
| 3714 | next = __cfqq->new_cfqq; |
| 3715 | cfq_put_queue(__cfqq); |
| 3716 | __cfqq = next; |
| 3717 | } |
Shaohua Li | d02a2c0 | 2010-05-25 10:16:53 +0200 | [diff] [blame] | 3718 | } |
| 3719 | |
| 3720 | static void cfq_exit_cfqq(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 3721 | { |
| 3722 | if (unlikely(cfqq == cfqd->active_queue)) { |
| 3723 | __cfq_slice_expired(cfqd, cfqq, 0); |
| 3724 | cfq_schedule_dispatch(cfqd); |
| 3725 | } |
| 3726 | |
| 3727 | cfq_put_cooperator(cfqq); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 3728 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3729 | cfq_put_queue(cfqq); |
| 3730 | } |
| 3731 | |
Tejun Heo | 9b84cac | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 3732 | static void cfq_init_icq(struct io_cq *icq) |
| 3733 | { |
| 3734 | struct cfq_io_cq *cic = icq_to_cic(icq); |
| 3735 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3736 | cic->ttime.last_end_request = ktime_get_ns(); |
Tejun Heo | 9b84cac | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 3737 | } |
| 3738 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3739 | static void cfq_exit_icq(struct io_cq *icq) |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3740 | { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3741 | struct cfq_io_cq *cic = icq_to_cic(icq); |
Tejun Heo | 283287a | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 3742 | struct cfq_data *cfqd = cic_to_cfqd(cic); |
Fabio Checconi | 4faa3c8 | 2008-04-10 08:28:01 +0200 | [diff] [blame] | 3743 | |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3744 | if (cic_to_cfqq(cic, false)) { |
| 3745 | cfq_exit_cfqq(cfqd, cic_to_cfqq(cic, false)); |
| 3746 | cic_set_cfqq(cic, NULL, false); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3747 | } |
| 3748 | |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3749 | if (cic_to_cfqq(cic, true)) { |
| 3750 | cfq_exit_cfqq(cfqd, cic_to_cfqq(cic, true)); |
| 3751 | cic_set_cfqq(cic, NULL, true); |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3752 | } |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 3753 | } |
| 3754 | |
Tejun Heo | abede6d | 2012-03-19 15:10:57 -0700 | [diff] [blame] | 3755 | 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] | 3756 | { |
| 3757 | struct task_struct *tsk = current; |
| 3758 | int ioprio_class; |
| 3759 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3760 | if (!cfq_cfqq_prio_changed(cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3761 | return; |
| 3762 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3763 | ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3764 | switch (ioprio_class) { |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3765 | default: |
| 3766 | printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class); |
| 3767 | case IOPRIO_CLASS_NONE: |
| 3768 | /* |
Jens Axboe | 6d63c27 | 2008-05-07 09:51:23 +0200 | [diff] [blame] | 3769 | * no prio set, inherit CPU scheduling settings |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3770 | */ |
| 3771 | cfqq->ioprio = task_nice_ioprio(tsk); |
Jens Axboe | 6d63c27 | 2008-05-07 09:51:23 +0200 | [diff] [blame] | 3772 | cfqq->ioprio_class = task_nice_ioclass(tsk); |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3773 | break; |
| 3774 | case IOPRIO_CLASS_RT: |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3775 | cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio); |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3776 | cfqq->ioprio_class = IOPRIO_CLASS_RT; |
| 3777 | break; |
| 3778 | case IOPRIO_CLASS_BE: |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3779 | cfqq->ioprio = IOPRIO_PRIO_DATA(cic->ioprio); |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3780 | cfqq->ioprio_class = IOPRIO_CLASS_BE; |
| 3781 | break; |
| 3782 | case IOPRIO_CLASS_IDLE: |
| 3783 | cfqq->ioprio_class = IOPRIO_CLASS_IDLE; |
| 3784 | cfqq->ioprio = 7; |
| 3785 | cfq_clear_cfqq_idle_window(cfqq); |
| 3786 | break; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3787 | } |
| 3788 | |
| 3789 | /* |
| 3790 | * keep track of original prio settings in case we have to temporarily |
| 3791 | * elevate the priority of this queue |
| 3792 | */ |
| 3793 | cfqq->org_ioprio = cfqq->ioprio; |
Jens Axboe | b8269db | 2016-06-09 15:47:29 -0600 | [diff] [blame] | 3794 | cfqq->org_ioprio_class = cfqq->ioprio_class; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 3795 | cfq_clear_cfqq_prio_changed(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3796 | } |
| 3797 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3798 | 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] | 3799 | { |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3800 | int ioprio = cic->icq.ioc->ioprio; |
Konstantin Khlebnikov | bca4b91 | 2010-05-20 23:21:34 +0400 | [diff] [blame] | 3801 | struct cfq_data *cfqd = cic_to_cfqd(cic); |
Al Viro | 478a82b | 2006-03-18 13:25:24 -0500 | [diff] [blame] | 3802 | struct cfq_queue *cfqq; |
Jens Axboe | 35e6077 | 2006-06-14 09:10:45 +0200 | [diff] [blame] | 3803 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3804 | /* |
| 3805 | * Check whether ioprio has changed. The condition may trigger |
| 3806 | * spuriously on a newly created cic but there's no harm. |
| 3807 | */ |
| 3808 | if (unlikely(!cfqd) || likely(cic->ioprio == ioprio)) |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3809 | return; |
| 3810 | |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3811 | cfqq = cic_to_cfqq(cic, false); |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3812 | if (cfqq) { |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3813 | cfq_put_queue(cfqq); |
Tejun Heo | 2da8de0 | 2015-08-18 14:55:02 -0700 | [diff] [blame] | 3814 | cfqq = cfq_get_queue(cfqd, BLK_RW_ASYNC, cic, bio); |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3815 | cic_set_cfqq(cic, cfqq, false); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3816 | } |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3817 | |
Tejun Heo | 563180a | 2015-08-18 14:55:00 -0700 | [diff] [blame] | 3818 | cfqq = cic_to_cfqq(cic, true); |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 3819 | if (cfqq) |
| 3820 | cfq_mark_cfqq_prio_changed(cfqq); |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3821 | |
| 3822 | cic->ioprio = ioprio; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3823 | } |
| 3824 | |
Jens Axboe | d5036d7 | 2009-06-26 10:44:34 +0200 | [diff] [blame] | 3825 | 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] | 3826 | pid_t pid, bool is_sync) |
Jens Axboe | d5036d7 | 2009-06-26 10:44:34 +0200 | [diff] [blame] | 3827 | { |
| 3828 | RB_CLEAR_NODE(&cfqq->rb_node); |
| 3829 | RB_CLEAR_NODE(&cfqq->p_node); |
| 3830 | INIT_LIST_HEAD(&cfqq->fifo); |
| 3831 | |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3832 | cfqq->ref = 0; |
Jens Axboe | d5036d7 | 2009-06-26 10:44:34 +0200 | [diff] [blame] | 3833 | cfqq->cfqd = cfqd; |
| 3834 | |
| 3835 | cfq_mark_cfqq_prio_changed(cfqq); |
| 3836 | |
| 3837 | if (is_sync) { |
| 3838 | if (!cfq_class_idle(cfqq)) |
| 3839 | cfq_mark_cfqq_idle_window(cfqq); |
| 3840 | cfq_mark_cfqq_sync(cfqq); |
| 3841 | } |
| 3842 | cfqq->pid = pid; |
| 3843 | } |
| 3844 | |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3845 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3846 | 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] | 3847 | { |
Konstantin Khlebnikov | bca4b91 | 2010-05-20 23:21:34 +0400 | [diff] [blame] | 3848 | struct cfq_data *cfqd = cic_to_cfqd(cic); |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3849 | struct cfq_queue *cfqq; |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 3850 | uint64_t serial_nr; |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3851 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3852 | rcu_read_lock(); |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 3853 | serial_nr = bio_blkcg(bio)->css.serial_nr; |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3854 | rcu_read_unlock(); |
| 3855 | |
| 3856 | /* |
| 3857 | * Check whether blkcg has changed. The condition may trigger |
| 3858 | * spuriously on a newly created cic but there's no harm. |
| 3859 | */ |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 3860 | if (unlikely(!cfqd) || likely(cic->blkcg_serial_nr == serial_nr)) |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3861 | return; |
| 3862 | |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3863 | /* |
| 3864 | * Drop reference to queues. New queues will be assigned in new |
| 3865 | * group upon arrival of fresh requests. |
| 3866 | */ |
| 3867 | cfqq = cic_to_cfqq(cic, false); |
| 3868 | if (cfqq) { |
| 3869 | cfq_log_cfqq(cfqd, cfqq, "changed cgroup"); |
| 3870 | cic_set_cfqq(cic, NULL, false); |
| 3871 | cfq_put_queue(cfqq); |
| 3872 | } |
| 3873 | |
| 3874 | cfqq = cic_to_cfqq(cic, true); |
| 3875 | if (cfqq) { |
| 3876 | cfq_log_cfqq(cfqd, cfqq, "changed cgroup"); |
| 3877 | cic_set_cfqq(cic, NULL, true); |
| 3878 | cfq_put_queue(cfqq); |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3879 | } |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3880 | |
Tejun Heo | f4da807 | 2014-09-08 08:15:20 +0900 | [diff] [blame] | 3881 | cic->blkcg_serial_nr = serial_nr; |
Vivek Goyal | 24610333 | 2009-12-03 12:59:51 -0500 | [diff] [blame] | 3882 | } |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3883 | #else |
| 3884 | 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] | 3885 | #endif /* CONFIG_CFQ_GROUP_IOSCHED */ |
| 3886 | |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3887 | static struct cfq_queue ** |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3888 | 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] | 3889 | { |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 3890 | switch (ioprio_class) { |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3891 | case IOPRIO_CLASS_RT: |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3892 | return &cfqg->async_cfqq[0][ioprio]; |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 3893 | case IOPRIO_CLASS_NONE: |
| 3894 | ioprio = IOPRIO_NORM; |
| 3895 | /* fall through */ |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3896 | case IOPRIO_CLASS_BE: |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3897 | return &cfqg->async_cfqq[1][ioprio]; |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3898 | case IOPRIO_CLASS_IDLE: |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3899 | return &cfqg->async_idle_cfqq; |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3900 | default: |
| 3901 | BUG(); |
| 3902 | } |
| 3903 | } |
| 3904 | |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3905 | static struct cfq_queue * |
Tejun Heo | abede6d | 2012-03-19 15:10:57 -0700 | [diff] [blame] | 3906 | 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] | 3907 | struct bio *bio) |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3908 | { |
Jeff Moyer | c6ce194 | 2015-01-12 15:21:01 -0500 | [diff] [blame] | 3909 | int ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio); |
| 3910 | int ioprio = IOPRIO_PRIO_DATA(cic->ioprio); |
Tejun Heo | d4aad7f | 2015-08-18 14:55:04 -0700 | [diff] [blame] | 3911 | struct cfq_queue **async_cfqq = NULL; |
Tejun Heo | 4ebc1c6 | 2015-08-18 14:54:57 -0700 | [diff] [blame] | 3912 | struct cfq_queue *cfqq; |
Tejun Heo | 322731e | 2015-08-18 14:55:03 -0700 | [diff] [blame] | 3913 | struct cfq_group *cfqg; |
| 3914 | |
| 3915 | rcu_read_lock(); |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 3916 | cfqg = cfq_lookup_cfqg(cfqd, bio_blkcg(bio)); |
Tejun Heo | 322731e | 2015-08-18 14:55:03 -0700 | [diff] [blame] | 3917 | if (!cfqg) { |
| 3918 | cfqq = &cfqd->oom_cfqq; |
| 3919 | goto out; |
| 3920 | } |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3921 | |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3922 | if (!is_sync) { |
Jeff Moyer | c6ce194 | 2015-01-12 15:21:01 -0500 | [diff] [blame] | 3923 | if (!ioprio_valid(cic->ioprio)) { |
| 3924 | struct task_struct *tsk = current; |
| 3925 | ioprio = task_nice_ioprio(tsk); |
| 3926 | ioprio_class = task_nice_ioclass(tsk); |
| 3927 | } |
Tejun Heo | 60a8370 | 2015-08-18 14:55:05 -0700 | [diff] [blame] | 3928 | async_cfqq = cfq_async_queue_prio(cfqg, ioprio_class, ioprio); |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3929 | cfqq = *async_cfqq; |
Tejun Heo | 4ebc1c6 | 2015-08-18 14:54:57 -0700 | [diff] [blame] | 3930 | if (cfqq) |
| 3931 | goto out; |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3932 | } |
| 3933 | |
Tejun Heo | 365b3e6 | 2016-11-21 18:03:32 -0500 | [diff] [blame] | 3934 | cfqq = kmem_cache_alloc_node(cfq_pool, |
| 3935 | GFP_NOWAIT | __GFP_ZERO | __GFP_NOWARN, |
Tejun Heo | d4aad7f | 2015-08-18 14:55:04 -0700 | [diff] [blame] | 3936 | cfqd->queue->node); |
| 3937 | if (!cfqq) { |
| 3938 | cfqq = &cfqd->oom_cfqq; |
| 3939 | goto out; |
| 3940 | } |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3941 | |
Tejun Heo | d4aad7f | 2015-08-18 14:55:04 -0700 | [diff] [blame] | 3942 | cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync); |
| 3943 | cfq_init_prio_data(cfqq, cic); |
| 3944 | cfq_link_cfqq_cfqg(cfqq, cfqg); |
| 3945 | cfq_log_cfqq(cfqd, cfqq, "alloced"); |
| 3946 | |
| 3947 | if (async_cfqq) { |
| 3948 | /* a new async queue is created, pin and remember */ |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3949 | cfqq->ref++; |
Vasily Tarasov | c2dea2d | 2007-07-20 10:06:38 +0200 | [diff] [blame] | 3950 | *async_cfqq = cfqq; |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3951 | } |
Tejun Heo | 4ebc1c6 | 2015-08-18 14:54:57 -0700 | [diff] [blame] | 3952 | out: |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 3953 | cfqq->ref++; |
Tejun Heo | 322731e | 2015-08-18 14:55:03 -0700 | [diff] [blame] | 3954 | rcu_read_unlock(); |
Jens Axboe | 15c31be | 2007-07-10 13:43:25 +0200 | [diff] [blame] | 3955 | return cfqq; |
| 3956 | } |
| 3957 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3958 | static void |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3959 | __cfq_update_io_thinktime(struct cfq_ttime *ttime, u64 slice_idle) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3960 | { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3961 | u64 elapsed = ktime_get_ns() - ttime->last_end_request; |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3962 | elapsed = min(elapsed, 2UL * slice_idle); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3963 | |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3964 | ttime->ttime_samples = (7*ttime->ttime_samples + 256) / 8; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 3965 | ttime->ttime_total = div_u64(7*ttime->ttime_total + 256*elapsed, 8); |
| 3966 | ttime->ttime_mean = div64_ul(ttime->ttime_total + 128, |
| 3967 | ttime->ttime_samples); |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3968 | } |
| 3969 | |
| 3970 | static void |
| 3971 | cfq_update_io_thinktime(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 3972 | struct cfq_io_cq *cic) |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3973 | { |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 3974 | if (cfq_cfqq_sync(cfqq)) { |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 3975 | __cfq_update_io_thinktime(&cic->ttime, cfqd->cfq_slice_idle); |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 3976 | __cfq_update_io_thinktime(&cfqq->service_tree->ttime, |
| 3977 | cfqd->cfq_slice_idle); |
| 3978 | } |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 3979 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 3980 | __cfq_update_io_thinktime(&cfqq->cfqg->ttime, get_group_idle(cfqd)); |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 3981 | #endif |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3982 | } |
| 3983 | |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 3984 | static void |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 3985 | cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 3986 | struct request *rq) |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 3987 | { |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 3988 | sector_t sdist = 0; |
Corrado Zoccolo | 41647e7 | 2010-02-27 19:45:40 +0100 | [diff] [blame] | 3989 | sector_t n_sec = blk_rq_sectors(rq); |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 3990 | if (cfqq->last_request_pos) { |
| 3991 | if (cfqq->last_request_pos < blk_rq_pos(rq)) |
| 3992 | sdist = blk_rq_pos(rq) - cfqq->last_request_pos; |
| 3993 | else |
| 3994 | sdist = cfqq->last_request_pos - blk_rq_pos(rq); |
| 3995 | } |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 3996 | |
Corrado Zoccolo | 3dde36d | 2010-02-27 19:45:39 +0100 | [diff] [blame] | 3997 | cfqq->seek_history <<= 1; |
Corrado Zoccolo | 41647e7 | 2010-02-27 19:45:40 +0100 | [diff] [blame] | 3998 | if (blk_queue_nonrot(cfqd->queue)) |
| 3999 | cfqq->seek_history |= (n_sec < CFQQ_SECT_THR_NONROT); |
| 4000 | else |
| 4001 | cfqq->seek_history |= (sdist > CFQQ_SEEK_THR); |
Jens Axboe | 206dc69 | 2006-03-28 13:03:44 +0200 | [diff] [blame] | 4002 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4003 | |
| 4004 | /* |
| 4005 | * Disable idle window if the process thinks too long or seeks so much that |
| 4006 | * it doesn't matter |
| 4007 | */ |
| 4008 | static void |
| 4009 | cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4010 | struct cfq_io_cq *cic) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4011 | { |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 4012 | int old_idle, enable_idle; |
Jens Axboe | 1be92f2 | 2007-04-19 14:32:26 +0200 | [diff] [blame] | 4013 | |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 4014 | /* |
| 4015 | * Don't idle for async or idle io prio class |
| 4016 | */ |
| 4017 | if (!cfq_cfqq_sync(cfqq) || cfq_class_idle(cfqq)) |
Jens Axboe | 1be92f2 | 2007-04-19 14:32:26 +0200 | [diff] [blame] | 4018 | return; |
| 4019 | |
Jens Axboe | c265a7f | 2008-06-26 13:49:33 +0200 | [diff] [blame] | 4020 | enable_idle = old_idle = cfq_cfqq_idle_window(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4021 | |
Corrado Zoccolo | 76280af | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 4022 | if (cfqq->queued[0] + cfqq->queued[1] >= 4) |
| 4023 | cfq_mark_cfqq_deep(cfqq); |
| 4024 | |
Corrado Zoccolo | 749ef9f | 2010-09-20 15:24:50 +0200 | [diff] [blame] | 4025 | if (cfqq->next_rq && (cfqq->next_rq->cmd_flags & REQ_NOIDLE)) |
| 4026 | enable_idle = 0; |
Tejun Heo | f6e8d01 | 2012-03-05 13:15:26 -0800 | [diff] [blame] | 4027 | else if (!atomic_read(&cic->icq.ioc->active_ref) || |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4028 | !cfqd->cfq_slice_idle || |
| 4029 | (!cfq_cfqq_deep(cfqq) && CFQQ_SEEKY(cfqq))) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4030 | enable_idle = 0; |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 4031 | else if (sample_valid(cic->ttime.ttime_samples)) { |
| 4032 | if (cic->ttime.ttime_mean > cfqd->cfq_slice_idle) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4033 | enable_idle = 0; |
| 4034 | else |
| 4035 | enable_idle = 1; |
| 4036 | } |
| 4037 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 4038 | if (old_idle != enable_idle) { |
| 4039 | cfq_log_cfqq(cfqd, cfqq, "idle=%d", enable_idle); |
| 4040 | if (enable_idle) |
| 4041 | cfq_mark_cfqq_idle_window(cfqq); |
| 4042 | else |
| 4043 | cfq_clear_cfqq_idle_window(cfqq); |
| 4044 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4045 | } |
| 4046 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4047 | /* |
| 4048 | * Check if new_cfqq should preempt the currently active queue. Return 0 for |
| 4049 | * no or if we aren't sure, a 1 will cause a preempt. |
| 4050 | */ |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4051 | static bool |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4052 | cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq, |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4053 | struct request *rq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4054 | { |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 4055 | struct cfq_queue *cfqq; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4056 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 4057 | cfqq = cfqd->active_queue; |
| 4058 | if (!cfqq) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4059 | return false; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4060 | |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 4061 | if (cfq_class_idle(new_cfqq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4062 | return false; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4063 | |
| 4064 | if (cfq_class_idle(cfqq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4065 | return true; |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4066 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4067 | /* |
Divyesh Shah | 875feb6 | 2010-01-06 18:58:20 -0800 | [diff] [blame] | 4068 | * Don't allow a non-RT request to preempt an ongoing RT cfqq timeslice. |
| 4069 | */ |
| 4070 | if (cfq_class_rt(cfqq) && !cfq_class_rt(new_cfqq)) |
| 4071 | return false; |
| 4072 | |
| 4073 | /* |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 4074 | * if the new request is sync, but the currently running queue is |
| 4075 | * not, let the sync request have priority. |
| 4076 | */ |
Glauber Costa | 3932a86 | 2016-09-22 20:59:59 -0400 | [diff] [blame] | 4077 | 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] | 4078 | return true; |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4079 | |
Jan Kara | 3984aa5 | 2016-01-12 16:24:19 +0100 | [diff] [blame] | 4080 | /* |
| 4081 | * Treat ancestors of current cgroup the same way as current cgroup. |
| 4082 | * For anybody else we disallow preemption to guarantee service |
| 4083 | * fairness among cgroups. |
| 4084 | */ |
| 4085 | if (!cfqg_is_descendant(cfqq->cfqg, new_cfqq->cfqg)) |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 4086 | return false; |
| 4087 | |
| 4088 | if (cfq_slice_used(cfqq)) |
| 4089 | return true; |
| 4090 | |
Jan Kara | 6c80731c | 2016-01-12 16:24:16 +0100 | [diff] [blame] | 4091 | /* |
| 4092 | * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice. |
| 4093 | */ |
| 4094 | if (cfq_class_rt(new_cfqq) && !cfq_class_rt(cfqq)) |
| 4095 | return true; |
| 4096 | |
| 4097 | WARN_ON_ONCE(cfqq->ioprio_class != new_cfqq->ioprio_class); |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 4098 | /* Allow preemption only if we are idling on sync-noidle tree */ |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 4099 | if (cfqd->serving_wl_type == SYNC_NOIDLE_WORKLOAD && |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 4100 | cfqq_type(new_cfqq) == SYNC_NOIDLE_WORKLOAD && |
Vivek Goyal | 8682e1f | 2009-12-03 12:59:50 -0500 | [diff] [blame] | 4101 | RB_EMPTY_ROOT(&cfqq->sort_list)) |
| 4102 | return true; |
| 4103 | |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 4104 | /* |
Jens Axboe | b53d1ed | 2011-08-19 08:34:48 +0200 | [diff] [blame] | 4105 | * So both queues are sync. Let the new request get disk time if |
| 4106 | * it's a metadata request and the current queue is doing regular IO. |
| 4107 | */ |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 4108 | if ((rq->cmd_flags & REQ_PRIO) && !cfqq->prio_pending) |
Jens Axboe | b53d1ed | 2011-08-19 08:34:48 +0200 | [diff] [blame] | 4109 | return true; |
| 4110 | |
Shaohua Li | d2d59e1 | 2010-11-08 15:01:03 +0100 | [diff] [blame] | 4111 | /* An idle queue should not be idle now for some reason */ |
| 4112 | if (RB_EMPTY_ROOT(&cfqq->sort_list) && !cfq_should_idle(cfqd, cfqq)) |
| 4113 | return true; |
| 4114 | |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4115 | if (!cfqd->active_cic || !cfq_cfqq_wait_request(cfqq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4116 | return false; |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4117 | |
| 4118 | /* |
| 4119 | * if this request is as-good as one we would expect from the |
| 4120 | * current cfqq, let it preempt |
| 4121 | */ |
Shaohua Li | e9ce335 | 2010-03-19 08:03:04 +0100 | [diff] [blame] | 4122 | if (cfq_rq_close(cfqd, cfqq, rq)) |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4123 | return true; |
Jens Axboe | 1e3335d | 2007-02-14 19:59:49 +0100 | [diff] [blame] | 4124 | |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4125 | return false; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4126 | } |
| 4127 | |
| 4128 | /* |
| 4129 | * cfqq preempts the active queue. if we allowed preempt with no slice left, |
| 4130 | * let it have half of its nominal slice. |
| 4131 | */ |
| 4132 | static void cfq_preempt_queue(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 4133 | { |
Shaohua Li | df0793a | 2012-01-19 09:20:09 +0100 | [diff] [blame] | 4134 | enum wl_type_t old_type = cfqq_type(cfqd->active_queue); |
| 4135 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 4136 | cfq_log_cfqq(cfqd, cfqq, "preempt"); |
Shaohua Li | df0793a | 2012-01-19 09:20:09 +0100 | [diff] [blame] | 4137 | cfq_slice_expired(cfqd, 1); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4138 | |
Jens Axboe | bf57225 | 2006-07-19 20:29:12 +0200 | [diff] [blame] | 4139 | /* |
Shaohua Li | f8ae6e3 | 2011-01-14 08:41:02 +0100 | [diff] [blame] | 4140 | * workload type is changed, don't save slice, otherwise preempt |
| 4141 | * doesn't happen |
| 4142 | */ |
Shaohua Li | df0793a | 2012-01-19 09:20:09 +0100 | [diff] [blame] | 4143 | if (old_type != cfqq_type(cfqq)) |
Vivek Goyal | 4d2ceea | 2012-10-03 16:56:57 -0400 | [diff] [blame] | 4144 | cfqq->cfqg->saved_wl_slice = 0; |
Shaohua Li | f8ae6e3 | 2011-01-14 08:41:02 +0100 | [diff] [blame] | 4145 | |
| 4146 | /* |
Jens Axboe | bf57225 | 2006-07-19 20:29:12 +0200 | [diff] [blame] | 4147 | * Put the new queue at the front of the of the current list, |
| 4148 | * so we know that it will be selected next. |
| 4149 | */ |
| 4150 | BUG_ON(!cfq_cfqq_on_rr(cfqq)); |
Jens Axboe | edd75ff | 2007-04-19 12:03:34 +0200 | [diff] [blame] | 4151 | |
| 4152 | cfq_service_tree_add(cfqd, cfqq, 1); |
Justin TerAvest | eda5e0c | 2011-03-22 21:26:49 +0100 | [diff] [blame] | 4153 | |
Justin TerAvest | 62a37f6 | 2011-03-23 08:25:44 +0100 | [diff] [blame] | 4154 | cfqq->slice_end = 0; |
| 4155 | cfq_mark_cfqq_slice_new(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4156 | } |
| 4157 | |
| 4158 | /* |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4159 | * 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] | 4160 | * something we should do about it |
| 4161 | */ |
| 4162 | static void |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4163 | cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq, |
| 4164 | struct request *rq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4165 | { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4166 | struct cfq_io_cq *cic = RQ_CIC(rq); |
Jens Axboe | 12e9fdd | 2006-06-01 10:09:56 +0200 | [diff] [blame] | 4167 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4168 | cfqd->rq_queued++; |
Christoph Hellwig | 65299a3 | 2011-08-23 14:50:29 +0200 | [diff] [blame] | 4169 | if (rq->cmd_flags & REQ_PRIO) |
| 4170 | cfqq->prio_pending++; |
Jens Axboe | 374f84a | 2006-07-23 01:42:19 +0200 | [diff] [blame] | 4171 | |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 4172 | cfq_update_io_thinktime(cfqd, cfqq, cic); |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 4173 | cfq_update_io_seektime(cfqd, cfqq, rq); |
Jens Axboe | 9c2c38a | 2005-08-24 14:57:54 +0200 | [diff] [blame] | 4174 | cfq_update_idle_window(cfqd, cfqq, cic); |
| 4175 | |
Jeff Moyer | b2c18e1 | 2009-10-23 17:14:49 -0400 | [diff] [blame] | 4176 | cfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4177 | |
| 4178 | if (cfqq == cfqd->active_queue) { |
| 4179 | /* |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 4180 | * Remember that we saw a request from this process, but |
| 4181 | * don't start queuing just yet. Otherwise we risk seeing lots |
| 4182 | * of tiny requests, because we disrupt the normal plugging |
Jens Axboe | d6ceb25 | 2009-04-14 14:18:16 +0200 | [diff] [blame] | 4183 | * and merging. If the request is already larger than a single |
| 4184 | * page, let it rip immediately. For that case we assume that |
Jens Axboe | 2d87072 | 2009-04-15 12:12:46 +0200 | [diff] [blame] | 4185 | * merging is already done. Ditto for a busy system that |
| 4186 | * has other work pending, don't risk delaying until the |
| 4187 | * idle timer unplug to continue working. |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4188 | */ |
Jens Axboe | d6ceb25 | 2009-04-14 14:18:16 +0200 | [diff] [blame] | 4189 | if (cfq_cfqq_wait_request(cfqq)) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4190 | if (blk_rq_bytes(rq) > PAGE_SIZE || |
Jens Axboe | 2d87072 | 2009-04-15 12:12:46 +0200 | [diff] [blame] | 4191 | cfqd->busy_queues > 1) { |
Divyesh Shah | 812df48 | 2010-04-08 21:15:35 -0700 | [diff] [blame] | 4192 | cfq_del_timer(cfqd, cfqq); |
Gui Jianfeng | 554554f | 2009-12-10 09:38:39 +0100 | [diff] [blame] | 4193 | cfq_clear_cfqq_wait_request(cfqq); |
Christoph Hellwig | 24ecfbe | 2011-04-18 11:41:33 +0200 | [diff] [blame] | 4194 | __blk_run_queue(cfqd->queue); |
Divyesh Shah | a11cdaa | 2010-04-13 19:59:17 +0200 | [diff] [blame] | 4195 | } else { |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 4196 | cfqg_stats_update_idle_time(cfqq->cfqg); |
Vivek Goyal | bf791937 | 2009-12-03 12:59:37 -0500 | [diff] [blame] | 4197 | cfq_mark_cfqq_must_dispatch(cfqq); |
Divyesh Shah | a11cdaa | 2010-04-13 19:59:17 +0200 | [diff] [blame] | 4198 | } |
Jens Axboe | d6ceb25 | 2009-04-14 14:18:16 +0200 | [diff] [blame] | 4199 | } |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4200 | } else if (cfq_should_preempt(cfqd, cfqq, rq)) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4201 | /* |
| 4202 | * not the active queue - expire current slice if it is |
| 4203 | * idle and has expired it's mean thinktime or this new queue |
Divyesh Shah | 3a9a3f6 | 2009-01-30 12:46:41 +0100 | [diff] [blame] | 4204 | * has some old slice time left and is of higher priority or |
| 4205 | * this new queue is RT and the current one is BE |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4206 | */ |
| 4207 | cfq_preempt_queue(cfqd, cfqq); |
Christoph Hellwig | 24ecfbe | 2011-04-18 11:41:33 +0200 | [diff] [blame] | 4208 | __blk_run_queue(cfqd->queue); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4209 | } |
| 4210 | } |
| 4211 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4212 | static void cfq_insert_request(struct request_queue *q, struct request *rq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4213 | { |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 4214 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4215 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4216 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 4217 | cfq_log_cfqq(cfqd, cfqq, "insert_request"); |
Tejun Heo | abede6d | 2012-03-19 15:10:57 -0700 | [diff] [blame] | 4218 | cfq_init_prio_data(cfqq, RQ_CIC(rq)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4219 | |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4220 | 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] | 4221 | list_add_tail(&rq->queuelist, &cfqq->fifo); |
Corrado Zoccolo | aa6f6a3 | 2009-10-26 22:44:33 +0100 | [diff] [blame] | 4222 | cfq_add_rq_rb(rq); |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 4223 | cfqg_stats_update_io_add(RQ_CFQG(rq), cfqd->serving_group, req_op(rq), |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 4224 | rq->cmd_flags); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4225 | cfq_rq_enqueued(cfqd, cfqq, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4226 | } |
| 4227 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4228 | /* |
| 4229 | * Update hw_tag based on peak queue depth over 50 samples under |
| 4230 | * sufficient load. |
| 4231 | */ |
| 4232 | static void cfq_update_hw_tag(struct cfq_data *cfqd) |
| 4233 | { |
Shaohua Li | 1a1238a | 2009-10-27 08:46:23 +0100 | [diff] [blame] | 4234 | struct cfq_queue *cfqq = cfqd->active_queue; |
| 4235 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4236 | if (cfqd->rq_in_driver > cfqd->hw_tag_est_depth) |
| 4237 | cfqd->hw_tag_est_depth = cfqd->rq_in_driver; |
Corrado Zoccolo | e459dd0 | 2009-11-26 10:02:57 +0100 | [diff] [blame] | 4238 | |
| 4239 | if (cfqd->hw_tag == 1) |
| 4240 | return; |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4241 | |
| 4242 | if (cfqd->rq_queued <= CFQ_HW_QUEUE_MIN && |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4243 | cfqd->rq_in_driver <= CFQ_HW_QUEUE_MIN) |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4244 | return; |
| 4245 | |
Shaohua Li | 1a1238a | 2009-10-27 08:46:23 +0100 | [diff] [blame] | 4246 | /* |
| 4247 | * If active queue hasn't enough requests and can idle, cfq might not |
| 4248 | * dispatch sufficient requests to hardware. Don't zero hw_tag in this |
| 4249 | * case |
| 4250 | */ |
| 4251 | if (cfqq && cfq_cfqq_idle_window(cfqq) && |
| 4252 | cfqq->dispatched + cfqq->queued[0] + cfqq->queued[1] < |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4253 | CFQ_HW_QUEUE_MIN && cfqd->rq_in_driver < CFQ_HW_QUEUE_MIN) |
Shaohua Li | 1a1238a | 2009-10-27 08:46:23 +0100 | [diff] [blame] | 4254 | return; |
| 4255 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4256 | if (cfqd->hw_tag_samples++ < 50) |
| 4257 | return; |
| 4258 | |
Corrado Zoccolo | e459dd0 | 2009-11-26 10:02:57 +0100 | [diff] [blame] | 4259 | if (cfqd->hw_tag_est_depth >= CFQ_HW_QUEUE_MIN) |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4260 | cfqd->hw_tag = 1; |
| 4261 | else |
| 4262 | cfqd->hw_tag = 0; |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4263 | } |
| 4264 | |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4265 | static bool cfq_should_wait_busy(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
| 4266 | { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4267 | struct cfq_io_cq *cic = cfqd->active_cic; |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4268 | u64 now = ktime_get_ns(); |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4269 | |
Justin TerAvest | 02a8f01 | 2011-02-09 14:20:03 +0100 | [diff] [blame] | 4270 | /* If the queue already has requests, don't wait */ |
| 4271 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
| 4272 | return false; |
| 4273 | |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4274 | /* If there are other queues in the group, don't wait */ |
| 4275 | if (cfqq->cfqg->nr_cfqq > 1) |
| 4276 | return false; |
| 4277 | |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 4278 | /* the only queue in the group, but think time is big */ |
| 4279 | if (cfq_io_thinktime_big(cfqd, &cfqq->cfqg->ttime, true)) |
| 4280 | return false; |
| 4281 | |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4282 | if (cfq_slice_used(cfqq)) |
| 4283 | return true; |
| 4284 | |
| 4285 | /* if slice left is less than think time, wait busy */ |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 4286 | if (cic && sample_valid(cic->ttime.ttime_samples) |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4287 | && (cfqq->slice_end - now < cic->ttime.ttime_mean)) |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4288 | return true; |
| 4289 | |
| 4290 | /* |
| 4291 | * If think times is less than a jiffy than ttime_mean=0 and above |
| 4292 | * will not be true. It might happen that slice has not expired yet |
| 4293 | * but will expire soon (4-5 ns) during select_queue(). To cover the |
| 4294 | * case where think time is less than a jiffy, mark the queue wait |
| 4295 | * busy if only 1 jiffy is left in the slice. |
| 4296 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4297 | if (cfqq->slice_end - now <= jiffies_to_nsecs(1)) |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4298 | return true; |
| 4299 | |
| 4300 | return false; |
| 4301 | } |
| 4302 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4303 | static void cfq_completed_request(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4304 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4305 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 4306 | struct cfq_data *cfqd = cfqq->cfqd; |
Jens Axboe | 5380a10 | 2006-07-13 12:37:56 +0200 | [diff] [blame] | 4307 | const int sync = rq_is_sync(rq); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4308 | u64 now = ktime_get_ns(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4309 | |
Christoph Hellwig | 33659eb | 2010-08-07 18:17:56 +0200 | [diff] [blame] | 4310 | cfq_log_cfqq(cfqd, cfqq, "complete rqnoidle %d", |
| 4311 | !!(rq->cmd_flags & REQ_NOIDLE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4312 | |
Aaron Carroll | 45333d5 | 2008-08-26 15:52:36 +0200 | [diff] [blame] | 4313 | cfq_update_hw_tag(cfqd); |
| 4314 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4315 | WARN_ON(!cfqd->rq_in_driver); |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 4316 | WARN_ON(!cfqq->dispatched); |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4317 | cfqd->rq_in_driver--; |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 4318 | cfqq->dispatched--; |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4319 | (RQ_CFQG(rq))->dispatched--; |
Tejun Heo | 155fead | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 4320 | cfqg_stats_update_completion(cfqq->cfqg, rq_start_time_ns(rq), |
Mike Christie | 63a4cc2 | 2016-06-05 14:32:14 -0500 | [diff] [blame] | 4321 | rq_io_start_time_ns(rq), req_op(rq), |
| 4322 | rq->cmd_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4323 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4324 | cfqd->rq_in_flight[cfq_cfqq_sync(cfqq)]--; |
Jens Axboe | 3ed9a29 | 2007-04-23 08:33:33 +0200 | [diff] [blame] | 4325 | |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 4326 | if (sync) { |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 4327 | struct cfq_rb_root *st; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 4328 | |
Shaohua Li | 383cd72 | 2011-07-12 14:24:35 +0200 | [diff] [blame] | 4329 | RQ_CIC(rq)->ttime.last_end_request = now; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 4330 | |
| 4331 | if (cfq_cfqq_on_rr(cfqq)) |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 4332 | st = cfqq->service_tree; |
Shaohua Li | f5f2b6c | 2011-07-12 14:24:55 +0200 | [diff] [blame] | 4333 | else |
Vivek Goyal | 34b98d0 | 2012-10-03 16:56:58 -0400 | [diff] [blame] | 4334 | st = st_for(cfqq->cfqg, cfqq_class(cfqq), |
| 4335 | cfqq_type(cfqq)); |
| 4336 | |
| 4337 | st->ttime.last_end_request = now; |
Jan Kara | 149321a | 2016-06-28 09:04:01 +0200 | [diff] [blame] | 4338 | /* |
| 4339 | * We have to do this check in jiffies since start_time is in |
| 4340 | * jiffies and it is not trivial to convert to ns. If |
| 4341 | * cfq_fifo_expire[1] ever comes close to 1 jiffie, this test |
| 4342 | * will become problematic but so far we are fine (the default |
| 4343 | * is 128 ms). |
| 4344 | */ |
| 4345 | if (!time_after(rq->start_time + |
| 4346 | nsecs_to_jiffies(cfqd->cfq_fifo_expire[1]), |
| 4347 | jiffies)) |
Corrado Zoccolo | 573412b | 2009-12-06 11:48:52 +0100 | [diff] [blame] | 4348 | cfqd->last_delayed_sync = now; |
Vivek Goyal | 365722b | 2009-10-03 15:21:27 +0200 | [diff] [blame] | 4349 | } |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 4350 | |
Shaohua Li | 7700fc4 | 2011-07-12 14:24:56 +0200 | [diff] [blame] | 4351 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
| 4352 | cfqq->cfqg->ttime.last_end_request = now; |
| 4353 | #endif |
| 4354 | |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 4355 | /* |
| 4356 | * If this is the active queue, check if it needs to be expired, |
| 4357 | * or if we want to idle in case it has no pending requests. |
| 4358 | */ |
| 4359 | if (cfqd->active_queue == cfqq) { |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 4360 | const bool cfqq_empty = RB_EMPTY_ROOT(&cfqq->sort_list); |
| 4361 | |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 4362 | if (cfq_cfqq_slice_new(cfqq)) { |
| 4363 | cfq_set_prio_slice(cfqd, cfqq); |
| 4364 | cfq_clear_cfqq_slice_new(cfqq); |
| 4365 | } |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 4366 | |
| 4367 | /* |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4368 | * Should we wait for next request to come in before we expire |
| 4369 | * the queue. |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 4370 | */ |
Vivek Goyal | 7667aa0 | 2009-12-08 17:52:58 -0500 | [diff] [blame] | 4371 | if (cfq_should_wait_busy(cfqd, cfqq)) { |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4372 | u64 extend_sl = cfqd->cfq_slice_idle; |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4373 | if (!cfqd->cfq_slice_idle) |
Rick Yiu | 07e40a3 | 2018-09-26 16:45:50 +0800 | [diff] [blame] | 4374 | extend_sl = get_group_idle(cfqd); |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4375 | cfqq->slice_end = now + extend_sl; |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 4376 | cfq_mark_cfqq_wait_busy(cfqq); |
Divyesh Shah | b1ffe73 | 2010-03-25 15:45:03 +0100 | [diff] [blame] | 4377 | cfq_log_cfqq(cfqd, cfqq, "will busy wait"); |
Vivek Goyal | f75edf2 | 2009-12-03 12:59:53 -0500 | [diff] [blame] | 4378 | } |
| 4379 | |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 4380 | /* |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 4381 | * Idling is not enabled on: |
| 4382 | * - expired queues |
| 4383 | * - idle-priority queues |
| 4384 | * - async queues |
| 4385 | * - queues with still some requests queued |
| 4386 | * - when there is a close cooperator |
Jens Axboe | a36e71f | 2009-04-15 12:15:11 +0200 | [diff] [blame] | 4387 | */ |
Jens Axboe | 0871714 | 2008-01-28 11:38:15 +0100 | [diff] [blame] | 4388 | if (cfq_slice_used(cfqq) || cfq_class_idle(cfqq)) |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 4389 | cfq_slice_expired(cfqd, 1); |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 4390 | else if (sync && cfqq_empty && |
| 4391 | !cfq_close_cooperator(cfqd, cfqq)) { |
Corrado Zoccolo | 749ef9f | 2010-09-20 15:24:50 +0200 | [diff] [blame] | 4392 | cfq_arm_slice_timer(cfqd); |
Corrado Zoccolo | 8e55063 | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 4393 | } |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 4394 | } |
Jens Axboe | 6d048f5 | 2007-04-25 12:44:27 +0200 | [diff] [blame] | 4395 | |
Corrado Zoccolo | 53c583d | 2010-02-28 19:45:05 +0100 | [diff] [blame] | 4396 | if (!cfqd->rq_in_driver) |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4397 | cfq_schedule_dispatch(cfqd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4398 | } |
| 4399 | |
Jens Axboe | b8269db | 2016-06-09 15:47:29 -0600 | [diff] [blame] | 4400 | static void cfqq_boost_on_prio(struct cfq_queue *cfqq, int op_flags) |
| 4401 | { |
| 4402 | /* |
| 4403 | * If REQ_PRIO is set, boost class and prio level, if it's below |
| 4404 | * BE/NORM. If prio is not set, restore the potentially boosted |
| 4405 | * class/prio level. |
| 4406 | */ |
| 4407 | if (!(op_flags & REQ_PRIO)) { |
| 4408 | cfqq->ioprio_class = cfqq->org_ioprio_class; |
| 4409 | cfqq->ioprio = cfqq->org_ioprio; |
| 4410 | } else { |
| 4411 | if (cfq_class_idle(cfqq)) |
| 4412 | cfqq->ioprio_class = IOPRIO_CLASS_BE; |
| 4413 | if (cfqq->ioprio > IOPRIO_NORM) |
| 4414 | cfqq->ioprio = IOPRIO_NORM; |
| 4415 | } |
| 4416 | } |
| 4417 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 4418 | static inline int __cfq_may_queue(struct cfq_queue *cfqq) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4419 | { |
Jens Axboe | 1b379d8 | 2009-08-11 08:26:11 +0200 | [diff] [blame] | 4420 | if (cfq_cfqq_wait_request(cfqq) && !cfq_cfqq_must_alloc_slice(cfqq)) { |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4421 | cfq_mark_cfqq_must_alloc_slice(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4422 | return ELV_MQUEUE_MUST; |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4423 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4424 | |
| 4425 | return ELV_MQUEUE_MAY; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4426 | } |
| 4427 | |
Mike Christie | ba568ea | 2016-06-05 14:32:13 -0500 | [diff] [blame] | 4428 | static int cfq_may_queue(struct request_queue *q, int op, int op_flags) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4429 | { |
| 4430 | struct cfq_data *cfqd = q->elevator->elevator_data; |
| 4431 | struct task_struct *tsk = current; |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4432 | struct cfq_io_cq *cic; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4433 | struct cfq_queue *cfqq; |
| 4434 | |
| 4435 | /* |
| 4436 | * don't force setup of a queue from here, as a call to may_queue |
| 4437 | * does not necessarily imply that a request actually will be queued. |
| 4438 | * so just lookup a possibly existing queue, or return 'may queue' |
| 4439 | * if that fails |
| 4440 | */ |
Jens Axboe | 4ac845a | 2008-01-24 08:44:49 +0100 | [diff] [blame] | 4441 | cic = cfq_cic_lookup(cfqd, tsk->io_context); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 4442 | if (!cic) |
| 4443 | return ELV_MQUEUE_MAY; |
| 4444 | |
Mike Christie | d9d8c5c | 2016-06-05 14:32:16 -0500 | [diff] [blame] | 4445 | cfqq = cic_to_cfqq(cic, rw_is_sync(op, op_flags)); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4446 | if (cfqq) { |
Tejun Heo | abede6d | 2012-03-19 15:10:57 -0700 | [diff] [blame] | 4447 | cfq_init_prio_data(cfqq, cic); |
Jens Axboe | b8269db | 2016-06-09 15:47:29 -0600 | [diff] [blame] | 4448 | cfqq_boost_on_prio(cfqq, op_flags); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4449 | |
Jens Axboe | 89850f7 | 2006-07-22 16:48:31 +0200 | [diff] [blame] | 4450 | return __cfq_may_queue(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4451 | } |
| 4452 | |
| 4453 | return ELV_MQUEUE_MAY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4454 | } |
| 4455 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4456 | /* |
| 4457 | * queue lock held here |
| 4458 | */ |
Jens Axboe | bb37b94 | 2006-12-01 10:42:33 +0100 | [diff] [blame] | 4459 | static void cfq_put_request(struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4460 | { |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4461 | struct cfq_queue *cfqq = RQ_CFQQ(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4462 | |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4463 | if (cfqq) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4464 | const int rw = rq_data_dir(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4465 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4466 | BUG_ON(!cfqq->allocated[rw]); |
| 4467 | cfqq->allocated[rw]--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4468 | |
Vivek Goyal | 7f1dc8a | 2010-04-21 17:44:16 +0200 | [diff] [blame] | 4469 | /* Put down rq reference on cfqg */ |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 4470 | cfqg_put(RQ_CFQG(rq)); |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4471 | rq->elv.priv[0] = NULL; |
| 4472 | rq->elv.priv[1] = NULL; |
Vivek Goyal | 7f1dc8a | 2010-04-21 17:44:16 +0200 | [diff] [blame] | 4473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4474 | cfq_put_queue(cfqq); |
| 4475 | } |
| 4476 | } |
| 4477 | |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4478 | static struct cfq_queue * |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4479 | cfq_merge_cfqqs(struct cfq_data *cfqd, struct cfq_io_cq *cic, |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4480 | struct cfq_queue *cfqq) |
| 4481 | { |
| 4482 | cfq_log_cfqq(cfqd, cfqq, "merging with queue %p", cfqq->new_cfqq); |
| 4483 | cic_set_cfqq(cic, cfqq->new_cfqq, 1); |
Jeff Moyer | b3b6d04 | 2009-10-23 17:14:51 -0400 | [diff] [blame] | 4484 | cfq_mark_cfqq_coop(cfqq->new_cfqq); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4485 | cfq_put_queue(cfqq); |
| 4486 | return cic_to_cfqq(cic, 1); |
| 4487 | } |
| 4488 | |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4489 | /* |
| 4490 | * Returns NULL if a new cfqq should be allocated, or the old cfqq if this |
| 4491 | * was the last process referring to said cfqq. |
| 4492 | */ |
| 4493 | static struct cfq_queue * |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4494 | split_cfqq(struct cfq_io_cq *cic, struct cfq_queue *cfqq) |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4495 | { |
| 4496 | if (cfqq_process_refs(cfqq) == 1) { |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4497 | cfqq->pid = current->pid; |
| 4498 | cfq_clear_cfqq_coop(cfqq); |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 4499 | cfq_clear_cfqq_split_coop(cfqq); |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4500 | return cfqq; |
| 4501 | } |
| 4502 | |
| 4503 | cic_set_cfqq(cic, NULL, 1); |
Shaohua Li | d02a2c0 | 2010-05-25 10:16:53 +0200 | [diff] [blame] | 4504 | |
| 4505 | cfq_put_cooperator(cfqq); |
| 4506 | |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4507 | cfq_put_queue(cfqq); |
| 4508 | return NULL; |
| 4509 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4510 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4511 | * Allocate cfq data structures associated with this request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4512 | */ |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4513 | static int |
Tejun Heo | 852c788 | 2012-03-05 13:15:27 -0800 | [diff] [blame] | 4514 | cfq_set_request(struct request_queue *q, struct request *rq, struct bio *bio, |
| 4515 | gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4516 | { |
| 4517 | struct cfq_data *cfqd = q->elevator->elevator_data; |
Tejun Heo | f1f8cc9 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4518 | struct cfq_io_cq *cic = icq_to_cic(rq->elv.icq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4519 | const int rw = rq_data_dir(rq); |
Jens Axboe | a6151c3 | 2009-10-07 20:02:57 +0200 | [diff] [blame] | 4520 | const bool is_sync = rq_is_sync(rq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4521 | struct cfq_queue *cfqq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4522 | |
Tejun Heo | 216284c | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 4523 | spin_lock_irq(q->queue_lock); |
Tejun Heo | f1f8cc9 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4524 | |
Tejun Heo | 598971b | 2012-03-19 15:10:58 -0700 | [diff] [blame] | 4525 | check_ioprio_changed(cic, bio); |
| 4526 | check_blkcg_changed(cic, bio); |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4527 | new_queue: |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 4528 | cfqq = cic_to_cfqq(cic, is_sync); |
Vivek Goyal | 32f2e80 | 2009-07-09 22:13:16 +0200 | [diff] [blame] | 4529 | if (!cfqq || cfqq == &cfqd->oom_cfqq) { |
Tejun Heo | bce6133 | 2015-08-18 14:54:59 -0700 | [diff] [blame] | 4530 | if (cfqq) |
| 4531 | cfq_put_queue(cfqq); |
Tejun Heo | 2da8de0 | 2015-08-18 14:55:02 -0700 | [diff] [blame] | 4532 | cfqq = cfq_get_queue(cfqd, is_sync, cic, bio); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 4533 | cic_set_cfqq(cic, cfqq, is_sync); |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4534 | } else { |
| 4535 | /* |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4536 | * If the queue was seeky for too long, break it apart. |
| 4537 | */ |
Shaohua Li | ae54abe | 2010-02-05 13:11:45 +0100 | [diff] [blame] | 4538 | if (cfq_cfqq_coop(cfqq) && cfq_cfqq_split_coop(cfqq)) { |
Jeff Moyer | e6c5bc7 | 2009-10-23 17:14:52 -0400 | [diff] [blame] | 4539 | cfq_log_cfqq(cfqd, cfqq, "breaking apart cfqq"); |
| 4540 | cfqq = split_cfqq(cic, cfqq); |
| 4541 | if (!cfqq) |
| 4542 | goto new_queue; |
| 4543 | } |
| 4544 | |
| 4545 | /* |
Jeff Moyer | df5fe3e | 2009-10-23 17:14:50 -0400 | [diff] [blame] | 4546 | * Check to see if this queue is scheduled to merge with |
| 4547 | * another, closely cooperating queue. The merging of |
| 4548 | * queues happens here as it must be done in process context. |
| 4549 | * The reference on new_cfqq was taken in merge_cfqqs. |
| 4550 | */ |
| 4551 | if (cfqq->new_cfqq) |
| 4552 | cfqq = cfq_merge_cfqqs(cfqd, cic, cfqq); |
Vasily Tarasov | 91fac31 | 2007-04-25 12:29:51 +0200 | [diff] [blame] | 4553 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4554 | |
| 4555 | cfqq->allocated[rw]++; |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4556 | |
Jens Axboe | 6fae9c2 | 2011-03-01 15:04:39 -0500 | [diff] [blame] | 4557 | cfqq->ref++; |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 4558 | cfqg_get(cfqq->cfqg); |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 4559 | rq->elv.priv[0] = cfqq; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 4560 | rq->elv.priv[1] = cfqq->cfqg; |
Tejun Heo | 216284c | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 4561 | spin_unlock_irq(q->queue_lock); |
Jens Axboe | 5e70537 | 2006-07-13 12:39:25 +0200 | [diff] [blame] | 4562 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4563 | } |
| 4564 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 4565 | static void cfq_kick_queue(struct work_struct *work) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4566 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 4567 | struct cfq_data *cfqd = |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4568 | container_of(work, struct cfq_data, unplug_work); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4569 | struct request_queue *q = cfqd->queue; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4570 | |
Jens Axboe | 40bb54d | 2009-04-15 12:11:10 +0200 | [diff] [blame] | 4571 | spin_lock_irq(q->queue_lock); |
Christoph Hellwig | 24ecfbe | 2011-04-18 11:41:33 +0200 | [diff] [blame] | 4572 | __blk_run_queue(cfqd->queue); |
Jens Axboe | 40bb54d | 2009-04-15 12:11:10 +0200 | [diff] [blame] | 4573 | spin_unlock_irq(q->queue_lock); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4574 | } |
| 4575 | |
| 4576 | /* |
| 4577 | * Timer running if the active_queue is currently idling inside its time slice |
| 4578 | */ |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4579 | static enum hrtimer_restart cfq_idle_slice_timer(struct hrtimer *timer) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4580 | { |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4581 | struct cfq_data *cfqd = container_of(timer, struct cfq_data, |
| 4582 | idle_slice_timer); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4583 | struct cfq_queue *cfqq; |
| 4584 | unsigned long flags; |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 4585 | int timed_out = 1; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4586 | |
Jens Axboe | 7b67913 | 2008-05-30 12:23:07 +0200 | [diff] [blame] | 4587 | cfq_log(cfqd, "idle timer fired"); |
| 4588 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4589 | spin_lock_irqsave(cfqd->queue->queue_lock, flags); |
| 4590 | |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 4591 | cfqq = cfqd->active_queue; |
| 4592 | if (cfqq) { |
Jens Axboe | 3c6bd2f | 2007-01-19 12:06:33 +1100 | [diff] [blame] | 4593 | timed_out = 0; |
| 4594 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4595 | /* |
Jens Axboe | b029195 | 2009-04-07 11:38:31 +0200 | [diff] [blame] | 4596 | * We saw a request before the queue expired, let it through |
| 4597 | */ |
| 4598 | if (cfq_cfqq_must_dispatch(cfqq)) |
| 4599 | goto out_kick; |
| 4600 | |
| 4601 | /* |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4602 | * expired |
| 4603 | */ |
Jens Axboe | 44f7c16 | 2007-01-19 11:51:58 +1100 | [diff] [blame] | 4604 | if (cfq_slice_used(cfqq)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4605 | goto expire; |
| 4606 | |
| 4607 | /* |
| 4608 | * only expire and reinvoke request handler, if there are |
| 4609 | * other queues with pending requests |
| 4610 | */ |
Jens Axboe | caaa5f9 | 2006-06-16 11:23:00 +0200 | [diff] [blame] | 4611 | if (!cfqd->busy_queues) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4612 | goto out_cont; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4613 | |
| 4614 | /* |
| 4615 | * not expired and it has a request pending, let it dispatch |
| 4616 | */ |
Jens Axboe | 75e5098 | 2009-04-07 08:56:14 +0200 | [diff] [blame] | 4617 | if (!RB_EMPTY_ROOT(&cfqq->sort_list)) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4618 | goto out_kick; |
Corrado Zoccolo | 76280af | 2009-11-26 10:02:58 +0100 | [diff] [blame] | 4619 | |
| 4620 | /* |
| 4621 | * Queue depth flag is reset only when the idle didn't succeed |
| 4622 | */ |
| 4623 | cfq_clear_cfqq_deep(cfqq); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4624 | } |
| 4625 | expire: |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 4626 | cfq_slice_expired(cfqd, timed_out); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4627 | out_kick: |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4628 | cfq_schedule_dispatch(cfqd); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4629 | out_cont: |
| 4630 | spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4631 | return HRTIMER_NORESTART; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4632 | } |
| 4633 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4634 | static void cfq_shutdown_timer_wq(struct cfq_data *cfqd) |
| 4635 | { |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4636 | hrtimer_cancel(&cfqd->idle_slice_timer); |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4637 | cancel_work_sync(&cfqd->unplug_work); |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4638 | } |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4639 | |
Jens Axboe | b374d18 | 2008-10-31 10:05:07 +0100 | [diff] [blame] | 4640 | static void cfq_exit_queue(struct elevator_queue *e) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4641 | { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4642 | struct cfq_data *cfqd = e->elevator_data; |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4643 | struct request_queue *q = cfqd->queue; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4644 | |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4645 | cfq_shutdown_timer_wq(cfqd); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 4646 | |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 4647 | spin_lock_irq(q->queue_lock); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 4648 | |
Al Viro | d9ff418 | 2006-03-18 13:51:22 -0500 | [diff] [blame] | 4649 | if (cfqd->active_queue) |
Vivek Goyal | e5ff082 | 2010-04-26 19:25:11 +0200 | [diff] [blame] | 4650 | __cfq_slice_expired(cfqd, cfqd->active_queue, 0); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 4651 | |
Tejun Heo | 03aa264 | 2012-03-05 13:15:19 -0800 | [diff] [blame] | 4652 | spin_unlock_irq(q->queue_lock); |
| 4653 | |
Al Viro | a90d742 | 2006-03-18 12:05:37 -0500 | [diff] [blame] | 4654 | cfq_shutdown_timer_wq(cfqd); |
| 4655 | |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4656 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
| 4657 | blkcg_deactivate_policy(q, &blkcg_policy_cfq); |
| 4658 | #else |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4659 | kfree(cfqd->root_group); |
Vivek Goyal | 2abae55 | 2011-05-23 10:02:19 +0200 | [diff] [blame] | 4660 | #endif |
Vivek Goyal | 56edf7d | 2011-05-19 15:38:22 -0400 | [diff] [blame] | 4661 | kfree(cfqd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4662 | } |
| 4663 | |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4664 | 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] | 4665 | { |
| 4666 | struct cfq_data *cfqd; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4667 | struct blkcg_gq *blkg __maybe_unused; |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4668 | int i, ret; |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4669 | struct elevator_queue *eq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4670 | |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4671 | eq = elevator_alloc(q, e); |
| 4672 | if (!eq) |
Tejun Heo | b2fab5a | 2012-03-05 13:14:57 -0800 | [diff] [blame] | 4673 | return -ENOMEM; |
Konstantin Khlebnikov | 80b15c7 | 2010-05-20 23:21:41 +0400 | [diff] [blame] | 4674 | |
Joe Perches | c1b511e | 2013-08-29 15:21:42 -0700 | [diff] [blame] | 4675 | cfqd = kzalloc_node(sizeof(*cfqd), GFP_KERNEL, q->node); |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4676 | if (!cfqd) { |
| 4677 | kobject_put(&eq->kobj); |
| 4678 | return -ENOMEM; |
| 4679 | } |
| 4680 | eq->elevator_data = cfqd; |
| 4681 | |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4682 | cfqd->queue = q; |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4683 | spin_lock_irq(q->queue_lock); |
| 4684 | q->elevator = eq; |
| 4685 | spin_unlock_irq(q->queue_lock); |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4686 | |
Vivek Goyal | 1fa8f6d | 2009-12-03 12:59:41 -0500 | [diff] [blame] | 4687 | /* Init root service tree */ |
| 4688 | cfqd->grp_service_tree = CFQ_RB_ROOT; |
| 4689 | |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4690 | /* Init root group and prefer root group over other groups by default */ |
Vivek Goyal | 25fb516 | 2009-12-03 12:59:46 -0500 | [diff] [blame] | 4691 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4692 | ret = blkcg_activate_policy(q, &blkcg_policy_cfq); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4693 | if (ret) |
| 4694 | goto out_free; |
Vivek Goyal | 5624a4e | 2011-05-19 15:38:28 -0400 | [diff] [blame] | 4695 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4696 | cfqd->root_group = blkg_to_cfqg(q->root_blkg); |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4697 | #else |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4698 | ret = -ENOMEM; |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4699 | cfqd->root_group = kzalloc_node(sizeof(*cfqd->root_group), |
| 4700 | GFP_KERNEL, cfqd->queue->node); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4701 | if (!cfqd->root_group) |
| 4702 | goto out_free; |
Vivek Goyal | 5624a4e | 2011-05-19 15:38:28 -0400 | [diff] [blame] | 4703 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4704 | cfq_init_cfqg_base(cfqd->root_group); |
Tejun Heo | 3ecca62 | 2015-08-18 14:55:35 -0700 | [diff] [blame] | 4705 | cfqd->root_group->weight = 2 * CFQ_WEIGHT_LEGACY_DFL; |
| 4706 | cfqd->root_group->leaf_weight = 2 * CFQ_WEIGHT_LEGACY_DFL; |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 4707 | #endif |
Vivek Goyal | 5624a4e | 2011-05-19 15:38:28 -0400 | [diff] [blame] | 4708 | |
Jens Axboe | 26a2ac0 | 2009-04-23 12:13:27 +0200 | [diff] [blame] | 4709 | /* |
| 4710 | * Not strictly needed (since RB_ROOT just clears the node and we |
| 4711 | * zeroed cfqd on alloc), but better be safe in case someone decides |
| 4712 | * to add magic to the rb code |
| 4713 | */ |
| 4714 | for (i = 0; i < CFQ_PRIO_LISTS; i++) |
| 4715 | cfqd->prio_trees[i] = RB_ROOT; |
| 4716 | |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 4717 | /* |
Tejun Heo | d4aad7f | 2015-08-18 14:55:04 -0700 | [diff] [blame] | 4718 | * Our fallback cfqq if cfq_get_queue() runs into OOM issues. |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 4719 | * Grab a permanent reference to it, so that the normal code flow |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4720 | * will not attempt to free it. oom_cfqq is linked to root_group |
| 4721 | * but shouldn't hold a reference as it'll never be unlinked. Lose |
| 4722 | * the reference from linking right away. |
Jens Axboe | 6118b70 | 2009-06-30 09:34:12 +0200 | [diff] [blame] | 4723 | */ |
| 4724 | cfq_init_cfqq(cfqd, &cfqd->oom_cfqq, 1, 0); |
Shaohua Li | 30d7b94 | 2011-01-07 08:46:59 +0100 | [diff] [blame] | 4725 | cfqd->oom_cfqq.ref++; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 4726 | |
| 4727 | spin_lock_irq(q->queue_lock); |
Tejun Heo | f51b802 | 2012-03-05 13:15:05 -0800 | [diff] [blame] | 4728 | cfq_link_cfqq_cfqg(&cfqd->oom_cfqq, cfqd->root_group); |
Tejun Heo | eb7d8c07 | 2012-03-23 14:02:53 +0100 | [diff] [blame] | 4729 | cfqg_put(cfqd->root_group); |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 4730 | spin_unlock_irq(q->queue_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4731 | |
Jan Kara | 9114832 | 2016-06-08 15:11:39 +0200 | [diff] [blame] | 4732 | hrtimer_init(&cfqd->idle_slice_timer, CLOCK_MONOTONIC, |
| 4733 | HRTIMER_MODE_REL); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4734 | cfqd->idle_slice_timer.function = cfq_idle_slice_timer; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4735 | |
Jens Axboe | 23e018a | 2009-10-05 08:52:35 +0200 | [diff] [blame] | 4736 | INIT_WORK(&cfqd->unplug_work, cfq_kick_queue); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4738 | cfqd->cfq_quantum = cfq_quantum; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4739 | cfqd->cfq_fifo_expire[0] = cfq_fifo_expire[0]; |
| 4740 | cfqd->cfq_fifo_expire[1] = cfq_fifo_expire[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4741 | cfqd->cfq_back_max = cfq_back_max; |
| 4742 | cfqd->cfq_back_penalty = cfq_back_penalty; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4743 | cfqd->cfq_slice[0] = cfq_slice_async; |
| 4744 | cfqd->cfq_slice[1] = cfq_slice_sync; |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 4745 | cfqd->cfq_target_latency = cfq_target_latency; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4746 | cfqd->cfq_slice_async_rq = cfq_slice_async_rq; |
Jens Axboe | 0bb9794 | 2015-06-10 08:01:20 -0600 | [diff] [blame] | 4747 | cfqd->cfq_slice_idle = cfq_slice_idle; |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4748 | cfqd->cfq_group_idle = cfq_group_idle; |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 4749 | cfqd->cfq_latency = 1; |
Corrado Zoccolo | e459dd0 | 2009-11-26 10:02:57 +0100 | [diff] [blame] | 4750 | cfqd->hw_tag = -1; |
Corrado Zoccolo | edc7113 | 2009-12-09 20:56:04 +0100 | [diff] [blame] | 4751 | /* |
| 4752 | * we optimistically start assuming sync ops weren't delayed in last |
| 4753 | * second, in order to have larger depth for async operations. |
| 4754 | */ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4755 | cfqd->last_delayed_sync = ktime_get_ns() - NSEC_PER_SEC; |
Tejun Heo | b2fab5a | 2012-03-05 13:14:57 -0800 | [diff] [blame] | 4756 | return 0; |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4757 | |
| 4758 | out_free: |
| 4759 | kfree(cfqd); |
Jianpeng Ma | d50235b | 2013-07-03 13:25:24 +0200 | [diff] [blame] | 4760 | kobject_put(&eq->kobj); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 4761 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4762 | } |
| 4763 | |
Jens Axboe | 0bb9794 | 2015-06-10 08:01:20 -0600 | [diff] [blame] | 4764 | static void cfq_registered_queue(struct request_queue *q) |
| 4765 | { |
| 4766 | struct elevator_queue *e = q->elevator; |
| 4767 | struct cfq_data *cfqd = e->elevator_data; |
| 4768 | |
| 4769 | /* |
| 4770 | * Default to IOPS mode with no idling for SSDs |
| 4771 | */ |
| 4772 | if (blk_queue_nonrot(q)) |
| 4773 | cfqd->cfq_slice_idle = 0; |
| 4774 | } |
| 4775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4776 | /* |
| 4777 | * sysfs parts below --> |
| 4778 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4779 | static ssize_t |
| 4780 | cfq_var_show(unsigned int var, char *page) |
| 4781 | { |
Masanari Iida | 176167a | 2014-04-28 12:38:34 +0900 | [diff] [blame] | 4782 | return sprintf(page, "%u\n", var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4783 | } |
| 4784 | |
| 4785 | static ssize_t |
| 4786 | cfq_var_store(unsigned int *var, const char *page, size_t count) |
| 4787 | { |
| 4788 | char *p = (char *) page; |
| 4789 | |
| 4790 | *var = simple_strtoul(p, &p, 10); |
| 4791 | return count; |
| 4792 | } |
| 4793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4794 | #define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \ |
Jens Axboe | b374d18 | 2008-10-31 10:05:07 +0100 | [diff] [blame] | 4795 | static ssize_t __FUNC(struct elevator_queue *e, char *page) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4796 | { \ |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 4797 | struct cfq_data *cfqd = e->elevator_data; \ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4798 | u64 __data = __VAR; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4799 | if (__CONV) \ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4800 | __data = div_u64(__data, NSEC_PER_MSEC); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4801 | return cfq_var_show(__data, (page)); \ |
| 4802 | } |
| 4803 | SHOW_FUNCTION(cfq_quantum_show, cfqd->cfq_quantum, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4804 | SHOW_FUNCTION(cfq_fifo_expire_sync_show, cfqd->cfq_fifo_expire[1], 1); |
| 4805 | 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] | 4806 | SHOW_FUNCTION(cfq_back_seek_max_show, cfqd->cfq_back_max, 0); |
| 4807 | SHOW_FUNCTION(cfq_back_seek_penalty_show, cfqd->cfq_back_penalty, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4808 | SHOW_FUNCTION(cfq_slice_idle_show, cfqd->cfq_slice_idle, 1); |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4809 | SHOW_FUNCTION(cfq_group_idle_show, cfqd->cfq_group_idle, 1); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4810 | SHOW_FUNCTION(cfq_slice_sync_show, cfqd->cfq_slice[1], 1); |
| 4811 | SHOW_FUNCTION(cfq_slice_async_show, cfqd->cfq_slice[0], 1); |
| 4812 | 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] | 4813 | SHOW_FUNCTION(cfq_low_latency_show, cfqd->cfq_latency, 0); |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 4814 | SHOW_FUNCTION(cfq_target_latency_show, cfqd->cfq_target_latency, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4815 | #undef SHOW_FUNCTION |
| 4816 | |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4817 | #define USEC_SHOW_FUNCTION(__FUNC, __VAR) \ |
| 4818 | static ssize_t __FUNC(struct elevator_queue *e, char *page) \ |
| 4819 | { \ |
| 4820 | struct cfq_data *cfqd = e->elevator_data; \ |
| 4821 | u64 __data = __VAR; \ |
| 4822 | __data = div_u64(__data, NSEC_PER_USEC); \ |
| 4823 | return cfq_var_show(__data, (page)); \ |
| 4824 | } |
| 4825 | USEC_SHOW_FUNCTION(cfq_slice_idle_us_show, cfqd->cfq_slice_idle); |
| 4826 | USEC_SHOW_FUNCTION(cfq_group_idle_us_show, cfqd->cfq_group_idle); |
| 4827 | USEC_SHOW_FUNCTION(cfq_slice_sync_us_show, cfqd->cfq_slice[1]); |
| 4828 | USEC_SHOW_FUNCTION(cfq_slice_async_us_show, cfqd->cfq_slice[0]); |
| 4829 | USEC_SHOW_FUNCTION(cfq_target_latency_us_show, cfqd->cfq_target_latency); |
| 4830 | #undef USEC_SHOW_FUNCTION |
| 4831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4832 | #define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \ |
Jens Axboe | b374d18 | 2008-10-31 10:05:07 +0100 | [diff] [blame] | 4833 | 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] | 4834 | { \ |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 4835 | struct cfq_data *cfqd = e->elevator_data; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4836 | unsigned int __data; \ |
| 4837 | int ret = cfq_var_store(&__data, (page), count); \ |
| 4838 | if (__data < (MIN)) \ |
| 4839 | __data = (MIN); \ |
| 4840 | else if (__data > (MAX)) \ |
| 4841 | __data = (MAX); \ |
| 4842 | if (__CONV) \ |
Jeff Moyer | 9a7f38c | 2016-06-08 08:55:34 -0600 | [diff] [blame] | 4843 | *(__PTR) = (u64)__data * NSEC_PER_MSEC; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4844 | else \ |
| 4845 | *(__PTR) = __data; \ |
| 4846 | return ret; \ |
| 4847 | } |
| 4848 | STORE_FUNCTION(cfq_quantum_store, &cfqd->cfq_quantum, 1, UINT_MAX, 0); |
Jens Axboe | fe094d9 | 2008-01-31 13:08:54 +0100 | [diff] [blame] | 4849 | STORE_FUNCTION(cfq_fifo_expire_sync_store, &cfqd->cfq_fifo_expire[1], 1, |
| 4850 | UINT_MAX, 1); |
| 4851 | STORE_FUNCTION(cfq_fifo_expire_async_store, &cfqd->cfq_fifo_expire[0], 1, |
| 4852 | UINT_MAX, 1); |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4853 | 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] | 4854 | STORE_FUNCTION(cfq_back_seek_penalty_store, &cfqd->cfq_back_penalty, 1, |
| 4855 | UINT_MAX, 0); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 4856 | 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] | 4857 | 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] | 4858 | STORE_FUNCTION(cfq_slice_sync_store, &cfqd->cfq_slice[1], 1, UINT_MAX, 1); |
| 4859 | 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] | 4860 | STORE_FUNCTION(cfq_slice_async_rq_store, &cfqd->cfq_slice_async_rq, 1, |
| 4861 | UINT_MAX, 0); |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 4862 | STORE_FUNCTION(cfq_low_latency_store, &cfqd->cfq_latency, 0, 1, 0); |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 4863 | 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] | 4864 | #undef STORE_FUNCTION |
| 4865 | |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4866 | #define USEC_STORE_FUNCTION(__FUNC, __PTR, MIN, MAX) \ |
| 4867 | static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \ |
| 4868 | { \ |
| 4869 | struct cfq_data *cfqd = e->elevator_data; \ |
| 4870 | unsigned int __data; \ |
| 4871 | int ret = cfq_var_store(&__data, (page), count); \ |
| 4872 | if (__data < (MIN)) \ |
| 4873 | __data = (MIN); \ |
| 4874 | else if (__data > (MAX)) \ |
| 4875 | __data = (MAX); \ |
| 4876 | *(__PTR) = (u64)__data * NSEC_PER_USEC; \ |
| 4877 | return ret; \ |
| 4878 | } |
| 4879 | USEC_STORE_FUNCTION(cfq_slice_idle_us_store, &cfqd->cfq_slice_idle, 0, UINT_MAX); |
| 4880 | USEC_STORE_FUNCTION(cfq_group_idle_us_store, &cfqd->cfq_group_idle, 0, UINT_MAX); |
| 4881 | USEC_STORE_FUNCTION(cfq_slice_sync_us_store, &cfqd->cfq_slice[1], 1, UINT_MAX); |
| 4882 | USEC_STORE_FUNCTION(cfq_slice_async_us_store, &cfqd->cfq_slice[0], 1, UINT_MAX); |
| 4883 | USEC_STORE_FUNCTION(cfq_target_latency_us_store, &cfqd->cfq_target_latency, 1, UINT_MAX); |
| 4884 | #undef USEC_STORE_FUNCTION |
| 4885 | |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4886 | #define CFQ_ATTR(name) \ |
| 4887 | __ATTR(name, S_IRUGO|S_IWUSR, cfq_##name##_show, cfq_##name##_store) |
Jens Axboe | 3b18152 | 2005-06-27 10:56:24 +0200 | [diff] [blame] | 4888 | |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4889 | static struct elv_fs_entry cfq_attrs[] = { |
| 4890 | CFQ_ATTR(quantum), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4891 | CFQ_ATTR(fifo_expire_sync), |
| 4892 | CFQ_ATTR(fifo_expire_async), |
| 4893 | CFQ_ATTR(back_seek_max), |
| 4894 | CFQ_ATTR(back_seek_penalty), |
| 4895 | CFQ_ATTR(slice_sync), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4896 | CFQ_ATTR(slice_sync_us), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4897 | CFQ_ATTR(slice_async), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4898 | CFQ_ATTR(slice_async_us), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4899 | CFQ_ATTR(slice_async_rq), |
| 4900 | CFQ_ATTR(slice_idle), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4901 | CFQ_ATTR(slice_idle_us), |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4902 | CFQ_ATTR(group_idle), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4903 | CFQ_ATTR(group_idle_us), |
Jens Axboe | 963b72f | 2009-10-03 19:42:18 +0200 | [diff] [blame] | 4904 | CFQ_ATTR(low_latency), |
Tao Ma | 5bf14c0 | 2012-04-01 14:33:39 -0700 | [diff] [blame] | 4905 | CFQ_ATTR(target_latency), |
Jeff Moyer | d2d481d | 2016-06-08 15:11:38 +0200 | [diff] [blame] | 4906 | CFQ_ATTR(target_latency_us), |
Al Viro | e572ec7 | 2006-03-18 22:27:18 -0500 | [diff] [blame] | 4907 | __ATTR_NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4908 | }; |
| 4909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4910 | static struct elevator_type iosched_cfq = { |
| 4911 | .ops = { |
| 4912 | .elevator_merge_fn = cfq_merge, |
| 4913 | .elevator_merged_fn = cfq_merged_request, |
| 4914 | .elevator_merge_req_fn = cfq_merged_requests, |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 4915 | .elevator_allow_bio_merge_fn = cfq_allow_bio_merge, |
| 4916 | .elevator_allow_rq_merge_fn = cfq_allow_rq_merge, |
Divyesh Shah | 812d402 | 2010-04-08 21:14:23 -0700 | [diff] [blame] | 4917 | .elevator_bio_merged_fn = cfq_bio_merged, |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 4918 | .elevator_dispatch_fn = cfq_dispatch_requests, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4919 | .elevator_add_req_fn = cfq_insert_request, |
Jens Axboe | b4878f2 | 2005-10-20 16:42:29 +0200 | [diff] [blame] | 4920 | .elevator_activate_req_fn = cfq_activate_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4921 | .elevator_deactivate_req_fn = cfq_deactivate_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4922 | .elevator_completed_req_fn = cfq_completed_request, |
Jens Axboe | 21183b0 | 2006-07-13 12:33:14 +0200 | [diff] [blame] | 4923 | .elevator_former_req_fn = elv_rb_former_request, |
| 4924 | .elevator_latter_req_fn = elv_rb_latter_request, |
Tejun Heo | 9b84cac | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4925 | .elevator_init_icq_fn = cfq_init_icq, |
Tejun Heo | 7e5a879 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4926 | .elevator_exit_icq_fn = cfq_exit_icq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4927 | .elevator_set_req_fn = cfq_set_request, |
| 4928 | .elevator_put_req_fn = cfq_put_request, |
| 4929 | .elevator_may_queue_fn = cfq_may_queue, |
| 4930 | .elevator_init_fn = cfq_init_queue, |
| 4931 | .elevator_exit_fn = cfq_exit_queue, |
Jens Axboe | 0bb9794 | 2015-06-10 08:01:20 -0600 | [diff] [blame] | 4932 | .elevator_registered_fn = cfq_registered_queue, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4933 | }, |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4934 | .icq_size = sizeof(struct cfq_io_cq), |
| 4935 | .icq_align = __alignof__(struct cfq_io_cq), |
Al Viro | 3d1ab40 | 2006-03-18 18:35:43 -0500 | [diff] [blame] | 4936 | .elevator_attrs = cfq_attrs, |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4937 | .elevator_name = "cfq", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4938 | .elevator_owner = THIS_MODULE, |
| 4939 | }; |
| 4940 | |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 4941 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4942 | static struct blkcg_policy blkcg_policy_cfq = { |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 4943 | .dfl_cftypes = cfq_blkcg_files, |
Tejun Heo | 880f50e | 2015-08-18 14:55:30 -0700 | [diff] [blame] | 4944 | .legacy_cftypes = cfq_blkcg_legacy_files, |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 4945 | |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 4946 | .cpd_alloc_fn = cfq_cpd_alloc, |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 4947 | .cpd_init_fn = cfq_cpd_init, |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 4948 | .cpd_free_fn = cfq_cpd_free, |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 4949 | .cpd_bind_fn = cfq_cpd_bind, |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 4950 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 4951 | .pd_alloc_fn = cfq_pd_alloc, |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 4952 | .pd_init_fn = cfq_pd_init, |
Tejun Heo | 0b39920 | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 4953 | .pd_offline_fn = cfq_pd_offline, |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 4954 | .pd_free_fn = cfq_pd_free, |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 4955 | .pd_reset_stats_fn = cfq_pd_reset_stats, |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 4956 | }; |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 4957 | #endif |
| 4958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4959 | static int __init cfq_init(void) |
| 4960 | { |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4961 | int ret; |
| 4962 | |
Vivek Goyal | 80bdf0c | 2010-08-23 12:24:26 +0200 | [diff] [blame] | 4963 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4964 | ret = blkcg_policy_register(&blkcg_policy_cfq); |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4965 | if (ret) |
| 4966 | return ret; |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4967 | #else |
| 4968 | cfq_group_idle = 0; |
| 4969 | #endif |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4970 | |
Tejun Heo | fd79495 | 2012-06-04 10:01:38 +0200 | [diff] [blame] | 4971 | ret = -ENOMEM; |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4972 | cfq_pool = KMEM_CACHE(cfq_queue, 0); |
| 4973 | if (!cfq_pool) |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4974 | goto err_pol_unreg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4975 | |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4976 | ret = elv_register(&iosched_cfq); |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4977 | if (ret) |
| 4978 | goto err_free_pool; |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4979 | |
Adrian Bunk | 2fdd82b | 2007-12-12 18:51:56 +0100 | [diff] [blame] | 4980 | return 0; |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4981 | |
| 4982 | err_free_pool: |
| 4983 | kmem_cache_destroy(cfq_pool); |
| 4984 | err_pol_unreg: |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4985 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4986 | blkcg_policy_unregister(&blkcg_policy_cfq); |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4987 | #endif |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 4988 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4989 | } |
| 4990 | |
| 4991 | static void __exit cfq_exit(void) |
| 4992 | { |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4993 | #ifdef CONFIG_CFQ_GROUP_IOSCHED |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 4994 | blkcg_policy_unregister(&blkcg_policy_cfq); |
Tejun Heo | ffea73f | 2012-06-04 10:02:29 +0200 | [diff] [blame] | 4995 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4996 | elv_unregister(&iosched_cfq); |
Tejun Heo | 3d3c237 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 4997 | kmem_cache_destroy(cfq_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4998 | } |
| 4999 | |
| 5000 | module_init(cfq_init); |
| 5001 | module_exit(cfq_exit); |
| 5002 | |
| 5003 | MODULE_AUTHOR("Jens Axboe"); |
| 5004 | MODULE_LICENSE("GPL"); |
| 5005 | MODULE_DESCRIPTION("Completely Fair Queueing IO scheduler"); |