Christoph Hellwig | 3dcf60b | 2019-04-30 14:42:43 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 2 | /* |
| 3 | * MQ Deadline i/o scheduler - adaptation of the legacy deadline scheduler, |
| 4 | * for the blk-mq scheduling framework |
| 5 | * |
| 6 | * Copyright (C) 2016 Jens Axboe <axboe@kernel.dk> |
| 7 | */ |
| 8 | #include <linux/kernel.h> |
| 9 | #include <linux/fs.h> |
| 10 | #include <linux/blkdev.h> |
| 11 | #include <linux/blk-mq.h> |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 12 | #include <linux/bio.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/compiler.h> |
| 17 | #include <linux/rbtree.h> |
| 18 | #include <linux/sbitmap.h> |
| 19 | |
Chaitanya Kulkarni | b357e4a | 2021-02-21 21:29:59 -0800 | [diff] [blame] | 20 | #include <trace/events/block.h> |
| 21 | |
Christoph Hellwig | 2e9bc34 | 2021-09-20 14:33:23 +0200 | [diff] [blame] | 22 | #include "elevator.h" |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 23 | #include "blk.h" |
| 24 | #include "blk-mq.h" |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 25 | #include "blk-mq-debugfs.h" |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 26 | #include "blk-mq-tag.h" |
| 27 | #include "blk-mq-sched.h" |
| 28 | |
| 29 | /* |
Mauro Carvalho Chehab | 898bd37 | 2019-04-18 19:45:00 -0300 | [diff] [blame] | 30 | * See Documentation/block/deadline-iosched.rst |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 31 | */ |
| 32 | static const int read_expire = HZ / 2; /* max time before a read is submitted. */ |
| 33 | static const int write_expire = 5 * HZ; /* ditto for writes, these limits are SOFT! */ |
| 34 | static const int writes_starved = 2; /* max times reads can starve a write */ |
| 35 | static const int fifo_batch = 16; /* # of sequential requests treated as one |
| 36 | by the above parameters. For throughput. */ |
| 37 | |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 38 | enum dd_data_dir { |
| 39 | DD_READ = READ, |
| 40 | DD_WRITE = WRITE, |
| 41 | }; |
| 42 | |
| 43 | enum { DD_DIR_COUNT = 2 }; |
| 44 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 45 | enum dd_prio { |
| 46 | DD_RT_PRIO = 0, |
| 47 | DD_BE_PRIO = 1, |
| 48 | DD_IDLE_PRIO = 2, |
| 49 | DD_PRIO_MAX = 2, |
| 50 | }; |
| 51 | |
| 52 | enum { DD_PRIO_COUNT = 3 }; |
| 53 | |
Tejun Heo | 0f78399 | 2021-08-11 07:41:45 -1000 | [diff] [blame] | 54 | /* I/O statistics per I/O priority. */ |
| 55 | struct io_stats_per_prio { |
| 56 | local_t inserted; |
| 57 | local_t merged; |
| 58 | local_t dispatched; |
| 59 | local_t completed; |
| 60 | }; |
| 61 | |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 62 | /* I/O statistics for all I/O priorities (enum dd_prio). */ |
| 63 | struct io_stats { |
| 64 | struct io_stats_per_prio stats[DD_PRIO_COUNT]; |
| 65 | }; |
| 66 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 67 | /* |
| 68 | * Deadline scheduler data per I/O priority (enum dd_prio). Requests are |
| 69 | * present on both sort_list[] and fifo_list[]. |
| 70 | */ |
| 71 | struct dd_per_prio { |
| 72 | struct list_head dispatch; |
| 73 | struct rb_root sort_list[DD_DIR_COUNT]; |
| 74 | struct list_head fifo_list[DD_DIR_COUNT]; |
| 75 | /* Next request in FIFO order. Read, write or both are NULL. */ |
| 76 | struct request *next_rq[DD_DIR_COUNT]; |
| 77 | }; |
| 78 | |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 79 | struct deadline_data { |
| 80 | /* |
| 81 | * run time data |
| 82 | */ |
| 83 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 84 | struct dd_per_prio per_prio[DD_PRIO_COUNT]; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 85 | |
Bart Van Assche | d672d32 | 2021-06-17 17:44:52 -0700 | [diff] [blame] | 86 | /* Data direction of latest dispatched request. */ |
| 87 | enum dd_data_dir last_dir; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 88 | unsigned int batching; /* number of sequential requests made */ |
| 89 | unsigned int starved; /* times reads have starved writes */ |
| 90 | |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 91 | struct io_stats __percpu *stats; |
| 92 | |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 93 | /* |
| 94 | * settings that change how the i/o scheduler behaves |
| 95 | */ |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 96 | int fifo_expire[DD_DIR_COUNT]; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 97 | int fifo_batch; |
| 98 | int writes_starved; |
| 99 | int front_merges; |
Bart Van Assche | 0775758 | 2021-06-17 17:44:51 -0700 | [diff] [blame] | 100 | u32 async_depth; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 101 | |
| 102 | spinlock_t lock; |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 103 | spinlock_t zone_lock; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 104 | }; |
| 105 | |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 106 | /* Count one event of type 'event_type' and with I/O priority 'prio' */ |
| 107 | #define dd_count(dd, event_type, prio) do { \ |
| 108 | struct io_stats *io_stats = get_cpu_ptr((dd)->stats); \ |
| 109 | \ |
| 110 | BUILD_BUG_ON(!__same_type((dd), struct deadline_data *)); \ |
| 111 | BUILD_BUG_ON(!__same_type((prio), enum dd_prio)); \ |
| 112 | local_inc(&io_stats->stats[(prio)].event_type); \ |
| 113 | put_cpu_ptr(io_stats); \ |
| 114 | } while (0) |
| 115 | |
| 116 | /* |
| 117 | * Returns the total number of dd_count(dd, event_type, prio) calls across all |
| 118 | * CPUs. No locking or barriers since it is fine if the returned sum is slightly |
| 119 | * outdated. |
| 120 | */ |
| 121 | #define dd_sum(dd, event_type, prio) ({ \ |
| 122 | unsigned int cpu; \ |
| 123 | u32 sum = 0; \ |
| 124 | \ |
| 125 | BUILD_BUG_ON(!__same_type((dd), struct deadline_data *)); \ |
| 126 | BUILD_BUG_ON(!__same_type((prio), enum dd_prio)); \ |
| 127 | for_each_present_cpu(cpu) \ |
| 128 | sum += local_read(&per_cpu_ptr((dd)->stats, cpu)-> \ |
| 129 | stats[(prio)].event_type); \ |
| 130 | sum; \ |
| 131 | }) |
| 132 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 133 | /* Maps an I/O priority class to a deadline scheduler priority. */ |
| 134 | static const enum dd_prio ioprio_class_to_prio[] = { |
| 135 | [IOPRIO_CLASS_NONE] = DD_BE_PRIO, |
| 136 | [IOPRIO_CLASS_RT] = DD_RT_PRIO, |
| 137 | [IOPRIO_CLASS_BE] = DD_BE_PRIO, |
| 138 | [IOPRIO_CLASS_IDLE] = DD_IDLE_PRIO, |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | static inline struct rb_root * |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 142 | deadline_rb_root(struct dd_per_prio *per_prio, struct request *rq) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 143 | { |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 144 | return &per_prio->sort_list[rq_data_dir(rq)]; |
| 145 | } |
| 146 | |
| 147 | /* |
| 148 | * Returns the I/O priority class (IOPRIO_CLASS_*) that has been assigned to a |
| 149 | * request. |
| 150 | */ |
| 151 | static u8 dd_rq_ioclass(struct request *rq) |
| 152 | { |
| 153 | return IOPRIO_PRIO_CLASS(req_get_ioprio(rq)); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | /* |
| 157 | * get the request after `rq' in sector-sorted order |
| 158 | */ |
| 159 | static inline struct request * |
| 160 | deadline_latter_request(struct request *rq) |
| 161 | { |
| 162 | struct rb_node *node = rb_next(&rq->rb_node); |
| 163 | |
| 164 | if (node) |
| 165 | return rb_entry_rq(node); |
| 166 | |
| 167 | return NULL; |
| 168 | } |
| 169 | |
| 170 | static void |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 171 | deadline_add_rq_rb(struct dd_per_prio *per_prio, struct request *rq) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 172 | { |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 173 | struct rb_root *root = deadline_rb_root(per_prio, rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 174 | |
| 175 | elv_rb_add(root, rq); |
| 176 | } |
| 177 | |
| 178 | static inline void |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 179 | deadline_del_rq_rb(struct dd_per_prio *per_prio, struct request *rq) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 180 | { |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 181 | const enum dd_data_dir data_dir = rq_data_dir(rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 182 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 183 | if (per_prio->next_rq[data_dir] == rq) |
| 184 | per_prio->next_rq[data_dir] = deadline_latter_request(rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 185 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 186 | elv_rb_del(deadline_rb_root(per_prio, rq), rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | /* |
| 190 | * remove rq from rbtree and fifo. |
| 191 | */ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 192 | static void deadline_remove_request(struct request_queue *q, |
| 193 | struct dd_per_prio *per_prio, |
| 194 | struct request *rq) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 195 | { |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 196 | list_del_init(&rq->queuelist); |
| 197 | |
| 198 | /* |
| 199 | * We might not be on the rbtree, if we are doing an insert merge |
| 200 | */ |
| 201 | if (!RB_EMPTY_NODE(&rq->rb_node)) |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 202 | deadline_del_rq_rb(per_prio, rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 203 | |
| 204 | elv_rqhash_del(q, rq); |
| 205 | if (q->last_merge == rq) |
| 206 | q->last_merge = NULL; |
| 207 | } |
| 208 | |
| 209 | static void dd_request_merged(struct request_queue *q, struct request *req, |
Christoph Hellwig | 34fe7c0 | 2017-02-08 14:46:48 +0100 | [diff] [blame] | 210 | enum elv_merge type) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 211 | { |
| 212 | struct deadline_data *dd = q->elevator->elevator_data; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 213 | const u8 ioprio_class = dd_rq_ioclass(req); |
| 214 | const enum dd_prio prio = ioprio_class_to_prio[ioprio_class]; |
| 215 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 216 | |
| 217 | /* |
| 218 | * if the merge was a front merge, we need to reposition request |
| 219 | */ |
| 220 | if (type == ELEVATOR_FRONT_MERGE) { |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 221 | elv_rb_del(deadline_rb_root(per_prio, req), req); |
| 222 | deadline_add_rq_rb(per_prio, req); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | |
Bart Van Assche | 46eae2e | 2021-06-17 17:44:45 -0700 | [diff] [blame] | 226 | /* |
| 227 | * Callback function that is invoked after @next has been merged into @req. |
| 228 | */ |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 229 | static void dd_merged_requests(struct request_queue *q, struct request *req, |
| 230 | struct request *next) |
| 231 | { |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 232 | struct deadline_data *dd = q->elevator->elevator_data; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 233 | const u8 ioprio_class = dd_rq_ioclass(next); |
| 234 | const enum dd_prio prio = ioprio_class_to_prio[ioprio_class]; |
| 235 | |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 236 | dd_count(dd, merged, prio); |
| 237 | |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 238 | /* |
| 239 | * if next expires before rq, assign its expire time to rq |
| 240 | * and move into next position (next will be deleted) in fifo |
| 241 | */ |
| 242 | if (!list_empty(&req->queuelist) && !list_empty(&next->queuelist)) { |
| 243 | if (time_before((unsigned long)next->fifo_time, |
| 244 | (unsigned long)req->fifo_time)) { |
| 245 | list_move(&req->queuelist, &next->queuelist); |
| 246 | req->fifo_time = next->fifo_time; |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | /* |
| 251 | * kill knowledge of next, this one is a goner |
| 252 | */ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 253 | deadline_remove_request(q, &dd->per_prio[prio], next); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | /* |
| 257 | * move an entry to dispatch queue |
| 258 | */ |
| 259 | static void |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 260 | deadline_move_request(struct deadline_data *dd, struct dd_per_prio *per_prio, |
| 261 | struct request *rq) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 262 | { |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 263 | const enum dd_data_dir data_dir = rq_data_dir(rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 264 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 265 | per_prio->next_rq[data_dir] = deadline_latter_request(rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 266 | |
| 267 | /* |
| 268 | * take it off the sort and fifo list |
| 269 | */ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 270 | deadline_remove_request(rq->q, per_prio, rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | /* |
| 274 | * deadline_check_fifo returns 0 if there are no expired requests on the fifo, |
| 275 | * 1 otherwise. Requires !list_empty(&dd->fifo_list[data_dir]) |
| 276 | */ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 277 | static inline int deadline_check_fifo(struct dd_per_prio *per_prio, |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 278 | enum dd_data_dir data_dir) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 279 | { |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 280 | struct request *rq = rq_entry_fifo(per_prio->fifo_list[data_dir].next); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 281 | |
| 282 | /* |
| 283 | * rq is expired! |
| 284 | */ |
| 285 | if (time_after_eq(jiffies, (unsigned long)rq->fifo_time)) |
| 286 | return 1; |
| 287 | |
| 288 | return 0; |
| 289 | } |
| 290 | |
| 291 | /* |
Damien Le Moal | bf09ce5 | 2017-12-21 15:43:39 +0900 | [diff] [blame] | 292 | * For the specified data direction, return the next request to |
| 293 | * dispatch using arrival ordered lists. |
| 294 | */ |
| 295 | static struct request * |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 296 | deadline_fifo_request(struct deadline_data *dd, struct dd_per_prio *per_prio, |
| 297 | enum dd_data_dir data_dir) |
Damien Le Moal | bf09ce5 | 2017-12-21 15:43:39 +0900 | [diff] [blame] | 298 | { |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 299 | struct request *rq; |
| 300 | unsigned long flags; |
| 301 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 302 | if (list_empty(&per_prio->fifo_list[data_dir])) |
Damien Le Moal | bf09ce5 | 2017-12-21 15:43:39 +0900 | [diff] [blame] | 303 | return NULL; |
| 304 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 305 | rq = rq_entry_fifo(per_prio->fifo_list[data_dir].next); |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 306 | if (data_dir == DD_READ || !blk_queue_is_zoned(rq->q)) |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 307 | return rq; |
| 308 | |
| 309 | /* |
| 310 | * Look for a write request that can be dispatched, that is one with |
| 311 | * an unlocked target zone. |
| 312 | */ |
| 313 | spin_lock_irqsave(&dd->zone_lock, flags); |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 314 | list_for_each_entry(rq, &per_prio->fifo_list[DD_WRITE], queuelist) { |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 315 | if (blk_req_can_dispatch_to_zone(rq)) |
| 316 | goto out; |
| 317 | } |
| 318 | rq = NULL; |
| 319 | out: |
| 320 | spin_unlock_irqrestore(&dd->zone_lock, flags); |
| 321 | |
| 322 | return rq; |
Damien Le Moal | bf09ce5 | 2017-12-21 15:43:39 +0900 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | /* |
| 326 | * For the specified data direction, return the next request to |
| 327 | * dispatch using sector position sorted lists. |
| 328 | */ |
| 329 | static struct request * |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 330 | deadline_next_request(struct deadline_data *dd, struct dd_per_prio *per_prio, |
| 331 | enum dd_data_dir data_dir) |
Damien Le Moal | bf09ce5 | 2017-12-21 15:43:39 +0900 | [diff] [blame] | 332 | { |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 333 | struct request *rq; |
| 334 | unsigned long flags; |
| 335 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 336 | rq = per_prio->next_rq[data_dir]; |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 337 | if (!rq) |
| 338 | return NULL; |
| 339 | |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 340 | if (data_dir == DD_READ || !blk_queue_is_zoned(rq->q)) |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 341 | return rq; |
| 342 | |
| 343 | /* |
| 344 | * Look for a write request that can be dispatched, that is one with |
| 345 | * an unlocked target zone. |
| 346 | */ |
| 347 | spin_lock_irqsave(&dd->zone_lock, flags); |
| 348 | while (rq) { |
| 349 | if (blk_req_can_dispatch_to_zone(rq)) |
| 350 | break; |
| 351 | rq = deadline_latter_request(rq); |
| 352 | } |
| 353 | spin_unlock_irqrestore(&dd->zone_lock, flags); |
| 354 | |
| 355 | return rq; |
Damien Le Moal | bf09ce5 | 2017-12-21 15:43:39 +0900 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | /* |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 359 | * deadline_dispatch_requests selects the best request according to |
Jens Axboe | 7b05bf7 | 2021-08-26 12:59:44 -0600 | [diff] [blame] | 360 | * read/write expire, fifo_batch, etc |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 361 | */ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 362 | static struct request *__dd_dispatch_request(struct deadline_data *dd, |
Jens Axboe | 7b05bf7 | 2021-08-26 12:59:44 -0600 | [diff] [blame] | 363 | struct dd_per_prio *per_prio) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 364 | { |
Damien Le Moal | bf09ce5 | 2017-12-21 15:43:39 +0900 | [diff] [blame] | 365 | struct request *rq, *next_rq; |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 366 | enum dd_data_dir data_dir; |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 367 | enum dd_prio prio; |
| 368 | u8 ioprio_class; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 369 | |
Bart Van Assche | 3bd473f | 2021-06-17 17:44:46 -0700 | [diff] [blame] | 370 | lockdep_assert_held(&dd->lock); |
| 371 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 372 | if (!list_empty(&per_prio->dispatch)) { |
| 373 | rq = list_first_entry(&per_prio->dispatch, struct request, |
| 374 | queuelist); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 375 | list_del_init(&rq->queuelist); |
| 376 | goto done; |
| 377 | } |
| 378 | |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 379 | /* |
| 380 | * batches are currently reads XOR writes |
| 381 | */ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 382 | rq = deadline_next_request(dd, per_prio, dd->last_dir); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 383 | if (rq && dd->batching < dd->fifo_batch) |
| 384 | /* we have a next request are still entitled to batch */ |
| 385 | goto dispatch_request; |
| 386 | |
| 387 | /* |
| 388 | * at this point we are not running a batch. select the appropriate |
| 389 | * data direction (read / write) |
| 390 | */ |
| 391 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 392 | if (!list_empty(&per_prio->fifo_list[DD_READ])) { |
| 393 | BUG_ON(RB_EMPTY_ROOT(&per_prio->sort_list[DD_READ])); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 394 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 395 | if (deadline_fifo_request(dd, per_prio, DD_WRITE) && |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 396 | (dd->starved++ >= dd->writes_starved)) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 397 | goto dispatch_writes; |
| 398 | |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 399 | data_dir = DD_READ; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 400 | |
| 401 | goto dispatch_find_request; |
| 402 | } |
| 403 | |
| 404 | /* |
| 405 | * there are either no reads or writes have been starved |
| 406 | */ |
| 407 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 408 | if (!list_empty(&per_prio->fifo_list[DD_WRITE])) { |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 409 | dispatch_writes: |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 410 | BUG_ON(RB_EMPTY_ROOT(&per_prio->sort_list[DD_WRITE])); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 411 | |
| 412 | dd->starved = 0; |
| 413 | |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 414 | data_dir = DD_WRITE; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 415 | |
| 416 | goto dispatch_find_request; |
| 417 | } |
| 418 | |
| 419 | return NULL; |
| 420 | |
| 421 | dispatch_find_request: |
| 422 | /* |
| 423 | * we are not running a batch, find best request for selected data_dir |
| 424 | */ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 425 | next_rq = deadline_next_request(dd, per_prio, data_dir); |
| 426 | if (deadline_check_fifo(per_prio, data_dir) || !next_rq) { |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 427 | /* |
| 428 | * A deadline has expired, the last request was in the other |
| 429 | * direction, or we have run out of higher-sectored requests. |
| 430 | * Start again from the request with the earliest expiry time. |
| 431 | */ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 432 | rq = deadline_fifo_request(dd, per_prio, data_dir); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 433 | } else { |
| 434 | /* |
| 435 | * The last req was the same dir and we have a next request in |
| 436 | * sort order. No expired requests so continue on from here. |
| 437 | */ |
Damien Le Moal | bf09ce5 | 2017-12-21 15:43:39 +0900 | [diff] [blame] | 438 | rq = next_rq; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 439 | } |
| 440 | |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 441 | /* |
| 442 | * For a zoned block device, if we only have writes queued and none of |
| 443 | * them can be dispatched, rq will be NULL. |
| 444 | */ |
| 445 | if (!rq) |
| 446 | return NULL; |
| 447 | |
Bart Van Assche | d672d32 | 2021-06-17 17:44:52 -0700 | [diff] [blame] | 448 | dd->last_dir = data_dir; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 449 | dd->batching = 0; |
| 450 | |
| 451 | dispatch_request: |
| 452 | /* |
| 453 | * rq is the selected appropriate request. |
| 454 | */ |
| 455 | dd->batching++; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 456 | deadline_move_request(dd, per_prio, rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 457 | done: |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 458 | ioprio_class = dd_rq_ioclass(rq); |
| 459 | prio = ioprio_class_to_prio[ioprio_class]; |
| 460 | dd_count(dd, dispatched, prio); |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 461 | /* |
| 462 | * If the request needs its target zone locked, do it. |
| 463 | */ |
| 464 | blk_req_zone_write_lock(rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 465 | rq->rq_flags |= RQF_STARTED; |
| 466 | return rq; |
| 467 | } |
| 468 | |
Jens Axboe | ca11f20 | 2018-01-06 09:23:11 -0700 | [diff] [blame] | 469 | /* |
Bart Van Assche | 46eae2e | 2021-06-17 17:44:45 -0700 | [diff] [blame] | 470 | * Called from blk_mq_run_hw_queue() -> __blk_mq_sched_dispatch_requests(). |
| 471 | * |
Jens Axboe | ca11f20 | 2018-01-06 09:23:11 -0700 | [diff] [blame] | 472 | * One confusing aspect here is that we get called for a specific |
Damien Le Moal | 7211aef8 | 2018-12-17 15:14:05 +0900 | [diff] [blame] | 473 | * hardware queue, but we may return a request that is for a |
Jens Axboe | ca11f20 | 2018-01-06 09:23:11 -0700 | [diff] [blame] | 474 | * different hardware queue. This is because mq-deadline has shared |
| 475 | * state for all hardware queues, in terms of sorting, FIFOs, etc. |
| 476 | */ |
Jens Axboe | c13660a | 2017-01-26 12:40:07 -0700 | [diff] [blame] | 477 | static struct request *dd_dispatch_request(struct blk_mq_hw_ctx *hctx) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 478 | { |
| 479 | struct deadline_data *dd = hctx->queue->elevator->elevator_data; |
Jens Axboe | 7b05bf7 | 2021-08-26 12:59:44 -0600 | [diff] [blame] | 480 | struct request *rq; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 481 | enum dd_prio prio; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 482 | |
| 483 | spin_lock(&dd->lock); |
Bart Van Assche | fb926032 | 2021-06-17 17:44:56 -0700 | [diff] [blame] | 484 | for (prio = 0; prio <= DD_PRIO_MAX; prio++) { |
Jens Axboe | 7b05bf7 | 2021-08-26 12:59:44 -0600 | [diff] [blame] | 485 | rq = __dd_dispatch_request(dd, &dd->per_prio[prio]); |
| 486 | if (rq) |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 487 | break; |
| 488 | } |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 489 | spin_unlock(&dd->lock); |
Jens Axboe | c13660a | 2017-01-26 12:40:07 -0700 | [diff] [blame] | 490 | |
| 491 | return rq; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 492 | } |
| 493 | |
Bart Van Assche | 0775758 | 2021-06-17 17:44:51 -0700 | [diff] [blame] | 494 | /* |
| 495 | * Called by __blk_mq_alloc_request(). The shallow_depth value set by this |
| 496 | * function is used by __blk_mq_get_tag(). |
| 497 | */ |
| 498 | static void dd_limit_depth(unsigned int op, struct blk_mq_alloc_data *data) |
| 499 | { |
| 500 | struct deadline_data *dd = data->q->elevator->elevator_data; |
| 501 | |
| 502 | /* Do not throttle synchronous reads. */ |
| 503 | if (op_is_sync(op) && !op_is_write(op)) |
| 504 | return; |
| 505 | |
| 506 | /* |
| 507 | * Throttle asynchronous requests and writes such that these requests |
| 508 | * do not block the allocation of synchronous requests. |
| 509 | */ |
| 510 | data->shallow_depth = dd->async_depth; |
| 511 | } |
| 512 | |
| 513 | /* Called by blk_mq_update_nr_requests(). */ |
| 514 | static void dd_depth_updated(struct blk_mq_hw_ctx *hctx) |
| 515 | { |
| 516 | struct request_queue *q = hctx->queue; |
| 517 | struct deadline_data *dd = q->elevator->elevator_data; |
| 518 | struct blk_mq_tags *tags = hctx->sched_tags; |
| 519 | |
| 520 | dd->async_depth = max(1UL, 3 * q->nr_requests / 4); |
| 521 | |
| 522 | sbitmap_queue_min_shallow_depth(tags->bitmap_tags, dd->async_depth); |
| 523 | } |
| 524 | |
| 525 | /* Called by blk_mq_init_hctx() and blk_mq_init_sched(). */ |
| 526 | static int dd_init_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx) |
| 527 | { |
| 528 | dd_depth_updated(hctx); |
| 529 | return 0; |
| 530 | } |
| 531 | |
Bart Van Assche | 3e9a99e | 2021-06-17 17:44:48 -0700 | [diff] [blame] | 532 | static void dd_exit_sched(struct elevator_queue *e) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 533 | { |
| 534 | struct deadline_data *dd = e->elevator_data; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 535 | enum dd_prio prio; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 536 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 537 | for (prio = 0; prio <= DD_PRIO_MAX; prio++) { |
| 538 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; |
| 539 | |
| 540 | WARN_ON_ONCE(!list_empty(&per_prio->fifo_list[DD_READ])); |
| 541 | WARN_ON_ONCE(!list_empty(&per_prio->fifo_list[DD_WRITE])); |
| 542 | } |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 543 | |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 544 | free_percpu(dd->stats); |
| 545 | |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 546 | kfree(dd); |
| 547 | } |
| 548 | |
| 549 | /* |
Tejun Heo | 0f78399 | 2021-08-11 07:41:45 -1000 | [diff] [blame] | 550 | * initialize elevator private data (deadline_data). |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 551 | */ |
Bart Van Assche | 3e9a99e | 2021-06-17 17:44:48 -0700 | [diff] [blame] | 552 | static int dd_init_sched(struct request_queue *q, struct elevator_type *e) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 553 | { |
| 554 | struct deadline_data *dd; |
| 555 | struct elevator_queue *eq; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 556 | enum dd_prio prio; |
| 557 | int ret = -ENOMEM; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 558 | |
| 559 | eq = elevator_alloc(q, e); |
| 560 | if (!eq) |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 561 | return ret; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 562 | |
| 563 | dd = kzalloc_node(sizeof(*dd), GFP_KERNEL, q->node); |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 564 | if (!dd) |
| 565 | goto put_eq; |
| 566 | |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 567 | eq->elevator_data = dd; |
| 568 | |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 569 | dd->stats = alloc_percpu_gfp(typeof(*dd->stats), |
| 570 | GFP_KERNEL | __GFP_ZERO); |
| 571 | if (!dd->stats) |
| 572 | goto free_dd; |
| 573 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 574 | for (prio = 0; prio <= DD_PRIO_MAX; prio++) { |
| 575 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; |
| 576 | |
| 577 | INIT_LIST_HEAD(&per_prio->dispatch); |
| 578 | INIT_LIST_HEAD(&per_prio->fifo_list[DD_READ]); |
| 579 | INIT_LIST_HEAD(&per_prio->fifo_list[DD_WRITE]); |
| 580 | per_prio->sort_list[DD_READ] = RB_ROOT; |
| 581 | per_prio->sort_list[DD_WRITE] = RB_ROOT; |
| 582 | } |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 583 | dd->fifo_expire[DD_READ] = read_expire; |
| 584 | dd->fifo_expire[DD_WRITE] = write_expire; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 585 | dd->writes_starved = writes_starved; |
| 586 | dd->front_merges = 1; |
Bart Van Assche | d672d32 | 2021-06-17 17:44:52 -0700 | [diff] [blame] | 587 | dd->last_dir = DD_WRITE; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 588 | dd->fifo_batch = fifo_batch; |
| 589 | spin_lock_init(&dd->lock); |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 590 | spin_lock_init(&dd->zone_lock); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 591 | |
| 592 | q->elevator = eq; |
| 593 | return 0; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 594 | |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 595 | free_dd: |
| 596 | kfree(dd); |
| 597 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 598 | put_eq: |
| 599 | kobject_put(&eq->kobj); |
| 600 | return ret; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 601 | } |
| 602 | |
Bart Van Assche | 46eae2e | 2021-06-17 17:44:45 -0700 | [diff] [blame] | 603 | /* |
| 604 | * Try to merge @bio into an existing request. If @bio has been merged into |
| 605 | * an existing request, store the pointer to that request into *@rq. |
| 606 | */ |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 607 | static int dd_request_merge(struct request_queue *q, struct request **rq, |
| 608 | struct bio *bio) |
| 609 | { |
| 610 | struct deadline_data *dd = q->elevator->elevator_data; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 611 | const u8 ioprio_class = IOPRIO_PRIO_CLASS(bio->bi_ioprio); |
| 612 | const enum dd_prio prio = ioprio_class_to_prio[ioprio_class]; |
| 613 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 614 | sector_t sector = bio_end_sector(bio); |
| 615 | struct request *__rq; |
| 616 | |
| 617 | if (!dd->front_merges) |
| 618 | return ELEVATOR_NO_MERGE; |
| 619 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 620 | __rq = elv_rb_find(&per_prio->sort_list[bio_data_dir(bio)], sector); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 621 | if (__rq) { |
| 622 | BUG_ON(sector != blk_rq_pos(__rq)); |
| 623 | |
| 624 | if (elv_bio_merge_ok(__rq, bio)) { |
| 625 | *rq = __rq; |
Ming Lei | 866663b | 2021-07-29 11:42:26 +0800 | [diff] [blame] | 626 | if (blk_discard_mergable(__rq)) |
| 627 | return ELEVATOR_DISCARD_MERGE; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 628 | return ELEVATOR_FRONT_MERGE; |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | return ELEVATOR_NO_MERGE; |
| 633 | } |
| 634 | |
Bart Van Assche | 46eae2e | 2021-06-17 17:44:45 -0700 | [diff] [blame] | 635 | /* |
| 636 | * Attempt to merge a bio into an existing request. This function is called |
| 637 | * before @bio is associated with a request. |
| 638 | */ |
Omar Sandoval | efed9a3 | 2021-05-10 17:05:35 -0700 | [diff] [blame] | 639 | static bool dd_bio_merge(struct request_queue *q, struct bio *bio, |
Christoph Hellwig | 14ccb66 | 2019-06-06 12:29:01 +0200 | [diff] [blame] | 640 | unsigned int nr_segs) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 641 | { |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 642 | struct deadline_data *dd = q->elevator->elevator_data; |
Jens Axboe | e4d750c | 2017-02-03 09:48:28 -0700 | [diff] [blame] | 643 | struct request *free = NULL; |
| 644 | bool ret; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 645 | |
| 646 | spin_lock(&dd->lock); |
Christoph Hellwig | 14ccb66 | 2019-06-06 12:29:01 +0200 | [diff] [blame] | 647 | ret = blk_mq_sched_try_merge(q, bio, nr_segs, &free); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 648 | spin_unlock(&dd->lock); |
| 649 | |
Jens Axboe | e4d750c | 2017-02-03 09:48:28 -0700 | [diff] [blame] | 650 | if (free) |
| 651 | blk_mq_free_request(free); |
| 652 | |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 653 | return ret; |
| 654 | } |
| 655 | |
| 656 | /* |
| 657 | * add rq to rbtree and fifo |
| 658 | */ |
| 659 | static void dd_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq, |
| 660 | bool at_head) |
| 661 | { |
| 662 | struct request_queue *q = hctx->queue; |
| 663 | struct deadline_data *dd = q->elevator->elevator_data; |
Bart Van Assche | 004a26b | 2021-06-17 17:44:49 -0700 | [diff] [blame] | 664 | const enum dd_data_dir data_dir = rq_data_dir(rq); |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 665 | u16 ioprio = req_get_ioprio(rq); |
| 666 | u8 ioprio_class = IOPRIO_PRIO_CLASS(ioprio); |
| 667 | struct dd_per_prio *per_prio; |
| 668 | enum dd_prio prio; |
Jan Kara | fd2ef39 | 2021-06-23 11:36:34 +0200 | [diff] [blame] | 669 | LIST_HEAD(free); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 670 | |
Bart Van Assche | 3bd473f | 2021-06-17 17:44:46 -0700 | [diff] [blame] | 671 | lockdep_assert_held(&dd->lock); |
| 672 | |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 673 | /* |
| 674 | * This may be a requeue of a write request that has locked its |
| 675 | * target zone. If it is the case, this releases the zone lock. |
| 676 | */ |
| 677 | blk_req_zone_write_unlock(rq); |
| 678 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 679 | prio = ioprio_class_to_prio[ioprio_class]; |
Bart Van Assche | e2c7275 | 2021-09-27 15:03:25 -0700 | [diff] [blame^] | 680 | if (!rq->elv.priv[0]) { |
| 681 | dd_count(dd, inserted, prio); |
| 682 | rq->elv.priv[0] = (void *)(uintptr_t)1; |
| 683 | } |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 684 | |
Jan Kara | fd2ef39 | 2021-06-23 11:36:34 +0200 | [diff] [blame] | 685 | if (blk_mq_sched_try_insert_merge(q, rq, &free)) { |
| 686 | blk_mq_free_requests(&free); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 687 | return; |
Jan Kara | fd2ef39 | 2021-06-23 11:36:34 +0200 | [diff] [blame] | 688 | } |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 689 | |
Chaitanya Kulkarni | b357e4a | 2021-02-21 21:29:59 -0800 | [diff] [blame] | 690 | trace_block_rq_insert(rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 691 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 692 | per_prio = &dd->per_prio[prio]; |
Lin Feng | 7687b38 | 2021-04-15 11:43:26 +0800 | [diff] [blame] | 693 | if (at_head) { |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 694 | list_add(&rq->queuelist, &per_prio->dispatch); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 695 | } else { |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 696 | deadline_add_rq_rb(per_prio, rq); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 697 | |
| 698 | if (rq_mergeable(rq)) { |
| 699 | elv_rqhash_add(q, rq); |
| 700 | if (!q->last_merge) |
| 701 | q->last_merge = rq; |
| 702 | } |
| 703 | |
| 704 | /* |
| 705 | * set expire time and add to fifo list |
| 706 | */ |
| 707 | rq->fifo_time = jiffies + dd->fifo_expire[data_dir]; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 708 | list_add_tail(&rq->queuelist, &per_prio->fifo_list[data_dir]); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 709 | } |
| 710 | } |
| 711 | |
Bart Van Assche | 46eae2e | 2021-06-17 17:44:45 -0700 | [diff] [blame] | 712 | /* |
| 713 | * Called from blk_mq_sched_insert_request() or blk_mq_sched_insert_requests(). |
| 714 | */ |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 715 | static void dd_insert_requests(struct blk_mq_hw_ctx *hctx, |
| 716 | struct list_head *list, bool at_head) |
| 717 | { |
| 718 | struct request_queue *q = hctx->queue; |
| 719 | struct deadline_data *dd = q->elevator->elevator_data; |
| 720 | |
| 721 | spin_lock(&dd->lock); |
| 722 | while (!list_empty(list)) { |
| 723 | struct request *rq; |
| 724 | |
| 725 | rq = list_first_entry(list, struct request, queuelist); |
| 726 | list_del_init(&rq->queuelist); |
| 727 | dd_insert_request(hctx, rq, at_head); |
| 728 | } |
| 729 | spin_unlock(&dd->lock); |
| 730 | } |
| 731 | |
Bart Van Assche | b6d2b05 | 2021-08-24 10:05:20 -0700 | [diff] [blame] | 732 | /* Callback from inside blk_mq_rq_ctx_init(). */ |
Christoph Hellwig | 5d9c305 | 2020-05-29 15:53:08 +0200 | [diff] [blame] | 733 | static void dd_prepare_request(struct request *rq) |
Damien Le Moal | f3bc78d | 2018-02-28 09:35:29 -0800 | [diff] [blame] | 734 | { |
Bart Van Assche | b6d2b05 | 2021-08-24 10:05:20 -0700 | [diff] [blame] | 735 | rq->elv.priv[0] = NULL; |
Damien Le Moal | f3bc78d | 2018-02-28 09:35:29 -0800 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | /* |
Bart Van Assche | 46eae2e | 2021-06-17 17:44:45 -0700 | [diff] [blame] | 739 | * Callback from inside blk_mq_free_request(). |
| 740 | * |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 741 | * For zoned block devices, write unlock the target zone of |
| 742 | * completed write requests. Do this while holding the zone lock |
| 743 | * spinlock so that the zone is never unlocked while deadline_fifo_request() |
Damien Le Moal | f3bc78d | 2018-02-28 09:35:29 -0800 | [diff] [blame] | 744 | * or deadline_next_request() are executing. This function is called for |
| 745 | * all requests, whether or not these requests complete successfully. |
Damien Le Moal | cb8acab | 2019-08-28 13:40:20 +0900 | [diff] [blame] | 746 | * |
| 747 | * For a zoned block device, __dd_dispatch_request() may have stopped |
| 748 | * dispatching requests if all the queued requests are write requests directed |
| 749 | * at zones that are already locked due to on-going write requests. To ensure |
| 750 | * write request dispatch progress in this case, mark the queue as needing a |
| 751 | * restart to ensure that the queue is run again after completion of the |
| 752 | * request and zones being unlocked. |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 753 | */ |
Damien Le Moal | f3bc78d | 2018-02-28 09:35:29 -0800 | [diff] [blame] | 754 | static void dd_finish_request(struct request *rq) |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 755 | { |
| 756 | struct request_queue *q = rq->q; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 757 | struct deadline_data *dd = q->elevator->elevator_data; |
| 758 | const u8 ioprio_class = dd_rq_ioclass(rq); |
| 759 | const enum dd_prio prio = ioprio_class_to_prio[ioprio_class]; |
| 760 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 761 | |
Bart Van Assche | b6d2b05 | 2021-08-24 10:05:20 -0700 | [diff] [blame] | 762 | /* |
| 763 | * The block layer core may call dd_finish_request() without having |
Bart Van Assche | e2c7275 | 2021-09-27 15:03:25 -0700 | [diff] [blame^] | 764 | * called dd_insert_requests(). Skip requests that bypassed I/O |
| 765 | * scheduling. See also blk_mq_request_bypass_insert(). |
Bart Van Assche | b6d2b05 | 2021-08-24 10:05:20 -0700 | [diff] [blame] | 766 | */ |
Bart Van Assche | e2c7275 | 2021-09-27 15:03:25 -0700 | [diff] [blame^] | 767 | if (!rq->elv.priv[0]) |
| 768 | return; |
| 769 | |
| 770 | dd_count(dd, completed, prio); |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 771 | |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 772 | if (blk_queue_is_zoned(q)) { |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 773 | unsigned long flags; |
| 774 | |
| 775 | spin_lock_irqsave(&dd->zone_lock, flags); |
| 776 | blk_req_zone_write_unlock(rq); |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 777 | if (!list_empty(&per_prio->fifo_list[DD_WRITE])) |
Damien Le Moal | cb8acab | 2019-08-28 13:40:20 +0900 | [diff] [blame] | 778 | blk_mq_sched_mark_restart_hctx(rq->mq_hctx); |
Damien Le Moal | 5700f69 | 2017-12-21 15:43:40 +0900 | [diff] [blame] | 779 | spin_unlock_irqrestore(&dd->zone_lock, flags); |
| 780 | } |
| 781 | } |
| 782 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 783 | static bool dd_has_work_for_prio(struct dd_per_prio *per_prio) |
| 784 | { |
| 785 | return !list_empty_careful(&per_prio->dispatch) || |
| 786 | !list_empty_careful(&per_prio->fifo_list[DD_READ]) || |
| 787 | !list_empty_careful(&per_prio->fifo_list[DD_WRITE]); |
| 788 | } |
| 789 | |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 790 | static bool dd_has_work(struct blk_mq_hw_ctx *hctx) |
| 791 | { |
| 792 | struct deadline_data *dd = hctx->queue->elevator->elevator_data; |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 793 | enum dd_prio prio; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 794 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 795 | for (prio = 0; prio <= DD_PRIO_MAX; prio++) |
| 796 | if (dd_has_work_for_prio(&dd->per_prio[prio])) |
| 797 | return true; |
| 798 | |
| 799 | return false; |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 800 | } |
| 801 | |
| 802 | /* |
| 803 | * sysfs parts below |
| 804 | */ |
Bart Van Assche | d6d7f01 | 2021-06-17 17:44:50 -0700 | [diff] [blame] | 805 | #define SHOW_INT(__FUNC, __VAR) \ |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 806 | static ssize_t __FUNC(struct elevator_queue *e, char *page) \ |
| 807 | { \ |
| 808 | struct deadline_data *dd = e->elevator_data; \ |
Bart Van Assche | d6d7f01 | 2021-06-17 17:44:50 -0700 | [diff] [blame] | 809 | \ |
| 810 | return sysfs_emit(page, "%d\n", __VAR); \ |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 811 | } |
Bart Van Assche | d6d7f01 | 2021-06-17 17:44:50 -0700 | [diff] [blame] | 812 | #define SHOW_JIFFIES(__FUNC, __VAR) SHOW_INT(__FUNC, jiffies_to_msecs(__VAR)) |
| 813 | SHOW_JIFFIES(deadline_read_expire_show, dd->fifo_expire[DD_READ]); |
| 814 | SHOW_JIFFIES(deadline_write_expire_show, dd->fifo_expire[DD_WRITE]); |
| 815 | SHOW_INT(deadline_writes_starved_show, dd->writes_starved); |
| 816 | SHOW_INT(deadline_front_merges_show, dd->front_merges); |
Bart Van Assche | 0775758 | 2021-06-17 17:44:51 -0700 | [diff] [blame] | 817 | SHOW_INT(deadline_async_depth_show, dd->front_merges); |
Bart Van Assche | d6d7f01 | 2021-06-17 17:44:50 -0700 | [diff] [blame] | 818 | SHOW_INT(deadline_fifo_batch_show, dd->fifo_batch); |
| 819 | #undef SHOW_INT |
| 820 | #undef SHOW_JIFFIES |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 821 | |
| 822 | #define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \ |
| 823 | static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \ |
| 824 | { \ |
| 825 | struct deadline_data *dd = e->elevator_data; \ |
Bart Van Assche | d6d7f01 | 2021-06-17 17:44:50 -0700 | [diff] [blame] | 826 | int __data, __ret; \ |
| 827 | \ |
| 828 | __ret = kstrtoint(page, 0, &__data); \ |
| 829 | if (__ret < 0) \ |
| 830 | return __ret; \ |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 831 | if (__data < (MIN)) \ |
| 832 | __data = (MIN); \ |
| 833 | else if (__data > (MAX)) \ |
| 834 | __data = (MAX); \ |
Bart Van Assche | d6d7f01 | 2021-06-17 17:44:50 -0700 | [diff] [blame] | 835 | *(__PTR) = __CONV(__data); \ |
weiping zhang | 235f8da | 2017-08-25 01:11:33 +0800 | [diff] [blame] | 836 | return count; \ |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 837 | } |
Bart Van Assche | d6d7f01 | 2021-06-17 17:44:50 -0700 | [diff] [blame] | 838 | #define STORE_INT(__FUNC, __PTR, MIN, MAX) \ |
| 839 | STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, ) |
| 840 | #define STORE_JIFFIES(__FUNC, __PTR, MIN, MAX) \ |
| 841 | STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, msecs_to_jiffies) |
| 842 | STORE_JIFFIES(deadline_read_expire_store, &dd->fifo_expire[DD_READ], 0, INT_MAX); |
| 843 | STORE_JIFFIES(deadline_write_expire_store, &dd->fifo_expire[DD_WRITE], 0, INT_MAX); |
| 844 | STORE_INT(deadline_writes_starved_store, &dd->writes_starved, INT_MIN, INT_MAX); |
| 845 | STORE_INT(deadline_front_merges_store, &dd->front_merges, 0, 1); |
Bart Van Assche | 0775758 | 2021-06-17 17:44:51 -0700 | [diff] [blame] | 846 | STORE_INT(deadline_async_depth_store, &dd->front_merges, 1, INT_MAX); |
Bart Van Assche | d6d7f01 | 2021-06-17 17:44:50 -0700 | [diff] [blame] | 847 | STORE_INT(deadline_fifo_batch_store, &dd->fifo_batch, 0, INT_MAX); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 848 | #undef STORE_FUNCTION |
Bart Van Assche | d6d7f01 | 2021-06-17 17:44:50 -0700 | [diff] [blame] | 849 | #undef STORE_INT |
| 850 | #undef STORE_JIFFIES |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 851 | |
| 852 | #define DD_ATTR(name) \ |
Joe Perches | 5657a81 | 2018-05-24 13:38:59 -0600 | [diff] [blame] | 853 | __ATTR(name, 0644, deadline_##name##_show, deadline_##name##_store) |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 854 | |
| 855 | static struct elv_fs_entry deadline_attrs[] = { |
| 856 | DD_ATTR(read_expire), |
| 857 | DD_ATTR(write_expire), |
| 858 | DD_ATTR(writes_starved), |
| 859 | DD_ATTR(front_merges), |
Bart Van Assche | 0775758 | 2021-06-17 17:44:51 -0700 | [diff] [blame] | 860 | DD_ATTR(async_depth), |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 861 | DD_ATTR(fifo_batch), |
| 862 | __ATTR_NULL |
| 863 | }; |
| 864 | |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 865 | #ifdef CONFIG_BLK_DEBUG_FS |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 866 | #define DEADLINE_DEBUGFS_DDIR_ATTRS(prio, data_dir, name) \ |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 867 | static void *deadline_##name##_fifo_start(struct seq_file *m, \ |
| 868 | loff_t *pos) \ |
| 869 | __acquires(&dd->lock) \ |
| 870 | { \ |
| 871 | struct request_queue *q = m->private; \ |
| 872 | struct deadline_data *dd = q->elevator->elevator_data; \ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 873 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 874 | \ |
| 875 | spin_lock(&dd->lock); \ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 876 | return seq_list_start(&per_prio->fifo_list[data_dir], *pos); \ |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 877 | } \ |
| 878 | \ |
| 879 | static void *deadline_##name##_fifo_next(struct seq_file *m, void *v, \ |
| 880 | loff_t *pos) \ |
| 881 | { \ |
| 882 | struct request_queue *q = m->private; \ |
| 883 | struct deadline_data *dd = q->elevator->elevator_data; \ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 884 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 885 | \ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 886 | return seq_list_next(v, &per_prio->fifo_list[data_dir], pos); \ |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 887 | } \ |
| 888 | \ |
| 889 | static void deadline_##name##_fifo_stop(struct seq_file *m, void *v) \ |
| 890 | __releases(&dd->lock) \ |
| 891 | { \ |
| 892 | struct request_queue *q = m->private; \ |
| 893 | struct deadline_data *dd = q->elevator->elevator_data; \ |
| 894 | \ |
| 895 | spin_unlock(&dd->lock); \ |
| 896 | } \ |
| 897 | \ |
| 898 | static const struct seq_operations deadline_##name##_fifo_seq_ops = { \ |
| 899 | .start = deadline_##name##_fifo_start, \ |
| 900 | .next = deadline_##name##_fifo_next, \ |
| 901 | .stop = deadline_##name##_fifo_stop, \ |
| 902 | .show = blk_mq_debugfs_rq_show, \ |
| 903 | }; \ |
| 904 | \ |
| 905 | static int deadline_##name##_next_rq_show(void *data, \ |
| 906 | struct seq_file *m) \ |
| 907 | { \ |
| 908 | struct request_queue *q = data; \ |
| 909 | struct deadline_data *dd = q->elevator->elevator_data; \ |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 910 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ |
| 911 | struct request *rq = per_prio->next_rq[data_dir]; \ |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 912 | \ |
| 913 | if (rq) \ |
| 914 | __blk_mq_debugfs_rq_show(m, rq); \ |
| 915 | return 0; \ |
| 916 | } |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 917 | |
| 918 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_RT_PRIO, DD_READ, read0); |
| 919 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_RT_PRIO, DD_WRITE, write0); |
| 920 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_BE_PRIO, DD_READ, read1); |
| 921 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_BE_PRIO, DD_WRITE, write1); |
| 922 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_IDLE_PRIO, DD_READ, read2); |
| 923 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_IDLE_PRIO, DD_WRITE, write2); |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 924 | #undef DEADLINE_DEBUGFS_DDIR_ATTRS |
| 925 | |
| 926 | static int deadline_batching_show(void *data, struct seq_file *m) |
| 927 | { |
| 928 | struct request_queue *q = data; |
| 929 | struct deadline_data *dd = q->elevator->elevator_data; |
| 930 | |
| 931 | seq_printf(m, "%u\n", dd->batching); |
| 932 | return 0; |
| 933 | } |
| 934 | |
| 935 | static int deadline_starved_show(void *data, struct seq_file *m) |
| 936 | { |
| 937 | struct request_queue *q = data; |
| 938 | struct deadline_data *dd = q->elevator->elevator_data; |
| 939 | |
| 940 | seq_printf(m, "%u\n", dd->starved); |
| 941 | return 0; |
| 942 | } |
| 943 | |
Bart Van Assche | 0775758 | 2021-06-17 17:44:51 -0700 | [diff] [blame] | 944 | static int dd_async_depth_show(void *data, struct seq_file *m) |
| 945 | { |
| 946 | struct request_queue *q = data; |
| 947 | struct deadline_data *dd = q->elevator->elevator_data; |
| 948 | |
| 949 | seq_printf(m, "%u\n", dd->async_depth); |
| 950 | return 0; |
| 951 | } |
| 952 | |
Geert Uytterhoeven | 55a51ea | 2021-08-30 11:11:28 +0200 | [diff] [blame] | 953 | /* Number of requests queued for a given priority level. */ |
| 954 | static u32 dd_queued(struct deadline_data *dd, enum dd_prio prio) |
| 955 | { |
| 956 | return dd_sum(dd, inserted, prio) - dd_sum(dd, completed, prio); |
| 957 | } |
| 958 | |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 959 | static int dd_queued_show(void *data, struct seq_file *m) |
| 960 | { |
| 961 | struct request_queue *q = data; |
| 962 | struct deadline_data *dd = q->elevator->elevator_data; |
| 963 | |
| 964 | seq_printf(m, "%u %u %u\n", dd_queued(dd, DD_RT_PRIO), |
| 965 | dd_queued(dd, DD_BE_PRIO), |
| 966 | dd_queued(dd, DD_IDLE_PRIO)); |
| 967 | return 0; |
| 968 | } |
| 969 | |
| 970 | /* Number of requests owned by the block driver for a given priority. */ |
| 971 | static u32 dd_owned_by_driver(struct deadline_data *dd, enum dd_prio prio) |
| 972 | { |
| 973 | return dd_sum(dd, dispatched, prio) + dd_sum(dd, merged, prio) |
| 974 | - dd_sum(dd, completed, prio); |
| 975 | } |
| 976 | |
| 977 | static int dd_owned_by_driver_show(void *data, struct seq_file *m) |
| 978 | { |
| 979 | struct request_queue *q = data; |
| 980 | struct deadline_data *dd = q->elevator->elevator_data; |
| 981 | |
| 982 | seq_printf(m, "%u %u %u\n", dd_owned_by_driver(dd, DD_RT_PRIO), |
| 983 | dd_owned_by_driver(dd, DD_BE_PRIO), |
| 984 | dd_owned_by_driver(dd, DD_IDLE_PRIO)); |
| 985 | return 0; |
| 986 | } |
| 987 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 988 | #define DEADLINE_DISPATCH_ATTR(prio) \ |
| 989 | static void *deadline_dispatch##prio##_start(struct seq_file *m, \ |
| 990 | loff_t *pos) \ |
| 991 | __acquires(&dd->lock) \ |
| 992 | { \ |
| 993 | struct request_queue *q = m->private; \ |
| 994 | struct deadline_data *dd = q->elevator->elevator_data; \ |
| 995 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ |
| 996 | \ |
| 997 | spin_lock(&dd->lock); \ |
| 998 | return seq_list_start(&per_prio->dispatch, *pos); \ |
| 999 | } \ |
| 1000 | \ |
| 1001 | static void *deadline_dispatch##prio##_next(struct seq_file *m, \ |
| 1002 | void *v, loff_t *pos) \ |
| 1003 | { \ |
| 1004 | struct request_queue *q = m->private; \ |
| 1005 | struct deadline_data *dd = q->elevator->elevator_data; \ |
| 1006 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ |
| 1007 | \ |
| 1008 | return seq_list_next(v, &per_prio->dispatch, pos); \ |
| 1009 | } \ |
| 1010 | \ |
| 1011 | static void deadline_dispatch##prio##_stop(struct seq_file *m, void *v) \ |
| 1012 | __releases(&dd->lock) \ |
| 1013 | { \ |
| 1014 | struct request_queue *q = m->private; \ |
| 1015 | struct deadline_data *dd = q->elevator->elevator_data; \ |
| 1016 | \ |
| 1017 | spin_unlock(&dd->lock); \ |
| 1018 | } \ |
| 1019 | \ |
| 1020 | static const struct seq_operations deadline_dispatch##prio##_seq_ops = { \ |
| 1021 | .start = deadline_dispatch##prio##_start, \ |
| 1022 | .next = deadline_dispatch##prio##_next, \ |
| 1023 | .stop = deadline_dispatch##prio##_stop, \ |
| 1024 | .show = blk_mq_debugfs_rq_show, \ |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 1025 | } |
| 1026 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 1027 | DEADLINE_DISPATCH_ATTR(0); |
| 1028 | DEADLINE_DISPATCH_ATTR(1); |
| 1029 | DEADLINE_DISPATCH_ATTR(2); |
| 1030 | #undef DEADLINE_DISPATCH_ATTR |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 1031 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 1032 | #define DEADLINE_QUEUE_DDIR_ATTRS(name) \ |
| 1033 | {#name "_fifo_list", 0400, \ |
| 1034 | .seq_ops = &deadline_##name##_fifo_seq_ops} |
| 1035 | #define DEADLINE_NEXT_RQ_ATTR(name) \ |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 1036 | {#name "_next_rq", 0400, deadline_##name##_next_rq_show} |
| 1037 | static const struct blk_mq_debugfs_attr deadline_queue_debugfs_attrs[] = { |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 1038 | DEADLINE_QUEUE_DDIR_ATTRS(read0), |
| 1039 | DEADLINE_QUEUE_DDIR_ATTRS(write0), |
| 1040 | DEADLINE_QUEUE_DDIR_ATTRS(read1), |
| 1041 | DEADLINE_QUEUE_DDIR_ATTRS(write1), |
| 1042 | DEADLINE_QUEUE_DDIR_ATTRS(read2), |
| 1043 | DEADLINE_QUEUE_DDIR_ATTRS(write2), |
| 1044 | DEADLINE_NEXT_RQ_ATTR(read0), |
| 1045 | DEADLINE_NEXT_RQ_ATTR(write0), |
| 1046 | DEADLINE_NEXT_RQ_ATTR(read1), |
| 1047 | DEADLINE_NEXT_RQ_ATTR(write1), |
| 1048 | DEADLINE_NEXT_RQ_ATTR(read2), |
| 1049 | DEADLINE_NEXT_RQ_ATTR(write2), |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 1050 | {"batching", 0400, deadline_batching_show}, |
| 1051 | {"starved", 0400, deadline_starved_show}, |
Bart Van Assche | 0775758 | 2021-06-17 17:44:51 -0700 | [diff] [blame] | 1052 | {"async_depth", 0400, dd_async_depth_show}, |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 1053 | {"dispatch0", 0400, .seq_ops = &deadline_dispatch0_seq_ops}, |
| 1054 | {"dispatch1", 0400, .seq_ops = &deadline_dispatch1_seq_ops}, |
| 1055 | {"dispatch2", 0400, .seq_ops = &deadline_dispatch2_seq_ops}, |
Bart Van Assche | 38ba64d | 2021-06-17 17:44:54 -0700 | [diff] [blame] | 1056 | {"owned_by_driver", 0400, dd_owned_by_driver_show}, |
| 1057 | {"queued", 0400, dd_queued_show}, |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 1058 | {}, |
| 1059 | }; |
| 1060 | #undef DEADLINE_QUEUE_DDIR_ATTRS |
| 1061 | #endif |
| 1062 | |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 1063 | static struct elevator_type mq_deadline = { |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame] | 1064 | .ops = { |
Bart Van Assche | 0775758 | 2021-06-17 17:44:51 -0700 | [diff] [blame] | 1065 | .depth_updated = dd_depth_updated, |
| 1066 | .limit_depth = dd_limit_depth, |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 1067 | .insert_requests = dd_insert_requests, |
Jens Axboe | c13660a | 2017-01-26 12:40:07 -0700 | [diff] [blame] | 1068 | .dispatch_request = dd_dispatch_request, |
Damien Le Moal | f3bc78d | 2018-02-28 09:35:29 -0800 | [diff] [blame] | 1069 | .prepare_request = dd_prepare_request, |
| 1070 | .finish_request = dd_finish_request, |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 1071 | .next_request = elv_rb_latter_request, |
| 1072 | .former_request = elv_rb_former_request, |
| 1073 | .bio_merge = dd_bio_merge, |
| 1074 | .request_merge = dd_request_merge, |
| 1075 | .requests_merged = dd_merged_requests, |
| 1076 | .request_merged = dd_request_merged, |
| 1077 | .has_work = dd_has_work, |
Bart Van Assche | 3e9a99e | 2021-06-17 17:44:48 -0700 | [diff] [blame] | 1078 | .init_sched = dd_init_sched, |
| 1079 | .exit_sched = dd_exit_sched, |
Bart Van Assche | 0775758 | 2021-06-17 17:44:51 -0700 | [diff] [blame] | 1080 | .init_hctx = dd_init_hctx, |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 1081 | }, |
| 1082 | |
Omar Sandoval | daaadb3 | 2017-05-04 00:31:34 -0700 | [diff] [blame] | 1083 | #ifdef CONFIG_BLK_DEBUG_FS |
| 1084 | .queue_debugfs_attrs = deadline_queue_debugfs_attrs, |
| 1085 | #endif |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 1086 | .elevator_attrs = deadline_attrs, |
| 1087 | .elevator_name = "mq-deadline", |
Jens Axboe | 4d740bc | 2017-10-25 09:47:20 -0600 | [diff] [blame] | 1088 | .elevator_alias = "deadline", |
Damien Le Moal | 68c43f1 | 2019-09-05 18:51:31 +0900 | [diff] [blame] | 1089 | .elevator_features = ELEVATOR_F_ZBD_SEQ_WRITE, |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 1090 | .elevator_owner = THIS_MODULE, |
| 1091 | }; |
Ben Hutchings | 7de967e | 2017-08-13 18:03:15 +0100 | [diff] [blame] | 1092 | MODULE_ALIAS("mq-deadline-iosched"); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 1093 | |
| 1094 | static int __init deadline_init(void) |
| 1095 | { |
Tejun Heo | 0f78399 | 2021-08-11 07:41:45 -1000 | [diff] [blame] | 1096 | return elv_register(&mq_deadline); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 1097 | } |
| 1098 | |
| 1099 | static void __exit deadline_exit(void) |
| 1100 | { |
| 1101 | elv_unregister(&mq_deadline); |
| 1102 | } |
| 1103 | |
| 1104 | module_init(deadline_init); |
| 1105 | module_exit(deadline_exit); |
| 1106 | |
Bart Van Assche | c807ab5 | 2021-06-17 17:44:53 -0700 | [diff] [blame] | 1107 | MODULE_AUTHOR("Jens Axboe, Damien Le Moal and Bart Van Assche"); |
Jens Axboe | 945ffb6 | 2017-01-14 17:11:11 -0700 | [diff] [blame] | 1108 | MODULE_LICENSE("GPL"); |
| 1109 | MODULE_DESCRIPTION("MQ deadline IO scheduler"); |