Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 1 | /* |
| 2 | * blk-mq scheduling framework |
| 3 | * |
| 4 | * Copyright (C) 2016 Jens Axboe |
| 5 | */ |
| 6 | #include <linux/kernel.h> |
| 7 | #include <linux/module.h> |
| 8 | #include <linux/blk-mq.h> |
| 9 | |
| 10 | #include <trace/events/block.h> |
| 11 | |
| 12 | #include "blk.h" |
| 13 | #include "blk-mq.h" |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 14 | #include "blk-mq-debugfs.h" |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 15 | #include "blk-mq-sched.h" |
| 16 | #include "blk-mq-tag.h" |
| 17 | #include "blk-wbt.h" |
| 18 | |
| 19 | void blk_mq_sched_free_hctx_data(struct request_queue *q, |
| 20 | void (*exit)(struct blk_mq_hw_ctx *)) |
| 21 | { |
| 22 | struct blk_mq_hw_ctx *hctx; |
| 23 | int i; |
| 24 | |
| 25 | queue_for_each_hw_ctx(q, hctx, i) { |
| 26 | if (exit && hctx->sched_data) |
| 27 | exit(hctx); |
| 28 | kfree(hctx->sched_data); |
| 29 | hctx->sched_data = NULL; |
| 30 | } |
| 31 | } |
| 32 | EXPORT_SYMBOL_GPL(blk_mq_sched_free_hctx_data); |
| 33 | |
Christoph Hellwig | 44e8c2b | 2017-06-16 18:15:25 +0200 | [diff] [blame] | 34 | void blk_mq_sched_assign_ioc(struct request *rq, struct bio *bio) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 35 | { |
Christoph Hellwig | 44e8c2b | 2017-06-16 18:15:25 +0200 | [diff] [blame] | 36 | struct request_queue *q = rq->q; |
| 37 | struct io_context *ioc = rq_ioc(bio); |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 38 | struct io_cq *icq; |
| 39 | |
| 40 | spin_lock_irq(q->queue_lock); |
| 41 | icq = ioc_lookup_icq(ioc, q); |
| 42 | spin_unlock_irq(q->queue_lock); |
| 43 | |
| 44 | if (!icq) { |
| 45 | icq = ioc_create_icq(ioc, q, GFP_ATOMIC); |
| 46 | if (!icq) |
| 47 | return; |
| 48 | } |
Christoph Hellwig | ea511e3 | 2017-06-16 18:15:20 +0200 | [diff] [blame] | 49 | get_io_context(icq->ioc); |
Christoph Hellwig | 44e8c2b | 2017-06-16 18:15:25 +0200 | [diff] [blame] | 50 | rq->elv.icq = icq; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 51 | } |
| 52 | |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 53 | /* |
| 54 | * Mark a hardware queue as needing a restart. For shared queues, maintain |
| 55 | * a count of how many hardware queues are marked for restart. |
| 56 | */ |
| 57 | static void blk_mq_sched_mark_restart_hctx(struct blk_mq_hw_ctx *hctx) |
| 58 | { |
| 59 | if (test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state)) |
| 60 | return; |
| 61 | |
Ming Lei | 97889f9 | 2018-06-25 19:31:48 +0800 | [diff] [blame] | 62 | set_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state); |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 63 | } |
| 64 | |
Ming Lei | 97889f9 | 2018-06-25 19:31:48 +0800 | [diff] [blame] | 65 | void blk_mq_sched_restart(struct blk_mq_hw_ctx *hctx) |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 66 | { |
| 67 | if (!test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state)) |
Ming Lei | 97889f9 | 2018-06-25 19:31:48 +0800 | [diff] [blame] | 68 | return; |
| 69 | clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state); |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 70 | |
Ming Lei | 97889f9 | 2018-06-25 19:31:48 +0800 | [diff] [blame] | 71 | blk_mq_run_hw_queue(hctx, true); |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 72 | } |
| 73 | |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 74 | /* |
| 75 | * Only SCSI implements .get_budget and .put_budget, and SCSI restarts |
| 76 | * its queue by itself in its completion handler, so we don't need to |
| 77 | * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE. |
| 78 | */ |
| 79 | static void blk_mq_do_dispatch_sched(struct blk_mq_hw_ctx *hctx) |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 80 | { |
| 81 | struct request_queue *q = hctx->queue; |
| 82 | struct elevator_queue *e = q->elevator; |
| 83 | LIST_HEAD(rq_list); |
| 84 | |
| 85 | do { |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 86 | struct request *rq; |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 87 | |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 88 | if (e->type->ops.has_work && !e->type->ops.has_work(hctx)) |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 89 | break; |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 90 | |
Ming Lei | 88022d7 | 2017-11-05 02:21:12 +0800 | [diff] [blame] | 91 | if (!blk_mq_get_dispatch_budget(hctx)) |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 92 | break; |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 93 | |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 94 | rq = e->type->ops.dispatch_request(hctx); |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 95 | if (!rq) { |
| 96 | blk_mq_put_dispatch_budget(hctx); |
| 97 | break; |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* |
| 101 | * Now this rq owns the budget which has to be released |
| 102 | * if this rq won't be queued to driver via .queue_rq() |
| 103 | * in blk_mq_dispatch_rq_list(). |
| 104 | */ |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 105 | list_add(&rq->queuelist, &rq_list); |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 106 | } while (blk_mq_dispatch_rq_list(q, &rq_list, true)); |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 107 | } |
| 108 | |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 109 | static struct blk_mq_ctx *blk_mq_next_ctx(struct blk_mq_hw_ctx *hctx, |
| 110 | struct blk_mq_ctx *ctx) |
| 111 | { |
| 112 | unsigned idx = ctx->index_hw; |
| 113 | |
| 114 | if (++idx == hctx->nr_ctx) |
| 115 | idx = 0; |
| 116 | |
| 117 | return hctx->ctxs[idx]; |
| 118 | } |
| 119 | |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 120 | /* |
| 121 | * Only SCSI implements .get_budget and .put_budget, and SCSI restarts |
| 122 | * its queue by itself in its completion handler, so we don't need to |
| 123 | * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE. |
| 124 | */ |
| 125 | static void blk_mq_do_dispatch_ctx(struct blk_mq_hw_ctx *hctx) |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 126 | { |
| 127 | struct request_queue *q = hctx->queue; |
| 128 | LIST_HEAD(rq_list); |
| 129 | struct blk_mq_ctx *ctx = READ_ONCE(hctx->dispatch_from); |
| 130 | |
| 131 | do { |
| 132 | struct request *rq; |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 133 | |
| 134 | if (!sbitmap_any_bit_set(&hctx->ctx_map)) |
| 135 | break; |
| 136 | |
Ming Lei | 88022d7 | 2017-11-05 02:21:12 +0800 | [diff] [blame] | 137 | if (!blk_mq_get_dispatch_budget(hctx)) |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 138 | break; |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 139 | |
| 140 | rq = blk_mq_dequeue_from_ctx(hctx, ctx); |
| 141 | if (!rq) { |
| 142 | blk_mq_put_dispatch_budget(hctx); |
| 143 | break; |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | /* |
| 147 | * Now this rq owns the budget which has to be released |
| 148 | * if this rq won't be queued to driver via .queue_rq() |
| 149 | * in blk_mq_dispatch_rq_list(). |
| 150 | */ |
| 151 | list_add(&rq->queuelist, &rq_list); |
| 152 | |
| 153 | /* round robin for fair dispatch */ |
| 154 | ctx = blk_mq_next_ctx(hctx, rq->mq_ctx); |
| 155 | |
| 156 | } while (blk_mq_dispatch_rq_list(q, &rq_list, true)); |
| 157 | |
| 158 | WRITE_ONCE(hctx->dispatch_from, ctx); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 159 | } |
| 160 | |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 161 | void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 162 | { |
Omar Sandoval | 81380ca | 2017-04-07 08:56:26 -0600 | [diff] [blame] | 163 | struct request_queue *q = hctx->queue; |
| 164 | struct elevator_queue *e = q->elevator; |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 165 | const bool has_sched_dispatch = e && e->type->ops.dispatch_request; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 166 | LIST_HEAD(rq_list); |
| 167 | |
Ming Lei | f4560ff | 2017-06-18 14:24:27 -0600 | [diff] [blame] | 168 | /* RCU or SRCU read lock is needed before checking quiesced flag */ |
| 169 | if (unlikely(blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q))) |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 170 | return; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 171 | |
| 172 | hctx->run++; |
| 173 | |
| 174 | /* |
| 175 | * If we have previous entries on our dispatch list, grab them first for |
| 176 | * more fair dispatch. |
| 177 | */ |
| 178 | if (!list_empty_careful(&hctx->dispatch)) { |
| 179 | spin_lock(&hctx->lock); |
| 180 | if (!list_empty(&hctx->dispatch)) |
| 181 | list_splice_init(&hctx->dispatch, &rq_list); |
| 182 | spin_unlock(&hctx->lock); |
| 183 | } |
| 184 | |
| 185 | /* |
| 186 | * Only ask the scheduler for requests, if we didn't have residual |
| 187 | * requests from the dispatch list. This is to avoid the case where |
| 188 | * we only ever dispatch a fraction of the requests available because |
| 189 | * of low device queue depth. Once we pull requests out of the IO |
| 190 | * scheduler, we can no longer merge or sort them. So it's best to |
| 191 | * leave them there for as long as we can. Mark the hw queue as |
| 192 | * needing a restart in that case. |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 193 | * |
Ming Lei | 5e3d02b | 2017-10-14 17:22:25 +0800 | [diff] [blame] | 194 | * We want to dispatch from the scheduler if there was nothing |
| 195 | * on the dispatch list or we were able to dispatch from the |
| 196 | * dispatch list. |
Jens Axboe | 64765a7 | 2017-02-17 11:39:26 -0700 | [diff] [blame] | 197 | */ |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 198 | if (!list_empty(&rq_list)) { |
| 199 | blk_mq_sched_mark_restart_hctx(hctx); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 200 | if (blk_mq_dispatch_rq_list(q, &rq_list, false)) { |
| 201 | if (has_sched_dispatch) |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 202 | blk_mq_do_dispatch_sched(hctx); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 203 | else |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 204 | blk_mq_do_dispatch_ctx(hctx); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 205 | } |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 206 | } else if (has_sched_dispatch) { |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 207 | blk_mq_do_dispatch_sched(hctx); |
Ming Lei | 6e768717 | 2018-07-03 09:03:16 -0600 | [diff] [blame] | 208 | } else if (hctx->dispatch_busy) { |
| 209 | /* dequeue request one by one from sw queue if queue is busy */ |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 210 | blk_mq_do_dispatch_ctx(hctx); |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 211 | } else { |
| 212 | blk_mq_flush_busy_ctxs(hctx, &rq_list); |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 213 | blk_mq_dispatch_rq_list(q, &rq_list, false); |
Jens Axboe | c13660a | 2017-01-26 12:40:07 -0700 | [diff] [blame] | 214 | } |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Jens Axboe | e4d750c | 2017-02-03 09:48:28 -0700 | [diff] [blame] | 217 | bool blk_mq_sched_try_merge(struct request_queue *q, struct bio *bio, |
| 218 | struct request **merged_request) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 219 | { |
| 220 | struct request *rq; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 221 | |
Christoph Hellwig | 34fe7c0 | 2017-02-08 14:46:48 +0100 | [diff] [blame] | 222 | switch (elv_merge(q, &rq, bio)) { |
| 223 | case ELEVATOR_BACK_MERGE: |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 224 | if (!blk_mq_sched_allow_merge(q, rq, bio)) |
| 225 | return false; |
Christoph Hellwig | 34fe7c0 | 2017-02-08 14:46:48 +0100 | [diff] [blame] | 226 | if (!bio_attempt_back_merge(q, rq, bio)) |
| 227 | return false; |
| 228 | *merged_request = attempt_back_merge(q, rq); |
| 229 | if (!*merged_request) |
| 230 | elv_merged_request(q, rq, ELEVATOR_BACK_MERGE); |
| 231 | return true; |
| 232 | case ELEVATOR_FRONT_MERGE: |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 233 | if (!blk_mq_sched_allow_merge(q, rq, bio)) |
| 234 | return false; |
Christoph Hellwig | 34fe7c0 | 2017-02-08 14:46:48 +0100 | [diff] [blame] | 235 | if (!bio_attempt_front_merge(q, rq, bio)) |
| 236 | return false; |
| 237 | *merged_request = attempt_front_merge(q, rq); |
| 238 | if (!*merged_request) |
| 239 | elv_merged_request(q, rq, ELEVATOR_FRONT_MERGE); |
| 240 | return true; |
Keith Busch | bea99a5 | 2018-02-01 14:41:15 -0700 | [diff] [blame] | 241 | case ELEVATOR_DISCARD_MERGE: |
| 242 | return bio_attempt_discard_merge(q, rq, bio); |
Christoph Hellwig | 34fe7c0 | 2017-02-08 14:46:48 +0100 | [diff] [blame] | 243 | default: |
| 244 | return false; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 245 | } |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 246 | } |
| 247 | EXPORT_SYMBOL_GPL(blk_mq_sched_try_merge); |
| 248 | |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 249 | /* |
Jens Axboe | 9c55873 | 2018-05-30 15:26:07 +0800 | [diff] [blame] | 250 | * Iterate list of requests and see if we can merge this bio with any |
| 251 | * of them. |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 252 | */ |
Jens Axboe | 9c55873 | 2018-05-30 15:26:07 +0800 | [diff] [blame] | 253 | bool blk_mq_bio_list_merge(struct request_queue *q, struct list_head *list, |
| 254 | struct bio *bio) |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 255 | { |
| 256 | struct request *rq; |
| 257 | int checked = 8; |
| 258 | |
Jens Axboe | 9c55873 | 2018-05-30 15:26:07 +0800 | [diff] [blame] | 259 | list_for_each_entry_reverse(rq, list, queuelist) { |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 260 | bool merged = false; |
| 261 | |
| 262 | if (!checked--) |
| 263 | break; |
| 264 | |
| 265 | if (!blk_rq_merge_ok(rq, bio)) |
| 266 | continue; |
| 267 | |
| 268 | switch (blk_try_merge(rq, bio)) { |
| 269 | case ELEVATOR_BACK_MERGE: |
| 270 | if (blk_mq_sched_allow_merge(q, rq, bio)) |
| 271 | merged = bio_attempt_back_merge(q, rq, bio); |
| 272 | break; |
| 273 | case ELEVATOR_FRONT_MERGE: |
| 274 | if (blk_mq_sched_allow_merge(q, rq, bio)) |
| 275 | merged = bio_attempt_front_merge(q, rq, bio); |
| 276 | break; |
| 277 | case ELEVATOR_DISCARD_MERGE: |
| 278 | merged = bio_attempt_discard_merge(q, rq, bio); |
| 279 | break; |
| 280 | default: |
| 281 | continue; |
| 282 | } |
| 283 | |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 284 | return merged; |
| 285 | } |
| 286 | |
| 287 | return false; |
| 288 | } |
Jens Axboe | 9c55873 | 2018-05-30 15:26:07 +0800 | [diff] [blame] | 289 | EXPORT_SYMBOL_GPL(blk_mq_bio_list_merge); |
| 290 | |
| 291 | /* |
| 292 | * Reverse check our software queue for entries that we could potentially |
| 293 | * merge with. Currently includes a hand-wavy stop count of 8, to not spend |
| 294 | * too much time checking for merges. |
| 295 | */ |
| 296 | static bool blk_mq_attempt_merge(struct request_queue *q, |
| 297 | struct blk_mq_ctx *ctx, struct bio *bio) |
| 298 | { |
| 299 | lockdep_assert_held(&ctx->lock); |
| 300 | |
| 301 | if (blk_mq_bio_list_merge(q, &ctx->rq_list, bio)) { |
| 302 | ctx->rq_merged++; |
| 303 | return true; |
| 304 | } |
| 305 | |
| 306 | return false; |
| 307 | } |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 308 | |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 309 | bool __blk_mq_sched_bio_merge(struct request_queue *q, struct bio *bio) |
| 310 | { |
| 311 | struct elevator_queue *e = q->elevator; |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 312 | struct blk_mq_ctx *ctx = blk_mq_get_ctx(q); |
| 313 | struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu); |
| 314 | bool ret = false; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 315 | |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 316 | if (e && e->type->ops.bio_merge) { |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 317 | blk_mq_put_ctx(ctx); |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 318 | return e->type->ops.bio_merge(hctx, bio); |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Ming Lei | b04f50a | 2018-07-02 17:35:59 +0800 | [diff] [blame] | 321 | if ((hctx->flags & BLK_MQ_F_SHOULD_MERGE) && |
| 322 | !list_empty_careful(&ctx->rq_list)) { |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 323 | /* default per sw-queue merge */ |
| 324 | spin_lock(&ctx->lock); |
| 325 | ret = blk_mq_attempt_merge(q, ctx, bio); |
| 326 | spin_unlock(&ctx->lock); |
| 327 | } |
| 328 | |
| 329 | blk_mq_put_ctx(ctx); |
| 330 | return ret; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | bool blk_mq_sched_try_insert_merge(struct request_queue *q, struct request *rq) |
| 334 | { |
| 335 | return rq_mergeable(rq) && elv_attempt_insert_merge(q, rq); |
| 336 | } |
| 337 | EXPORT_SYMBOL_GPL(blk_mq_sched_try_insert_merge); |
| 338 | |
| 339 | void blk_mq_sched_request_inserted(struct request *rq) |
| 340 | { |
| 341 | trace_block_rq_insert(rq->q, rq); |
| 342 | } |
| 343 | EXPORT_SYMBOL_GPL(blk_mq_sched_request_inserted); |
| 344 | |
Omar Sandoval | 0cacba6 | 2017-02-02 15:42:39 -0800 | [diff] [blame] | 345 | static bool blk_mq_sched_bypass_insert(struct blk_mq_hw_ctx *hctx, |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 346 | bool has_sched, |
Omar Sandoval | 0cacba6 | 2017-02-02 15:42:39 -0800 | [diff] [blame] | 347 | struct request *rq) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 348 | { |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 349 | /* dispatch flush rq directly */ |
| 350 | if (rq->rq_flags & RQF_FLUSH_SEQ) { |
| 351 | spin_lock(&hctx->lock); |
| 352 | list_add(&rq->queuelist, &hctx->dispatch); |
| 353 | spin_unlock(&hctx->lock); |
| 354 | return true; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Ming Lei | 923218f | 2017-11-02 23:24:38 +0800 | [diff] [blame] | 357 | if (has_sched) |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 358 | rq->rq_flags |= RQF_SORTED; |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 359 | |
| 360 | return false; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 361 | } |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 362 | |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 363 | void blk_mq_sched_insert_request(struct request *rq, bool at_head, |
Mike Snitzer | 9e97d29 | 2018-01-17 11:25:58 -0500 | [diff] [blame] | 364 | bool run_queue, bool async) |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 365 | { |
| 366 | struct request_queue *q = rq->q; |
| 367 | struct elevator_queue *e = q->elevator; |
| 368 | struct blk_mq_ctx *ctx = rq->mq_ctx; |
| 369 | struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu); |
| 370 | |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 371 | /* flush rq in flush machinery need to be dispatched directly */ |
| 372 | if (!(rq->rq_flags & RQF_FLUSH_SEQ) && op_is_flush(rq->cmd_flags)) { |
Ming Lei | 923218f | 2017-11-02 23:24:38 +0800 | [diff] [blame] | 373 | blk_insert_flush(rq); |
| 374 | goto run; |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 375 | } |
| 376 | |
Ming Lei | 923218f | 2017-11-02 23:24:38 +0800 | [diff] [blame] | 377 | WARN_ON(e && (rq->tag != -1)); |
| 378 | |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 379 | if (blk_mq_sched_bypass_insert(hctx, !!e, rq)) |
Omar Sandoval | 0cacba6 | 2017-02-02 15:42:39 -0800 | [diff] [blame] | 380 | goto run; |
| 381 | |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 382 | if (e && e->type->ops.insert_requests) { |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 383 | LIST_HEAD(list); |
| 384 | |
| 385 | list_add(&rq->queuelist, &list); |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 386 | e->type->ops.insert_requests(hctx, &list, at_head); |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 387 | } else { |
| 388 | spin_lock(&ctx->lock); |
| 389 | __blk_mq_insert_request(hctx, rq, at_head); |
| 390 | spin_unlock(&ctx->lock); |
| 391 | } |
| 392 | |
Omar Sandoval | 0cacba6 | 2017-02-02 15:42:39 -0800 | [diff] [blame] | 393 | run: |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 394 | if (run_queue) |
| 395 | blk_mq_run_hw_queue(hctx, async); |
| 396 | } |
| 397 | |
| 398 | void blk_mq_sched_insert_requests(struct request_queue *q, |
| 399 | struct blk_mq_ctx *ctx, |
| 400 | struct list_head *list, bool run_queue_async) |
| 401 | { |
| 402 | struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu); |
| 403 | struct elevator_queue *e = hctx->queue->elevator; |
| 404 | |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 405 | if (e && e->type->ops.insert_requests) |
| 406 | e->type->ops.insert_requests(hctx, list, false); |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 407 | else { |
| 408 | /* |
| 409 | * try to issue requests directly if the hw queue isn't |
| 410 | * busy in case of 'none' scheduler, and this way may save |
| 411 | * us one extra enqueue & dequeue to sw queue. |
| 412 | */ |
| 413 | if (!hctx->dispatch_busy && !e && !run_queue_async) { |
| 414 | blk_mq_try_issue_list_directly(hctx, list); |
| 415 | if (list_empty(list)) |
| 416 | return; |
| 417 | } |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 418 | blk_mq_insert_requests(hctx, ctx, list); |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 419 | } |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 420 | |
| 421 | blk_mq_run_hw_queue(hctx, run_queue_async); |
| 422 | } |
| 423 | |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 424 | static void blk_mq_sched_free_tags(struct blk_mq_tag_set *set, |
| 425 | struct blk_mq_hw_ctx *hctx, |
| 426 | unsigned int hctx_idx) |
| 427 | { |
| 428 | if (hctx->sched_tags) { |
| 429 | blk_mq_free_rqs(set, hctx->sched_tags, hctx_idx); |
| 430 | blk_mq_free_rq_map(hctx->sched_tags); |
| 431 | hctx->sched_tags = NULL; |
| 432 | } |
| 433 | } |
| 434 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 435 | static int blk_mq_sched_alloc_tags(struct request_queue *q, |
| 436 | struct blk_mq_hw_ctx *hctx, |
| 437 | unsigned int hctx_idx) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 438 | { |
| 439 | struct blk_mq_tag_set *set = q->tag_set; |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 440 | int ret; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 441 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 442 | hctx->sched_tags = blk_mq_alloc_rq_map(set, hctx_idx, q->nr_requests, |
| 443 | set->reserved_tags); |
| 444 | if (!hctx->sched_tags) |
| 445 | return -ENOMEM; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 446 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 447 | ret = blk_mq_alloc_rqs(set, hctx->sched_tags, hctx_idx, q->nr_requests); |
| 448 | if (ret) |
| 449 | blk_mq_sched_free_tags(set, hctx, hctx_idx); |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 450 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 451 | return ret; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 452 | } |
| 453 | |
Omar Sandoval | 54d5329 | 2017-04-07 08:52:27 -0600 | [diff] [blame] | 454 | static void blk_mq_sched_tags_teardown(struct request_queue *q) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 455 | { |
| 456 | struct blk_mq_tag_set *set = q->tag_set; |
| 457 | struct blk_mq_hw_ctx *hctx; |
| 458 | int i; |
| 459 | |
| 460 | queue_for_each_hw_ctx(q, hctx, i) |
| 461 | blk_mq_sched_free_tags(set, hctx, i); |
| 462 | } |
Jens Axboe | d348499 | 2017-01-13 14:43:58 -0700 | [diff] [blame] | 463 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 464 | int blk_mq_init_sched(struct request_queue *q, struct elevator_type *e) |
| 465 | { |
| 466 | struct blk_mq_hw_ctx *hctx; |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 467 | struct elevator_queue *eq; |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 468 | unsigned int i; |
| 469 | int ret; |
| 470 | |
| 471 | if (!e) { |
| 472 | q->elevator = NULL; |
Ming Lei | 32a50fa | 2018-06-02 15:18:09 +0800 | [diff] [blame] | 473 | q->nr_requests = q->tag_set->queue_depth; |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 474 | return 0; |
| 475 | } |
| 476 | |
| 477 | /* |
Ming Lei | 32825c4 | 2017-07-03 20:37:14 +0800 | [diff] [blame] | 478 | * Default to double of smaller one between hw queue_depth and 128, |
| 479 | * since we don't split into sync/async like the old code did. |
| 480 | * Additionally, this is a per-hw queue depth. |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 481 | */ |
Ming Lei | 32825c4 | 2017-07-03 20:37:14 +0800 | [diff] [blame] | 482 | q->nr_requests = 2 * min_t(unsigned int, q->tag_set->queue_depth, |
| 483 | BLKDEV_MAX_RQ); |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 484 | |
| 485 | queue_for_each_hw_ctx(q, hctx, i) { |
| 486 | ret = blk_mq_sched_alloc_tags(q, hctx, i); |
| 487 | if (ret) |
| 488 | goto err; |
| 489 | } |
| 490 | |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 491 | ret = e->ops.init_sched(q, e); |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 492 | if (ret) |
| 493 | goto err; |
| 494 | |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 495 | blk_mq_debugfs_register_sched(q); |
| 496 | |
| 497 | queue_for_each_hw_ctx(q, hctx, i) { |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 498 | if (e->ops.init_hctx) { |
| 499 | ret = e->ops.init_hctx(hctx, i); |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 500 | if (ret) { |
| 501 | eq = q->elevator; |
| 502 | blk_mq_exit_sched(q, eq); |
| 503 | kobject_put(&eq->kobj); |
| 504 | return ret; |
| 505 | } |
| 506 | } |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 507 | blk_mq_debugfs_register_sched_hctx(q, hctx); |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 508 | } |
| 509 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 510 | return 0; |
| 511 | |
| 512 | err: |
Omar Sandoval | 54d5329 | 2017-04-07 08:52:27 -0600 | [diff] [blame] | 513 | blk_mq_sched_tags_teardown(q); |
| 514 | q->elevator = NULL; |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 515 | return ret; |
| 516 | } |
| 517 | |
Omar Sandoval | 54d5329 | 2017-04-07 08:52:27 -0600 | [diff] [blame] | 518 | void blk_mq_exit_sched(struct request_queue *q, struct elevator_queue *e) |
| 519 | { |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 520 | struct blk_mq_hw_ctx *hctx; |
| 521 | unsigned int i; |
| 522 | |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 523 | queue_for_each_hw_ctx(q, hctx, i) { |
| 524 | blk_mq_debugfs_unregister_sched_hctx(hctx); |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 525 | if (e->type->ops.exit_hctx && hctx->sched_data) { |
| 526 | e->type->ops.exit_hctx(hctx, i); |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 527 | hctx->sched_data = NULL; |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 528 | } |
| 529 | } |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 530 | blk_mq_debugfs_unregister_sched(q); |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame^] | 531 | if (e->type->ops.exit_sched) |
| 532 | e->type->ops.exit_sched(e); |
Omar Sandoval | 54d5329 | 2017-04-07 08:52:27 -0600 | [diff] [blame] | 533 | blk_mq_sched_tags_teardown(q); |
| 534 | q->elevator = NULL; |
| 535 | } |