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 | |
| 62 | if (hctx->flags & BLK_MQ_F_TAG_SHARED) { |
| 63 | struct request_queue *q = hctx->queue; |
| 64 | |
| 65 | if (!test_and_set_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state)) |
| 66 | atomic_inc(&q->shared_hctx_restart); |
| 67 | } else |
| 68 | set_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state); |
| 69 | } |
| 70 | |
Jens Axboe | 05b7941 | 2017-11-08 10:38:29 -0700 | [diff] [blame^] | 71 | static bool blk_mq_sched_restart_hctx(struct blk_mq_hw_ctx *hctx) |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 72 | { |
| 73 | if (!test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state)) |
Jens Axboe | 05b7941 | 2017-11-08 10:38:29 -0700 | [diff] [blame^] | 74 | return false; |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 75 | |
Jens Axboe | 05b7941 | 2017-11-08 10:38:29 -0700 | [diff] [blame^] | 76 | if (hctx->flags & BLK_MQ_F_TAG_SHARED) { |
| 77 | struct request_queue *q = hctx->queue; |
| 78 | |
| 79 | if (test_and_clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state)) |
| 80 | atomic_dec(&q->shared_hctx_restart); |
| 81 | } else |
| 82 | clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state); |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 83 | |
| 84 | if (blk_mq_hctx_has_pending(hctx)) { |
| 85 | blk_mq_run_hw_queue(hctx, true); |
Jens Axboe | 05b7941 | 2017-11-08 10:38:29 -0700 | [diff] [blame^] | 86 | return true; |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 87 | } |
Jens Axboe | 05b7941 | 2017-11-08 10:38:29 -0700 | [diff] [blame^] | 88 | |
| 89 | return false; |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 90 | } |
| 91 | |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 92 | /* |
| 93 | * Only SCSI implements .get_budget and .put_budget, and SCSI restarts |
| 94 | * its queue by itself in its completion handler, so we don't need to |
| 95 | * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE. |
| 96 | */ |
| 97 | 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] | 98 | { |
| 99 | struct request_queue *q = hctx->queue; |
| 100 | struct elevator_queue *e = q->elevator; |
| 101 | LIST_HEAD(rq_list); |
| 102 | |
| 103 | do { |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 104 | struct request *rq; |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 105 | |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 106 | if (e->type->ops.mq.has_work && |
| 107 | !e->type->ops.mq.has_work(hctx)) |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 108 | break; |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 109 | |
Ming Lei | 88022d7 | 2017-11-05 02:21:12 +0800 | [diff] [blame] | 110 | if (!blk_mq_get_dispatch_budget(hctx)) |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 111 | break; |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 112 | |
| 113 | rq = e->type->ops.mq.dispatch_request(hctx); |
| 114 | if (!rq) { |
| 115 | blk_mq_put_dispatch_budget(hctx); |
| 116 | break; |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | /* |
| 120 | * Now this rq owns the budget which has to be released |
| 121 | * if this rq won't be queued to driver via .queue_rq() |
| 122 | * in blk_mq_dispatch_rq_list(). |
| 123 | */ |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 124 | list_add(&rq->queuelist, &rq_list); |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 125 | } while (blk_mq_dispatch_rq_list(q, &rq_list, true)); |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 126 | } |
| 127 | |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 128 | static struct blk_mq_ctx *blk_mq_next_ctx(struct blk_mq_hw_ctx *hctx, |
| 129 | struct blk_mq_ctx *ctx) |
| 130 | { |
| 131 | unsigned idx = ctx->index_hw; |
| 132 | |
| 133 | if (++idx == hctx->nr_ctx) |
| 134 | idx = 0; |
| 135 | |
| 136 | return hctx->ctxs[idx]; |
| 137 | } |
| 138 | |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 139 | /* |
| 140 | * Only SCSI implements .get_budget and .put_budget, and SCSI restarts |
| 141 | * its queue by itself in its completion handler, so we don't need to |
| 142 | * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE. |
| 143 | */ |
| 144 | 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] | 145 | { |
| 146 | struct request_queue *q = hctx->queue; |
| 147 | LIST_HEAD(rq_list); |
| 148 | struct blk_mq_ctx *ctx = READ_ONCE(hctx->dispatch_from); |
| 149 | |
| 150 | do { |
| 151 | struct request *rq; |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 152 | |
| 153 | if (!sbitmap_any_bit_set(&hctx->ctx_map)) |
| 154 | break; |
| 155 | |
Ming Lei | 88022d7 | 2017-11-05 02:21:12 +0800 | [diff] [blame] | 156 | if (!blk_mq_get_dispatch_budget(hctx)) |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 157 | break; |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 158 | |
| 159 | rq = blk_mq_dequeue_from_ctx(hctx, ctx); |
| 160 | if (!rq) { |
| 161 | blk_mq_put_dispatch_budget(hctx); |
| 162 | break; |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /* |
| 166 | * Now this rq owns the budget which has to be released |
| 167 | * if this rq won't be queued to driver via .queue_rq() |
| 168 | * in blk_mq_dispatch_rq_list(). |
| 169 | */ |
| 170 | list_add(&rq->queuelist, &rq_list); |
| 171 | |
| 172 | /* round robin for fair dispatch */ |
| 173 | ctx = blk_mq_next_ctx(hctx, rq->mq_ctx); |
| 174 | |
| 175 | } while (blk_mq_dispatch_rq_list(q, &rq_list, true)); |
| 176 | |
| 177 | WRITE_ONCE(hctx->dispatch_from, ctx); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 178 | } |
| 179 | |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 180 | /* return true if hw queue need to be run again */ |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 181 | void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 182 | { |
Omar Sandoval | 81380ca | 2017-04-07 08:56:26 -0600 | [diff] [blame] | 183 | struct request_queue *q = hctx->queue; |
| 184 | struct elevator_queue *e = q->elevator; |
Jens Axboe | 64765a7 | 2017-02-17 11:39:26 -0700 | [diff] [blame] | 185 | const bool has_sched_dispatch = e && e->type->ops.mq.dispatch_request; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 186 | LIST_HEAD(rq_list); |
| 187 | |
Ming Lei | f4560ff | 2017-06-18 14:24:27 -0600 | [diff] [blame] | 188 | /* RCU or SRCU read lock is needed before checking quiesced flag */ |
| 189 | if (unlikely(blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q))) |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 190 | return; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 191 | |
| 192 | hctx->run++; |
| 193 | |
| 194 | /* |
| 195 | * If we have previous entries on our dispatch list, grab them first for |
| 196 | * more fair dispatch. |
| 197 | */ |
| 198 | if (!list_empty_careful(&hctx->dispatch)) { |
| 199 | spin_lock(&hctx->lock); |
| 200 | if (!list_empty(&hctx->dispatch)) |
| 201 | list_splice_init(&hctx->dispatch, &rq_list); |
| 202 | spin_unlock(&hctx->lock); |
| 203 | } |
| 204 | |
| 205 | /* |
| 206 | * Only ask the scheduler for requests, if we didn't have residual |
| 207 | * requests from the dispatch list. This is to avoid the case where |
| 208 | * we only ever dispatch a fraction of the requests available because |
| 209 | * of low device queue depth. Once we pull requests out of the IO |
| 210 | * scheduler, we can no longer merge or sort them. So it's best to |
| 211 | * leave them there for as long as we can. Mark the hw queue as |
| 212 | * needing a restart in that case. |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 213 | * |
Ming Lei | 5e3d02b | 2017-10-14 17:22:25 +0800 | [diff] [blame] | 214 | * We want to dispatch from the scheduler if there was nothing |
| 215 | * on the dispatch list or we were able to dispatch from the |
| 216 | * dispatch list. |
Jens Axboe | 64765a7 | 2017-02-17 11:39:26 -0700 | [diff] [blame] | 217 | */ |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 218 | if (!list_empty(&rq_list)) { |
| 219 | blk_mq_sched_mark_restart_hctx(hctx); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 220 | if (blk_mq_dispatch_rq_list(q, &rq_list, false)) { |
| 221 | if (has_sched_dispatch) |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 222 | blk_mq_do_dispatch_sched(hctx); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 223 | else |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 224 | blk_mq_do_dispatch_ctx(hctx); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 225 | } |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 226 | } else if (has_sched_dispatch) { |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 227 | blk_mq_do_dispatch_sched(hctx); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 228 | } else if (q->mq_ops->get_budget) { |
| 229 | /* |
| 230 | * If we need to get budget before queuing request, we |
| 231 | * dequeue request one by one from sw queue for avoiding |
| 232 | * to mess up I/O merge when dispatch runs out of resource. |
| 233 | * |
| 234 | * TODO: get more budgets, and dequeue more requests in |
| 235 | * one time. |
| 236 | */ |
Ming Lei | 1f460b6 | 2017-10-27 12:43:30 +0800 | [diff] [blame] | 237 | blk_mq_do_dispatch_ctx(hctx); |
Ming Lei | caf8eb0 | 2017-10-14 17:22:26 +0800 | [diff] [blame] | 238 | } else { |
| 239 | blk_mq_flush_busy_ctxs(hctx, &rq_list); |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 240 | blk_mq_dispatch_rq_list(q, &rq_list, false); |
Jens Axboe | c13660a | 2017-01-26 12:40:07 -0700 | [diff] [blame] | 241 | } |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 242 | } |
| 243 | |
Jens Axboe | e4d750c | 2017-02-03 09:48:28 -0700 | [diff] [blame] | 244 | bool blk_mq_sched_try_merge(struct request_queue *q, struct bio *bio, |
| 245 | struct request **merged_request) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 246 | { |
| 247 | struct request *rq; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 248 | |
Christoph Hellwig | 34fe7c0 | 2017-02-08 14:46:48 +0100 | [diff] [blame] | 249 | switch (elv_merge(q, &rq, bio)) { |
| 250 | case ELEVATOR_BACK_MERGE: |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 251 | if (!blk_mq_sched_allow_merge(q, rq, bio)) |
| 252 | return false; |
Christoph Hellwig | 34fe7c0 | 2017-02-08 14:46:48 +0100 | [diff] [blame] | 253 | if (!bio_attempt_back_merge(q, rq, bio)) |
| 254 | return false; |
| 255 | *merged_request = attempt_back_merge(q, rq); |
| 256 | if (!*merged_request) |
| 257 | elv_merged_request(q, rq, ELEVATOR_BACK_MERGE); |
| 258 | return true; |
| 259 | case ELEVATOR_FRONT_MERGE: |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 260 | if (!blk_mq_sched_allow_merge(q, rq, bio)) |
| 261 | return false; |
Christoph Hellwig | 34fe7c0 | 2017-02-08 14:46:48 +0100 | [diff] [blame] | 262 | if (!bio_attempt_front_merge(q, rq, bio)) |
| 263 | return false; |
| 264 | *merged_request = attempt_front_merge(q, rq); |
| 265 | if (!*merged_request) |
| 266 | elv_merged_request(q, rq, ELEVATOR_FRONT_MERGE); |
| 267 | return true; |
| 268 | default: |
| 269 | return false; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 270 | } |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 271 | } |
| 272 | EXPORT_SYMBOL_GPL(blk_mq_sched_try_merge); |
| 273 | |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 274 | /* |
| 275 | * Reverse check our software queue for entries that we could potentially |
| 276 | * merge with. Currently includes a hand-wavy stop count of 8, to not spend |
| 277 | * too much time checking for merges. |
| 278 | */ |
| 279 | static bool blk_mq_attempt_merge(struct request_queue *q, |
| 280 | struct blk_mq_ctx *ctx, struct bio *bio) |
| 281 | { |
| 282 | struct request *rq; |
| 283 | int checked = 8; |
| 284 | |
Bart Van Assche | 7b60781 | 2017-06-20 11:15:47 -0700 | [diff] [blame] | 285 | lockdep_assert_held(&ctx->lock); |
| 286 | |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 287 | list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) { |
| 288 | bool merged = false; |
| 289 | |
| 290 | if (!checked--) |
| 291 | break; |
| 292 | |
| 293 | if (!blk_rq_merge_ok(rq, bio)) |
| 294 | continue; |
| 295 | |
| 296 | switch (blk_try_merge(rq, bio)) { |
| 297 | case ELEVATOR_BACK_MERGE: |
| 298 | if (blk_mq_sched_allow_merge(q, rq, bio)) |
| 299 | merged = bio_attempt_back_merge(q, rq, bio); |
| 300 | break; |
| 301 | case ELEVATOR_FRONT_MERGE: |
| 302 | if (blk_mq_sched_allow_merge(q, rq, bio)) |
| 303 | merged = bio_attempt_front_merge(q, rq, bio); |
| 304 | break; |
| 305 | case ELEVATOR_DISCARD_MERGE: |
| 306 | merged = bio_attempt_discard_merge(q, rq, bio); |
| 307 | break; |
| 308 | default: |
| 309 | continue; |
| 310 | } |
| 311 | |
| 312 | if (merged) |
| 313 | ctx->rq_merged++; |
| 314 | return merged; |
| 315 | } |
| 316 | |
| 317 | return false; |
| 318 | } |
| 319 | |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 320 | bool __blk_mq_sched_bio_merge(struct request_queue *q, struct bio *bio) |
| 321 | { |
| 322 | struct elevator_queue *e = q->elevator; |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 323 | struct blk_mq_ctx *ctx = blk_mq_get_ctx(q); |
| 324 | struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu); |
| 325 | bool ret = false; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 326 | |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 327 | if (e && e->type->ops.mq.bio_merge) { |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 328 | blk_mq_put_ctx(ctx); |
| 329 | return e->type->ops.mq.bio_merge(hctx, bio); |
| 330 | } |
| 331 | |
Ming Lei | 9bddeb2 | 2017-05-26 19:53:20 +0800 | [diff] [blame] | 332 | if (hctx->flags & BLK_MQ_F_SHOULD_MERGE) { |
| 333 | /* default per sw-queue merge */ |
| 334 | spin_lock(&ctx->lock); |
| 335 | ret = blk_mq_attempt_merge(q, ctx, bio); |
| 336 | spin_unlock(&ctx->lock); |
| 337 | } |
| 338 | |
| 339 | blk_mq_put_ctx(ctx); |
| 340 | return ret; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | bool blk_mq_sched_try_insert_merge(struct request_queue *q, struct request *rq) |
| 344 | { |
| 345 | return rq_mergeable(rq) && elv_attempt_insert_merge(q, rq); |
| 346 | } |
| 347 | EXPORT_SYMBOL_GPL(blk_mq_sched_try_insert_merge); |
| 348 | |
| 349 | void blk_mq_sched_request_inserted(struct request *rq) |
| 350 | { |
| 351 | trace_block_rq_insert(rq->q, rq); |
| 352 | } |
| 353 | EXPORT_SYMBOL_GPL(blk_mq_sched_request_inserted); |
| 354 | |
Omar Sandoval | 0cacba6 | 2017-02-02 15:42:39 -0800 | [diff] [blame] | 355 | 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] | 356 | bool has_sched, |
Omar Sandoval | 0cacba6 | 2017-02-02 15:42:39 -0800 | [diff] [blame] | 357 | struct request *rq) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 358 | { |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 359 | /* dispatch flush rq directly */ |
| 360 | if (rq->rq_flags & RQF_FLUSH_SEQ) { |
| 361 | spin_lock(&hctx->lock); |
| 362 | list_add(&rq->queuelist, &hctx->dispatch); |
| 363 | spin_unlock(&hctx->lock); |
| 364 | return true; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Ming Lei | 923218f | 2017-11-02 23:24:38 +0800 | [diff] [blame] | 367 | if (has_sched) |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 368 | rq->rq_flags |= RQF_SORTED; |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 369 | |
| 370 | return false; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 371 | } |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 372 | |
Jens Axboe | 05b7941 | 2017-11-08 10:38:29 -0700 | [diff] [blame^] | 373 | /** |
| 374 | * list_for_each_entry_rcu_rr - iterate in a round-robin fashion over rcu list |
| 375 | * @pos: loop cursor. |
| 376 | * @skip: the list element that will not be examined. Iteration starts at |
| 377 | * @skip->next. |
| 378 | * @head: head of the list to examine. This list must have at least one |
| 379 | * element, namely @skip. |
| 380 | * @member: name of the list_head structure within typeof(*pos). |
| 381 | */ |
| 382 | #define list_for_each_entry_rcu_rr(pos, skip, head, member) \ |
| 383 | for ((pos) = (skip); \ |
| 384 | (pos = (pos)->member.next != (head) ? list_entry_rcu( \ |
| 385 | (pos)->member.next, typeof(*pos), member) : \ |
| 386 | list_entry_rcu((pos)->member.next->next, typeof(*pos), member)), \ |
| 387 | (pos) != (skip); ) |
| 388 | |
| 389 | /* |
| 390 | * Called after a driver tag has been freed to check whether a hctx needs to |
| 391 | * be restarted. Restarts @hctx if its tag set is not shared. Restarts hardware |
| 392 | * queues in a round-robin fashion if the tag set of @hctx is shared with other |
| 393 | * hardware queues. |
| 394 | */ |
| 395 | void blk_mq_sched_restart(struct blk_mq_hw_ctx *const hctx) |
| 396 | { |
| 397 | struct blk_mq_tags *const tags = hctx->tags; |
| 398 | struct blk_mq_tag_set *const set = hctx->queue->tag_set; |
| 399 | struct request_queue *const queue = hctx->queue, *q; |
| 400 | struct blk_mq_hw_ctx *hctx2; |
| 401 | unsigned int i, j; |
| 402 | |
| 403 | if (set->flags & BLK_MQ_F_TAG_SHARED) { |
| 404 | /* |
| 405 | * If this is 0, then we know that no hardware queues |
| 406 | * have RESTART marked. We're done. |
| 407 | */ |
| 408 | if (!atomic_read(&queue->shared_hctx_restart)) |
| 409 | return; |
| 410 | |
| 411 | rcu_read_lock(); |
| 412 | list_for_each_entry_rcu_rr(q, queue, &set->tag_list, |
| 413 | tag_set_list) { |
| 414 | queue_for_each_hw_ctx(q, hctx2, i) |
| 415 | if (hctx2->tags == tags && |
| 416 | blk_mq_sched_restart_hctx(hctx2)) |
| 417 | goto done; |
| 418 | } |
| 419 | j = hctx->queue_num + 1; |
| 420 | for (i = 0; i < queue->nr_hw_queues; i++, j++) { |
| 421 | if (j == queue->nr_hw_queues) |
| 422 | j = 0; |
| 423 | hctx2 = queue->queue_hw_ctx[j]; |
| 424 | if (hctx2->tags == tags && |
| 425 | blk_mq_sched_restart_hctx(hctx2)) |
| 426 | break; |
| 427 | } |
| 428 | done: |
| 429 | rcu_read_unlock(); |
| 430 | } else { |
| 431 | blk_mq_sched_restart_hctx(hctx); |
| 432 | } |
| 433 | } |
| 434 | |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 435 | void blk_mq_sched_insert_request(struct request *rq, bool at_head, |
| 436 | bool run_queue, bool async, bool can_block) |
| 437 | { |
| 438 | struct request_queue *q = rq->q; |
| 439 | struct elevator_queue *e = q->elevator; |
| 440 | struct blk_mq_ctx *ctx = rq->mq_ctx; |
| 441 | struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu); |
| 442 | |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 443 | /* flush rq in flush machinery need to be dispatched directly */ |
| 444 | 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] | 445 | blk_insert_flush(rq); |
| 446 | goto run; |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 447 | } |
| 448 | |
Ming Lei | 923218f | 2017-11-02 23:24:38 +0800 | [diff] [blame] | 449 | WARN_ON(e && (rq->tag != -1)); |
| 450 | |
Ming Lei | a6a252e | 2017-11-02 23:24:36 +0800 | [diff] [blame] | 451 | if (blk_mq_sched_bypass_insert(hctx, !!e, rq)) |
Omar Sandoval | 0cacba6 | 2017-02-02 15:42:39 -0800 | [diff] [blame] | 452 | goto run; |
| 453 | |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 454 | if (e && e->type->ops.mq.insert_requests) { |
| 455 | LIST_HEAD(list); |
| 456 | |
| 457 | list_add(&rq->queuelist, &list); |
| 458 | e->type->ops.mq.insert_requests(hctx, &list, at_head); |
| 459 | } else { |
| 460 | spin_lock(&ctx->lock); |
| 461 | __blk_mq_insert_request(hctx, rq, at_head); |
| 462 | spin_unlock(&ctx->lock); |
| 463 | } |
| 464 | |
Omar Sandoval | 0cacba6 | 2017-02-02 15:42:39 -0800 | [diff] [blame] | 465 | run: |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 466 | if (run_queue) |
| 467 | blk_mq_run_hw_queue(hctx, async); |
| 468 | } |
| 469 | |
| 470 | void blk_mq_sched_insert_requests(struct request_queue *q, |
| 471 | struct blk_mq_ctx *ctx, |
| 472 | struct list_head *list, bool run_queue_async) |
| 473 | { |
| 474 | struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu); |
| 475 | struct elevator_queue *e = hctx->queue->elevator; |
| 476 | |
| 477 | if (e && e->type->ops.mq.insert_requests) |
| 478 | e->type->ops.mq.insert_requests(hctx, list, false); |
| 479 | else |
| 480 | blk_mq_insert_requests(hctx, ctx, list); |
| 481 | |
| 482 | blk_mq_run_hw_queue(hctx, run_queue_async); |
| 483 | } |
| 484 | |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 485 | static void blk_mq_sched_free_tags(struct blk_mq_tag_set *set, |
| 486 | struct blk_mq_hw_ctx *hctx, |
| 487 | unsigned int hctx_idx) |
| 488 | { |
| 489 | if (hctx->sched_tags) { |
| 490 | blk_mq_free_rqs(set, hctx->sched_tags, hctx_idx); |
| 491 | blk_mq_free_rq_map(hctx->sched_tags); |
| 492 | hctx->sched_tags = NULL; |
| 493 | } |
| 494 | } |
| 495 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 496 | static int blk_mq_sched_alloc_tags(struct request_queue *q, |
| 497 | struct blk_mq_hw_ctx *hctx, |
| 498 | unsigned int hctx_idx) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 499 | { |
| 500 | struct blk_mq_tag_set *set = q->tag_set; |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 501 | int ret; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 502 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 503 | hctx->sched_tags = blk_mq_alloc_rq_map(set, hctx_idx, q->nr_requests, |
| 504 | set->reserved_tags); |
| 505 | if (!hctx->sched_tags) |
| 506 | return -ENOMEM; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 507 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 508 | ret = blk_mq_alloc_rqs(set, hctx->sched_tags, hctx_idx, q->nr_requests); |
| 509 | if (ret) |
| 510 | blk_mq_sched_free_tags(set, hctx, hctx_idx); |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 511 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 512 | return ret; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 513 | } |
| 514 | |
Omar Sandoval | 54d5329 | 2017-04-07 08:52:27 -0600 | [diff] [blame] | 515 | static void blk_mq_sched_tags_teardown(struct request_queue *q) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 516 | { |
| 517 | struct blk_mq_tag_set *set = q->tag_set; |
| 518 | struct blk_mq_hw_ctx *hctx; |
| 519 | int i; |
| 520 | |
| 521 | queue_for_each_hw_ctx(q, hctx, i) |
| 522 | blk_mq_sched_free_tags(set, hctx, i); |
| 523 | } |
Jens Axboe | d348499 | 2017-01-13 14:43:58 -0700 | [diff] [blame] | 524 | |
Omar Sandoval | 9325263 | 2017-04-05 12:01:31 -0700 | [diff] [blame] | 525 | int blk_mq_sched_init_hctx(struct request_queue *q, struct blk_mq_hw_ctx *hctx, |
| 526 | unsigned int hctx_idx) |
| 527 | { |
| 528 | struct elevator_queue *e = q->elevator; |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 529 | int ret; |
Omar Sandoval | 9325263 | 2017-04-05 12:01:31 -0700 | [diff] [blame] | 530 | |
| 531 | if (!e) |
| 532 | return 0; |
| 533 | |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 534 | ret = blk_mq_sched_alloc_tags(q, hctx, hctx_idx); |
| 535 | if (ret) |
| 536 | return ret; |
| 537 | |
| 538 | if (e->type->ops.mq.init_hctx) { |
| 539 | ret = e->type->ops.mq.init_hctx(hctx, hctx_idx); |
| 540 | if (ret) { |
| 541 | blk_mq_sched_free_tags(q->tag_set, hctx, hctx_idx); |
| 542 | return ret; |
| 543 | } |
| 544 | } |
| 545 | |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 546 | blk_mq_debugfs_register_sched_hctx(q, hctx); |
| 547 | |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 548 | return 0; |
Omar Sandoval | 9325263 | 2017-04-05 12:01:31 -0700 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | void blk_mq_sched_exit_hctx(struct request_queue *q, struct blk_mq_hw_ctx *hctx, |
| 552 | unsigned int hctx_idx) |
| 553 | { |
| 554 | struct elevator_queue *e = q->elevator; |
| 555 | |
| 556 | if (!e) |
| 557 | return; |
| 558 | |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 559 | blk_mq_debugfs_unregister_sched_hctx(hctx); |
| 560 | |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 561 | if (e->type->ops.mq.exit_hctx && hctx->sched_data) { |
| 562 | e->type->ops.mq.exit_hctx(hctx, hctx_idx); |
| 563 | hctx->sched_data = NULL; |
| 564 | } |
| 565 | |
Omar Sandoval | 9325263 | 2017-04-05 12:01:31 -0700 | [diff] [blame] | 566 | blk_mq_sched_free_tags(q->tag_set, hctx, hctx_idx); |
| 567 | } |
| 568 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 569 | int blk_mq_init_sched(struct request_queue *q, struct elevator_type *e) |
| 570 | { |
| 571 | struct blk_mq_hw_ctx *hctx; |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 572 | struct elevator_queue *eq; |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 573 | unsigned int i; |
| 574 | int ret; |
| 575 | |
| 576 | if (!e) { |
| 577 | q->elevator = NULL; |
| 578 | return 0; |
| 579 | } |
| 580 | |
| 581 | /* |
Ming Lei | 32825c4 | 2017-07-03 20:37:14 +0800 | [diff] [blame] | 582 | * Default to double of smaller one between hw queue_depth and 128, |
| 583 | * since we don't split into sync/async like the old code did. |
| 584 | * Additionally, this is a per-hw queue depth. |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 585 | */ |
Ming Lei | 32825c4 | 2017-07-03 20:37:14 +0800 | [diff] [blame] | 586 | q->nr_requests = 2 * min_t(unsigned int, q->tag_set->queue_depth, |
| 587 | BLKDEV_MAX_RQ); |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 588 | |
| 589 | queue_for_each_hw_ctx(q, hctx, i) { |
| 590 | ret = blk_mq_sched_alloc_tags(q, hctx, i); |
| 591 | if (ret) |
| 592 | goto err; |
| 593 | } |
| 594 | |
| 595 | ret = e->ops.mq.init_sched(q, e); |
| 596 | if (ret) |
| 597 | goto err; |
| 598 | |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 599 | blk_mq_debugfs_register_sched(q); |
| 600 | |
| 601 | queue_for_each_hw_ctx(q, hctx, i) { |
| 602 | if (e->ops.mq.init_hctx) { |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 603 | ret = e->ops.mq.init_hctx(hctx, i); |
| 604 | if (ret) { |
| 605 | eq = q->elevator; |
| 606 | blk_mq_exit_sched(q, eq); |
| 607 | kobject_put(&eq->kobj); |
| 608 | return ret; |
| 609 | } |
| 610 | } |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 611 | blk_mq_debugfs_register_sched_hctx(q, hctx); |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 612 | } |
| 613 | |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 614 | return 0; |
| 615 | |
| 616 | err: |
Omar Sandoval | 54d5329 | 2017-04-07 08:52:27 -0600 | [diff] [blame] | 617 | blk_mq_sched_tags_teardown(q); |
| 618 | q->elevator = NULL; |
Omar Sandoval | 6917ff0 | 2017-04-05 12:01:30 -0700 | [diff] [blame] | 619 | return ret; |
| 620 | } |
| 621 | |
Omar Sandoval | 54d5329 | 2017-04-07 08:52:27 -0600 | [diff] [blame] | 622 | void blk_mq_exit_sched(struct request_queue *q, struct elevator_queue *e) |
| 623 | { |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 624 | struct blk_mq_hw_ctx *hctx; |
| 625 | unsigned int i; |
| 626 | |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 627 | queue_for_each_hw_ctx(q, hctx, i) { |
| 628 | blk_mq_debugfs_unregister_sched_hctx(hctx); |
| 629 | if (e->type->ops.mq.exit_hctx && hctx->sched_data) { |
| 630 | e->type->ops.mq.exit_hctx(hctx, i); |
| 631 | hctx->sched_data = NULL; |
Omar Sandoval | ee056f9 | 2017-04-05 12:01:34 -0700 | [diff] [blame] | 632 | } |
| 633 | } |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 634 | blk_mq_debugfs_unregister_sched(q); |
Omar Sandoval | 54d5329 | 2017-04-07 08:52:27 -0600 | [diff] [blame] | 635 | if (e->type->ops.mq.exit_sched) |
| 636 | e->type->ops.mq.exit_sched(e); |
| 637 | blk_mq_sched_tags_teardown(q); |
| 638 | q->elevator = NULL; |
| 639 | } |
| 640 | |
Jens Axboe | d348499 | 2017-01-13 14:43:58 -0700 | [diff] [blame] | 641 | int blk_mq_sched_init(struct request_queue *q) |
| 642 | { |
| 643 | int ret; |
| 644 | |
Jens Axboe | d348499 | 2017-01-13 14:43:58 -0700 | [diff] [blame] | 645 | mutex_lock(&q->sysfs_lock); |
| 646 | ret = elevator_init(q, NULL); |
| 647 | mutex_unlock(&q->sysfs_lock); |
| 648 | |
| 649 | return ret; |
| 650 | } |