Christoph Hellwig | 3dcf60b | 2019-04-30 14:42:43 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jens Axboe | 75bb462 | 2014-05-28 10:15:41 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Block multiqueue core code |
| 4 | * |
| 5 | * Copyright (C) 2013-2014 Jens Axboe |
| 6 | * Copyright (C) 2013-2014 Christoph Hellwig |
| 7 | */ |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 8 | #include <linux/kernel.h> |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/backing-dev.h> |
| 11 | #include <linux/bio.h> |
| 12 | #include <linux/blkdev.h> |
Christoph Hellwig | fe45e63 | 2021-09-20 14:33:27 +0200 | [diff] [blame] | 13 | #include <linux/blk-integrity.h> |
Catalin Marinas | f75782e | 2015-09-14 18:16:02 +0100 | [diff] [blame] | 14 | #include <linux/kmemleak.h> |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 15 | #include <linux/mm.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/workqueue.h> |
| 19 | #include <linux/smp.h> |
Christoph Hellwig | e41d12f | 2021-09-20 14:33:13 +0200 | [diff] [blame] | 20 | #include <linux/interrupt.h> |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 21 | #include <linux/llist.h> |
| 22 | #include <linux/list_sort.h> |
| 23 | #include <linux/cpu.h> |
| 24 | #include <linux/cache.h> |
| 25 | #include <linux/sched/sysctl.h> |
Ingo Molnar | 105ab3d | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 26 | #include <linux/sched/topology.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 27 | #include <linux/sched/signal.h> |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 28 | #include <linux/delay.h> |
Jens Axboe | aedcd72 | 2014-09-17 08:27:03 -0600 | [diff] [blame] | 29 | #include <linux/crash_dump.h> |
Jens Axboe | 88c7b2b | 2016-08-25 08:07:30 -0600 | [diff] [blame] | 30 | #include <linux/prefetch.h> |
Satya Tangirala | a892c8d | 2020-05-14 00:37:18 +0000 | [diff] [blame] | 31 | #include <linux/blk-crypto.h> |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 32 | |
| 33 | #include <trace/events/block.h> |
| 34 | |
| 35 | #include <linux/blk-mq.h> |
Max Gurtovoy | 54d4e6a | 2019-09-16 18:44:29 +0300 | [diff] [blame] | 36 | #include <linux/t10-pi.h> |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 37 | #include "blk.h" |
| 38 | #include "blk-mq.h" |
Omar Sandoval | 9c1051a | 2017-05-04 08:17:21 -0600 | [diff] [blame] | 39 | #include "blk-mq-debugfs.h" |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 40 | #include "blk-mq-tag.h" |
Bart Van Assche | 986d413 | 2018-09-26 14:01:10 -0700 | [diff] [blame] | 41 | #include "blk-pm.h" |
Jens Axboe | cf43e6b | 2016-11-07 21:32:37 -0700 | [diff] [blame] | 42 | #include "blk-stat.h" |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 43 | #include "blk-mq-sched.h" |
Josef Bacik | c1c8038 | 2018-07-03 11:14:59 -0400 | [diff] [blame] | 44 | #include "blk-rq-qos.h" |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 45 | |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 46 | static DEFINE_PER_CPU(struct llist_head, blk_cpu_done); |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 47 | |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 48 | static void blk_mq_poll_stats_start(struct request_queue *q); |
| 49 | static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb); |
| 50 | |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 51 | static int blk_mq_poll_stats_bkt(const struct request *rq) |
| 52 | { |
Hou Tao | 3d24430 | 2019-05-21 15:59:03 +0800 | [diff] [blame] | 53 | int ddir, sectors, bucket; |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 54 | |
Jens Axboe | 99c749a | 2017-04-21 07:55:42 -0600 | [diff] [blame] | 55 | ddir = rq_data_dir(rq); |
Hou Tao | 3d24430 | 2019-05-21 15:59:03 +0800 | [diff] [blame] | 56 | sectors = blk_rq_stats_sectors(rq); |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 57 | |
Hou Tao | 3d24430 | 2019-05-21 15:59:03 +0800 | [diff] [blame] | 58 | bucket = ddir + 2 * ilog2(sectors); |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 59 | |
| 60 | if (bucket < 0) |
| 61 | return -1; |
| 62 | else if (bucket >= BLK_MQ_POLL_STATS_BKTS) |
| 63 | return ddir + BLK_MQ_POLL_STATS_BKTS - 2; |
| 64 | |
| 65 | return bucket; |
| 66 | } |
| 67 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 68 | /* |
Yufen Yu | 85fae29 | 2019-03-24 17:57:08 +0800 | [diff] [blame] | 69 | * Check if any of the ctx, dispatch list or elevator |
| 70 | * have pending work in this hardware queue. |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 71 | */ |
Jens Axboe | 79f720a | 2017-11-10 09:13:21 -0700 | [diff] [blame] | 72 | static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 73 | { |
Jens Axboe | 79f720a | 2017-11-10 09:13:21 -0700 | [diff] [blame] | 74 | return !list_empty_careful(&hctx->dispatch) || |
| 75 | sbitmap_any_bit_set(&hctx->ctx_map) || |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 76 | blk_mq_sched_has_work(hctx); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | /* |
| 80 | * Mark this ctx as having pending work in this hardware queue |
| 81 | */ |
| 82 | static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx, |
| 83 | struct blk_mq_ctx *ctx) |
| 84 | { |
Jens Axboe | f31967f | 2018-10-29 13:13:29 -0600 | [diff] [blame] | 85 | const int bit = ctx->index_hw[hctx->type]; |
| 86 | |
| 87 | if (!sbitmap_test_bit(&hctx->ctx_map, bit)) |
| 88 | sbitmap_set_bit(&hctx->ctx_map, bit); |
Jens Axboe | 1429d7c | 2014-05-19 09:23:55 -0600 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx, |
| 92 | struct blk_mq_ctx *ctx) |
| 93 | { |
Jens Axboe | f31967f | 2018-10-29 13:13:29 -0600 | [diff] [blame] | 94 | const int bit = ctx->index_hw[hctx->type]; |
| 95 | |
| 96 | sbitmap_clear_bit(&hctx->ctx_map, bit); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 97 | } |
| 98 | |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 99 | struct mq_inflight { |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 100 | struct block_device *part; |
Pavel Begunkov | a2e80f6 | 2019-09-30 21:55:34 +0300 | [diff] [blame] | 101 | unsigned int inflight[2]; |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 102 | }; |
| 103 | |
Jens Axboe | 7baa857 | 2018-11-08 10:24:07 -0700 | [diff] [blame] | 104 | static bool blk_mq_check_inflight(struct blk_mq_hw_ctx *hctx, |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 105 | struct request *rq, void *priv, |
| 106 | bool reserved) |
| 107 | { |
| 108 | struct mq_inflight *mi = priv; |
| 109 | |
Jeffle Xu | b0d9755 | 2020-12-02 19:11:45 +0800 | [diff] [blame] | 110 | if ((!mi->part->bd_partno || rq->part == mi->part) && |
| 111 | blk_mq_rq_state(rq) == MQ_RQ_IN_FLIGHT) |
Pavel Begunkov | bb4e6b1 | 2019-09-30 21:55:33 +0300 | [diff] [blame] | 112 | mi->inflight[rq_data_dir(rq)]++; |
Jens Axboe | 7baa857 | 2018-11-08 10:24:07 -0700 | [diff] [blame] | 113 | |
| 114 | return true; |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 115 | } |
| 116 | |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 117 | unsigned int blk_mq_in_flight(struct request_queue *q, |
| 118 | struct block_device *part) |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 119 | { |
Pavel Begunkov | a2e80f6 | 2019-09-30 21:55:34 +0300 | [diff] [blame] | 120 | struct mq_inflight mi = { .part = part }; |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 121 | |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 122 | blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi); |
Mikulas Patocka | e016b78 | 2018-12-06 11:41:21 -0500 | [diff] [blame] | 123 | |
Pavel Begunkov | a2e80f6 | 2019-09-30 21:55:34 +0300 | [diff] [blame] | 124 | return mi.inflight[0] + mi.inflight[1]; |
Omar Sandoval | bf0ddab | 2018-04-26 00:21:59 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Christoph Hellwig | 8446fe9 | 2020-11-24 09:36:54 +0100 | [diff] [blame] | 127 | void blk_mq_in_flight_rw(struct request_queue *q, struct block_device *part, |
| 128 | unsigned int inflight[2]) |
Omar Sandoval | bf0ddab | 2018-04-26 00:21:59 -0700 | [diff] [blame] | 129 | { |
Pavel Begunkov | a2e80f6 | 2019-09-30 21:55:34 +0300 | [diff] [blame] | 130 | struct mq_inflight mi = { .part = part }; |
Omar Sandoval | bf0ddab | 2018-04-26 00:21:59 -0700 | [diff] [blame] | 131 | |
Pavel Begunkov | bb4e6b1 | 2019-09-30 21:55:33 +0300 | [diff] [blame] | 132 | blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi); |
Pavel Begunkov | a2e80f6 | 2019-09-30 21:55:34 +0300 | [diff] [blame] | 133 | inflight[0] = mi.inflight[0]; |
| 134 | inflight[1] = mi.inflight[1]; |
Omar Sandoval | bf0ddab | 2018-04-26 00:21:59 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Ming Lei | 1671d52 | 2017-03-27 20:06:57 +0800 | [diff] [blame] | 137 | void blk_freeze_queue_start(struct request_queue *q) |
Ming Lei | 43a5e4e | 2013-12-26 21:31:35 +0800 | [diff] [blame] | 138 | { |
Bob Liu | 7996a8b | 2019-05-21 11:25:55 +0800 | [diff] [blame] | 139 | mutex_lock(&q->mq_freeze_lock); |
| 140 | if (++q->mq_freeze_depth == 1) { |
Dan Williams | 3ef28e8 | 2015-10-21 13:20:12 -0400 | [diff] [blame] | 141 | percpu_ref_kill(&q->q_usage_counter); |
Bob Liu | 7996a8b | 2019-05-21 11:25:55 +0800 | [diff] [blame] | 142 | mutex_unlock(&q->mq_freeze_lock); |
Jens Axboe | 344e9ff | 2018-11-15 12:22:51 -0700 | [diff] [blame] | 143 | if (queue_is_mq(q)) |
Ming Lei | 055f6e1 | 2017-11-09 10:49:53 -0800 | [diff] [blame] | 144 | blk_mq_run_hw_queues(q, false); |
Bob Liu | 7996a8b | 2019-05-21 11:25:55 +0800 | [diff] [blame] | 145 | } else { |
| 146 | mutex_unlock(&q->mq_freeze_lock); |
Tejun Heo | cddd5d1 | 2014-08-16 08:02:24 -0400 | [diff] [blame] | 147 | } |
Tejun Heo | f3af020 | 2014-11-04 13:52:27 -0500 | [diff] [blame] | 148 | } |
Ming Lei | 1671d52 | 2017-03-27 20:06:57 +0800 | [diff] [blame] | 149 | EXPORT_SYMBOL_GPL(blk_freeze_queue_start); |
Tejun Heo | f3af020 | 2014-11-04 13:52:27 -0500 | [diff] [blame] | 150 | |
Keith Busch | 6bae363e | 2017-03-01 14:22:10 -0500 | [diff] [blame] | 151 | void blk_mq_freeze_queue_wait(struct request_queue *q) |
Tejun Heo | f3af020 | 2014-11-04 13:52:27 -0500 | [diff] [blame] | 152 | { |
Dan Williams | 3ef28e8 | 2015-10-21 13:20:12 -0400 | [diff] [blame] | 153 | wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter)); |
Ming Lei | 43a5e4e | 2013-12-26 21:31:35 +0800 | [diff] [blame] | 154 | } |
Keith Busch | 6bae363e | 2017-03-01 14:22:10 -0500 | [diff] [blame] | 155 | EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait); |
Ming Lei | 43a5e4e | 2013-12-26 21:31:35 +0800 | [diff] [blame] | 156 | |
Keith Busch | f91328c | 2017-03-01 14:22:11 -0500 | [diff] [blame] | 157 | int blk_mq_freeze_queue_wait_timeout(struct request_queue *q, |
| 158 | unsigned long timeout) |
| 159 | { |
| 160 | return wait_event_timeout(q->mq_freeze_wq, |
| 161 | percpu_ref_is_zero(&q->q_usage_counter), |
| 162 | timeout); |
| 163 | } |
| 164 | EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait_timeout); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 165 | |
Tejun Heo | f3af020 | 2014-11-04 13:52:27 -0500 | [diff] [blame] | 166 | /* |
| 167 | * Guarantee no request is in use, so we can change any data structure of |
| 168 | * the queue afterward. |
| 169 | */ |
Dan Williams | 3ef28e8 | 2015-10-21 13:20:12 -0400 | [diff] [blame] | 170 | void blk_freeze_queue(struct request_queue *q) |
Tejun Heo | f3af020 | 2014-11-04 13:52:27 -0500 | [diff] [blame] | 171 | { |
Dan Williams | 3ef28e8 | 2015-10-21 13:20:12 -0400 | [diff] [blame] | 172 | /* |
| 173 | * In the !blk_mq case we are only calling this to kill the |
| 174 | * q_usage_counter, otherwise this increases the freeze depth |
| 175 | * and waits for it to return to zero. For this reason there is |
| 176 | * no blk_unfreeze_queue(), and blk_freeze_queue() is not |
| 177 | * exported to drivers as the only user for unfreeze is blk_mq. |
| 178 | */ |
Ming Lei | 1671d52 | 2017-03-27 20:06:57 +0800 | [diff] [blame] | 179 | blk_freeze_queue_start(q); |
Tejun Heo | f3af020 | 2014-11-04 13:52:27 -0500 | [diff] [blame] | 180 | blk_mq_freeze_queue_wait(q); |
| 181 | } |
Dan Williams | 3ef28e8 | 2015-10-21 13:20:12 -0400 | [diff] [blame] | 182 | |
| 183 | void blk_mq_freeze_queue(struct request_queue *q) |
| 184 | { |
| 185 | /* |
| 186 | * ...just an alias to keep freeze and unfreeze actions balanced |
| 187 | * in the blk_mq_* namespace |
| 188 | */ |
| 189 | blk_freeze_queue(q); |
| 190 | } |
Jens Axboe | c761d96 | 2015-01-02 15:05:12 -0700 | [diff] [blame] | 191 | EXPORT_SYMBOL_GPL(blk_mq_freeze_queue); |
Tejun Heo | f3af020 | 2014-11-04 13:52:27 -0500 | [diff] [blame] | 192 | |
Christoph Hellwig | aec89dc | 2021-09-29 09:12:41 +0200 | [diff] [blame] | 193 | void __blk_mq_unfreeze_queue(struct request_queue *q, bool force_atomic) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 194 | { |
Bob Liu | 7996a8b | 2019-05-21 11:25:55 +0800 | [diff] [blame] | 195 | mutex_lock(&q->mq_freeze_lock); |
Christoph Hellwig | aec89dc | 2021-09-29 09:12:41 +0200 | [diff] [blame] | 196 | if (force_atomic) |
| 197 | q->q_usage_counter.data->force_atomic = true; |
Bob Liu | 7996a8b | 2019-05-21 11:25:55 +0800 | [diff] [blame] | 198 | q->mq_freeze_depth--; |
| 199 | WARN_ON_ONCE(q->mq_freeze_depth < 0); |
| 200 | if (!q->mq_freeze_depth) { |
Bart Van Assche | bdd6316 | 2018-09-26 14:01:08 -0700 | [diff] [blame] | 201 | percpu_ref_resurrect(&q->q_usage_counter); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 202 | wake_up_all(&q->mq_freeze_wq); |
Tejun Heo | add703f | 2014-07-01 10:34:38 -0600 | [diff] [blame] | 203 | } |
Bob Liu | 7996a8b | 2019-05-21 11:25:55 +0800 | [diff] [blame] | 204 | mutex_unlock(&q->mq_freeze_lock); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 205 | } |
Christoph Hellwig | aec89dc | 2021-09-29 09:12:41 +0200 | [diff] [blame] | 206 | |
| 207 | void blk_mq_unfreeze_queue(struct request_queue *q) |
| 208 | { |
| 209 | __blk_mq_unfreeze_queue(q, false); |
| 210 | } |
Keith Busch | b4c6a02 | 2014-12-19 17:54:14 -0700 | [diff] [blame] | 211 | EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 212 | |
Bart Van Assche | 852ec80 | 2017-06-21 10:55:47 -0700 | [diff] [blame] | 213 | /* |
| 214 | * FIXME: replace the scsi_internal_device_*block_nowait() calls in the |
| 215 | * mpt3sas driver such that this function can be removed. |
| 216 | */ |
| 217 | void blk_mq_quiesce_queue_nowait(struct request_queue *q) |
| 218 | { |
Bart Van Assche | 8814ce8 | 2018-03-07 17:10:04 -0800 | [diff] [blame] | 219 | blk_queue_flag_set(QUEUE_FLAG_QUIESCED, q); |
Bart Van Assche | 852ec80 | 2017-06-21 10:55:47 -0700 | [diff] [blame] | 220 | } |
| 221 | EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue_nowait); |
| 222 | |
Bart Van Assche | 6a83e74 | 2016-11-02 10:09:51 -0600 | [diff] [blame] | 223 | /** |
Ming Lei | 69e07c4 | 2017-06-06 23:22:07 +0800 | [diff] [blame] | 224 | * blk_mq_quiesce_queue() - wait until all ongoing dispatches have finished |
Bart Van Assche | 6a83e74 | 2016-11-02 10:09:51 -0600 | [diff] [blame] | 225 | * @q: request queue. |
| 226 | * |
| 227 | * Note: this function does not prevent that the struct request end_io() |
Ming Lei | 69e07c4 | 2017-06-06 23:22:07 +0800 | [diff] [blame] | 228 | * callback function is invoked. Once this function is returned, we make |
| 229 | * sure no dispatch can happen until the queue is unquiesced via |
| 230 | * blk_mq_unquiesce_queue(). |
Bart Van Assche | 6a83e74 | 2016-11-02 10:09:51 -0600 | [diff] [blame] | 231 | */ |
| 232 | void blk_mq_quiesce_queue(struct request_queue *q) |
| 233 | { |
| 234 | struct blk_mq_hw_ctx *hctx; |
| 235 | unsigned int i; |
| 236 | bool rcu = false; |
| 237 | |
Ming Lei | 1d9e9bc | 2017-06-06 23:22:08 +0800 | [diff] [blame] | 238 | blk_mq_quiesce_queue_nowait(q); |
Ming Lei | f4560ff | 2017-06-18 14:24:27 -0600 | [diff] [blame] | 239 | |
Bart Van Assche | 6a83e74 | 2016-11-02 10:09:51 -0600 | [diff] [blame] | 240 | queue_for_each_hw_ctx(q, hctx, i) { |
| 241 | if (hctx->flags & BLK_MQ_F_BLOCKING) |
Tejun Heo | 05707b6 | 2018-01-09 08:29:53 -0800 | [diff] [blame] | 242 | synchronize_srcu(hctx->srcu); |
Bart Van Assche | 6a83e74 | 2016-11-02 10:09:51 -0600 | [diff] [blame] | 243 | else |
| 244 | rcu = true; |
| 245 | } |
| 246 | if (rcu) |
| 247 | synchronize_rcu(); |
| 248 | } |
| 249 | EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue); |
| 250 | |
Ming Lei | e4e7391 | 2017-06-06 23:22:03 +0800 | [diff] [blame] | 251 | /* |
| 252 | * blk_mq_unquiesce_queue() - counterpart of blk_mq_quiesce_queue() |
| 253 | * @q: request queue. |
| 254 | * |
| 255 | * This function recovers queue into the state before quiescing |
| 256 | * which is done by blk_mq_quiesce_queue. |
| 257 | */ |
| 258 | void blk_mq_unquiesce_queue(struct request_queue *q) |
| 259 | { |
Bart Van Assche | 8814ce8 | 2018-03-07 17:10:04 -0800 | [diff] [blame] | 260 | blk_queue_flag_clear(QUEUE_FLAG_QUIESCED, q); |
Ming Lei | f4560ff | 2017-06-18 14:24:27 -0600 | [diff] [blame] | 261 | |
Ming Lei | 1d9e9bc | 2017-06-06 23:22:08 +0800 | [diff] [blame] | 262 | /* dispatch requests which are inserted during quiescing */ |
| 263 | blk_mq_run_hw_queues(q, true); |
Ming Lei | e4e7391 | 2017-06-06 23:22:03 +0800 | [diff] [blame] | 264 | } |
| 265 | EXPORT_SYMBOL_GPL(blk_mq_unquiesce_queue); |
| 266 | |
Jens Axboe | aed3ea9 | 2014-12-22 14:04:42 -0700 | [diff] [blame] | 267 | void blk_mq_wake_waiters(struct request_queue *q) |
| 268 | { |
| 269 | struct blk_mq_hw_ctx *hctx; |
| 270 | unsigned int i; |
| 271 | |
| 272 | queue_for_each_hw_ctx(q, hctx, i) |
| 273 | if (blk_mq_hw_queue_mapped(hctx)) |
| 274 | blk_mq_tag_wakeup_all(hctx->tags, true); |
| 275 | } |
| 276 | |
Jens Axboe | fe1f452 | 2018-11-28 10:50:07 -0700 | [diff] [blame] | 277 | /* |
Hou Tao | 9a91b05 | 2019-05-21 15:59:04 +0800 | [diff] [blame] | 278 | * Only need start/end time stamping if we have iostat or |
| 279 | * blk stats enabled, or using an IO scheduler. |
Jens Axboe | fe1f452 | 2018-11-28 10:50:07 -0700 | [diff] [blame] | 280 | */ |
| 281 | static inline bool blk_mq_need_time_stamp(struct request *rq) |
| 282 | { |
Hou Tao | 9a91b05 | 2019-05-21 15:59:04 +0800 | [diff] [blame] | 283 | return (rq->rq_flags & (RQF_IO_STAT | RQF_STATS)) || rq->q->elevator; |
Jens Axboe | fe1f452 | 2018-11-28 10:50:07 -0700 | [diff] [blame] | 284 | } |
| 285 | |
Christoph Hellwig | e4cdf1a | 2017-06-16 18:15:27 +0200 | [diff] [blame] | 286 | static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data, |
Christoph Hellwig | 7ea4d8a | 2020-05-29 15:53:10 +0200 | [diff] [blame] | 287 | unsigned int tag, u64 alloc_time_ns) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 288 | { |
Christoph Hellwig | e4cdf1a | 2017-06-16 18:15:27 +0200 | [diff] [blame] | 289 | struct blk_mq_tags *tags = blk_mq_tags_from_data(data); |
| 290 | struct request *rq = tags->static_rqs[tag]; |
Bart Van Assche | c3a148d | 2017-06-20 11:15:43 -0700 | [diff] [blame] | 291 | |
Christoph Hellwig | 42fdc5e | 2020-06-29 17:08:34 +0200 | [diff] [blame] | 292 | if (data->q->elevator) { |
Christoph Hellwig | 76647368 | 2020-05-29 15:53:12 +0200 | [diff] [blame] | 293 | rq->tag = BLK_MQ_NO_TAG; |
Christoph Hellwig | e4cdf1a | 2017-06-16 18:15:27 +0200 | [diff] [blame] | 294 | rq->internal_tag = tag; |
| 295 | } else { |
Christoph Hellwig | e4cdf1a | 2017-06-16 18:15:27 +0200 | [diff] [blame] | 296 | rq->tag = tag; |
Christoph Hellwig | 76647368 | 2020-05-29 15:53:12 +0200 | [diff] [blame] | 297 | rq->internal_tag = BLK_MQ_NO_TAG; |
Christoph Hellwig | e4cdf1a | 2017-06-16 18:15:27 +0200 | [diff] [blame] | 298 | } |
| 299 | |
Christoph Hellwig | af76e55 | 2014-05-06 12:12:45 +0200 | [diff] [blame] | 300 | /* csd/requeue_work/fifo_time is initialized before use */ |
Christoph Hellwig | e4cdf1a | 2017-06-16 18:15:27 +0200 | [diff] [blame] | 301 | rq->q = data->q; |
| 302 | rq->mq_ctx = data->ctx; |
Jens Axboe | ea4f995 | 2018-10-29 15:06:13 -0600 | [diff] [blame] | 303 | rq->mq_hctx = data->hctx; |
Ming Lei | 568f270 | 2020-07-06 22:41:11 +0800 | [diff] [blame] | 304 | rq->rq_flags = 0; |
Christoph Hellwig | 7ea4d8a | 2020-05-29 15:53:10 +0200 | [diff] [blame] | 305 | rq->cmd_flags = data->cmd_flags; |
Bart Van Assche | 0854bcd | 2020-12-08 21:29:45 -0800 | [diff] [blame] | 306 | if (data->flags & BLK_MQ_REQ_PM) |
| 307 | rq->rq_flags |= RQF_PM; |
Christoph Hellwig | e4cdf1a | 2017-06-16 18:15:27 +0200 | [diff] [blame] | 308 | if (blk_queue_io_stat(data->q)) |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 309 | rq->rq_flags |= RQF_IO_STAT; |
Jens Axboe | 7c3fb70 | 2018-01-10 11:46:39 -0700 | [diff] [blame] | 310 | INIT_LIST_HEAD(&rq->queuelist); |
Christoph Hellwig | af76e55 | 2014-05-06 12:12:45 +0200 | [diff] [blame] | 311 | INIT_HLIST_NODE(&rq->hash); |
| 312 | RB_CLEAR_NODE(&rq->rb_node); |
Christoph Hellwig | af76e55 | 2014-05-06 12:12:45 +0200 | [diff] [blame] | 313 | rq->rq_disk = NULL; |
| 314 | rq->part = NULL; |
Tejun Heo | 6f816b4 | 2019-08-28 15:05:57 -0700 | [diff] [blame] | 315 | #ifdef CONFIG_BLK_RQ_ALLOC_TIME |
| 316 | rq->alloc_time_ns = alloc_time_ns; |
| 317 | #endif |
Jens Axboe | fe1f452 | 2018-11-28 10:50:07 -0700 | [diff] [blame] | 318 | if (blk_mq_need_time_stamp(rq)) |
| 319 | rq->start_time_ns = ktime_get_ns(); |
| 320 | else |
| 321 | rq->start_time_ns = 0; |
Omar Sandoval | 544ccc8d | 2018-05-09 02:08:50 -0700 | [diff] [blame] | 322 | rq->io_start_time_ns = 0; |
Hou Tao | 3d24430 | 2019-05-21 15:59:03 +0800 | [diff] [blame] | 323 | rq->stats_sectors = 0; |
Christoph Hellwig | af76e55 | 2014-05-06 12:12:45 +0200 | [diff] [blame] | 324 | rq->nr_phys_segments = 0; |
| 325 | #if defined(CONFIG_BLK_DEV_INTEGRITY) |
| 326 | rq->nr_integrity_segments = 0; |
| 327 | #endif |
Satya Tangirala | a892c8d | 2020-05-14 00:37:18 +0000 | [diff] [blame] | 328 | blk_crypto_rq_set_defaults(rq); |
Christoph Hellwig | af76e55 | 2014-05-06 12:12:45 +0200 | [diff] [blame] | 329 | /* tag was already set */ |
Christoph Hellwig | 079076b | 2018-11-14 17:02:05 +0100 | [diff] [blame] | 330 | WRITE_ONCE(rq->deadline, 0); |
Christoph Hellwig | af76e55 | 2014-05-06 12:12:45 +0200 | [diff] [blame] | 331 | |
Jens Axboe | f6be4fb | 2014-06-06 11:03:48 -0600 | [diff] [blame] | 332 | rq->timeout = 0; |
| 333 | |
Christoph Hellwig | af76e55 | 2014-05-06 12:12:45 +0200 | [diff] [blame] | 334 | rq->end_io = NULL; |
| 335 | rq->end_io_data = NULL; |
Christoph Hellwig | af76e55 | 2014-05-06 12:12:45 +0200 | [diff] [blame] | 336 | |
Christoph Hellwig | 7ea4d8a | 2020-05-29 15:53:10 +0200 | [diff] [blame] | 337 | data->ctx->rq_dispatched[op_is_sync(data->cmd_flags)]++; |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 338 | refcount_set(&rq->ref, 1); |
Christoph Hellwig | 7ea4d8a | 2020-05-29 15:53:10 +0200 | [diff] [blame] | 339 | |
| 340 | if (!op_is_flush(data->cmd_flags)) { |
| 341 | struct elevator_queue *e = data->q->elevator; |
| 342 | |
| 343 | rq->elv.icq = NULL; |
| 344 | if (e && e->type->ops.prepare_request) { |
| 345 | if (e->type->icq_cache) |
| 346 | blk_mq_sched_assign_ioc(rq); |
| 347 | |
| 348 | e->type->ops.prepare_request(rq); |
| 349 | rq->rq_flags |= RQF_ELVPRIV; |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | data->hctx->queued++; |
Christoph Hellwig | e4cdf1a | 2017-06-16 18:15:27 +0200 | [diff] [blame] | 354 | return rq; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 355 | } |
| 356 | |
Christoph Hellwig | e6e7abf | 2020-05-29 15:53:09 +0200 | [diff] [blame] | 357 | static struct request *__blk_mq_alloc_request(struct blk_mq_alloc_data *data) |
Christoph Hellwig | d2c0d38 | 2017-06-16 18:15:19 +0200 | [diff] [blame] | 358 | { |
Christoph Hellwig | e6e7abf | 2020-05-29 15:53:09 +0200 | [diff] [blame] | 359 | struct request_queue *q = data->q; |
Christoph Hellwig | d2c0d38 | 2017-06-16 18:15:19 +0200 | [diff] [blame] | 360 | struct elevator_queue *e = q->elevator; |
Tejun Heo | 6f816b4 | 2019-08-28 15:05:57 -0700 | [diff] [blame] | 361 | u64 alloc_time_ns = 0; |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 362 | unsigned int tag; |
Christoph Hellwig | d2c0d38 | 2017-06-16 18:15:19 +0200 | [diff] [blame] | 363 | |
Tejun Heo | 6f816b4 | 2019-08-28 15:05:57 -0700 | [diff] [blame] | 364 | /* alloc_time includes depth and tag waits */ |
| 365 | if (blk_queue_rq_alloc_time(q)) |
| 366 | alloc_time_ns = ktime_get_ns(); |
| 367 | |
Jens Axboe | f9afca4 | 2018-10-29 13:11:38 -0600 | [diff] [blame] | 368 | if (data->cmd_flags & REQ_NOWAIT) |
Goldwyn Rodrigues | 03a07c9 | 2017-06-20 07:05:46 -0500 | [diff] [blame] | 369 | data->flags |= BLK_MQ_REQ_NOWAIT; |
Christoph Hellwig | d2c0d38 | 2017-06-16 18:15:19 +0200 | [diff] [blame] | 370 | |
| 371 | if (e) { |
Christoph Hellwig | d2c0d38 | 2017-06-16 18:15:19 +0200 | [diff] [blame] | 372 | /* |
Lin Feng | 8d663f3 | 2021-04-15 11:39:20 +0800 | [diff] [blame] | 373 | * Flush/passthrough requests are special and go directly to the |
Jens Axboe | 17a5119 | 2018-05-09 13:28:50 -0600 | [diff] [blame] | 374 | * dispatch list. Don't include reserved tags in the |
| 375 | * limiting, as it isn't useful. |
Christoph Hellwig | d2c0d38 | 2017-06-16 18:15:19 +0200 | [diff] [blame] | 376 | */ |
Jens Axboe | f9afca4 | 2018-10-29 13:11:38 -0600 | [diff] [blame] | 377 | if (!op_is_flush(data->cmd_flags) && |
Lin Feng | 8d663f3 | 2021-04-15 11:39:20 +0800 | [diff] [blame] | 378 | !blk_op_is_passthrough(data->cmd_flags) && |
Jens Axboe | f9afca4 | 2018-10-29 13:11:38 -0600 | [diff] [blame] | 379 | e->type->ops.limit_depth && |
Jens Axboe | 17a5119 | 2018-05-09 13:28:50 -0600 | [diff] [blame] | 380 | !(data->flags & BLK_MQ_REQ_RESERVED)) |
Jens Axboe | f9afca4 | 2018-10-29 13:11:38 -0600 | [diff] [blame] | 381 | e->type->ops.limit_depth(data->cmd_flags, data); |
Christoph Hellwig | d2c0d38 | 2017-06-16 18:15:19 +0200 | [diff] [blame] | 382 | } |
| 383 | |
Ming Lei | bf0beec | 2020-05-29 15:53:15 +0200 | [diff] [blame] | 384 | retry: |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 385 | data->ctx = blk_mq_get_ctx(q); |
| 386 | data->hctx = blk_mq_map_queue(q, data->cmd_flags, data->ctx); |
Christoph Hellwig | 42fdc5e | 2020-06-29 17:08:34 +0200 | [diff] [blame] | 387 | if (!e) |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 388 | blk_mq_tag_busy(data->hctx); |
| 389 | |
Ming Lei | bf0beec | 2020-05-29 15:53:15 +0200 | [diff] [blame] | 390 | /* |
| 391 | * Waiting allocations only fail because of an inactive hctx. In that |
| 392 | * case just retry the hctx assignment and tag allocation as CPU hotplug |
| 393 | * should have migrated us to an online CPU by now. |
| 394 | */ |
Christoph Hellwig | e4cdf1a | 2017-06-16 18:15:27 +0200 | [diff] [blame] | 395 | tag = blk_mq_get_tag(data); |
Ming Lei | bf0beec | 2020-05-29 15:53:15 +0200 | [diff] [blame] | 396 | if (tag == BLK_MQ_NO_TAG) { |
| 397 | if (data->flags & BLK_MQ_REQ_NOWAIT) |
| 398 | return NULL; |
| 399 | |
| 400 | /* |
| 401 | * Give up the CPU and sleep for a random short time to ensure |
| 402 | * that thread using a realtime scheduling class are migrated |
Randy Dunlap | 70f15a4 | 2020-07-30 18:42:31 -0700 | [diff] [blame] | 403 | * off the CPU, and thus off the hctx that is going away. |
Ming Lei | bf0beec | 2020-05-29 15:53:15 +0200 | [diff] [blame] | 404 | */ |
| 405 | msleep(3); |
| 406 | goto retry; |
| 407 | } |
Christoph Hellwig | 7ea4d8a | 2020-05-29 15:53:10 +0200 | [diff] [blame] | 408 | return blk_mq_rq_ctx_init(data, tag, alloc_time_ns); |
Christoph Hellwig | d2c0d38 | 2017-06-16 18:15:19 +0200 | [diff] [blame] | 409 | } |
| 410 | |
Bart Van Assche | cd6ce14 | 2017-06-20 11:15:39 -0700 | [diff] [blame] | 411 | struct request *blk_mq_alloc_request(struct request_queue *q, unsigned int op, |
Bart Van Assche | 9a95e4e | 2017-11-09 10:49:59 -0800 | [diff] [blame] | 412 | blk_mq_req_flags_t flags) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 413 | { |
Christoph Hellwig | e6e7abf | 2020-05-29 15:53:09 +0200 | [diff] [blame] | 414 | struct blk_mq_alloc_data data = { |
| 415 | .q = q, |
| 416 | .flags = flags, |
| 417 | .cmd_flags = op, |
| 418 | }; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 419 | struct request *rq; |
Joe Lawrence | a492f07 | 2014-08-28 08:15:21 -0600 | [diff] [blame] | 420 | int ret; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 421 | |
Bart Van Assche | 3a0a529 | 2017-11-09 10:49:58 -0800 | [diff] [blame] | 422 | ret = blk_queue_enter(q, flags); |
Joe Lawrence | a492f07 | 2014-08-28 08:15:21 -0600 | [diff] [blame] | 423 | if (ret) |
| 424 | return ERR_PTR(ret); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 425 | |
Christoph Hellwig | e6e7abf | 2020-05-29 15:53:09 +0200 | [diff] [blame] | 426 | rq = __blk_mq_alloc_request(&data); |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 427 | if (!rq) |
Christoph Hellwig | a5ea58110 | 2020-05-16 20:27:58 +0200 | [diff] [blame] | 428 | goto out_queue_exit; |
Christoph Hellwig | 0c4de0f | 2016-07-19 11:31:50 +0200 | [diff] [blame] | 429 | rq->__data_len = 0; |
| 430 | rq->__sector = (sector_t) -1; |
| 431 | rq->bio = rq->biotail = NULL; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 432 | return rq; |
Christoph Hellwig | a5ea58110 | 2020-05-16 20:27:58 +0200 | [diff] [blame] | 433 | out_queue_exit: |
| 434 | blk_queue_exit(q); |
| 435 | return ERR_PTR(-EWOULDBLOCK); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 436 | } |
Jens Axboe | 4bb659b | 2014-05-09 09:36:49 -0600 | [diff] [blame] | 437 | EXPORT_SYMBOL(blk_mq_alloc_request); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 438 | |
Bart Van Assche | cd6ce14 | 2017-06-20 11:15:39 -0700 | [diff] [blame] | 439 | struct request *blk_mq_alloc_request_hctx(struct request_queue *q, |
Bart Van Assche | 9a95e4e | 2017-11-09 10:49:59 -0800 | [diff] [blame] | 440 | unsigned int op, blk_mq_req_flags_t flags, unsigned int hctx_idx) |
Ming Lin | 1f5bd33 | 2016-06-13 16:45:21 +0200 | [diff] [blame] | 441 | { |
Christoph Hellwig | e6e7abf | 2020-05-29 15:53:09 +0200 | [diff] [blame] | 442 | struct blk_mq_alloc_data data = { |
| 443 | .q = q, |
| 444 | .flags = flags, |
| 445 | .cmd_flags = op, |
| 446 | }; |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 447 | u64 alloc_time_ns = 0; |
Omar Sandoval | 6d2809d | 2017-02-27 10:28:27 -0800 | [diff] [blame] | 448 | unsigned int cpu; |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 449 | unsigned int tag; |
Ming Lin | 1f5bd33 | 2016-06-13 16:45:21 +0200 | [diff] [blame] | 450 | int ret; |
| 451 | |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 452 | /* alloc_time includes depth and tag waits */ |
| 453 | if (blk_queue_rq_alloc_time(q)) |
| 454 | alloc_time_ns = ktime_get_ns(); |
| 455 | |
Ming Lin | 1f5bd33 | 2016-06-13 16:45:21 +0200 | [diff] [blame] | 456 | /* |
| 457 | * If the tag allocator sleeps we could get an allocation for a |
| 458 | * different hardware context. No need to complicate the low level |
| 459 | * allocator for this for the rare use case of a command tied to |
| 460 | * a specific queue. |
| 461 | */ |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 462 | if (WARN_ON_ONCE(!(flags & (BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED)))) |
Ming Lin | 1f5bd33 | 2016-06-13 16:45:21 +0200 | [diff] [blame] | 463 | return ERR_PTR(-EINVAL); |
| 464 | |
| 465 | if (hctx_idx >= q->nr_hw_queues) |
| 466 | return ERR_PTR(-EIO); |
| 467 | |
Bart Van Assche | 3a0a529 | 2017-11-09 10:49:58 -0800 | [diff] [blame] | 468 | ret = blk_queue_enter(q, flags); |
Ming Lin | 1f5bd33 | 2016-06-13 16:45:21 +0200 | [diff] [blame] | 469 | if (ret) |
| 470 | return ERR_PTR(ret); |
| 471 | |
Christoph Hellwig | c8712c6 | 2016-09-23 10:25:48 -0600 | [diff] [blame] | 472 | /* |
| 473 | * Check if the hardware context is actually mapped to anything. |
| 474 | * If not tell the caller that it should skip this queue. |
| 475 | */ |
Christoph Hellwig | a5ea58110 | 2020-05-16 20:27:58 +0200 | [diff] [blame] | 476 | ret = -EXDEV; |
Christoph Hellwig | e6e7abf | 2020-05-29 15:53:09 +0200 | [diff] [blame] | 477 | data.hctx = q->queue_hw_ctx[hctx_idx]; |
| 478 | if (!blk_mq_hw_queue_mapped(data.hctx)) |
Christoph Hellwig | a5ea58110 | 2020-05-16 20:27:58 +0200 | [diff] [blame] | 479 | goto out_queue_exit; |
Christoph Hellwig | e6e7abf | 2020-05-29 15:53:09 +0200 | [diff] [blame] | 480 | cpu = cpumask_first_and(data.hctx->cpumask, cpu_online_mask); |
| 481 | data.ctx = __blk_mq_get_ctx(q, cpu); |
Ming Lin | 1f5bd33 | 2016-06-13 16:45:21 +0200 | [diff] [blame] | 482 | |
Christoph Hellwig | 42fdc5e | 2020-06-29 17:08:34 +0200 | [diff] [blame] | 483 | if (!q->elevator) |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 484 | blk_mq_tag_busy(data.hctx); |
| 485 | |
Christoph Hellwig | a5ea58110 | 2020-05-16 20:27:58 +0200 | [diff] [blame] | 486 | ret = -EWOULDBLOCK; |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 487 | tag = blk_mq_get_tag(&data); |
| 488 | if (tag == BLK_MQ_NO_TAG) |
Christoph Hellwig | a5ea58110 | 2020-05-16 20:27:58 +0200 | [diff] [blame] | 489 | goto out_queue_exit; |
Christoph Hellwig | 600c3b0 | 2020-05-29 15:53:13 +0200 | [diff] [blame] | 490 | return blk_mq_rq_ctx_init(&data, tag, alloc_time_ns); |
| 491 | |
Christoph Hellwig | a5ea58110 | 2020-05-16 20:27:58 +0200 | [diff] [blame] | 492 | out_queue_exit: |
| 493 | blk_queue_exit(q); |
| 494 | return ERR_PTR(ret); |
Ming Lin | 1f5bd33 | 2016-06-13 16:45:21 +0200 | [diff] [blame] | 495 | } |
| 496 | EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx); |
| 497 | |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 498 | static void __blk_mq_free_request(struct request *rq) |
| 499 | { |
| 500 | struct request_queue *q = rq->q; |
| 501 | struct blk_mq_ctx *ctx = rq->mq_ctx; |
Jens Axboe | ea4f995 | 2018-10-29 15:06:13 -0600 | [diff] [blame] | 502 | struct blk_mq_hw_ctx *hctx = rq->mq_hctx; |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 503 | const int sched_tag = rq->internal_tag; |
| 504 | |
Satya Tangirala | a892c8d | 2020-05-14 00:37:18 +0000 | [diff] [blame] | 505 | blk_crypto_free_request(rq); |
Bart Van Assche | 986d413 | 2018-09-26 14:01:10 -0700 | [diff] [blame] | 506 | blk_pm_mark_last_busy(rq); |
Jens Axboe | ea4f995 | 2018-10-29 15:06:13 -0600 | [diff] [blame] | 507 | rq->mq_hctx = NULL; |
Christoph Hellwig | 76647368 | 2020-05-29 15:53:12 +0200 | [diff] [blame] | 508 | if (rq->tag != BLK_MQ_NO_TAG) |
John Garry | cae740a | 2020-02-26 20:10:15 +0800 | [diff] [blame] | 509 | blk_mq_put_tag(hctx->tags, ctx, rq->tag); |
Christoph Hellwig | 76647368 | 2020-05-29 15:53:12 +0200 | [diff] [blame] | 510 | if (sched_tag != BLK_MQ_NO_TAG) |
John Garry | cae740a | 2020-02-26 20:10:15 +0800 | [diff] [blame] | 511 | blk_mq_put_tag(hctx->sched_tags, ctx, sched_tag); |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 512 | blk_mq_sched_restart(hctx); |
| 513 | blk_queue_exit(q); |
| 514 | } |
| 515 | |
Christoph Hellwig | 6af5405 | 2017-06-16 18:15:22 +0200 | [diff] [blame] | 516 | void blk_mq_free_request(struct request *rq) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 517 | { |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 518 | struct request_queue *q = rq->q; |
Christoph Hellwig | 6af5405 | 2017-06-16 18:15:22 +0200 | [diff] [blame] | 519 | struct elevator_queue *e = q->elevator; |
| 520 | struct blk_mq_ctx *ctx = rq->mq_ctx; |
Jens Axboe | ea4f995 | 2018-10-29 15:06:13 -0600 | [diff] [blame] | 521 | struct blk_mq_hw_ctx *hctx = rq->mq_hctx; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 522 | |
Christoph Hellwig | 5bbf4e5 | 2017-06-16 18:15:26 +0200 | [diff] [blame] | 523 | if (rq->rq_flags & RQF_ELVPRIV) { |
Jens Axboe | f9cd4bf | 2018-11-01 16:41:41 -0600 | [diff] [blame] | 524 | if (e && e->type->ops.finish_request) |
| 525 | e->type->ops.finish_request(rq); |
Christoph Hellwig | 6af5405 | 2017-06-16 18:15:22 +0200 | [diff] [blame] | 526 | if (rq->elv.icq) { |
| 527 | put_io_context(rq->elv.icq->ioc); |
| 528 | rq->elv.icq = NULL; |
| 529 | } |
| 530 | } |
| 531 | |
| 532 | ctx->rq_completed[rq_is_sync(rq)]++; |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 533 | if (rq->rq_flags & RQF_MQ_INFLIGHT) |
John Garry | bccf5e2 | 2020-08-19 23:20:26 +0800 | [diff] [blame] | 534 | __blk_mq_dec_active_requests(hctx); |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 535 | |
Jens Axboe | 7beb2f8 | 2017-09-30 02:08:24 -0600 | [diff] [blame] | 536 | if (unlikely(laptop_mode && !blk_rq_is_passthrough(rq))) |
Christoph Hellwig | d152c68 | 2021-08-16 15:46:24 +0200 | [diff] [blame] | 537 | laptop_io_completion(q->disk->bdi); |
Jens Axboe | 7beb2f8 | 2017-09-30 02:08:24 -0600 | [diff] [blame] | 538 | |
Josef Bacik | a790504 | 2018-07-03 09:32:35 -0600 | [diff] [blame] | 539 | rq_qos_done(q, rq); |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 540 | |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 541 | WRITE_ONCE(rq->state, MQ_RQ_IDLE); |
| 542 | if (refcount_dec_and_test(&rq->ref)) |
| 543 | __blk_mq_free_request(rq); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 544 | } |
Jens Axboe | 1a3b595 | 2014-11-17 10:40:48 -0700 | [diff] [blame] | 545 | EXPORT_SYMBOL_GPL(blk_mq_free_request); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 546 | |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 547 | inline void __blk_mq_end_request(struct request *rq, blk_status_t error) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 548 | { |
Jens Axboe | fe1f452 | 2018-11-28 10:50:07 -0700 | [diff] [blame] | 549 | u64 now = 0; |
| 550 | |
| 551 | if (blk_mq_need_time_stamp(rq)) |
| 552 | now = ktime_get_ns(); |
Omar Sandoval | 522a777 | 2018-05-09 02:08:53 -0700 | [diff] [blame] | 553 | |
Omar Sandoval | 4bc6339 | 2018-05-09 02:08:52 -0700 | [diff] [blame] | 554 | if (rq->rq_flags & RQF_STATS) { |
| 555 | blk_mq_poll_stats_start(rq->q); |
Omar Sandoval | 522a777 | 2018-05-09 02:08:53 -0700 | [diff] [blame] | 556 | blk_stat_add(rq, now); |
Omar Sandoval | 4bc6339 | 2018-05-09 02:08:52 -0700 | [diff] [blame] | 557 | } |
| 558 | |
Baolin Wang | 8789009 | 2020-07-04 15:28:21 +0800 | [diff] [blame] | 559 | blk_mq_sched_completed_request(rq, now); |
Omar Sandoval | ed88660 | 2018-09-27 15:55:51 -0700 | [diff] [blame] | 560 | |
Omar Sandoval | 522a777 | 2018-05-09 02:08:53 -0700 | [diff] [blame] | 561 | blk_account_io_done(rq, now); |
Ming Lei | 0d11e6a | 2013-12-05 10:50:39 -0700 | [diff] [blame] | 562 | |
Christoph Hellwig | 91b6363 | 2014-04-16 09:44:53 +0200 | [diff] [blame] | 563 | if (rq->end_io) { |
Josef Bacik | a790504 | 2018-07-03 09:32:35 -0600 | [diff] [blame] | 564 | rq_qos_done(rq->q, rq); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 565 | rq->end_io(rq, error); |
Christoph Hellwig | 91b6363 | 2014-04-16 09:44:53 +0200 | [diff] [blame] | 566 | } else { |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 567 | blk_mq_free_request(rq); |
Christoph Hellwig | 91b6363 | 2014-04-16 09:44:53 +0200 | [diff] [blame] | 568 | } |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 569 | } |
Christoph Hellwig | c8a446a | 2014-09-13 16:40:10 -0700 | [diff] [blame] | 570 | EXPORT_SYMBOL(__blk_mq_end_request); |
Christoph Hellwig | 63151a4 | 2014-04-16 09:44:52 +0200 | [diff] [blame] | 571 | |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 572 | void blk_mq_end_request(struct request *rq, blk_status_t error) |
Christoph Hellwig | 63151a4 | 2014-04-16 09:44:52 +0200 | [diff] [blame] | 573 | { |
| 574 | if (blk_update_request(rq, error, blk_rq_bytes(rq))) |
| 575 | BUG(); |
Christoph Hellwig | c8a446a | 2014-09-13 16:40:10 -0700 | [diff] [blame] | 576 | __blk_mq_end_request(rq, error); |
Christoph Hellwig | 63151a4 | 2014-04-16 09:44:52 +0200 | [diff] [blame] | 577 | } |
Christoph Hellwig | c8a446a | 2014-09-13 16:40:10 -0700 | [diff] [blame] | 578 | EXPORT_SYMBOL(blk_mq_end_request); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 579 | |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 580 | static void blk_complete_reqs(struct llist_head *list) |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 581 | { |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 582 | struct llist_node *entry = llist_reverse_order(llist_del_all(list)); |
| 583 | struct request *rq, *next; |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 584 | |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 585 | llist_for_each_entry_safe(rq, next, entry, ipi_list) |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 586 | rq->q->mq_ops->complete(rq); |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 587 | } |
| 588 | |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 589 | static __latent_entropy void blk_done_softirq(struct softirq_action *h) |
Christoph Hellwig | 115243f | 2020-06-11 08:44:42 +0200 | [diff] [blame] | 590 | { |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 591 | blk_complete_reqs(this_cpu_ptr(&blk_cpu_done)); |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 592 | } |
| 593 | |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 594 | static int blk_softirq_cpu_dead(unsigned int cpu) |
| 595 | { |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 596 | blk_complete_reqs(&per_cpu(blk_cpu_done, cpu)); |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 597 | return 0; |
| 598 | } |
| 599 | |
Christoph Hellwig | 30a91cb | 2014-02-10 03:24:38 -0800 | [diff] [blame] | 600 | static void __blk_mq_complete_request_remote(void *data) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 601 | { |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 602 | __raise_softirq_irqoff(BLOCK_SOFTIRQ); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 603 | } |
| 604 | |
Christoph Hellwig | 96339526 | 2020-06-11 08:44:49 +0200 | [diff] [blame] | 605 | static inline bool blk_mq_complete_need_ipi(struct request *rq) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 606 | { |
Christoph Hellwig | 96339526 | 2020-06-11 08:44:49 +0200 | [diff] [blame] | 607 | int cpu = raw_smp_processor_id(); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 608 | |
Christoph Hellwig | 96339526 | 2020-06-11 08:44:49 +0200 | [diff] [blame] | 609 | if (!IS_ENABLED(CONFIG_SMP) || |
| 610 | !test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) |
| 611 | return false; |
Sebastian Andrzej Siewior | 7142518 | 2020-12-04 20:13:54 +0100 | [diff] [blame] | 612 | /* |
| 613 | * With force threaded interrupts enabled, raising softirq from an SMP |
| 614 | * function call will always result in waking the ksoftirqd thread. |
| 615 | * This is probably worse than completing the request on a different |
| 616 | * cache domain. |
| 617 | */ |
Tanner Love | 91cc470 | 2021-06-02 14:03:38 -0400 | [diff] [blame] | 618 | if (force_irqthreads()) |
Sebastian Andrzej Siewior | 7142518 | 2020-12-04 20:13:54 +0100 | [diff] [blame] | 619 | return false; |
Christoph Hellwig | 96339526 | 2020-06-11 08:44:49 +0200 | [diff] [blame] | 620 | |
| 621 | /* same CPU or cache domain? Complete locally */ |
| 622 | if (cpu == rq->mq_ctx->cpu || |
| 623 | (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags) && |
| 624 | cpus_share_cache(cpu, rq->mq_ctx->cpu))) |
| 625 | return false; |
| 626 | |
| 627 | /* don't try to IPI to an offline CPU */ |
| 628 | return cpu_online(rq->mq_ctx->cpu); |
| 629 | } |
| 630 | |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 631 | static void blk_mq_complete_send_ipi(struct request *rq) |
| 632 | { |
| 633 | struct llist_head *list; |
| 634 | unsigned int cpu; |
| 635 | |
| 636 | cpu = rq->mq_ctx->cpu; |
| 637 | list = &per_cpu(blk_cpu_done, cpu); |
| 638 | if (llist_add(&rq->ipi_list, list)) { |
| 639 | INIT_CSD(&rq->csd, __blk_mq_complete_request_remote, rq); |
| 640 | smp_call_function_single_async(cpu, &rq->csd); |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | static void blk_mq_raise_softirq(struct request *rq) |
| 645 | { |
| 646 | struct llist_head *list; |
| 647 | |
| 648 | preempt_disable(); |
| 649 | list = this_cpu_ptr(&blk_cpu_done); |
| 650 | if (llist_add(&rq->ipi_list, list)) |
| 651 | raise_softirq(BLOCK_SOFTIRQ); |
| 652 | preempt_enable(); |
| 653 | } |
| 654 | |
Christoph Hellwig | 40d09b5 | 2020-06-11 08:44:50 +0200 | [diff] [blame] | 655 | bool blk_mq_complete_request_remote(struct request *rq) |
| 656 | { |
Keith Busch | af78ff7 | 2018-11-26 09:54:30 -0700 | [diff] [blame] | 657 | WRITE_ONCE(rq->state, MQ_RQ_COMPLETE); |
Ming Lei | 36e7653 | 2018-09-28 16:42:20 +0800 | [diff] [blame] | 658 | |
Jens Axboe | 4ab32bf | 2018-11-18 16:15:35 -0700 | [diff] [blame] | 659 | /* |
| 660 | * For a polled request, always complete locallly, it's pointless |
| 661 | * to redirect the completion. |
| 662 | */ |
Christoph Hellwig | 40d09b5 | 2020-06-11 08:44:50 +0200 | [diff] [blame] | 663 | if (rq->cmd_flags & REQ_HIPRI) |
| 664 | return false; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 665 | |
Christoph Hellwig | 40d09b5 | 2020-06-11 08:44:50 +0200 | [diff] [blame] | 666 | if (blk_mq_complete_need_ipi(rq)) { |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 667 | blk_mq_complete_send_ipi(rq); |
| 668 | return true; |
Christoph Hellwig | 3d6efbf | 2014-01-08 09:33:37 -0800 | [diff] [blame] | 669 | } |
Christoph Hellwig | 40d09b5 | 2020-06-11 08:44:50 +0200 | [diff] [blame] | 670 | |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 671 | if (rq->q->nr_hw_queues == 1) { |
| 672 | blk_mq_raise_softirq(rq); |
| 673 | return true; |
| 674 | } |
| 675 | return false; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 676 | } |
Christoph Hellwig | 40d09b5 | 2020-06-11 08:44:50 +0200 | [diff] [blame] | 677 | EXPORT_SYMBOL_GPL(blk_mq_complete_request_remote); |
| 678 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 679 | /** |
Christoph Hellwig | 15f73f5 | 2020-06-11 08:44:47 +0200 | [diff] [blame] | 680 | * blk_mq_complete_request - end I/O on a request |
| 681 | * @rq: the request being processed |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 682 | * |
Christoph Hellwig | 15f73f5 | 2020-06-11 08:44:47 +0200 | [diff] [blame] | 683 | * Description: |
| 684 | * Complete a request by scheduling the ->complete_rq operation. |
| 685 | **/ |
| 686 | void blk_mq_complete_request(struct request *rq) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 687 | { |
Christoph Hellwig | 40d09b5 | 2020-06-11 08:44:50 +0200 | [diff] [blame] | 688 | if (!blk_mq_complete_request_remote(rq)) |
Christoph Hellwig | 96339526 | 2020-06-11 08:44:49 +0200 | [diff] [blame] | 689 | rq->q->mq_ops->complete(rq); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 690 | } |
Christoph Hellwig | 15f73f5 | 2020-06-11 08:44:47 +0200 | [diff] [blame] | 691 | EXPORT_SYMBOL(blk_mq_complete_request); |
Christoph Hellwig | 30a91cb | 2014-02-10 03:24:38 -0800 | [diff] [blame] | 692 | |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 693 | static void hctx_unlock(struct blk_mq_hw_ctx *hctx, int srcu_idx) |
Bart Van Assche | b7435db | 2018-01-10 11:34:27 -0800 | [diff] [blame] | 694 | __releases(hctx->srcu) |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 695 | { |
| 696 | if (!(hctx->flags & BLK_MQ_F_BLOCKING)) |
| 697 | rcu_read_unlock(); |
| 698 | else |
Tejun Heo | 05707b6 | 2018-01-09 08:29:53 -0800 | [diff] [blame] | 699 | srcu_read_unlock(hctx->srcu, srcu_idx); |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | static void hctx_lock(struct blk_mq_hw_ctx *hctx, int *srcu_idx) |
Bart Van Assche | b7435db | 2018-01-10 11:34:27 -0800 | [diff] [blame] | 703 | __acquires(hctx->srcu) |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 704 | { |
Jens Axboe | 08b5a6e | 2018-01-09 09:32:25 -0700 | [diff] [blame] | 705 | if (!(hctx->flags & BLK_MQ_F_BLOCKING)) { |
| 706 | /* shut up gcc false positive */ |
| 707 | *srcu_idx = 0; |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 708 | rcu_read_lock(); |
Jens Axboe | 08b5a6e | 2018-01-09 09:32:25 -0700 | [diff] [blame] | 709 | } else |
Tejun Heo | 05707b6 | 2018-01-09 08:29:53 -0800 | [diff] [blame] | 710 | *srcu_idx = srcu_read_lock(hctx->srcu); |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 711 | } |
| 712 | |
Christoph Hellwig | 30a91cb | 2014-02-10 03:24:38 -0800 | [diff] [blame] | 713 | /** |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 714 | * blk_mq_start_request - Start processing a request |
| 715 | * @rq: Pointer to request to be started |
| 716 | * |
| 717 | * Function used by device drivers to notify the block layer that a request |
| 718 | * is going to be processed now, so blk layer can do proper initializations |
| 719 | * such as starting the timeout timer. |
| 720 | */ |
Christoph Hellwig | e249007 | 2014-09-13 16:40:09 -0700 | [diff] [blame] | 721 | void blk_mq_start_request(struct request *rq) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 722 | { |
| 723 | struct request_queue *q = rq->q; |
| 724 | |
Christoph Hellwig | a54895f | 2020-12-03 17:21:39 +0100 | [diff] [blame] | 725 | trace_block_rq_issue(rq); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 726 | |
Jens Axboe | cf43e6b | 2016-11-07 21:32:37 -0700 | [diff] [blame] | 727 | if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) { |
Jens Axboe | 0006707 | 2021-10-05 09:23:59 -0600 | [diff] [blame] | 728 | u64 start_time; |
| 729 | #ifdef CONFIG_BLK_CGROUP |
| 730 | if (rq->bio) |
| 731 | start_time = bio_issue_time(&rq->bio->bi_issue); |
| 732 | else |
| 733 | #endif |
| 734 | start_time = ktime_get_ns(); |
| 735 | rq->io_start_time_ns = start_time; |
Hou Tao | 3d24430 | 2019-05-21 15:59:03 +0800 | [diff] [blame] | 736 | rq->stats_sectors = blk_rq_sectors(rq); |
Jens Axboe | cf43e6b | 2016-11-07 21:32:37 -0700 | [diff] [blame] | 737 | rq->rq_flags |= RQF_STATS; |
Josef Bacik | a790504 | 2018-07-03 09:32:35 -0600 | [diff] [blame] | 738 | rq_qos_issue(q, rq); |
Jens Axboe | cf43e6b | 2016-11-07 21:32:37 -0700 | [diff] [blame] | 739 | } |
| 740 | |
Tejun Heo | 1d9bd51 | 2018-01-09 08:29:48 -0800 | [diff] [blame] | 741 | WARN_ON_ONCE(blk_mq_rq_state(rq) != MQ_RQ_IDLE); |
Jens Axboe | 538b753 | 2014-09-16 10:37:37 -0600 | [diff] [blame] | 742 | |
Tejun Heo | 1d9bd51 | 2018-01-09 08:29:48 -0800 | [diff] [blame] | 743 | blk_add_timer(rq); |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 744 | WRITE_ONCE(rq->state, MQ_RQ_IN_FLIGHT); |
Christoph Hellwig | 49f5baa | 2014-02-11 08:27:14 -0800 | [diff] [blame] | 745 | |
Max Gurtovoy | 54d4e6a | 2019-09-16 18:44:29 +0300 | [diff] [blame] | 746 | #ifdef CONFIG_BLK_DEV_INTEGRITY |
| 747 | if (blk_integrity_rq(rq) && req_op(rq) == REQ_OP_WRITE) |
| 748 | q->integrity.profile->prepare_fn(rq); |
| 749 | #endif |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 750 | } |
Christoph Hellwig | e249007 | 2014-09-13 16:40:09 -0700 | [diff] [blame] | 751 | EXPORT_SYMBOL(blk_mq_start_request); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 752 | |
Christoph Hellwig | ed0791b | 2014-04-16 09:44:57 +0200 | [diff] [blame] | 753 | static void __blk_mq_requeue_request(struct request *rq) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 754 | { |
| 755 | struct request_queue *q = rq->q; |
| 756 | |
Ming Lei | 923218f | 2017-11-02 23:24:38 +0800 | [diff] [blame] | 757 | blk_mq_put_driver_tag(rq); |
| 758 | |
Christoph Hellwig | a54895f | 2020-12-03 17:21:39 +0100 | [diff] [blame] | 759 | trace_block_rq_requeue(rq); |
Josef Bacik | a790504 | 2018-07-03 09:32:35 -0600 | [diff] [blame] | 760 | rq_qos_requeue(q, rq); |
Christoph Hellwig | 49f5baa | 2014-02-11 08:27:14 -0800 | [diff] [blame] | 761 | |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 762 | if (blk_mq_request_started(rq)) { |
| 763 | WRITE_ONCE(rq->state, MQ_RQ_IDLE); |
Christoph Hellwig | da66126 | 2018-06-14 13:58:45 +0200 | [diff] [blame] | 764 | rq->rq_flags &= ~RQF_TIMED_OUT; |
Christoph Hellwig | e249007 | 2014-09-13 16:40:09 -0700 | [diff] [blame] | 765 | } |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 766 | } |
| 767 | |
Bart Van Assche | 2b053ac | 2016-10-28 17:21:41 -0700 | [diff] [blame] | 768 | void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list) |
Christoph Hellwig | ed0791b | 2014-04-16 09:44:57 +0200 | [diff] [blame] | 769 | { |
Christoph Hellwig | ed0791b | 2014-04-16 09:44:57 +0200 | [diff] [blame] | 770 | __blk_mq_requeue_request(rq); |
Christoph Hellwig | ed0791b | 2014-04-16 09:44:57 +0200 | [diff] [blame] | 771 | |
Ming Lei | 105976f | 2018-02-23 23:36:56 +0800 | [diff] [blame] | 772 | /* this request will be re-inserted to io scheduler queue */ |
| 773 | blk_mq_sched_requeue_request(rq); |
| 774 | |
Jens Axboe | 7d69233 | 2018-10-24 10:48:12 -0600 | [diff] [blame] | 775 | BUG_ON(!list_empty(&rq->queuelist)); |
Bart Van Assche | 2b053ac | 2016-10-28 17:21:41 -0700 | [diff] [blame] | 776 | blk_mq_add_to_requeue_list(rq, true, kick_requeue_list); |
Christoph Hellwig | ed0791b | 2014-04-16 09:44:57 +0200 | [diff] [blame] | 777 | } |
| 778 | EXPORT_SYMBOL(blk_mq_requeue_request); |
| 779 | |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 780 | static void blk_mq_requeue_work(struct work_struct *work) |
| 781 | { |
| 782 | struct request_queue *q = |
Mike Snitzer | 2849450 | 2016-09-14 13:28:30 -0400 | [diff] [blame] | 783 | container_of(work, struct request_queue, requeue_work.work); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 784 | LIST_HEAD(rq_list); |
| 785 | struct request *rq, *next; |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 786 | |
Jens Axboe | 18e9781 | 2017-07-27 08:03:57 -0600 | [diff] [blame] | 787 | spin_lock_irq(&q->requeue_lock); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 788 | list_splice_init(&q->requeue_list, &rq_list); |
Jens Axboe | 18e9781 | 2017-07-27 08:03:57 -0600 | [diff] [blame] | 789 | spin_unlock_irq(&q->requeue_lock); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 790 | |
| 791 | list_for_each_entry_safe(rq, next, &rq_list, queuelist) { |
Jianchao Wang | aef1897 | 2019-02-12 09:56:25 +0800 | [diff] [blame] | 792 | if (!(rq->rq_flags & (RQF_SOFTBARRIER | RQF_DONTPREP))) |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 793 | continue; |
| 794 | |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 795 | rq->rq_flags &= ~RQF_SOFTBARRIER; |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 796 | list_del_init(&rq->queuelist); |
Jianchao Wang | aef1897 | 2019-02-12 09:56:25 +0800 | [diff] [blame] | 797 | /* |
| 798 | * If RQF_DONTPREP, rq has contained some driver specific |
| 799 | * data, so insert it to hctx dispatch list to avoid any |
| 800 | * merge. |
| 801 | */ |
| 802 | if (rq->rq_flags & RQF_DONTPREP) |
Ming Lei | 01e99ae | 2020-02-25 09:04:32 +0800 | [diff] [blame] | 803 | blk_mq_request_bypass_insert(rq, false, false); |
Jianchao Wang | aef1897 | 2019-02-12 09:56:25 +0800 | [diff] [blame] | 804 | else |
| 805 | blk_mq_sched_insert_request(rq, true, false, false); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 806 | } |
| 807 | |
| 808 | while (!list_empty(&rq_list)) { |
| 809 | rq = list_entry(rq_list.next, struct request, queuelist); |
| 810 | list_del_init(&rq->queuelist); |
Mike Snitzer | 9e97d29 | 2018-01-17 11:25:58 -0500 | [diff] [blame] | 811 | blk_mq_sched_insert_request(rq, false, false, false); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 812 | } |
| 813 | |
Bart Van Assche | 52d7f1b | 2016-10-28 17:20:32 -0700 | [diff] [blame] | 814 | blk_mq_run_hw_queues(q, false); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 815 | } |
| 816 | |
Bart Van Assche | 2b053ac | 2016-10-28 17:21:41 -0700 | [diff] [blame] | 817 | void blk_mq_add_to_requeue_list(struct request *rq, bool at_head, |
| 818 | bool kick_requeue_list) |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 819 | { |
| 820 | struct request_queue *q = rq->q; |
| 821 | unsigned long flags; |
| 822 | |
| 823 | /* |
| 824 | * We abuse this flag that is otherwise used by the I/O scheduler to |
Jens Axboe | ff821d2 | 2017-11-10 22:05:12 -0700 | [diff] [blame] | 825 | * request head insertion from the workqueue. |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 826 | */ |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 827 | BUG_ON(rq->rq_flags & RQF_SOFTBARRIER); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 828 | |
| 829 | spin_lock_irqsave(&q->requeue_lock, flags); |
| 830 | if (at_head) { |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 831 | rq->rq_flags |= RQF_SOFTBARRIER; |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 832 | list_add(&rq->queuelist, &q->requeue_list); |
| 833 | } else { |
| 834 | list_add_tail(&rq->queuelist, &q->requeue_list); |
| 835 | } |
| 836 | spin_unlock_irqrestore(&q->requeue_lock, flags); |
Bart Van Assche | 2b053ac | 2016-10-28 17:21:41 -0700 | [diff] [blame] | 837 | |
| 838 | if (kick_requeue_list) |
| 839 | blk_mq_kick_requeue_list(q); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 840 | } |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 841 | |
| 842 | void blk_mq_kick_requeue_list(struct request_queue *q) |
| 843 | { |
Bart Van Assche | ae943d2 | 2018-01-19 08:58:55 -0800 | [diff] [blame] | 844 | kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work, 0); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 845 | } |
| 846 | EXPORT_SYMBOL(blk_mq_kick_requeue_list); |
| 847 | |
Mike Snitzer | 2849450 | 2016-09-14 13:28:30 -0400 | [diff] [blame] | 848 | void blk_mq_delay_kick_requeue_list(struct request_queue *q, |
| 849 | unsigned long msecs) |
| 850 | { |
Bart Van Assche | d4acf36 | 2017-08-09 11:28:06 -0700 | [diff] [blame] | 851 | kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work, |
| 852 | msecs_to_jiffies(msecs)); |
Mike Snitzer | 2849450 | 2016-09-14 13:28:30 -0400 | [diff] [blame] | 853 | } |
| 854 | EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list); |
| 855 | |
Jens Axboe | 0e62f51 | 2014-06-04 10:23:49 -0600 | [diff] [blame] | 856 | struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag) |
| 857 | { |
Jens Axboe | 88c7b2b | 2016-08-25 08:07:30 -0600 | [diff] [blame] | 858 | if (tag < tags->nr_tags) { |
| 859 | prefetch(tags->rqs[tag]); |
Hannes Reinecke | 4ee86ba | 2016-03-15 12:03:28 -0700 | [diff] [blame] | 860 | return tags->rqs[tag]; |
Jens Axboe | 88c7b2b | 2016-08-25 08:07:30 -0600 | [diff] [blame] | 861 | } |
Hannes Reinecke | 4ee86ba | 2016-03-15 12:03:28 -0700 | [diff] [blame] | 862 | |
| 863 | return NULL; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 864 | } |
| 865 | EXPORT_SYMBOL(blk_mq_tag_to_rq); |
| 866 | |
Jens Axboe | 3c94d83 | 2018-12-17 21:11:17 -0700 | [diff] [blame] | 867 | static bool blk_mq_rq_inflight(struct blk_mq_hw_ctx *hctx, struct request *rq, |
| 868 | void *priv, bool reserved) |
Jens Axboe | ae87991 | 2018-11-08 09:03:51 -0700 | [diff] [blame] | 869 | { |
| 870 | /* |
Ming Lei | 05a4fed | 2020-07-07 11:04:33 -0400 | [diff] [blame] | 871 | * If we find a request that isn't idle and the queue matches, |
Jens Axboe | 3c94d83 | 2018-12-17 21:11:17 -0700 | [diff] [blame] | 872 | * we know the queue is busy. Return false to stop the iteration. |
Jens Axboe | ae87991 | 2018-11-08 09:03:51 -0700 | [diff] [blame] | 873 | */ |
Ming Lei | 05a4fed | 2020-07-07 11:04:33 -0400 | [diff] [blame] | 874 | if (blk_mq_request_started(rq) && rq->q == hctx->queue) { |
Jens Axboe | ae87991 | 2018-11-08 09:03:51 -0700 | [diff] [blame] | 875 | bool *busy = priv; |
| 876 | |
| 877 | *busy = true; |
| 878 | return false; |
| 879 | } |
| 880 | |
| 881 | return true; |
| 882 | } |
| 883 | |
Jens Axboe | 3c94d83 | 2018-12-17 21:11:17 -0700 | [diff] [blame] | 884 | bool blk_mq_queue_inflight(struct request_queue *q) |
Jens Axboe | ae87991 | 2018-11-08 09:03:51 -0700 | [diff] [blame] | 885 | { |
| 886 | bool busy = false; |
| 887 | |
Jens Axboe | 3c94d83 | 2018-12-17 21:11:17 -0700 | [diff] [blame] | 888 | blk_mq_queue_tag_busy_iter(q, blk_mq_rq_inflight, &busy); |
Jens Axboe | ae87991 | 2018-11-08 09:03:51 -0700 | [diff] [blame] | 889 | return busy; |
| 890 | } |
Jens Axboe | 3c94d83 | 2018-12-17 21:11:17 -0700 | [diff] [blame] | 891 | EXPORT_SYMBOL_GPL(blk_mq_queue_inflight); |
Jens Axboe | ae87991 | 2018-11-08 09:03:51 -0700 | [diff] [blame] | 892 | |
Tejun Heo | 358f70d | 2018-01-09 08:29:50 -0800 | [diff] [blame] | 893 | static void blk_mq_rq_timed_out(struct request *req, bool reserved) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 894 | { |
Christoph Hellwig | da66126 | 2018-06-14 13:58:45 +0200 | [diff] [blame] | 895 | req->rq_flags |= RQF_TIMED_OUT; |
Christoph Hellwig | d1210d5 | 2018-05-29 15:52:39 +0200 | [diff] [blame] | 896 | if (req->q->mq_ops->timeout) { |
| 897 | enum blk_eh_timer_return ret; |
Jens Axboe | 87ee7b1 | 2014-04-24 08:51:47 -0600 | [diff] [blame] | 898 | |
Christoph Hellwig | d1210d5 | 2018-05-29 15:52:39 +0200 | [diff] [blame] | 899 | ret = req->q->mq_ops->timeout(req, reserved); |
| 900 | if (ret == BLK_EH_DONE) |
| 901 | return; |
| 902 | WARN_ON_ONCE(ret != BLK_EH_RESET_TIMER); |
Christoph Hellwig | 46f92d4 | 2014-09-13 16:40:12 -0700 | [diff] [blame] | 903 | } |
Christoph Hellwig | d1210d5 | 2018-05-29 15:52:39 +0200 | [diff] [blame] | 904 | |
| 905 | blk_add_timer(req); |
Jens Axboe | 87ee7b1 | 2014-04-24 08:51:47 -0600 | [diff] [blame] | 906 | } |
Keith Busch | 5b3f25f | 2015-01-07 18:55:46 -0700 | [diff] [blame] | 907 | |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 908 | static bool blk_mq_req_expired(struct request *rq, unsigned long *next) |
| 909 | { |
| 910 | unsigned long deadline; |
| 911 | |
| 912 | if (blk_mq_rq_state(rq) != MQ_RQ_IN_FLIGHT) |
| 913 | return false; |
Christoph Hellwig | da66126 | 2018-06-14 13:58:45 +0200 | [diff] [blame] | 914 | if (rq->rq_flags & RQF_TIMED_OUT) |
| 915 | return false; |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 916 | |
Christoph Hellwig | 079076b | 2018-11-14 17:02:05 +0100 | [diff] [blame] | 917 | deadline = READ_ONCE(rq->deadline); |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 918 | if (time_after_eq(jiffies, deadline)) |
| 919 | return true; |
| 920 | |
| 921 | if (*next == 0) |
| 922 | *next = deadline; |
| 923 | else if (time_after(*next, deadline)) |
| 924 | *next = deadline; |
| 925 | return false; |
| 926 | } |
| 927 | |
Ming Lei | 2e315dc | 2021-05-11 23:22:34 +0800 | [diff] [blame] | 928 | void blk_mq_put_rq_ref(struct request *rq) |
| 929 | { |
Ming Lei | a9ed27a | 2021-08-18 09:09:25 +0800 | [diff] [blame] | 930 | if (is_flush_rq(rq)) |
Ming Lei | 2e315dc | 2021-05-11 23:22:34 +0800 | [diff] [blame] | 931 | rq->end_io(rq, 0); |
| 932 | else if (refcount_dec_and_test(&rq->ref)) |
| 933 | __blk_mq_free_request(rq); |
| 934 | } |
| 935 | |
Jens Axboe | 7baa857 | 2018-11-08 10:24:07 -0700 | [diff] [blame] | 936 | static bool blk_mq_check_expired(struct blk_mq_hw_ctx *hctx, |
Christoph Hellwig | 81481eb | 2014-09-13 16:40:11 -0700 | [diff] [blame] | 937 | struct request *rq, void *priv, bool reserved) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 938 | { |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 939 | unsigned long *next = priv; |
Christoph Hellwig | 81481eb | 2014-09-13 16:40:11 -0700 | [diff] [blame] | 940 | |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 941 | /* |
Ming Lei | c797b40 | 2021-08-11 23:52:02 +0800 | [diff] [blame] | 942 | * blk_mq_queue_tag_busy_iter() has locked the request, so it cannot |
| 943 | * be reallocated underneath the timeout handler's processing, then |
| 944 | * the expire check is reliable. If the request is not expired, then |
| 945 | * it was completed and reallocated as a new request after returning |
| 946 | * from blk_mq_check_expired(). |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 947 | */ |
| 948 | if (blk_mq_req_expired(rq, next)) |
Tejun Heo | 1d9bd51 | 2018-01-09 08:29:48 -0800 | [diff] [blame] | 949 | blk_mq_rq_timed_out(rq, reserved); |
Jens Axboe | 7baa857 | 2018-11-08 10:24:07 -0700 | [diff] [blame] | 950 | return true; |
Tejun Heo | 1d9bd51 | 2018-01-09 08:29:48 -0800 | [diff] [blame] | 951 | } |
| 952 | |
Christoph Hellwig | 287922e | 2015-10-30 20:57:30 +0800 | [diff] [blame] | 953 | static void blk_mq_timeout_work(struct work_struct *work) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 954 | { |
Christoph Hellwig | 287922e | 2015-10-30 20:57:30 +0800 | [diff] [blame] | 955 | struct request_queue *q = |
| 956 | container_of(work, struct request_queue, timeout_work); |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 957 | unsigned long next = 0; |
Tejun Heo | 1d9bd51 | 2018-01-09 08:29:48 -0800 | [diff] [blame] | 958 | struct blk_mq_hw_ctx *hctx; |
Christoph Hellwig | 81481eb | 2014-09-13 16:40:11 -0700 | [diff] [blame] | 959 | int i; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 960 | |
Gabriel Krisman Bertazi | 71f79fb | 2016-08-01 08:23:39 -0600 | [diff] [blame] | 961 | /* A deadlock might occur if a request is stuck requiring a |
| 962 | * timeout at the same time a queue freeze is waiting |
| 963 | * completion, since the timeout code would not be able to |
| 964 | * acquire the queue reference here. |
| 965 | * |
| 966 | * That's why we don't use blk_queue_enter here; instead, we use |
| 967 | * percpu_ref_tryget directly, because we need to be able to |
| 968 | * obtain a reference even in the short window between the queue |
| 969 | * starting to freeze, by dropping the first reference in |
Ming Lei | 1671d52 | 2017-03-27 20:06:57 +0800 | [diff] [blame] | 970 | * blk_freeze_queue_start, and the moment the last request is |
Gabriel Krisman Bertazi | 71f79fb | 2016-08-01 08:23:39 -0600 | [diff] [blame] | 971 | * consumed, marked by the instant q_usage_counter reaches |
| 972 | * zero. |
| 973 | */ |
| 974 | if (!percpu_ref_tryget(&q->q_usage_counter)) |
Christoph Hellwig | 287922e | 2015-10-30 20:57:30 +0800 | [diff] [blame] | 975 | return; |
| 976 | |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 977 | blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &next); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 978 | |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 979 | if (next != 0) { |
| 980 | mod_timer(&q->timeout, next); |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 981 | } else { |
Bart Van Assche | fcd36c3 | 2018-01-10 08:33:33 -0800 | [diff] [blame] | 982 | /* |
| 983 | * Request timeouts are handled as a forward rolling timer. If |
| 984 | * we end up here it means that no requests are pending and |
| 985 | * also that no request has been pending for a while. Mark |
| 986 | * each hctx as idle. |
| 987 | */ |
Ming Lei | f054b56 | 2015-04-21 10:00:19 +0800 | [diff] [blame] | 988 | queue_for_each_hw_ctx(q, hctx, i) { |
| 989 | /* the hctx may be unmapped, so check it here */ |
| 990 | if (blk_mq_hw_queue_mapped(hctx)) |
| 991 | blk_mq_tag_idle(hctx); |
| 992 | } |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 993 | } |
Christoph Hellwig | 287922e | 2015-10-30 20:57:30 +0800 | [diff] [blame] | 994 | blk_queue_exit(q); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 995 | } |
| 996 | |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 997 | struct flush_busy_ctx_data { |
| 998 | struct blk_mq_hw_ctx *hctx; |
| 999 | struct list_head *list; |
| 1000 | }; |
| 1001 | |
| 1002 | static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data) |
| 1003 | { |
| 1004 | struct flush_busy_ctx_data *flush_data = data; |
| 1005 | struct blk_mq_hw_ctx *hctx = flush_data->hctx; |
| 1006 | struct blk_mq_ctx *ctx = hctx->ctxs[bitnr]; |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1007 | enum hctx_type type = hctx->type; |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 1008 | |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 1009 | spin_lock(&ctx->lock); |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1010 | list_splice_tail_init(&ctx->rq_lists[type], flush_data->list); |
Omar Sandoval | e9a99a6 | 2018-02-27 16:56:42 -0800 | [diff] [blame] | 1011 | sbitmap_clear_bit(sb, bitnr); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 1012 | spin_unlock(&ctx->lock); |
| 1013 | return true; |
| 1014 | } |
| 1015 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1016 | /* |
Jens Axboe | 1429d7c | 2014-05-19 09:23:55 -0600 | [diff] [blame] | 1017 | * Process software queues that have been marked busy, splicing them |
| 1018 | * to the for-dispatch |
| 1019 | */ |
Jens Axboe | 2c3ad66 | 2016-12-14 14:34:47 -0700 | [diff] [blame] | 1020 | void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list) |
Jens Axboe | 1429d7c | 2014-05-19 09:23:55 -0600 | [diff] [blame] | 1021 | { |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 1022 | struct flush_busy_ctx_data data = { |
| 1023 | .hctx = hctx, |
| 1024 | .list = list, |
| 1025 | }; |
Jens Axboe | 1429d7c | 2014-05-19 09:23:55 -0600 | [diff] [blame] | 1026 | |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 1027 | sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data); |
Jens Axboe | 1429d7c | 2014-05-19 09:23:55 -0600 | [diff] [blame] | 1028 | } |
Jens Axboe | 2c3ad66 | 2016-12-14 14:34:47 -0700 | [diff] [blame] | 1029 | EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs); |
Jens Axboe | 1429d7c | 2014-05-19 09:23:55 -0600 | [diff] [blame] | 1030 | |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 1031 | struct dispatch_rq_data { |
| 1032 | struct blk_mq_hw_ctx *hctx; |
| 1033 | struct request *rq; |
| 1034 | }; |
| 1035 | |
| 1036 | static bool dispatch_rq_from_ctx(struct sbitmap *sb, unsigned int bitnr, |
| 1037 | void *data) |
| 1038 | { |
| 1039 | struct dispatch_rq_data *dispatch_data = data; |
| 1040 | struct blk_mq_hw_ctx *hctx = dispatch_data->hctx; |
| 1041 | struct blk_mq_ctx *ctx = hctx->ctxs[bitnr]; |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1042 | enum hctx_type type = hctx->type; |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 1043 | |
| 1044 | spin_lock(&ctx->lock); |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1045 | if (!list_empty(&ctx->rq_lists[type])) { |
| 1046 | dispatch_data->rq = list_entry_rq(ctx->rq_lists[type].next); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 1047 | list_del_init(&dispatch_data->rq->queuelist); |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1048 | if (list_empty(&ctx->rq_lists[type])) |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 1049 | sbitmap_clear_bit(sb, bitnr); |
| 1050 | } |
| 1051 | spin_unlock(&ctx->lock); |
| 1052 | |
| 1053 | return !dispatch_data->rq; |
| 1054 | } |
| 1055 | |
| 1056 | struct request *blk_mq_dequeue_from_ctx(struct blk_mq_hw_ctx *hctx, |
| 1057 | struct blk_mq_ctx *start) |
| 1058 | { |
Jens Axboe | f31967f | 2018-10-29 13:13:29 -0600 | [diff] [blame] | 1059 | unsigned off = start ? start->index_hw[hctx->type] : 0; |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 1060 | struct dispatch_rq_data data = { |
| 1061 | .hctx = hctx, |
| 1062 | .rq = NULL, |
| 1063 | }; |
| 1064 | |
| 1065 | __sbitmap_for_each_set(&hctx->ctx_map, off, |
| 1066 | dispatch_rq_from_ctx, &data); |
| 1067 | |
| 1068 | return data.rq; |
| 1069 | } |
| 1070 | |
Jens Axboe | 703fd1c | 2016-09-16 13:59:14 -0600 | [diff] [blame] | 1071 | static inline unsigned int queued_to_index(unsigned int queued) |
| 1072 | { |
| 1073 | if (!queued) |
| 1074 | return 0; |
Jens Axboe | 1429d7c | 2014-05-19 09:23:55 -0600 | [diff] [blame] | 1075 | |
Jens Axboe | 703fd1c | 2016-09-16 13:59:14 -0600 | [diff] [blame] | 1076 | return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1); |
Jens Axboe | 1429d7c | 2014-05-19 09:23:55 -0600 | [diff] [blame] | 1077 | } |
| 1078 | |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1079 | static bool __blk_mq_get_driver_tag(struct request *rq) |
| 1080 | { |
John Garry | ae0f1a7 | 2021-10-05 18:23:38 +0800 | [diff] [blame] | 1081 | struct sbitmap_queue *bt = &rq->mq_hctx->tags->bitmap_tags; |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1082 | unsigned int tag_offset = rq->mq_hctx->tags->nr_reserved_tags; |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1083 | int tag; |
| 1084 | |
Ming Lei | 568f270 | 2020-07-06 22:41:11 +0800 | [diff] [blame] | 1085 | blk_mq_tag_busy(rq->mq_hctx); |
| 1086 | |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1087 | if (blk_mq_tag_is_reserved(rq->mq_hctx->sched_tags, rq->internal_tag)) { |
John Garry | ae0f1a7 | 2021-10-05 18:23:38 +0800 | [diff] [blame] | 1088 | bt = &rq->mq_hctx->tags->breserved_tags; |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1089 | tag_offset = 0; |
Ming Lei | 2850085 | 2020-09-11 18:41:14 +0800 | [diff] [blame] | 1090 | } else { |
| 1091 | if (!hctx_may_queue(rq->mq_hctx, bt)) |
| 1092 | return false; |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1093 | } |
| 1094 | |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1095 | tag = __sbitmap_queue_get(bt); |
| 1096 | if (tag == BLK_MQ_NO_TAG) |
| 1097 | return false; |
| 1098 | |
| 1099 | rq->tag = tag + tag_offset; |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1100 | return true; |
| 1101 | } |
| 1102 | |
Jan Kara | 61347154 | 2021-06-03 12:47:21 +0200 | [diff] [blame] | 1103 | bool blk_mq_get_driver_tag(struct request *rq) |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1104 | { |
Ming Lei | 568f270 | 2020-07-06 22:41:11 +0800 | [diff] [blame] | 1105 | struct blk_mq_hw_ctx *hctx = rq->mq_hctx; |
| 1106 | |
| 1107 | if (rq->tag == BLK_MQ_NO_TAG && !__blk_mq_get_driver_tag(rq)) |
| 1108 | return false; |
| 1109 | |
Ming Lei | 51db1c3 | 2020-08-19 23:20:19 +0800 | [diff] [blame] | 1110 | if ((hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED) && |
Ming Lei | 568f270 | 2020-07-06 22:41:11 +0800 | [diff] [blame] | 1111 | !(rq->rq_flags & RQF_MQ_INFLIGHT)) { |
| 1112 | rq->rq_flags |= RQF_MQ_INFLIGHT; |
John Garry | bccf5e2 | 2020-08-19 23:20:26 +0800 | [diff] [blame] | 1113 | __blk_mq_inc_active_requests(hctx); |
Ming Lei | 568f270 | 2020-07-06 22:41:11 +0800 | [diff] [blame] | 1114 | } |
| 1115 | hctx->tags->rqs[rq->tag] = rq; |
| 1116 | return true; |
Ming Lei | 570e9b7 | 2020-06-30 22:03:55 +0800 | [diff] [blame] | 1117 | } |
| 1118 | |
Jens Axboe | eb619fd | 2017-11-09 08:32:43 -0700 | [diff] [blame] | 1119 | static int blk_mq_dispatch_wake(wait_queue_entry_t *wait, unsigned mode, |
| 1120 | int flags, void *key) |
Omar Sandoval | da55f2c | 2017-02-22 10:58:29 -0800 | [diff] [blame] | 1121 | { |
| 1122 | struct blk_mq_hw_ctx *hctx; |
| 1123 | |
| 1124 | hctx = container_of(wait, struct blk_mq_hw_ctx, dispatch_wait); |
| 1125 | |
Ming Lei | 5815839b | 2018-06-25 19:31:47 +0800 | [diff] [blame] | 1126 | spin_lock(&hctx->dispatch_wait_lock); |
Jens Axboe | e861857 | 2019-03-25 12:34:10 -0600 | [diff] [blame] | 1127 | if (!list_empty(&wait->entry)) { |
| 1128 | struct sbitmap_queue *sbq; |
| 1129 | |
| 1130 | list_del_init(&wait->entry); |
John Garry | ae0f1a7 | 2021-10-05 18:23:38 +0800 | [diff] [blame] | 1131 | sbq = &hctx->tags->bitmap_tags; |
Jens Axboe | e861857 | 2019-03-25 12:34:10 -0600 | [diff] [blame] | 1132 | atomic_dec(&sbq->ws_active); |
| 1133 | } |
Ming Lei | 5815839b | 2018-06-25 19:31:47 +0800 | [diff] [blame] | 1134 | spin_unlock(&hctx->dispatch_wait_lock); |
| 1135 | |
Omar Sandoval | da55f2c | 2017-02-22 10:58:29 -0800 | [diff] [blame] | 1136 | blk_mq_run_hw_queue(hctx, true); |
| 1137 | return 1; |
| 1138 | } |
| 1139 | |
Jens Axboe | f906a6a | 2017-11-09 16:10:13 -0700 | [diff] [blame] | 1140 | /* |
| 1141 | * Mark us waiting for a tag. For shared tags, this involves hooking us into |
Bart Van Assche | ee3e4de | 2018-01-09 10:09:15 -0800 | [diff] [blame] | 1142 | * the tag wakeups. For non-shared tags, we can simply mark us needing a |
| 1143 | * restart. For both cases, take care to check the condition again after |
Jens Axboe | f906a6a | 2017-11-09 16:10:13 -0700 | [diff] [blame] | 1144 | * marking us as waiting. |
| 1145 | */ |
Ming Lei | 2278d69 | 2018-06-25 19:31:46 +0800 | [diff] [blame] | 1146 | static bool blk_mq_mark_tag_wait(struct blk_mq_hw_ctx *hctx, |
Jens Axboe | f906a6a | 2017-11-09 16:10:13 -0700 | [diff] [blame] | 1147 | struct request *rq) |
Omar Sandoval | da55f2c | 2017-02-22 10:58:29 -0800 | [diff] [blame] | 1148 | { |
John Garry | ae0f1a7 | 2021-10-05 18:23:38 +0800 | [diff] [blame] | 1149 | struct sbitmap_queue *sbq = &hctx->tags->bitmap_tags; |
Ming Lei | 5815839b | 2018-06-25 19:31:47 +0800 | [diff] [blame] | 1150 | struct wait_queue_head *wq; |
Jens Axboe | f906a6a | 2017-11-09 16:10:13 -0700 | [diff] [blame] | 1151 | wait_queue_entry_t *wait; |
| 1152 | bool ret; |
Omar Sandoval | da55f2c | 2017-02-22 10:58:29 -0800 | [diff] [blame] | 1153 | |
Ming Lei | 51db1c3 | 2020-08-19 23:20:19 +0800 | [diff] [blame] | 1154 | if (!(hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) { |
Yufen Yu | 684b732 | 2019-03-15 11:05:10 +0800 | [diff] [blame] | 1155 | blk_mq_sched_mark_restart_hctx(hctx); |
Omar Sandoval | da55f2c | 2017-02-22 10:58:29 -0800 | [diff] [blame] | 1156 | |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1157 | /* |
| 1158 | * It's possible that a tag was freed in the window between the |
| 1159 | * allocation failure and adding the hardware queue to the wait |
| 1160 | * queue. |
| 1161 | * |
| 1162 | * Don't clear RESTART here, someone else could have set it. |
| 1163 | * At most this will cost an extra queue run. |
| 1164 | */ |
Ming Lei | 8ab6bb9e | 2018-06-25 19:31:45 +0800 | [diff] [blame] | 1165 | return blk_mq_get_driver_tag(rq); |
Jens Axboe | eb619fd | 2017-11-09 08:32:43 -0700 | [diff] [blame] | 1166 | } |
| 1167 | |
Ming Lei | 2278d69 | 2018-06-25 19:31:46 +0800 | [diff] [blame] | 1168 | wait = &hctx->dispatch_wait; |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1169 | if (!list_empty_careful(&wait->entry)) |
| 1170 | return false; |
| 1171 | |
Jens Axboe | e861857 | 2019-03-25 12:34:10 -0600 | [diff] [blame] | 1172 | wq = &bt_wait_ptr(sbq, hctx)->wait; |
Ming Lei | 5815839b | 2018-06-25 19:31:47 +0800 | [diff] [blame] | 1173 | |
| 1174 | spin_lock_irq(&wq->lock); |
| 1175 | spin_lock(&hctx->dispatch_wait_lock); |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1176 | if (!list_empty(&wait->entry)) { |
Ming Lei | 5815839b | 2018-06-25 19:31:47 +0800 | [diff] [blame] | 1177 | spin_unlock(&hctx->dispatch_wait_lock); |
| 1178 | spin_unlock_irq(&wq->lock); |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1179 | return false; |
| 1180 | } |
| 1181 | |
Jens Axboe | e861857 | 2019-03-25 12:34:10 -0600 | [diff] [blame] | 1182 | atomic_inc(&sbq->ws_active); |
Ming Lei | 5815839b | 2018-06-25 19:31:47 +0800 | [diff] [blame] | 1183 | wait->flags &= ~WQ_FLAG_EXCLUSIVE; |
| 1184 | __add_wait_queue(wq, wait); |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1185 | |
Omar Sandoval | da55f2c | 2017-02-22 10:58:29 -0800 | [diff] [blame] | 1186 | /* |
Jens Axboe | eb619fd | 2017-11-09 08:32:43 -0700 | [diff] [blame] | 1187 | * It's possible that a tag was freed in the window between the |
| 1188 | * allocation failure and adding the hardware queue to the wait |
| 1189 | * queue. |
Omar Sandoval | da55f2c | 2017-02-22 10:58:29 -0800 | [diff] [blame] | 1190 | */ |
Ming Lei | 8ab6bb9e | 2018-06-25 19:31:45 +0800 | [diff] [blame] | 1191 | ret = blk_mq_get_driver_tag(rq); |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1192 | if (!ret) { |
Ming Lei | 5815839b | 2018-06-25 19:31:47 +0800 | [diff] [blame] | 1193 | spin_unlock(&hctx->dispatch_wait_lock); |
| 1194 | spin_unlock_irq(&wq->lock); |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1195 | return false; |
Jens Axboe | f906a6a | 2017-11-09 16:10:13 -0700 | [diff] [blame] | 1196 | } |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1197 | |
| 1198 | /* |
| 1199 | * We got a tag, remove ourselves from the wait queue to ensure |
| 1200 | * someone else gets the wakeup. |
| 1201 | */ |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1202 | list_del_init(&wait->entry); |
Jens Axboe | e861857 | 2019-03-25 12:34:10 -0600 | [diff] [blame] | 1203 | atomic_dec(&sbq->ws_active); |
Ming Lei | 5815839b | 2018-06-25 19:31:47 +0800 | [diff] [blame] | 1204 | spin_unlock(&hctx->dispatch_wait_lock); |
| 1205 | spin_unlock_irq(&wq->lock); |
Bart Van Assche | c27d53f | 2018-01-10 13:41:21 -0800 | [diff] [blame] | 1206 | |
| 1207 | return true; |
Omar Sandoval | da55f2c | 2017-02-22 10:58:29 -0800 | [diff] [blame] | 1208 | } |
| 1209 | |
Ming Lei | 6e768717 | 2018-07-03 09:03:16 -0600 | [diff] [blame] | 1210 | #define BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT 8 |
| 1211 | #define BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR 4 |
| 1212 | /* |
| 1213 | * Update dispatch busy with the Exponential Weighted Moving Average(EWMA): |
| 1214 | * - EWMA is one simple way to compute running average value |
| 1215 | * - weight(7/8 and 1/8) is applied so that it can decrease exponentially |
| 1216 | * - take 4 as factor for avoiding to get too small(0) result, and this |
| 1217 | * factor doesn't matter because EWMA decreases exponentially |
| 1218 | */ |
| 1219 | static void blk_mq_update_dispatch_busy(struct blk_mq_hw_ctx *hctx, bool busy) |
| 1220 | { |
| 1221 | unsigned int ewma; |
| 1222 | |
Ming Lei | 6e768717 | 2018-07-03 09:03:16 -0600 | [diff] [blame] | 1223 | ewma = hctx->dispatch_busy; |
| 1224 | |
| 1225 | if (!ewma && !busy) |
| 1226 | return; |
| 1227 | |
| 1228 | ewma *= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT - 1; |
| 1229 | if (busy) |
| 1230 | ewma += 1 << BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR; |
| 1231 | ewma /= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT; |
| 1232 | |
| 1233 | hctx->dispatch_busy = ewma; |
| 1234 | } |
| 1235 | |
Ming Lei | 86ff7c2 | 2018-01-30 22:04:57 -0500 | [diff] [blame] | 1236 | #define BLK_MQ_RESOURCE_DELAY 3 /* ms units */ |
| 1237 | |
Johannes Thumshirn | c92a410 | 2020-03-25 00:24:44 +0900 | [diff] [blame] | 1238 | static void blk_mq_handle_dev_resource(struct request *rq, |
| 1239 | struct list_head *list) |
| 1240 | { |
| 1241 | struct request *next = |
| 1242 | list_first_entry_or_null(list, struct request, queuelist); |
| 1243 | |
| 1244 | /* |
| 1245 | * If an I/O scheduler has been configured and we got a driver tag for |
| 1246 | * the next request already, free it. |
| 1247 | */ |
| 1248 | if (next) |
| 1249 | blk_mq_put_driver_tag(next); |
| 1250 | |
| 1251 | list_add(&rq->queuelist, list); |
| 1252 | __blk_mq_requeue_request(rq); |
| 1253 | } |
| 1254 | |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 1255 | static void blk_mq_handle_zone_resource(struct request *rq, |
| 1256 | struct list_head *zone_list) |
| 1257 | { |
| 1258 | /* |
| 1259 | * If we end up here it is because we cannot dispatch a request to a |
| 1260 | * specific zone due to LLD level zone-write locking or other zone |
| 1261 | * related resource not being available. In this case, set the request |
| 1262 | * aside in zone_list for retrying it later. |
| 1263 | */ |
| 1264 | list_add(&rq->queuelist, zone_list); |
| 1265 | __blk_mq_requeue_request(rq); |
| 1266 | } |
| 1267 | |
Ming Lei | 7538352 | 2020-06-30 18:24:58 +0800 | [diff] [blame] | 1268 | enum prep_dispatch { |
| 1269 | PREP_DISPATCH_OK, |
| 1270 | PREP_DISPATCH_NO_TAG, |
| 1271 | PREP_DISPATCH_NO_BUDGET, |
| 1272 | }; |
| 1273 | |
| 1274 | static enum prep_dispatch blk_mq_prep_dispatch_rq(struct request *rq, |
| 1275 | bool need_budget) |
| 1276 | { |
| 1277 | struct blk_mq_hw_ctx *hctx = rq->mq_hctx; |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 1278 | int budget_token = -1; |
Ming Lei | 7538352 | 2020-06-30 18:24:58 +0800 | [diff] [blame] | 1279 | |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 1280 | if (need_budget) { |
| 1281 | budget_token = blk_mq_get_dispatch_budget(rq->q); |
| 1282 | if (budget_token < 0) { |
| 1283 | blk_mq_put_driver_tag(rq); |
| 1284 | return PREP_DISPATCH_NO_BUDGET; |
| 1285 | } |
| 1286 | blk_mq_set_rq_budget_token(rq, budget_token); |
Ming Lei | 7538352 | 2020-06-30 18:24:58 +0800 | [diff] [blame] | 1287 | } |
| 1288 | |
| 1289 | if (!blk_mq_get_driver_tag(rq)) { |
| 1290 | /* |
| 1291 | * The initial allocation attempt failed, so we need to |
| 1292 | * rerun the hardware queue when a tag is freed. The |
| 1293 | * waitqueue takes care of that. If the queue is run |
| 1294 | * before we add this entry back on the dispatch list, |
| 1295 | * we'll re-run it below. |
| 1296 | */ |
| 1297 | if (!blk_mq_mark_tag_wait(hctx, rq)) { |
Ming Lei | 1fd40b5 | 2020-06-30 18:25:00 +0800 | [diff] [blame] | 1298 | /* |
| 1299 | * All budgets not got from this function will be put |
| 1300 | * together during handling partial dispatch |
| 1301 | */ |
| 1302 | if (need_budget) |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 1303 | blk_mq_put_dispatch_budget(rq->q, budget_token); |
Ming Lei | 7538352 | 2020-06-30 18:24:58 +0800 | [diff] [blame] | 1304 | return PREP_DISPATCH_NO_TAG; |
| 1305 | } |
| 1306 | } |
| 1307 | |
| 1308 | return PREP_DISPATCH_OK; |
| 1309 | } |
| 1310 | |
Ming Lei | 1fd40b5 | 2020-06-30 18:25:00 +0800 | [diff] [blame] | 1311 | /* release all allocated budgets before calling to blk_mq_dispatch_rq_list */ |
| 1312 | static void blk_mq_release_budgets(struct request_queue *q, |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 1313 | struct list_head *list) |
Ming Lei | 1fd40b5 | 2020-06-30 18:25:00 +0800 | [diff] [blame] | 1314 | { |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 1315 | struct request *rq; |
Ming Lei | 1fd40b5 | 2020-06-30 18:25:00 +0800 | [diff] [blame] | 1316 | |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 1317 | list_for_each_entry(rq, list, queuelist) { |
| 1318 | int budget_token = blk_mq_get_rq_budget_token(rq); |
| 1319 | |
| 1320 | if (budget_token >= 0) |
| 1321 | blk_mq_put_dispatch_budget(q, budget_token); |
| 1322 | } |
Ming Lei | 1fd40b5 | 2020-06-30 18:25:00 +0800 | [diff] [blame] | 1323 | } |
| 1324 | |
Jens Axboe | 1f57f8d | 2018-06-28 11:54:01 -0600 | [diff] [blame] | 1325 | /* |
| 1326 | * Returns true if we did some work AND can potentially do more. |
| 1327 | */ |
Ming Lei | 445874e | 2020-06-30 18:24:57 +0800 | [diff] [blame] | 1328 | bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list, |
Ming Lei | 1fd40b5 | 2020-06-30 18:25:00 +0800 | [diff] [blame] | 1329 | unsigned int nr_budgets) |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1330 | { |
Ming Lei | 7538352 | 2020-06-30 18:24:58 +0800 | [diff] [blame] | 1331 | enum prep_dispatch prep; |
Ming Lei | 445874e | 2020-06-30 18:24:57 +0800 | [diff] [blame] | 1332 | struct request_queue *q = hctx->queue; |
Jianchao Wang | 6d6f167c | 2017-11-02 23:24:32 +0800 | [diff] [blame] | 1333 | struct request *rq, *nxt; |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 1334 | int errors, queued; |
Ming Lei | 86ff7c2 | 2018-01-30 22:04:57 -0500 | [diff] [blame] | 1335 | blk_status_t ret = BLK_STS_OK; |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 1336 | LIST_HEAD(zone_list); |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1337 | |
Omar Sandoval | 81380ca | 2017-04-07 08:56:26 -0600 | [diff] [blame] | 1338 | if (list_empty(list)) |
| 1339 | return false; |
| 1340 | |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1341 | /* |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1342 | * Now process all the entries, sending them to the driver. |
| 1343 | */ |
Jens Axboe | 93efe98 | 2017-03-24 12:04:19 -0600 | [diff] [blame] | 1344 | errors = queued = 0; |
Omar Sandoval | 81380ca | 2017-04-07 08:56:26 -0600 | [diff] [blame] | 1345 | do { |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1346 | struct blk_mq_queue_data bd; |
| 1347 | |
| 1348 | rq = list_first_entry(list, struct request, queuelist); |
Ming Lei | 0bca799 | 2018-04-05 00:35:21 +0800 | [diff] [blame] | 1349 | |
Ming Lei | 445874e | 2020-06-30 18:24:57 +0800 | [diff] [blame] | 1350 | WARN_ON_ONCE(hctx != rq->mq_hctx); |
Ming Lei | 1fd40b5 | 2020-06-30 18:25:00 +0800 | [diff] [blame] | 1351 | prep = blk_mq_prep_dispatch_rq(rq, !nr_budgets); |
Ming Lei | 7538352 | 2020-06-30 18:24:58 +0800 | [diff] [blame] | 1352 | if (prep != PREP_DISPATCH_OK) |
Ming Lei | 0bca799 | 2018-04-05 00:35:21 +0800 | [diff] [blame] | 1353 | break; |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 1354 | |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1355 | list_del_init(&rq->queuelist); |
| 1356 | |
| 1357 | bd.rq = rq; |
Jens Axboe | 113285b | 2017-03-02 13:26:04 -0700 | [diff] [blame] | 1358 | |
| 1359 | /* |
| 1360 | * Flag last if we have no more requests, or if we have more |
| 1361 | * but can't assign a driver tag to it. |
| 1362 | */ |
| 1363 | if (list_empty(list)) |
| 1364 | bd.last = true; |
| 1365 | else { |
Jens Axboe | 113285b | 2017-03-02 13:26:04 -0700 | [diff] [blame] | 1366 | nxt = list_first_entry(list, struct request, queuelist); |
Ming Lei | 8ab6bb9e | 2018-06-25 19:31:45 +0800 | [diff] [blame] | 1367 | bd.last = !blk_mq_get_driver_tag(nxt); |
Jens Axboe | 113285b | 2017-03-02 13:26:04 -0700 | [diff] [blame] | 1368 | } |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1369 | |
Ming Lei | 1fd40b5 | 2020-06-30 18:25:00 +0800 | [diff] [blame] | 1370 | /* |
| 1371 | * once the request is queued to lld, no need to cover the |
| 1372 | * budget any more |
| 1373 | */ |
| 1374 | if (nr_budgets) |
| 1375 | nr_budgets--; |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1376 | ret = q->mq_ops->queue_rq(hctx, &bd); |
Ming Lei | 7bf1372 | 2020-07-01 21:58:57 +0800 | [diff] [blame] | 1377 | switch (ret) { |
| 1378 | case BLK_STS_OK: |
| 1379 | queued++; |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1380 | break; |
Ming Lei | 7bf1372 | 2020-07-01 21:58:57 +0800 | [diff] [blame] | 1381 | case BLK_STS_RESOURCE: |
| 1382 | case BLK_STS_DEV_RESOURCE: |
| 1383 | blk_mq_handle_dev_resource(rq, list); |
| 1384 | goto out; |
| 1385 | case BLK_STS_ZONE_RESOURCE: |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 1386 | /* |
| 1387 | * Move the request to zone_list and keep going through |
| 1388 | * the dispatch list to find more requests the drive can |
| 1389 | * accept. |
| 1390 | */ |
| 1391 | blk_mq_handle_zone_resource(rq, &zone_list); |
Ming Lei | 7bf1372 | 2020-07-01 21:58:57 +0800 | [diff] [blame] | 1392 | break; |
| 1393 | default: |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 1394 | errors++; |
Hannes Reinecke | e21ee5a | 2020-09-30 10:02:53 +0200 | [diff] [blame] | 1395 | blk_mq_end_request(rq, ret); |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 1396 | } |
Omar Sandoval | 81380ca | 2017-04-07 08:56:26 -0600 | [diff] [blame] | 1397 | } while (!list_empty(list)); |
Ming Lei | 7bf1372 | 2020-07-01 21:58:57 +0800 | [diff] [blame] | 1398 | out: |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 1399 | if (!list_empty(&zone_list)) |
| 1400 | list_splice_tail_init(&zone_list, list); |
| 1401 | |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1402 | hctx->dispatched[queued_to_index(queued)]++; |
| 1403 | |
yangerkun | 632bfb6 | 2020-09-05 19:25:56 +0800 | [diff] [blame] | 1404 | /* If we didn't flush the entire list, we could have told the driver |
| 1405 | * there was more coming, but that turned out to be a lie. |
| 1406 | */ |
| 1407 | if ((!list_empty(list) || errors) && q->mq_ops->commit_rqs && queued) |
| 1408 | q->mq_ops->commit_rqs(hctx); |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1409 | /* |
| 1410 | * Any items that need requeuing? Stuff them into hctx->dispatch, |
| 1411 | * that is where we will continue on next queue run. |
| 1412 | */ |
| 1413 | if (!list_empty(list)) { |
Ming Lei | 86ff7c2 | 2018-01-30 22:04:57 -0500 | [diff] [blame] | 1414 | bool needs_restart; |
Ming Lei | 7538352 | 2020-06-30 18:24:58 +0800 | [diff] [blame] | 1415 | /* For non-shared tags, the RESTART check will suffice */ |
| 1416 | bool no_tag = prep == PREP_DISPATCH_NO_TAG && |
Ming Lei | 51db1c3 | 2020-08-19 23:20:19 +0800 | [diff] [blame] | 1417 | (hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED); |
Ming Lei | 7538352 | 2020-06-30 18:24:58 +0800 | [diff] [blame] | 1418 | bool no_budget_avail = prep == PREP_DISPATCH_NO_BUDGET; |
Ming Lei | 86ff7c2 | 2018-01-30 22:04:57 -0500 | [diff] [blame] | 1419 | |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 1420 | if (nr_budgets) |
| 1421 | blk_mq_release_budgets(q, list); |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1422 | |
| 1423 | spin_lock(&hctx->lock); |
Ming Lei | 01e99ae | 2020-02-25 09:04:32 +0800 | [diff] [blame] | 1424 | list_splice_tail_init(list, &hctx->dispatch); |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1425 | spin_unlock(&hctx->lock); |
| 1426 | |
| 1427 | /* |
Ming Lei | d7d8535 | 2020-08-17 18:01:15 +0800 | [diff] [blame] | 1428 | * Order adding requests to hctx->dispatch and checking |
| 1429 | * SCHED_RESTART flag. The pair of this smp_mb() is the one |
| 1430 | * in blk_mq_sched_restart(). Avoid restart code path to |
| 1431 | * miss the new added requests to hctx->dispatch, meantime |
| 1432 | * SCHED_RESTART is observed here. |
| 1433 | */ |
| 1434 | smp_mb(); |
| 1435 | |
| 1436 | /* |
Bart Van Assche | 710c785 | 2017-04-07 11:16:51 -0700 | [diff] [blame] | 1437 | * If SCHED_RESTART was set by the caller of this function and |
| 1438 | * it is no longer set that means that it was cleared by another |
| 1439 | * thread and hence that a queue rerun is needed. |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1440 | * |
Jens Axboe | eb619fd | 2017-11-09 08:32:43 -0700 | [diff] [blame] | 1441 | * If 'no_tag' is set, that means that we failed getting |
| 1442 | * a driver tag with an I/O scheduler attached. If our dispatch |
| 1443 | * waitqueue is no longer active, ensure that we run the queue |
| 1444 | * AFTER adding our entries back to the list. |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 1445 | * |
Bart Van Assche | 710c785 | 2017-04-07 11:16:51 -0700 | [diff] [blame] | 1446 | * If no I/O scheduler has been configured it is possible that |
| 1447 | * the hardware queue got stopped and restarted before requests |
| 1448 | * were pushed back onto the dispatch list. Rerun the queue to |
| 1449 | * avoid starvation. Notes: |
| 1450 | * - blk_mq_run_hw_queue() checks whether or not a queue has |
| 1451 | * been stopped before rerunning a queue. |
| 1452 | * - Some but not all block drivers stop a queue before |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 1453 | * returning BLK_STS_RESOURCE. Two exceptions are scsi-mq |
Bart Van Assche | 710c785 | 2017-04-07 11:16:51 -0700 | [diff] [blame] | 1454 | * and dm-rq. |
Ming Lei | 86ff7c2 | 2018-01-30 22:04:57 -0500 | [diff] [blame] | 1455 | * |
| 1456 | * If driver returns BLK_STS_RESOURCE and SCHED_RESTART |
| 1457 | * bit is set, run queue after a delay to avoid IO stalls |
Douglas Anderson | ab3cee3 | 2020-04-20 09:24:51 -0700 | [diff] [blame] | 1458 | * that could otherwise occur if the queue is idle. We'll do |
| 1459 | * similar if we couldn't get budget and SCHED_RESTART is set. |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 1460 | */ |
Ming Lei | 86ff7c2 | 2018-01-30 22:04:57 -0500 | [diff] [blame] | 1461 | needs_restart = blk_mq_sched_needs_restart(hctx); |
| 1462 | if (!needs_restart || |
Jens Axboe | eb619fd | 2017-11-09 08:32:43 -0700 | [diff] [blame] | 1463 | (no_tag && list_empty_careful(&hctx->dispatch_wait.entry))) |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 1464 | blk_mq_run_hw_queue(hctx, true); |
Douglas Anderson | ab3cee3 | 2020-04-20 09:24:51 -0700 | [diff] [blame] | 1465 | else if (needs_restart && (ret == BLK_STS_RESOURCE || |
| 1466 | no_budget_avail)) |
Ming Lei | 86ff7c2 | 2018-01-30 22:04:57 -0500 | [diff] [blame] | 1467 | blk_mq_delay_run_hw_queue(hctx, BLK_MQ_RESOURCE_DELAY); |
Jens Axboe | 1f57f8d | 2018-06-28 11:54:01 -0600 | [diff] [blame] | 1468 | |
Ming Lei | 6e768717 | 2018-07-03 09:03:16 -0600 | [diff] [blame] | 1469 | blk_mq_update_dispatch_busy(hctx, true); |
Jens Axboe | 1f57f8d | 2018-06-28 11:54:01 -0600 | [diff] [blame] | 1470 | return false; |
Ming Lei | 6e768717 | 2018-07-03 09:03:16 -0600 | [diff] [blame] | 1471 | } else |
| 1472 | blk_mq_update_dispatch_busy(hctx, false); |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1473 | |
Jens Axboe | 93efe98 | 2017-03-24 12:04:19 -0600 | [diff] [blame] | 1474 | return (queued + errors) != 0; |
Jens Axboe | f04c3df | 2016-12-07 08:41:17 -0700 | [diff] [blame] | 1475 | } |
| 1476 | |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1477 | /** |
| 1478 | * __blk_mq_run_hw_queue - Run a hardware queue. |
| 1479 | * @hctx: Pointer to the hardware queue to run. |
| 1480 | * |
| 1481 | * Send pending requests to the hardware. |
| 1482 | */ |
Bart Van Assche | 6a83e74 | 2016-11-02 10:09:51 -0600 | [diff] [blame] | 1483 | static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx) |
| 1484 | { |
| 1485 | int srcu_idx; |
| 1486 | |
Jens Axboe | b7a71e6 | 2017-08-01 09:28:24 -0600 | [diff] [blame] | 1487 | /* |
Jens Axboe | b7a71e6 | 2017-08-01 09:28:24 -0600 | [diff] [blame] | 1488 | * We can't run the queue inline with ints disabled. Ensure that |
| 1489 | * we catch bad users of this early. |
| 1490 | */ |
| 1491 | WARN_ON_ONCE(in_interrupt()); |
| 1492 | |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 1493 | might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING); |
Jens Axboe | bf4907c | 2017-03-30 12:30:39 -0600 | [diff] [blame] | 1494 | |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 1495 | hctx_lock(hctx, &srcu_idx); |
| 1496 | blk_mq_sched_dispatch_requests(hctx); |
| 1497 | hctx_unlock(hctx, srcu_idx); |
Bart Van Assche | 6a83e74 | 2016-11-02 10:09:51 -0600 | [diff] [blame] | 1498 | } |
| 1499 | |
Ming Lei | f82ddf1 | 2018-04-08 17:48:10 +0800 | [diff] [blame] | 1500 | static inline int blk_mq_first_mapped_cpu(struct blk_mq_hw_ctx *hctx) |
| 1501 | { |
| 1502 | int cpu = cpumask_first_and(hctx->cpumask, cpu_online_mask); |
| 1503 | |
| 1504 | if (cpu >= nr_cpu_ids) |
| 1505 | cpu = cpumask_first(hctx->cpumask); |
| 1506 | return cpu; |
| 1507 | } |
| 1508 | |
Jens Axboe | 506e931 | 2014-05-07 10:26:44 -0600 | [diff] [blame] | 1509 | /* |
| 1510 | * It'd be great if the workqueue API had a way to pass |
| 1511 | * in a mask and had some smarts for more clever placement. |
| 1512 | * For now we just round-robin here, switching for every |
| 1513 | * BLK_MQ_CPU_WORK_BATCH queued items. |
| 1514 | */ |
| 1515 | static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx) |
| 1516 | { |
Ming Lei | 7bed459 | 2018-01-18 00:41:51 +0800 | [diff] [blame] | 1517 | bool tried = false; |
Ming Lei | 476f8c9 | 2018-04-08 17:48:09 +0800 | [diff] [blame] | 1518 | int next_cpu = hctx->next_cpu; |
Ming Lei | 7bed459 | 2018-01-18 00:41:51 +0800 | [diff] [blame] | 1519 | |
Christoph Hellwig | b657d7e | 2014-11-24 09:27:23 +0100 | [diff] [blame] | 1520 | if (hctx->queue->nr_hw_queues == 1) |
| 1521 | return WORK_CPU_UNBOUND; |
Jens Axboe | 506e931 | 2014-05-07 10:26:44 -0600 | [diff] [blame] | 1522 | |
| 1523 | if (--hctx->next_cpu_batch <= 0) { |
Ming Lei | 7bed459 | 2018-01-18 00:41:51 +0800 | [diff] [blame] | 1524 | select_cpu: |
Ming Lei | 476f8c9 | 2018-04-08 17:48:09 +0800 | [diff] [blame] | 1525 | next_cpu = cpumask_next_and(next_cpu, hctx->cpumask, |
Christoph Hellwig | 20e4d813 | 2018-01-12 10:53:06 +0800 | [diff] [blame] | 1526 | cpu_online_mask); |
Jens Axboe | 506e931 | 2014-05-07 10:26:44 -0600 | [diff] [blame] | 1527 | if (next_cpu >= nr_cpu_ids) |
Ming Lei | f82ddf1 | 2018-04-08 17:48:10 +0800 | [diff] [blame] | 1528 | next_cpu = blk_mq_first_mapped_cpu(hctx); |
Jens Axboe | 506e931 | 2014-05-07 10:26:44 -0600 | [diff] [blame] | 1529 | hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH; |
| 1530 | } |
| 1531 | |
Ming Lei | 7bed459 | 2018-01-18 00:41:51 +0800 | [diff] [blame] | 1532 | /* |
| 1533 | * Do unbound schedule if we can't find a online CPU for this hctx, |
| 1534 | * and it should only happen in the path of handling CPU DEAD. |
| 1535 | */ |
Ming Lei | 476f8c9 | 2018-04-08 17:48:09 +0800 | [diff] [blame] | 1536 | if (!cpu_online(next_cpu)) { |
Ming Lei | 7bed459 | 2018-01-18 00:41:51 +0800 | [diff] [blame] | 1537 | if (!tried) { |
| 1538 | tried = true; |
| 1539 | goto select_cpu; |
| 1540 | } |
| 1541 | |
| 1542 | /* |
| 1543 | * Make sure to re-select CPU next time once after CPUs |
| 1544 | * in hctx->cpumask become online again. |
| 1545 | */ |
Ming Lei | 476f8c9 | 2018-04-08 17:48:09 +0800 | [diff] [blame] | 1546 | hctx->next_cpu = next_cpu; |
Ming Lei | 7bed459 | 2018-01-18 00:41:51 +0800 | [diff] [blame] | 1547 | hctx->next_cpu_batch = 1; |
| 1548 | return WORK_CPU_UNBOUND; |
| 1549 | } |
Ming Lei | 476f8c9 | 2018-04-08 17:48:09 +0800 | [diff] [blame] | 1550 | |
| 1551 | hctx->next_cpu = next_cpu; |
| 1552 | return next_cpu; |
Jens Axboe | 506e931 | 2014-05-07 10:26:44 -0600 | [diff] [blame] | 1553 | } |
| 1554 | |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1555 | /** |
| 1556 | * __blk_mq_delay_run_hw_queue - Run (or schedule to run) a hardware queue. |
| 1557 | * @hctx: Pointer to the hardware queue to run. |
| 1558 | * @async: If we want to run the queue asynchronously. |
Minwoo Im | fa94ba8 | 2020-12-05 00:20:55 +0900 | [diff] [blame] | 1559 | * @msecs: Milliseconds of delay to wait before running the queue. |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1560 | * |
| 1561 | * If !@async, try to run the queue now. Else, run the queue asynchronously and |
| 1562 | * with a delay of @msecs. |
| 1563 | */ |
Bart Van Assche | 7587a5a | 2017-04-07 11:16:52 -0700 | [diff] [blame] | 1564 | static void __blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async, |
| 1565 | unsigned long msecs) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1566 | { |
Bart Van Assche | 5435c02 | 2017-06-20 11:15:49 -0700 | [diff] [blame] | 1567 | if (unlikely(blk_mq_hctx_stopped(hctx))) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1568 | return; |
| 1569 | |
Jens Axboe | 1b792f2 | 2016-09-21 10:12:13 -0600 | [diff] [blame] | 1570 | if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) { |
Paolo Bonzini | 2a90d4a | 2014-11-07 23:04:00 +0100 | [diff] [blame] | 1571 | int cpu = get_cpu(); |
| 1572 | if (cpumask_test_cpu(cpu, hctx->cpumask)) { |
Paolo Bonzini | 398205b | 2014-11-07 23:03:59 +0100 | [diff] [blame] | 1573 | __blk_mq_run_hw_queue(hctx); |
Paolo Bonzini | 2a90d4a | 2014-11-07 23:04:00 +0100 | [diff] [blame] | 1574 | put_cpu(); |
Paolo Bonzini | 398205b | 2014-11-07 23:03:59 +0100 | [diff] [blame] | 1575 | return; |
| 1576 | } |
Jens Axboe | e4043dc | 2014-04-09 10:18:23 -0600 | [diff] [blame] | 1577 | |
Paolo Bonzini | 2a90d4a | 2014-11-07 23:04:00 +0100 | [diff] [blame] | 1578 | put_cpu(); |
Jens Axboe | e4043dc | 2014-04-09 10:18:23 -0600 | [diff] [blame] | 1579 | } |
Paolo Bonzini | 398205b | 2014-11-07 23:03:59 +0100 | [diff] [blame] | 1580 | |
Bart Van Assche | ae943d2 | 2018-01-19 08:58:55 -0800 | [diff] [blame] | 1581 | kblockd_mod_delayed_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work, |
| 1582 | msecs_to_jiffies(msecs)); |
Bart Van Assche | 7587a5a | 2017-04-07 11:16:52 -0700 | [diff] [blame] | 1583 | } |
| 1584 | |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1585 | /** |
| 1586 | * blk_mq_delay_run_hw_queue - Run a hardware queue asynchronously. |
| 1587 | * @hctx: Pointer to the hardware queue to run. |
Minwoo Im | fa94ba8 | 2020-12-05 00:20:55 +0900 | [diff] [blame] | 1588 | * @msecs: Milliseconds of delay to wait before running the queue. |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1589 | * |
| 1590 | * Run a hardware queue asynchronously with a delay of @msecs. |
| 1591 | */ |
Bart Van Assche | 7587a5a | 2017-04-07 11:16:52 -0700 | [diff] [blame] | 1592 | void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs) |
| 1593 | { |
| 1594 | __blk_mq_delay_run_hw_queue(hctx, true, msecs); |
| 1595 | } |
| 1596 | EXPORT_SYMBOL(blk_mq_delay_run_hw_queue); |
| 1597 | |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1598 | /** |
| 1599 | * blk_mq_run_hw_queue - Start to run a hardware queue. |
| 1600 | * @hctx: Pointer to the hardware queue to run. |
| 1601 | * @async: If we want to run the queue asynchronously. |
| 1602 | * |
| 1603 | * Check if the request queue is not in a quiesced state and if there are |
| 1604 | * pending requests to be sent. If this is true, run the queue to send requests |
| 1605 | * to hardware. |
| 1606 | */ |
John Garry | 626fb73 | 2019-10-30 00:59:30 +0800 | [diff] [blame] | 1607 | void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async) |
Bart Van Assche | 7587a5a | 2017-04-07 11:16:52 -0700 | [diff] [blame] | 1608 | { |
Ming Lei | 24f5a90 | 2018-01-06 16:27:38 +0800 | [diff] [blame] | 1609 | int srcu_idx; |
| 1610 | bool need_run; |
| 1611 | |
| 1612 | /* |
| 1613 | * When queue is quiesced, we may be switching io scheduler, or |
| 1614 | * updating nr_hw_queues, or other things, and we can't run queue |
| 1615 | * any more, even __blk_mq_hctx_has_pending() can't be called safely. |
| 1616 | * |
| 1617 | * And queue will be rerun in blk_mq_unquiesce_queue() if it is |
| 1618 | * quiesced. |
| 1619 | */ |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 1620 | hctx_lock(hctx, &srcu_idx); |
| 1621 | need_run = !blk_queue_quiesced(hctx->queue) && |
| 1622 | blk_mq_hctx_has_pending(hctx); |
| 1623 | hctx_unlock(hctx, srcu_idx); |
Ming Lei | 24f5a90 | 2018-01-06 16:27:38 +0800 | [diff] [blame] | 1624 | |
John Garry | 626fb73 | 2019-10-30 00:59:30 +0800 | [diff] [blame] | 1625 | if (need_run) |
Jens Axboe | 79f720a | 2017-11-10 09:13:21 -0700 | [diff] [blame] | 1626 | __blk_mq_delay_run_hw_queue(hctx, async, 0); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1627 | } |
Omar Sandoval | 5b72727 | 2017-04-14 01:00:00 -0700 | [diff] [blame] | 1628 | EXPORT_SYMBOL(blk_mq_run_hw_queue); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1629 | |
Jan Kara | b6e68ee | 2021-01-11 17:47:17 +0100 | [diff] [blame] | 1630 | /* |
| 1631 | * Is the request queue handled by an IO scheduler that does not respect |
| 1632 | * hardware queues when dispatching? |
| 1633 | */ |
| 1634 | static bool blk_mq_has_sqsched(struct request_queue *q) |
| 1635 | { |
| 1636 | struct elevator_queue *e = q->elevator; |
| 1637 | |
| 1638 | if (e && e->type->ops.dispatch_request && |
| 1639 | !(e->type->elevator_features & ELEVATOR_F_MQ_AWARE)) |
| 1640 | return true; |
| 1641 | return false; |
| 1642 | } |
| 1643 | |
| 1644 | /* |
| 1645 | * Return prefered queue to dispatch from (if any) for non-mq aware IO |
| 1646 | * scheduler. |
| 1647 | */ |
| 1648 | static struct blk_mq_hw_ctx *blk_mq_get_sq_hctx(struct request_queue *q) |
| 1649 | { |
| 1650 | struct blk_mq_hw_ctx *hctx; |
| 1651 | |
| 1652 | /* |
| 1653 | * If the IO scheduler does not respect hardware queues when |
| 1654 | * dispatching, we just don't bother with multiple HW queues and |
| 1655 | * dispatch from hctx for the current CPU since running multiple queues |
| 1656 | * just causes lock contention inside the scheduler and pointless cache |
| 1657 | * bouncing. |
| 1658 | */ |
| 1659 | hctx = blk_mq_map_queue_type(q, HCTX_TYPE_DEFAULT, |
| 1660 | raw_smp_processor_id()); |
| 1661 | if (!blk_mq_hctx_stopped(hctx)) |
| 1662 | return hctx; |
| 1663 | return NULL; |
| 1664 | } |
| 1665 | |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1666 | /** |
Mauro Carvalho Chehab | 24f7bb8 | 2020-10-23 18:32:54 +0200 | [diff] [blame] | 1667 | * blk_mq_run_hw_queues - Run all hardware queues in a request queue. |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1668 | * @q: Pointer to the request queue to run. |
| 1669 | * @async: If we want to run the queue asynchronously. |
| 1670 | */ |
Mike Snitzer | b94ec29 | 2015-03-11 23:56:38 -0400 | [diff] [blame] | 1671 | void blk_mq_run_hw_queues(struct request_queue *q, bool async) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1672 | { |
Jan Kara | b6e68ee | 2021-01-11 17:47:17 +0100 | [diff] [blame] | 1673 | struct blk_mq_hw_ctx *hctx, *sq_hctx; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1674 | int i; |
| 1675 | |
Jan Kara | b6e68ee | 2021-01-11 17:47:17 +0100 | [diff] [blame] | 1676 | sq_hctx = NULL; |
| 1677 | if (blk_mq_has_sqsched(q)) |
| 1678 | sq_hctx = blk_mq_get_sq_hctx(q); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1679 | queue_for_each_hw_ctx(q, hctx, i) { |
Jens Axboe | 79f720a | 2017-11-10 09:13:21 -0700 | [diff] [blame] | 1680 | if (blk_mq_hctx_stopped(hctx)) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1681 | continue; |
Jan Kara | b6e68ee | 2021-01-11 17:47:17 +0100 | [diff] [blame] | 1682 | /* |
| 1683 | * Dispatch from this hctx either if there's no hctx preferred |
| 1684 | * by IO scheduler or if it has requests that bypass the |
| 1685 | * scheduler. |
| 1686 | */ |
| 1687 | if (!sq_hctx || sq_hctx == hctx || |
| 1688 | !list_empty_careful(&hctx->dispatch)) |
| 1689 | blk_mq_run_hw_queue(hctx, async); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1690 | } |
| 1691 | } |
Mike Snitzer | b94ec29 | 2015-03-11 23:56:38 -0400 | [diff] [blame] | 1692 | EXPORT_SYMBOL(blk_mq_run_hw_queues); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1693 | |
Bart Van Assche | fd00144 | 2016-10-28 17:19:37 -0700 | [diff] [blame] | 1694 | /** |
Douglas Anderson | b9151e7 | 2020-04-20 09:24:52 -0700 | [diff] [blame] | 1695 | * blk_mq_delay_run_hw_queues - Run all hardware queues asynchronously. |
| 1696 | * @q: Pointer to the request queue to run. |
Minwoo Im | fa94ba8 | 2020-12-05 00:20:55 +0900 | [diff] [blame] | 1697 | * @msecs: Milliseconds of delay to wait before running the queues. |
Douglas Anderson | b9151e7 | 2020-04-20 09:24:52 -0700 | [diff] [blame] | 1698 | */ |
| 1699 | void blk_mq_delay_run_hw_queues(struct request_queue *q, unsigned long msecs) |
| 1700 | { |
Jan Kara | b6e68ee | 2021-01-11 17:47:17 +0100 | [diff] [blame] | 1701 | struct blk_mq_hw_ctx *hctx, *sq_hctx; |
Douglas Anderson | b9151e7 | 2020-04-20 09:24:52 -0700 | [diff] [blame] | 1702 | int i; |
| 1703 | |
Jan Kara | b6e68ee | 2021-01-11 17:47:17 +0100 | [diff] [blame] | 1704 | sq_hctx = NULL; |
| 1705 | if (blk_mq_has_sqsched(q)) |
| 1706 | sq_hctx = blk_mq_get_sq_hctx(q); |
Douglas Anderson | b9151e7 | 2020-04-20 09:24:52 -0700 | [diff] [blame] | 1707 | queue_for_each_hw_ctx(q, hctx, i) { |
| 1708 | if (blk_mq_hctx_stopped(hctx)) |
| 1709 | continue; |
Jan Kara | b6e68ee | 2021-01-11 17:47:17 +0100 | [diff] [blame] | 1710 | /* |
| 1711 | * Dispatch from this hctx either if there's no hctx preferred |
| 1712 | * by IO scheduler or if it has requests that bypass the |
| 1713 | * scheduler. |
| 1714 | */ |
| 1715 | if (!sq_hctx || sq_hctx == hctx || |
| 1716 | !list_empty_careful(&hctx->dispatch)) |
| 1717 | blk_mq_delay_run_hw_queue(hctx, msecs); |
Douglas Anderson | b9151e7 | 2020-04-20 09:24:52 -0700 | [diff] [blame] | 1718 | } |
| 1719 | } |
| 1720 | EXPORT_SYMBOL(blk_mq_delay_run_hw_queues); |
| 1721 | |
| 1722 | /** |
Bart Van Assche | fd00144 | 2016-10-28 17:19:37 -0700 | [diff] [blame] | 1723 | * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped |
| 1724 | * @q: request queue. |
| 1725 | * |
| 1726 | * The caller is responsible for serializing this function against |
| 1727 | * blk_mq_{start,stop}_hw_queue(). |
| 1728 | */ |
| 1729 | bool blk_mq_queue_stopped(struct request_queue *q) |
| 1730 | { |
| 1731 | struct blk_mq_hw_ctx *hctx; |
| 1732 | int i; |
| 1733 | |
| 1734 | queue_for_each_hw_ctx(q, hctx, i) |
| 1735 | if (blk_mq_hctx_stopped(hctx)) |
| 1736 | return true; |
| 1737 | |
| 1738 | return false; |
| 1739 | } |
| 1740 | EXPORT_SYMBOL(blk_mq_queue_stopped); |
| 1741 | |
Ming Lei | 39a70c7 | 2017-06-06 23:22:09 +0800 | [diff] [blame] | 1742 | /* |
| 1743 | * This function is often used for pausing .queue_rq() by driver when |
| 1744 | * there isn't enough resource or some conditions aren't satisfied, and |
Bart Van Assche | 4d60621 | 2017-08-17 16:23:00 -0700 | [diff] [blame] | 1745 | * BLK_STS_RESOURCE is usually returned. |
Ming Lei | 39a70c7 | 2017-06-06 23:22:09 +0800 | [diff] [blame] | 1746 | * |
| 1747 | * We do not guarantee that dispatch can be drained or blocked |
| 1748 | * after blk_mq_stop_hw_queue() returns. Please use |
| 1749 | * blk_mq_quiesce_queue() for that requirement. |
| 1750 | */ |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1751 | void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx) |
| 1752 | { |
Ming Lei | 641a9ed | 2017-06-06 23:22:10 +0800 | [diff] [blame] | 1753 | cancel_delayed_work(&hctx->run_work); |
| 1754 | |
| 1755 | set_bit(BLK_MQ_S_STOPPED, &hctx->state); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1756 | } |
| 1757 | EXPORT_SYMBOL(blk_mq_stop_hw_queue); |
| 1758 | |
Ming Lei | 39a70c7 | 2017-06-06 23:22:09 +0800 | [diff] [blame] | 1759 | /* |
| 1760 | * This function is often used for pausing .queue_rq() by driver when |
| 1761 | * there isn't enough resource or some conditions aren't satisfied, and |
Bart Van Assche | 4d60621 | 2017-08-17 16:23:00 -0700 | [diff] [blame] | 1762 | * BLK_STS_RESOURCE is usually returned. |
Ming Lei | 39a70c7 | 2017-06-06 23:22:09 +0800 | [diff] [blame] | 1763 | * |
| 1764 | * We do not guarantee that dispatch can be drained or blocked |
| 1765 | * after blk_mq_stop_hw_queues() returns. Please use |
| 1766 | * blk_mq_quiesce_queue() for that requirement. |
| 1767 | */ |
Jens Axboe | 2719aa2 | 2017-05-03 11:08:14 -0600 | [diff] [blame] | 1768 | void blk_mq_stop_hw_queues(struct request_queue *q) |
| 1769 | { |
Ming Lei | 641a9ed | 2017-06-06 23:22:10 +0800 | [diff] [blame] | 1770 | struct blk_mq_hw_ctx *hctx; |
| 1771 | int i; |
| 1772 | |
| 1773 | queue_for_each_hw_ctx(q, hctx, i) |
| 1774 | blk_mq_stop_hw_queue(hctx); |
Christoph Hellwig | 280d45f | 2013-10-25 14:45:58 +0100 | [diff] [blame] | 1775 | } |
| 1776 | EXPORT_SYMBOL(blk_mq_stop_hw_queues); |
| 1777 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1778 | void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx) |
| 1779 | { |
| 1780 | clear_bit(BLK_MQ_S_STOPPED, &hctx->state); |
Jens Axboe | e4043dc | 2014-04-09 10:18:23 -0600 | [diff] [blame] | 1781 | |
Jens Axboe | 0ffbce8 | 2014-06-25 08:22:34 -0600 | [diff] [blame] | 1782 | blk_mq_run_hw_queue(hctx, false); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1783 | } |
| 1784 | EXPORT_SYMBOL(blk_mq_start_hw_queue); |
| 1785 | |
Christoph Hellwig | 2f26855 | 2014-04-16 09:44:56 +0200 | [diff] [blame] | 1786 | void blk_mq_start_hw_queues(struct request_queue *q) |
| 1787 | { |
| 1788 | struct blk_mq_hw_ctx *hctx; |
| 1789 | int i; |
| 1790 | |
| 1791 | queue_for_each_hw_ctx(q, hctx, i) |
| 1792 | blk_mq_start_hw_queue(hctx); |
| 1793 | } |
| 1794 | EXPORT_SYMBOL(blk_mq_start_hw_queues); |
| 1795 | |
Jens Axboe | ae911c5 | 2016-12-08 13:19:30 -0700 | [diff] [blame] | 1796 | void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async) |
| 1797 | { |
| 1798 | if (!blk_mq_hctx_stopped(hctx)) |
| 1799 | return; |
| 1800 | |
| 1801 | clear_bit(BLK_MQ_S_STOPPED, &hctx->state); |
| 1802 | blk_mq_run_hw_queue(hctx, async); |
| 1803 | } |
| 1804 | EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue); |
| 1805 | |
Christoph Hellwig | 1b4a325 | 2014-04-16 09:44:54 +0200 | [diff] [blame] | 1806 | void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1807 | { |
| 1808 | struct blk_mq_hw_ctx *hctx; |
| 1809 | int i; |
| 1810 | |
Jens Axboe | ae911c5 | 2016-12-08 13:19:30 -0700 | [diff] [blame] | 1811 | queue_for_each_hw_ctx(q, hctx, i) |
| 1812 | blk_mq_start_stopped_hw_queue(hctx, async); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1813 | } |
| 1814 | EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues); |
| 1815 | |
Christoph Hellwig | 70f4db6 | 2014-04-16 10:48:08 -0600 | [diff] [blame] | 1816 | static void blk_mq_run_work_fn(struct work_struct *work) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1817 | { |
| 1818 | struct blk_mq_hw_ctx *hctx; |
| 1819 | |
Jens Axboe | 9f99373 | 2017-04-10 09:54:54 -0600 | [diff] [blame] | 1820 | hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work); |
Jens Axboe | 21c6e93 | 2017-04-10 09:54:56 -0600 | [diff] [blame] | 1821 | |
| 1822 | /* |
Ming Lei | 15fe8a90 | 2018-04-08 17:48:11 +0800 | [diff] [blame] | 1823 | * If we are stopped, don't run the queue. |
Jens Axboe | 21c6e93 | 2017-04-10 09:54:56 -0600 | [diff] [blame] | 1824 | */ |
Yufen Yu | 0841031 | 2020-10-08 23:26:30 -0400 | [diff] [blame] | 1825 | if (blk_mq_hctx_stopped(hctx)) |
Jianchao Wang | 0196d6b | 2018-06-04 17:03:55 +0800 | [diff] [blame] | 1826 | return; |
Jens Axboe | e4043dc | 2014-04-09 10:18:23 -0600 | [diff] [blame] | 1827 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1828 | __blk_mq_run_hw_queue(hctx); |
| 1829 | } |
| 1830 | |
Ming Lei | cfd0c55 | 2015-10-20 23:13:57 +0800 | [diff] [blame] | 1831 | static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx, |
Ming Lei | cfd0c55 | 2015-10-20 23:13:57 +0800 | [diff] [blame] | 1832 | struct request *rq, |
| 1833 | bool at_head) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1834 | { |
Jens Axboe | e57690f | 2016-08-24 15:34:35 -0600 | [diff] [blame] | 1835 | struct blk_mq_ctx *ctx = rq->mq_ctx; |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1836 | enum hctx_type type = hctx->type; |
Jens Axboe | e57690f | 2016-08-24 15:34:35 -0600 | [diff] [blame] | 1837 | |
Bart Van Assche | 7b60781 | 2017-06-20 11:15:47 -0700 | [diff] [blame] | 1838 | lockdep_assert_held(&ctx->lock); |
| 1839 | |
Christoph Hellwig | a54895f | 2020-12-03 17:21:39 +0100 | [diff] [blame] | 1840 | trace_block_rq_insert(rq); |
Jens Axboe | 01b983c | 2013-11-19 18:59:10 -0700 | [diff] [blame] | 1841 | |
Christoph Hellwig | 72a0a36 | 2014-02-07 10:22:36 -0800 | [diff] [blame] | 1842 | if (at_head) |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1843 | list_add(&rq->queuelist, &ctx->rq_lists[type]); |
Christoph Hellwig | 72a0a36 | 2014-02-07 10:22:36 -0800 | [diff] [blame] | 1844 | else |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1845 | list_add_tail(&rq->queuelist, &ctx->rq_lists[type]); |
Ming Lei | cfd0c55 | 2015-10-20 23:13:57 +0800 | [diff] [blame] | 1846 | } |
Jens Axboe | 4bb659b | 2014-05-09 09:36:49 -0600 | [diff] [blame] | 1847 | |
Jens Axboe | 2c3ad66 | 2016-12-14 14:34:47 -0700 | [diff] [blame] | 1848 | void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq, |
| 1849 | bool at_head) |
Ming Lei | cfd0c55 | 2015-10-20 23:13:57 +0800 | [diff] [blame] | 1850 | { |
| 1851 | struct blk_mq_ctx *ctx = rq->mq_ctx; |
| 1852 | |
Bart Van Assche | 7b60781 | 2017-06-20 11:15:47 -0700 | [diff] [blame] | 1853 | lockdep_assert_held(&ctx->lock); |
| 1854 | |
Jens Axboe | e57690f | 2016-08-24 15:34:35 -0600 | [diff] [blame] | 1855 | __blk_mq_insert_req_list(hctx, rq, at_head); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1856 | blk_mq_hctx_mark_pending(hctx, ctx); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1857 | } |
| 1858 | |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1859 | /** |
| 1860 | * blk_mq_request_bypass_insert - Insert a request at dispatch list. |
| 1861 | * @rq: Pointer to request to be inserted. |
Randy Dunlap | 26bfeb2 | 2020-08-16 16:39:34 -0700 | [diff] [blame] | 1862 | * @at_head: true if the request should be inserted at the head of the list. |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 1863 | * @run_queue: If we should run the hardware queue after inserting the request. |
| 1864 | * |
Jens Axboe | 157f377 | 2017-09-11 16:43:57 -0600 | [diff] [blame] | 1865 | * Should only be used carefully, when the caller knows we want to |
| 1866 | * bypass a potential IO scheduler on the target device. |
| 1867 | */ |
Ming Lei | 01e99ae | 2020-02-25 09:04:32 +0800 | [diff] [blame] | 1868 | void blk_mq_request_bypass_insert(struct request *rq, bool at_head, |
| 1869 | bool run_queue) |
Jens Axboe | 157f377 | 2017-09-11 16:43:57 -0600 | [diff] [blame] | 1870 | { |
Jens Axboe | ea4f995 | 2018-10-29 15:06:13 -0600 | [diff] [blame] | 1871 | struct blk_mq_hw_ctx *hctx = rq->mq_hctx; |
Jens Axboe | 157f377 | 2017-09-11 16:43:57 -0600 | [diff] [blame] | 1872 | |
| 1873 | spin_lock(&hctx->lock); |
Ming Lei | 01e99ae | 2020-02-25 09:04:32 +0800 | [diff] [blame] | 1874 | if (at_head) |
| 1875 | list_add(&rq->queuelist, &hctx->dispatch); |
| 1876 | else |
| 1877 | list_add_tail(&rq->queuelist, &hctx->dispatch); |
Jens Axboe | 157f377 | 2017-09-11 16:43:57 -0600 | [diff] [blame] | 1878 | spin_unlock(&hctx->lock); |
| 1879 | |
Ming Lei | b085029 | 2017-11-02 23:24:34 +0800 | [diff] [blame] | 1880 | if (run_queue) |
| 1881 | blk_mq_run_hw_queue(hctx, false); |
Jens Axboe | 157f377 | 2017-09-11 16:43:57 -0600 | [diff] [blame] | 1882 | } |
| 1883 | |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 1884 | void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx, |
| 1885 | struct list_head *list) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1886 | |
| 1887 | { |
Ming Lei | 3f0cedc | 2018-07-02 17:35:58 +0800 | [diff] [blame] | 1888 | struct request *rq; |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1889 | enum hctx_type type = hctx->type; |
Ming Lei | 3f0cedc | 2018-07-02 17:35:58 +0800 | [diff] [blame] | 1890 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1891 | /* |
| 1892 | * preemption doesn't flush plug list, so it's possible ctx->cpu is |
| 1893 | * offline now |
| 1894 | */ |
Ming Lei | 3f0cedc | 2018-07-02 17:35:58 +0800 | [diff] [blame] | 1895 | list_for_each_entry(rq, list, queuelist) { |
Jens Axboe | e57690f | 2016-08-24 15:34:35 -0600 | [diff] [blame] | 1896 | BUG_ON(rq->mq_ctx != ctx); |
Christoph Hellwig | a54895f | 2020-12-03 17:21:39 +0100 | [diff] [blame] | 1897 | trace_block_rq_insert(rq); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1898 | } |
Ming Lei | 3f0cedc | 2018-07-02 17:35:58 +0800 | [diff] [blame] | 1899 | |
| 1900 | spin_lock(&ctx->lock); |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 1901 | list_splice_tail_init(list, &ctx->rq_lists[type]); |
Ming Lei | cfd0c55 | 2015-10-20 23:13:57 +0800 | [diff] [blame] | 1902 | blk_mq_hctx_mark_pending(hctx, ctx); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1903 | spin_unlock(&ctx->lock); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1904 | } |
| 1905 | |
Sami Tolvanen | 4f0f586 | 2021-04-08 11:28:34 -0700 | [diff] [blame] | 1906 | static int plug_rq_cmp(void *priv, const struct list_head *a, |
| 1907 | const struct list_head *b) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1908 | { |
| 1909 | struct request *rqa = container_of(a, struct request, queuelist); |
| 1910 | struct request *rqb = container_of(b, struct request, queuelist); |
| 1911 | |
Pavel Begunkov | 7d30a62 | 2019-11-29 00:11:53 +0300 | [diff] [blame] | 1912 | if (rqa->mq_ctx != rqb->mq_ctx) |
| 1913 | return rqa->mq_ctx > rqb->mq_ctx; |
| 1914 | if (rqa->mq_hctx != rqb->mq_hctx) |
| 1915 | return rqa->mq_hctx > rqb->mq_hctx; |
Jens Axboe | 3110fc7 | 2018-10-30 12:24:04 -0600 | [diff] [blame] | 1916 | |
| 1917 | return blk_rq_pos(rqa) > blk_rq_pos(rqb); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1918 | } |
| 1919 | |
| 1920 | void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule) |
| 1921 | { |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1922 | LIST_HEAD(list); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1923 | |
Pavel Begunkov | 95ed0c5 | 2019-11-29 00:11:55 +0300 | [diff] [blame] | 1924 | if (list_empty(&plug->mq_list)) |
| 1925 | return; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1926 | list_splice_init(&plug->mq_list, &list); |
| 1927 | |
Jens Axboe | ce5b009 | 2018-11-27 17:13:56 -0700 | [diff] [blame] | 1928 | if (plug->rq_count > 2 && plug->multiple_queues) |
| 1929 | list_sort(NULL, &list, plug_rq_cmp); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1930 | |
Dongli Zhang | bcc816d | 2019-04-04 10:57:44 +0800 | [diff] [blame] | 1931 | plug->rq_count = 0; |
| 1932 | |
Pavel Begunkov | 95ed0c5 | 2019-11-29 00:11:55 +0300 | [diff] [blame] | 1933 | do { |
| 1934 | struct list_head rq_list; |
| 1935 | struct request *rq, *head_rq = list_entry_rq(list.next); |
| 1936 | struct list_head *pos = &head_rq->queuelist; /* skip first */ |
| 1937 | struct blk_mq_hw_ctx *this_hctx = head_rq->mq_hctx; |
| 1938 | struct blk_mq_ctx *this_ctx = head_rq->mq_ctx; |
| 1939 | unsigned int depth = 1; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1940 | |
Pavel Begunkov | 95ed0c5 | 2019-11-29 00:11:55 +0300 | [diff] [blame] | 1941 | list_for_each_continue(pos, &list) { |
| 1942 | rq = list_entry_rq(pos); |
| 1943 | BUG_ON(!rq->q); |
| 1944 | if (rq->mq_hctx != this_hctx || rq->mq_ctx != this_ctx) |
| 1945 | break; |
| 1946 | depth++; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1947 | } |
| 1948 | |
Pavel Begunkov | 95ed0c5 | 2019-11-29 00:11:55 +0300 | [diff] [blame] | 1949 | list_cut_before(&rq_list, &list, pos); |
| 1950 | trace_block_unplug(head_rq->q, depth, !from_schedule); |
Jens Axboe | 67cae4c | 2018-10-30 11:31:51 -0600 | [diff] [blame] | 1951 | blk_mq_sched_insert_requests(this_hctx, this_ctx, &rq_list, |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 1952 | from_schedule); |
Pavel Begunkov | 95ed0c5 | 2019-11-29 00:11:55 +0300 | [diff] [blame] | 1953 | } while(!list_empty(&list)); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1954 | } |
| 1955 | |
Christoph Hellwig | 14ccb66 | 2019-06-06 12:29:01 +0200 | [diff] [blame] | 1956 | static void blk_mq_bio_to_request(struct request *rq, struct bio *bio, |
| 1957 | unsigned int nr_segs) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1958 | { |
Eric Biggers | 93f221a | 2020-09-15 20:53:14 -0700 | [diff] [blame] | 1959 | int err; |
| 1960 | |
Christoph Hellwig | f924cdd | 2019-06-06 12:29:00 +0200 | [diff] [blame] | 1961 | if (bio->bi_opf & REQ_RAHEAD) |
| 1962 | rq->cmd_flags |= REQ_FAILFAST_MASK; |
| 1963 | |
| 1964 | rq->__sector = bio->bi_iter.bi_sector; |
| 1965 | rq->write_hint = bio->bi_write_hint; |
Christoph Hellwig | 14ccb66 | 2019-06-06 12:29:01 +0200 | [diff] [blame] | 1966 | blk_rq_bio_prep(rq, bio, nr_segs); |
Eric Biggers | 93f221a | 2020-09-15 20:53:14 -0700 | [diff] [blame] | 1967 | |
| 1968 | /* This can't fail, since GFP_NOIO includes __GFP_DIRECT_RECLAIM. */ |
| 1969 | err = blk_crypto_rq_bio_prep(rq, bio, GFP_NOIO); |
| 1970 | WARN_ON_ONCE(err); |
Jens Axboe | 4b57052 | 2014-05-29 11:00:11 -0600 | [diff] [blame] | 1971 | |
Konstantin Khlebnikov | b5af37a | 2020-05-27 07:24:16 +0200 | [diff] [blame] | 1972 | blk_account_io_start(rq); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1973 | } |
| 1974 | |
Mike Snitzer | 0f95549 | 2018-01-17 11:25:56 -0500 | [diff] [blame] | 1975 | static blk_status_t __blk_mq_issue_directly(struct blk_mq_hw_ctx *hctx, |
| 1976 | struct request *rq, |
Jens Axboe | be94f05 | 2018-11-24 10:15:46 -0700 | [diff] [blame] | 1977 | blk_qc_t *cookie, bool last) |
Shaohua Li | f984df1 | 2015-05-08 10:51:32 -0700 | [diff] [blame] | 1978 | { |
Shaohua Li | f984df1 | 2015-05-08 10:51:32 -0700 | [diff] [blame] | 1979 | struct request_queue *q = rq->q; |
Shaohua Li | f984df1 | 2015-05-08 10:51:32 -0700 | [diff] [blame] | 1980 | struct blk_mq_queue_data bd = { |
| 1981 | .rq = rq, |
Jens Axboe | be94f05 | 2018-11-24 10:15:46 -0700 | [diff] [blame] | 1982 | .last = last, |
Shaohua Li | f984df1 | 2015-05-08 10:51:32 -0700 | [diff] [blame] | 1983 | }; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 1984 | blk_qc_t new_cookie; |
Jens Axboe | f06345a | 2017-06-12 11:22:46 -0600 | [diff] [blame] | 1985 | blk_status_t ret; |
Mike Snitzer | 0f95549 | 2018-01-17 11:25:56 -0500 | [diff] [blame] | 1986 | |
| 1987 | new_cookie = request_to_qc_t(hctx, rq); |
| 1988 | |
| 1989 | /* |
| 1990 | * For OK queue, we are done. For error, caller may kill it. |
| 1991 | * Any other error (busy), just add it to our list as we |
| 1992 | * previously would have done. |
| 1993 | */ |
| 1994 | ret = q->mq_ops->queue_rq(hctx, &bd); |
| 1995 | switch (ret) { |
| 1996 | case BLK_STS_OK: |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 1997 | blk_mq_update_dispatch_busy(hctx, false); |
Mike Snitzer | 0f95549 | 2018-01-17 11:25:56 -0500 | [diff] [blame] | 1998 | *cookie = new_cookie; |
| 1999 | break; |
| 2000 | case BLK_STS_RESOURCE: |
Ming Lei | 86ff7c2 | 2018-01-30 22:04:57 -0500 | [diff] [blame] | 2001 | case BLK_STS_DEV_RESOURCE: |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 2002 | blk_mq_update_dispatch_busy(hctx, true); |
Mike Snitzer | 0f95549 | 2018-01-17 11:25:56 -0500 | [diff] [blame] | 2003 | __blk_mq_requeue_request(rq); |
| 2004 | break; |
| 2005 | default: |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 2006 | blk_mq_update_dispatch_busy(hctx, false); |
Mike Snitzer | 0f95549 | 2018-01-17 11:25:56 -0500 | [diff] [blame] | 2007 | *cookie = BLK_QC_T_NONE; |
| 2008 | break; |
| 2009 | } |
| 2010 | |
| 2011 | return ret; |
| 2012 | } |
| 2013 | |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2014 | static blk_status_t __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx, |
Mike Snitzer | 0f95549 | 2018-01-17 11:25:56 -0500 | [diff] [blame] | 2015 | struct request *rq, |
Ming Lei | 396eaf2 | 2018-01-17 11:25:57 -0500 | [diff] [blame] | 2016 | blk_qc_t *cookie, |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2017 | bool bypass_insert, bool last) |
Mike Snitzer | 0f95549 | 2018-01-17 11:25:56 -0500 | [diff] [blame] | 2018 | { |
| 2019 | struct request_queue *q = rq->q; |
Ming Lei | d964f04 | 2017-06-06 23:22:00 +0800 | [diff] [blame] | 2020 | bool run_queue = true; |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 2021 | int budget_token; |
Ming Lei | d964f04 | 2017-06-06 23:22:00 +0800 | [diff] [blame] | 2022 | |
Ming Lei | 23d4ee1 | 2018-01-18 12:06:59 +0800 | [diff] [blame] | 2023 | /* |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2024 | * RCU or SRCU read lock is needed before checking quiesced flag. |
Ming Lei | 23d4ee1 | 2018-01-18 12:06:59 +0800 | [diff] [blame] | 2025 | * |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2026 | * When queue is stopped or quiesced, ignore 'bypass_insert' from |
| 2027 | * blk_mq_request_issue_directly(), and return BLK_STS_OK to caller, |
| 2028 | * and avoid driver to try to dispatch again. |
Ming Lei | 23d4ee1 | 2018-01-18 12:06:59 +0800 | [diff] [blame] | 2029 | */ |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2030 | if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) { |
Ming Lei | d964f04 | 2017-06-06 23:22:00 +0800 | [diff] [blame] | 2031 | run_queue = false; |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2032 | bypass_insert = false; |
| 2033 | goto insert; |
Ming Lei | d964f04 | 2017-06-06 23:22:00 +0800 | [diff] [blame] | 2034 | } |
Shaohua Li | f984df1 | 2015-05-08 10:51:32 -0700 | [diff] [blame] | 2035 | |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2036 | if (q->elevator && !bypass_insert) |
| 2037 | goto insert; |
Bart Van Assche | 2253efc | 2016-10-28 17:20:02 -0700 | [diff] [blame] | 2038 | |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 2039 | budget_token = blk_mq_get_dispatch_budget(q); |
| 2040 | if (budget_token < 0) |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2041 | goto insert; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 2042 | |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 2043 | blk_mq_set_rq_budget_token(rq, budget_token); |
| 2044 | |
Ming Lei | 8ab6bb9e | 2018-06-25 19:31:45 +0800 | [diff] [blame] | 2045 | if (!blk_mq_get_driver_tag(rq)) { |
Ming Lei | 2a5a24a | 2021-01-22 10:33:12 +0800 | [diff] [blame] | 2046 | blk_mq_put_dispatch_budget(q, budget_token); |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2047 | goto insert; |
Ming Lei | 88022d7 | 2017-11-05 02:21:12 +0800 | [diff] [blame] | 2048 | } |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 2049 | |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2050 | return __blk_mq_issue_directly(hctx, rq, cookie, last); |
| 2051 | insert: |
| 2052 | if (bypass_insert) |
| 2053 | return BLK_STS_RESOURCE; |
| 2054 | |
Ming Lei | db03f88 | 2020-08-18 17:07:28 +0800 | [diff] [blame] | 2055 | blk_mq_sched_insert_request(rq, false, run_queue, false); |
| 2056 | |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2057 | return BLK_STS_OK; |
| 2058 | } |
| 2059 | |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 2060 | /** |
| 2061 | * blk_mq_try_issue_directly - Try to send a request directly to device driver. |
| 2062 | * @hctx: Pointer of the associated hardware queue. |
| 2063 | * @rq: Pointer to request to be sent. |
| 2064 | * @cookie: Request queue cookie. |
| 2065 | * |
| 2066 | * If the device has enough resources to accept a new request now, send the |
| 2067 | * request directly to device driver. Else, insert at hctx->dispatch queue, so |
| 2068 | * we can try send it another time in the future. Requests inserted at this |
| 2069 | * queue have higher priority. |
| 2070 | */ |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2071 | static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx, |
| 2072 | struct request *rq, blk_qc_t *cookie) |
| 2073 | { |
| 2074 | blk_status_t ret; |
| 2075 | int srcu_idx; |
| 2076 | |
| 2077 | might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING); |
| 2078 | |
| 2079 | hctx_lock(hctx, &srcu_idx); |
| 2080 | |
| 2081 | ret = __blk_mq_try_issue_directly(hctx, rq, cookie, false, true); |
| 2082 | if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE) |
Ming Lei | 01e99ae | 2020-02-25 09:04:32 +0800 | [diff] [blame] | 2083 | blk_mq_request_bypass_insert(rq, false, true); |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2084 | else if (ret != BLK_STS_OK) |
| 2085 | blk_mq_end_request(rq, ret); |
| 2086 | |
Jens Axboe | 04ced15 | 2018-01-09 08:29:46 -0800 | [diff] [blame] | 2087 | hctx_unlock(hctx, srcu_idx); |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2088 | } |
| 2089 | |
| 2090 | blk_status_t blk_mq_request_issue_directly(struct request *rq, bool last) |
| 2091 | { |
| 2092 | blk_status_t ret; |
| 2093 | int srcu_idx; |
| 2094 | blk_qc_t unused_cookie; |
| 2095 | struct blk_mq_hw_ctx *hctx = rq->mq_hctx; |
| 2096 | |
| 2097 | hctx_lock(hctx, &srcu_idx); |
| 2098 | ret = __blk_mq_try_issue_directly(hctx, rq, &unused_cookie, true, last); |
| 2099 | hctx_unlock(hctx, srcu_idx); |
Jianchao Wang | 7f556a4 | 2018-12-14 09:28:18 +0800 | [diff] [blame] | 2100 | |
| 2101 | return ret; |
Christoph Hellwig | 5eb6126 | 2017-03-22 15:01:51 -0400 | [diff] [blame] | 2102 | } |
| 2103 | |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 2104 | void blk_mq_try_issue_list_directly(struct blk_mq_hw_ctx *hctx, |
| 2105 | struct list_head *list) |
| 2106 | { |
Keith Busch | 536167d4 | 2020-04-07 03:13:48 +0900 | [diff] [blame] | 2107 | int queued = 0; |
yangerkun | 632bfb6 | 2020-09-05 19:25:56 +0800 | [diff] [blame] | 2108 | int errors = 0; |
Keith Busch | 536167d4 | 2020-04-07 03:13:48 +0900 | [diff] [blame] | 2109 | |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 2110 | while (!list_empty(list)) { |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2111 | blk_status_t ret; |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 2112 | struct request *rq = list_first_entry(list, struct request, |
| 2113 | queuelist); |
| 2114 | |
| 2115 | list_del_init(&rq->queuelist); |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2116 | ret = blk_mq_request_issue_directly(rq, list_empty(list)); |
| 2117 | if (ret != BLK_STS_OK) { |
| 2118 | if (ret == BLK_STS_RESOURCE || |
| 2119 | ret == BLK_STS_DEV_RESOURCE) { |
Ming Lei | 01e99ae | 2020-02-25 09:04:32 +0800 | [diff] [blame] | 2120 | blk_mq_request_bypass_insert(rq, false, |
Jens Axboe | c616cbe | 2018-12-06 22:17:44 -0700 | [diff] [blame] | 2121 | list_empty(list)); |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2122 | break; |
| 2123 | } |
| 2124 | blk_mq_end_request(rq, ret); |
yangerkun | 632bfb6 | 2020-09-05 19:25:56 +0800 | [diff] [blame] | 2125 | errors++; |
Keith Busch | 536167d4 | 2020-04-07 03:13:48 +0900 | [diff] [blame] | 2126 | } else |
| 2127 | queued++; |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 2128 | } |
Jens Axboe | d666ba9 | 2018-11-27 17:02:25 -0700 | [diff] [blame] | 2129 | |
| 2130 | /* |
| 2131 | * If we didn't flush the entire list, we could have told |
| 2132 | * the driver there was more coming, but that turned out to |
| 2133 | * be a lie. |
| 2134 | */ |
yangerkun | 632bfb6 | 2020-09-05 19:25:56 +0800 | [diff] [blame] | 2135 | if ((!list_empty(list) || errors) && |
| 2136 | hctx->queue->mq_ops->commit_rqs && queued) |
Jens Axboe | d666ba9 | 2018-11-27 17:02:25 -0700 | [diff] [blame] | 2137 | hctx->queue->mq_ops->commit_rqs(hctx); |
Ming Lei | 6ce3dd6 | 2018-07-10 09:03:31 +0800 | [diff] [blame] | 2138 | } |
| 2139 | |
Jens Axboe | ce5b009 | 2018-11-27 17:13:56 -0700 | [diff] [blame] | 2140 | static void blk_add_rq_to_plug(struct blk_plug *plug, struct request *rq) |
| 2141 | { |
| 2142 | list_add_tail(&rq->queuelist, &plug->mq_list); |
| 2143 | plug->rq_count++; |
| 2144 | if (!plug->multiple_queues && !list_is_singular(&plug->mq_list)) { |
| 2145 | struct request *tmp; |
| 2146 | |
| 2147 | tmp = list_first_entry(&plug->mq_list, struct request, |
| 2148 | queuelist); |
| 2149 | if (tmp->q != rq->q) |
| 2150 | plug->multiple_queues = true; |
| 2151 | } |
| 2152 | } |
| 2153 | |
Song Liu | 7f2a6a6 | 2021-09-07 16:03:38 -0700 | [diff] [blame] | 2154 | /* |
Jens Axboe | ba0ffdd | 2021-10-06 12:01:07 -0600 | [diff] [blame^] | 2155 | * Allow 2x BLK_MAX_REQUEST_COUNT requests on plug queue for multiple |
Song Liu | 7f2a6a6 | 2021-09-07 16:03:38 -0700 | [diff] [blame] | 2156 | * queues. This is important for md arrays to benefit from merging |
| 2157 | * requests. |
| 2158 | */ |
| 2159 | static inline unsigned short blk_plug_max_rq_count(struct blk_plug *plug) |
| 2160 | { |
| 2161 | if (plug->multiple_queues) |
Jens Axboe | ba0ffdd | 2021-10-06 12:01:07 -0600 | [diff] [blame^] | 2162 | return BLK_MAX_REQUEST_COUNT * 2; |
Song Liu | 7f2a6a6 | 2021-09-07 16:03:38 -0700 | [diff] [blame] | 2163 | return BLK_MAX_REQUEST_COUNT; |
| 2164 | } |
| 2165 | |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 2166 | /** |
Christoph Hellwig | c62b37d | 2020-07-01 10:59:43 +0200 | [diff] [blame] | 2167 | * blk_mq_submit_bio - Create and send a request to block device. |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 2168 | * @bio: Bio pointer. |
| 2169 | * |
| 2170 | * Builds up a request structure from @q and @bio and send to the device. The |
| 2171 | * request may not be queued directly to hardware if: |
| 2172 | * * This request can be merged with another one |
| 2173 | * * We want to place request at plug queue for possible future merging |
| 2174 | * * There is an IO scheduler active at this queue |
| 2175 | * |
| 2176 | * It will not queue the request if there is an error with the bio, or at the |
| 2177 | * request creation. |
| 2178 | * |
| 2179 | * Returns: Request queue cookie. |
| 2180 | */ |
Christoph Hellwig | c62b37d | 2020-07-01 10:59:43 +0200 | [diff] [blame] | 2181 | blk_qc_t blk_mq_submit_bio(struct bio *bio) |
Jens Axboe | 07068d5 | 2014-05-22 10:40:51 -0600 | [diff] [blame] | 2182 | { |
Christoph Hellwig | 309dca30 | 2021-01-24 11:02:34 +0100 | [diff] [blame] | 2183 | struct request_queue *q = bio->bi_bdev->bd_disk->queue; |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 2184 | const int is_sync = op_is_sync(bio->bi_opf); |
Christoph Hellwig | f73f44e | 2017-01-27 08:30:47 -0700 | [diff] [blame] | 2185 | const int is_flush_fua = op_is_flush(bio->bi_opf); |
Christoph Hellwig | e6e7abf | 2020-05-29 15:53:09 +0200 | [diff] [blame] | 2186 | struct blk_mq_alloc_data data = { |
| 2187 | .q = q, |
| 2188 | }; |
Jens Axboe | 07068d5 | 2014-05-22 10:40:51 -0600 | [diff] [blame] | 2189 | struct request *rq; |
Shaohua Li | f984df1 | 2015-05-08 10:51:32 -0700 | [diff] [blame] | 2190 | struct blk_plug *plug; |
Shaohua Li | 5b3f341 | 2015-05-08 10:51:33 -0700 | [diff] [blame] | 2191 | struct request *same_queue_rq = NULL; |
Christoph Hellwig | 14ccb66 | 2019-06-06 12:29:01 +0200 | [diff] [blame] | 2192 | unsigned int nr_segs; |
Jens Axboe | 7b37163 | 2015-11-05 10:41:40 -0700 | [diff] [blame] | 2193 | blk_qc_t cookie; |
Satya Tangirala | a892c8d | 2020-05-14 00:37:18 +0000 | [diff] [blame] | 2194 | blk_status_t ret; |
Jeffle Xu | cc29e1b | 2020-11-26 17:18:52 +0800 | [diff] [blame] | 2195 | bool hipri; |
Jens Axboe | 07068d5 | 2014-05-22 10:40:51 -0600 | [diff] [blame] | 2196 | |
| 2197 | blk_queue_bounce(q, &bio); |
Christoph Hellwig | f695ca3 | 2020-07-01 10:59:39 +0200 | [diff] [blame] | 2198 | __blk_queue_split(&bio, &nr_segs); |
Wen Xiong | f36ea50 | 2017-05-10 08:54:11 -0500 | [diff] [blame] | 2199 | |
Dmitry Monakhov | e23947b | 2017-06-29 11:31:11 -0700 | [diff] [blame] | 2200 | if (!bio_integrity_prep(bio)) |
Christoph Hellwig | ac7c567 | 2020-05-16 20:28:01 +0200 | [diff] [blame] | 2201 | goto queue_exit; |
Jens Axboe | 07068d5 | 2014-05-22 10:40:51 -0600 | [diff] [blame] | 2202 | |
Omar Sandoval | 87c279e | 2016-06-01 22:18:48 -0700 | [diff] [blame] | 2203 | if (!is_flush_fua && !blk_queue_nomerges(q) && |
Christoph Hellwig | 14ccb66 | 2019-06-06 12:29:01 +0200 | [diff] [blame] | 2204 | blk_attempt_plug_merge(q, bio, nr_segs, &same_queue_rq)) |
Christoph Hellwig | ac7c567 | 2020-05-16 20:28:01 +0200 | [diff] [blame] | 2205 | goto queue_exit; |
Shaohua Li | f984df1 | 2015-05-08 10:51:32 -0700 | [diff] [blame] | 2206 | |
Christoph Hellwig | 14ccb66 | 2019-06-06 12:29:01 +0200 | [diff] [blame] | 2207 | if (blk_mq_sched_bio_merge(q, bio, nr_segs)) |
Christoph Hellwig | ac7c567 | 2020-05-16 20:28:01 +0200 | [diff] [blame] | 2208 | goto queue_exit; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 2209 | |
Christoph Hellwig | d533756 | 2018-11-14 17:02:09 +0100 | [diff] [blame] | 2210 | rq_qos_throttle(q, bio); |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 2211 | |
Jeffle Xu | cc29e1b | 2020-11-26 17:18:52 +0800 | [diff] [blame] | 2212 | hipri = bio->bi_opf & REQ_HIPRI; |
| 2213 | |
Ming Lei | 7809167 | 2019-01-16 19:08:15 +0800 | [diff] [blame] | 2214 | data.cmd_flags = bio->bi_opf; |
Christoph Hellwig | e6e7abf | 2020-05-29 15:53:09 +0200 | [diff] [blame] | 2215 | rq = __blk_mq_alloc_request(&data); |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 2216 | if (unlikely(!rq)) { |
Josef Bacik | c1c8038 | 2018-07-03 11:14:59 -0400 | [diff] [blame] | 2217 | rq_qos_cleanup(q, bio); |
Jens Axboe | 7b6620d | 2019-08-15 11:09:16 -0600 | [diff] [blame] | 2218 | if (bio->bi_opf & REQ_NOWAIT) |
Goldwyn Rodrigues | 03a07c9 | 2017-06-20 07:05:46 -0500 | [diff] [blame] | 2219 | bio_wouldblock_error(bio); |
Christoph Hellwig | ac7c567 | 2020-05-16 20:28:01 +0200 | [diff] [blame] | 2220 | goto queue_exit; |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 2221 | } |
| 2222 | |
Christoph Hellwig | e8a676d | 2020-12-03 17:21:36 +0100 | [diff] [blame] | 2223 | trace_block_getrq(bio); |
Xiaoguang Wang | d6f1dda | 2018-10-23 22:30:50 +0800 | [diff] [blame] | 2224 | |
Josef Bacik | c1c8038 | 2018-07-03 11:14:59 -0400 | [diff] [blame] | 2225 | rq_qos_track(q, rq, bio); |
Jens Axboe | 07068d5 | 2014-05-22 10:40:51 -0600 | [diff] [blame] | 2226 | |
Jens Axboe | fd2d332 | 2017-01-12 10:04:45 -0700 | [diff] [blame] | 2227 | cookie = request_to_qc_t(data.hctx, rq); |
Jens Axboe | 07068d5 | 2014-05-22 10:40:51 -0600 | [diff] [blame] | 2228 | |
Bart Van Assche | 970d168 | 2019-07-01 08:47:30 -0700 | [diff] [blame] | 2229 | blk_mq_bio_to_request(rq, bio, nr_segs); |
| 2230 | |
Satya Tangirala | a892c8d | 2020-05-14 00:37:18 +0000 | [diff] [blame] | 2231 | ret = blk_crypto_init_request(rq); |
| 2232 | if (ret != BLK_STS_OK) { |
| 2233 | bio->bi_status = ret; |
| 2234 | bio_endio(bio); |
| 2235 | blk_mq_free_request(rq); |
| 2236 | return BLK_QC_T_NONE; |
| 2237 | } |
| 2238 | |
Damien Le Moal | b49773e7 | 2019-07-11 01:18:31 +0900 | [diff] [blame] | 2239 | plug = blk_mq_plug(q, bio); |
Christoph Hellwig | a4d907b | 2017-03-22 15:01:53 -0400 | [diff] [blame] | 2240 | if (unlikely(is_flush_fua)) { |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 2241 | /* Bypass scheduler for flush requests */ |
Ming Lei | 923218f | 2017-11-02 23:24:38 +0800 | [diff] [blame] | 2242 | blk_insert_flush(rq); |
| 2243 | blk_mq_run_hw_queue(data.hctx, true); |
Ming Lei | 03f26d8 | 2021-05-14 10:20:52 +0800 | [diff] [blame] | 2244 | } else if (plug && (q->nr_hw_queues == 1 || |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 2245 | blk_mq_is_shared_tags(rq->mq_hctx->flags) || |
Ming Lei | 03f26d8 | 2021-05-14 10:20:52 +0800 | [diff] [blame] | 2246 | q->mq_ops->commit_rqs || !blk_queue_nonrot(q))) { |
Jens Axboe | b2c5d16 | 2018-11-29 10:03:42 -0700 | [diff] [blame] | 2247 | /* |
| 2248 | * Use plugging if we have a ->commit_rqs() hook as well, as |
| 2249 | * we know the driver uses bd->last in a smart fashion. |
Ming Lei | 3154df2 | 2019-09-27 15:24:31 +0800 | [diff] [blame] | 2250 | * |
| 2251 | * Use normal plugging if this disk is slow HDD, as sequential |
| 2252 | * IO may benefit a lot from plug merging. |
Jens Axboe | b2c5d16 | 2018-11-29 10:03:42 -0700 | [diff] [blame] | 2253 | */ |
Jens Axboe | 5f0ed77 | 2018-11-23 22:04:33 -0700 | [diff] [blame] | 2254 | unsigned int request_count = plug->rq_count; |
Shaohua Li | 600271d | 2016-11-03 17:03:54 -0700 | [diff] [blame] | 2255 | struct request *last = NULL; |
| 2256 | |
Ming Lei | 676d060 | 2015-10-20 23:13:56 +0800 | [diff] [blame] | 2257 | if (!request_count) |
Jeff Moyer | e6c4438 | 2015-05-08 10:51:30 -0700 | [diff] [blame] | 2258 | trace_block_plug(q); |
Shaohua Li | 600271d | 2016-11-03 17:03:54 -0700 | [diff] [blame] | 2259 | else |
| 2260 | last = list_entry_rq(plug->mq_list.prev); |
Jens Axboe | b094f89 | 2015-11-20 20:29:45 -0700 | [diff] [blame] | 2261 | |
Song Liu | 7f2a6a6 | 2021-09-07 16:03:38 -0700 | [diff] [blame] | 2262 | if (request_count >= blk_plug_max_rq_count(plug) || (last && |
Shaohua Li | 600271d | 2016-11-03 17:03:54 -0700 | [diff] [blame] | 2263 | blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) { |
Jeff Moyer | e6c4438 | 2015-05-08 10:51:30 -0700 | [diff] [blame] | 2264 | blk_flush_plug_list(plug, false); |
| 2265 | trace_block_plug(q); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2266 | } |
Jens Axboe | b094f89 | 2015-11-20 20:29:45 -0700 | [diff] [blame] | 2267 | |
Jens Axboe | ce5b009 | 2018-11-27 17:13:56 -0700 | [diff] [blame] | 2268 | blk_add_rq_to_plug(plug, rq); |
Ming Lei | a12de1d | 2019-09-27 15:24:30 +0800 | [diff] [blame] | 2269 | } else if (q->elevator) { |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 2270 | /* Insert the request at the IO scheduler queue */ |
Ming Lei | a12de1d | 2019-09-27 15:24:30 +0800 | [diff] [blame] | 2271 | blk_mq_sched_insert_request(rq, false, true, true); |
Christoph Hellwig | 2299722 | 2017-03-22 15:01:52 -0400 | [diff] [blame] | 2272 | } else if (plug && !blk_queue_nomerges(q)) { |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2273 | /* |
| 2274 | * We do limited plugging. If the bio can be merged, do that. |
| 2275 | * Otherwise the existing request in the plug list will be |
| 2276 | * issued. So the plug list will have one request at most |
Christoph Hellwig | 2299722 | 2017-03-22 15:01:52 -0400 | [diff] [blame] | 2277 | * The plug list might get flushed before this. If that happens, |
| 2278 | * the plug list is empty, and same_queue_rq is invalid. |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2279 | */ |
Christoph Hellwig | 2299722 | 2017-03-22 15:01:52 -0400 | [diff] [blame] | 2280 | if (list_empty(&plug->mq_list)) |
| 2281 | same_queue_rq = NULL; |
Jens Axboe | 4711b57 | 2018-11-27 17:07:17 -0700 | [diff] [blame] | 2282 | if (same_queue_rq) { |
Christoph Hellwig | 2299722 | 2017-03-22 15:01:52 -0400 | [diff] [blame] | 2283 | list_del_init(&same_queue_rq->queuelist); |
Jens Axboe | 4711b57 | 2018-11-27 17:07:17 -0700 | [diff] [blame] | 2284 | plug->rq_count--; |
| 2285 | } |
Jens Axboe | ce5b009 | 2018-11-27 17:13:56 -0700 | [diff] [blame] | 2286 | blk_add_rq_to_plug(plug, rq); |
Yufen Yu | ff3b74b | 2019-03-26 21:19:25 +0800 | [diff] [blame] | 2287 | trace_block_plug(q); |
Christoph Hellwig | 2299722 | 2017-03-22 15:01:52 -0400 | [diff] [blame] | 2288 | |
Ming Lei | dad7a3b | 2017-06-06 23:21:59 +0800 | [diff] [blame] | 2289 | if (same_queue_rq) { |
Jens Axboe | ea4f995 | 2018-10-29 15:06:13 -0600 | [diff] [blame] | 2290 | data.hctx = same_queue_rq->mq_hctx; |
Yufen Yu | ff3b74b | 2019-03-26 21:19:25 +0800 | [diff] [blame] | 2291 | trace_block_unplug(q, 1, true); |
Christoph Hellwig | 2299722 | 2017-03-22 15:01:52 -0400 | [diff] [blame] | 2292 | blk_mq_try_issue_directly(data.hctx, same_queue_rq, |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2293 | &cookie); |
Ming Lei | dad7a3b | 2017-06-06 23:21:59 +0800 | [diff] [blame] | 2294 | } |
Ming Lei | a12de1d | 2019-09-27 15:24:30 +0800 | [diff] [blame] | 2295 | } else if ((q->nr_hw_queues > 1 && is_sync) || |
| 2296 | !data.hctx->dispatch_busy) { |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 2297 | /* |
| 2298 | * There is no scheduler and we can try to send directly |
| 2299 | * to the hardware. |
| 2300 | */ |
Bart Van Assche | fd9c40f | 2019-04-04 10:08:43 -0700 | [diff] [blame] | 2301 | blk_mq_try_issue_directly(data.hctx, rq, &cookie); |
Ming Lei | ab42f35 | 2017-05-26 19:53:19 +0800 | [diff] [blame] | 2302 | } else { |
André Almeida | 105663f | 2020-01-06 15:08:18 -0300 | [diff] [blame] | 2303 | /* Default case. */ |
huhai | 8fa9f55 | 2018-05-16 08:21:21 -0600 | [diff] [blame] | 2304 | blk_mq_sched_insert_request(rq, false, true, true); |
Ming Lei | ab42f35 | 2017-05-26 19:53:19 +0800 | [diff] [blame] | 2305 | } |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2306 | |
Jeffle Xu | cc29e1b | 2020-11-26 17:18:52 +0800 | [diff] [blame] | 2307 | if (!hipri) |
| 2308 | return BLK_QC_T_NONE; |
Jens Axboe | 7b37163 | 2015-11-05 10:41:40 -0700 | [diff] [blame] | 2309 | return cookie; |
Christoph Hellwig | ac7c567 | 2020-05-16 20:28:01 +0200 | [diff] [blame] | 2310 | queue_exit: |
| 2311 | blk_queue_exit(q); |
| 2312 | return BLK_QC_T_NONE; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2313 | } |
| 2314 | |
Ming Lei | bd63141 | 2021-05-11 23:22:35 +0800 | [diff] [blame] | 2315 | static size_t order_to_size(unsigned int order) |
| 2316 | { |
| 2317 | return (size_t)PAGE_SIZE << order; |
| 2318 | } |
| 2319 | |
| 2320 | /* called before freeing request pool in @tags */ |
John Garry | f32e4ea | 2021-10-05 18:23:32 +0800 | [diff] [blame] | 2321 | static void blk_mq_clear_rq_mapping(struct blk_mq_tags *drv_tags, |
| 2322 | struct blk_mq_tags *tags) |
Ming Lei | bd63141 | 2021-05-11 23:22:35 +0800 | [diff] [blame] | 2323 | { |
Ming Lei | bd63141 | 2021-05-11 23:22:35 +0800 | [diff] [blame] | 2324 | struct page *page; |
| 2325 | unsigned long flags; |
| 2326 | |
John Garry | 4f245d5 | 2021-10-05 18:23:33 +0800 | [diff] [blame] | 2327 | /* There is no need to clear a driver tags own mapping */ |
| 2328 | if (drv_tags == tags) |
| 2329 | return; |
| 2330 | |
Ming Lei | bd63141 | 2021-05-11 23:22:35 +0800 | [diff] [blame] | 2331 | list_for_each_entry(page, &tags->page_list, lru) { |
| 2332 | unsigned long start = (unsigned long)page_address(page); |
| 2333 | unsigned long end = start + order_to_size(page->private); |
| 2334 | int i; |
| 2335 | |
John Garry | f32e4ea | 2021-10-05 18:23:32 +0800 | [diff] [blame] | 2336 | for (i = 0; i < drv_tags->nr_tags; i++) { |
Ming Lei | bd63141 | 2021-05-11 23:22:35 +0800 | [diff] [blame] | 2337 | struct request *rq = drv_tags->rqs[i]; |
| 2338 | unsigned long rq_addr = (unsigned long)rq; |
| 2339 | |
| 2340 | if (rq_addr >= start && rq_addr < end) { |
| 2341 | WARN_ON_ONCE(refcount_read(&rq->ref) != 0); |
| 2342 | cmpxchg(&drv_tags->rqs[i], rq, NULL); |
| 2343 | } |
| 2344 | } |
| 2345 | } |
| 2346 | |
| 2347 | /* |
| 2348 | * Wait until all pending iteration is done. |
| 2349 | * |
| 2350 | * Request reference is cleared and it is guaranteed to be observed |
| 2351 | * after the ->lock is released. |
| 2352 | */ |
| 2353 | spin_lock_irqsave(&drv_tags->lock, flags); |
| 2354 | spin_unlock_irqrestore(&drv_tags->lock, flags); |
| 2355 | } |
| 2356 | |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2357 | void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags, |
| 2358 | unsigned int hctx_idx) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2359 | { |
John Garry | f32e4ea | 2021-10-05 18:23:32 +0800 | [diff] [blame] | 2360 | struct blk_mq_tags *drv_tags; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2361 | struct page *page; |
| 2362 | |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 2363 | if (blk_mq_is_shared_tags(set->flags)) |
| 2364 | drv_tags = set->shared_tags; |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2365 | else |
| 2366 | drv_tags = set->tags[hctx_idx]; |
John Garry | f32e4ea | 2021-10-05 18:23:32 +0800 | [diff] [blame] | 2367 | |
John Garry | 65de57b | 2021-10-05 18:23:26 +0800 | [diff] [blame] | 2368 | if (tags->static_rqs && set->ops->exit_request) { |
Christoph Hellwig | e9b267d | 2014-04-15 13:59:10 -0600 | [diff] [blame] | 2369 | int i; |
| 2370 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2371 | for (i = 0; i < tags->nr_tags; i++) { |
Jens Axboe | 2af8cbe | 2017-01-13 14:39:30 -0700 | [diff] [blame] | 2372 | struct request *rq = tags->static_rqs[i]; |
| 2373 | |
| 2374 | if (!rq) |
Christoph Hellwig | e9b267d | 2014-04-15 13:59:10 -0600 | [diff] [blame] | 2375 | continue; |
Christoph Hellwig | d6296d39 | 2017-05-01 10:19:08 -0600 | [diff] [blame] | 2376 | set->ops->exit_request(set, rq, hctx_idx); |
Jens Axboe | 2af8cbe | 2017-01-13 14:39:30 -0700 | [diff] [blame] | 2377 | tags->static_rqs[i] = NULL; |
Christoph Hellwig | e9b267d | 2014-04-15 13:59:10 -0600 | [diff] [blame] | 2378 | } |
| 2379 | } |
| 2380 | |
John Garry | f32e4ea | 2021-10-05 18:23:32 +0800 | [diff] [blame] | 2381 | blk_mq_clear_rq_mapping(drv_tags, tags); |
Ming Lei | bd63141 | 2021-05-11 23:22:35 +0800 | [diff] [blame] | 2382 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2383 | while (!list_empty(&tags->page_list)) { |
| 2384 | page = list_first_entry(&tags->page_list, struct page, lru); |
Dave Hansen | 6753471 | 2014-01-08 20:17:46 -0700 | [diff] [blame] | 2385 | list_del_init(&page->lru); |
Catalin Marinas | f75782e | 2015-09-14 18:16:02 +0100 | [diff] [blame] | 2386 | /* |
| 2387 | * Remove kmemleak object previously allocated in |
Raul E Rangel | 273938b | 2019-05-02 13:48:11 -0600 | [diff] [blame] | 2388 | * blk_mq_alloc_rqs(). |
Catalin Marinas | f75782e | 2015-09-14 18:16:02 +0100 | [diff] [blame] | 2389 | */ |
| 2390 | kmemleak_free(page_address(page)); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2391 | __free_pages(page, page->private); |
| 2392 | } |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2393 | } |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2394 | |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2395 | void blk_mq_free_rq_map(struct blk_mq_tags *tags) |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2396 | { |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2397 | kfree(tags->rqs); |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2398 | tags->rqs = NULL; |
Jens Axboe | 2af8cbe | 2017-01-13 14:39:30 -0700 | [diff] [blame] | 2399 | kfree(tags->static_rqs); |
| 2400 | tags->static_rqs = NULL; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2401 | |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2402 | blk_mq_free_tags(tags); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2403 | } |
| 2404 | |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2405 | static struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, |
| 2406 | unsigned int hctx_idx, |
| 2407 | unsigned int nr_tags, |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2408 | unsigned int reserved_tags) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2409 | { |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2410 | struct blk_mq_tags *tags; |
Shaohua Li | 59f082e | 2017-02-01 09:53:14 -0800 | [diff] [blame] | 2411 | int node; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2412 | |
Dongli Zhang | 7d76f85 | 2019-02-27 21:35:01 +0800 | [diff] [blame] | 2413 | node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx); |
Shaohua Li | 59f082e | 2017-02-01 09:53:14 -0800 | [diff] [blame] | 2414 | if (node == NUMA_NO_NODE) |
| 2415 | node = set->numa_node; |
| 2416 | |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2417 | tags = blk_mq_init_tags(nr_tags, reserved_tags, node, |
| 2418 | BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags)); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2419 | if (!tags) |
| 2420 | return NULL; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2421 | |
Kees Cook | 590b5b7 | 2018-06-12 14:04:20 -0700 | [diff] [blame] | 2422 | tags->rqs = kcalloc_node(nr_tags, sizeof(struct request *), |
Gabriel Krisman Bertazi | 36e1f3d1 | 2016-12-06 13:31:44 -0200 | [diff] [blame] | 2423 | GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, |
Shaohua Li | 59f082e | 2017-02-01 09:53:14 -0800 | [diff] [blame] | 2424 | node); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2425 | if (!tags->rqs) { |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2426 | blk_mq_free_tags(tags); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2427 | return NULL; |
| 2428 | } |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2429 | |
Kees Cook | 590b5b7 | 2018-06-12 14:04:20 -0700 | [diff] [blame] | 2430 | tags->static_rqs = kcalloc_node(nr_tags, sizeof(struct request *), |
| 2431 | GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, |
| 2432 | node); |
Jens Axboe | 2af8cbe | 2017-01-13 14:39:30 -0700 | [diff] [blame] | 2433 | if (!tags->static_rqs) { |
| 2434 | kfree(tags->rqs); |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2435 | blk_mq_free_tags(tags); |
Jens Axboe | 2af8cbe | 2017-01-13 14:39:30 -0700 | [diff] [blame] | 2436 | return NULL; |
| 2437 | } |
| 2438 | |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2439 | return tags; |
| 2440 | } |
| 2441 | |
Tejun Heo | 1d9bd51 | 2018-01-09 08:29:48 -0800 | [diff] [blame] | 2442 | static int blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq, |
| 2443 | unsigned int hctx_idx, int node) |
| 2444 | { |
| 2445 | int ret; |
| 2446 | |
| 2447 | if (set->ops->init_request) { |
| 2448 | ret = set->ops->init_request(set, rq, hctx_idx, node); |
| 2449 | if (ret) |
| 2450 | return ret; |
| 2451 | } |
| 2452 | |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 2453 | WRITE_ONCE(rq->state, MQ_RQ_IDLE); |
Tejun Heo | 1d9bd51 | 2018-01-09 08:29:48 -0800 | [diff] [blame] | 2454 | return 0; |
| 2455 | } |
| 2456 | |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2457 | static int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, |
| 2458 | struct blk_mq_tags *tags, |
| 2459 | unsigned int hctx_idx, unsigned int depth) |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2460 | { |
| 2461 | unsigned int i, j, entries_per_page, max_order = 4; |
| 2462 | size_t rq_size, left; |
Shaohua Li | 59f082e | 2017-02-01 09:53:14 -0800 | [diff] [blame] | 2463 | int node; |
| 2464 | |
Dongli Zhang | 7d76f85 | 2019-02-27 21:35:01 +0800 | [diff] [blame] | 2465 | node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx); |
Shaohua Li | 59f082e | 2017-02-01 09:53:14 -0800 | [diff] [blame] | 2466 | if (node == NUMA_NO_NODE) |
| 2467 | node = set->numa_node; |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2468 | |
| 2469 | INIT_LIST_HEAD(&tags->page_list); |
| 2470 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2471 | /* |
| 2472 | * rq_size is the size of the request plus driver payload, rounded |
| 2473 | * to the cacheline size |
| 2474 | */ |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2475 | rq_size = round_up(sizeof(struct request) + set->cmd_size, |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2476 | cache_line_size()); |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2477 | left = rq_size * depth; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2478 | |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2479 | for (i = 0; i < depth; ) { |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2480 | int this_order = max_order; |
| 2481 | struct page *page; |
| 2482 | int to_do; |
| 2483 | void *p; |
| 2484 | |
Bartlomiej Zolnierkiewicz | b3a834b | 2016-05-16 09:54:47 -0600 | [diff] [blame] | 2485 | while (this_order && left < order_to_size(this_order - 1)) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2486 | this_order--; |
| 2487 | |
| 2488 | do { |
Shaohua Li | 59f082e | 2017-02-01 09:53:14 -0800 | [diff] [blame] | 2489 | page = alloc_pages_node(node, |
Gabriel Krisman Bertazi | 36e1f3d1 | 2016-12-06 13:31:44 -0200 | [diff] [blame] | 2490 | GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO, |
Jens Axboe | a516440 | 2014-09-10 09:02:03 -0600 | [diff] [blame] | 2491 | this_order); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2492 | if (page) |
| 2493 | break; |
| 2494 | if (!this_order--) |
| 2495 | break; |
| 2496 | if (order_to_size(this_order) < rq_size) |
| 2497 | break; |
| 2498 | } while (1); |
| 2499 | |
| 2500 | if (!page) |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2501 | goto fail; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2502 | |
| 2503 | page->private = this_order; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2504 | list_add_tail(&page->lru, &tags->page_list); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2505 | |
| 2506 | p = page_address(page); |
Catalin Marinas | f75782e | 2015-09-14 18:16:02 +0100 | [diff] [blame] | 2507 | /* |
| 2508 | * Allow kmemleak to scan these pages as they contain pointers |
| 2509 | * to additional allocations like via ops->init_request(). |
| 2510 | */ |
Gabriel Krisman Bertazi | 36e1f3d1 | 2016-12-06 13:31:44 -0200 | [diff] [blame] | 2511 | kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2512 | entries_per_page = order_to_size(this_order) / rq_size; |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2513 | to_do = min(entries_per_page, depth - i); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2514 | left -= to_do * rq_size; |
| 2515 | for (j = 0; j < to_do; j++) { |
Jens Axboe | 2af8cbe | 2017-01-13 14:39:30 -0700 | [diff] [blame] | 2516 | struct request *rq = p; |
| 2517 | |
| 2518 | tags->static_rqs[i] = rq; |
Tejun Heo | 1d9bd51 | 2018-01-09 08:29:48 -0800 | [diff] [blame] | 2519 | if (blk_mq_init_request(set, rq, hctx_idx, node)) { |
| 2520 | tags->static_rqs[i] = NULL; |
| 2521 | goto fail; |
Christoph Hellwig | e9b267d | 2014-04-15 13:59:10 -0600 | [diff] [blame] | 2522 | } |
| 2523 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2524 | p += rq_size; |
| 2525 | i++; |
| 2526 | } |
| 2527 | } |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2528 | return 0; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2529 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 2530 | fail: |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2531 | blk_mq_free_rqs(set, tags, hctx_idx); |
| 2532 | return -ENOMEM; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2533 | } |
| 2534 | |
Ming Lei | bf0beec | 2020-05-29 15:53:15 +0200 | [diff] [blame] | 2535 | struct rq_iter_data { |
| 2536 | struct blk_mq_hw_ctx *hctx; |
| 2537 | bool has_rq; |
| 2538 | }; |
| 2539 | |
| 2540 | static bool blk_mq_has_request(struct request *rq, void *data, bool reserved) |
| 2541 | { |
| 2542 | struct rq_iter_data *iter_data = data; |
| 2543 | |
| 2544 | if (rq->mq_hctx != iter_data->hctx) |
| 2545 | return true; |
| 2546 | iter_data->has_rq = true; |
| 2547 | return false; |
| 2548 | } |
| 2549 | |
| 2550 | static bool blk_mq_hctx_has_requests(struct blk_mq_hw_ctx *hctx) |
| 2551 | { |
| 2552 | struct blk_mq_tags *tags = hctx->sched_tags ? |
| 2553 | hctx->sched_tags : hctx->tags; |
| 2554 | struct rq_iter_data data = { |
| 2555 | .hctx = hctx, |
| 2556 | }; |
| 2557 | |
| 2558 | blk_mq_all_tag_iter(tags, blk_mq_has_request, &data); |
| 2559 | return data.has_rq; |
| 2560 | } |
| 2561 | |
| 2562 | static inline bool blk_mq_last_cpu_in_hctx(unsigned int cpu, |
| 2563 | struct blk_mq_hw_ctx *hctx) |
| 2564 | { |
| 2565 | if (cpumask_next_and(-1, hctx->cpumask, cpu_online_mask) != cpu) |
| 2566 | return false; |
| 2567 | if (cpumask_next_and(cpu, hctx->cpumask, cpu_online_mask) < nr_cpu_ids) |
| 2568 | return false; |
| 2569 | return true; |
| 2570 | } |
| 2571 | |
| 2572 | static int blk_mq_hctx_notify_offline(unsigned int cpu, struct hlist_node *node) |
| 2573 | { |
| 2574 | struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node, |
| 2575 | struct blk_mq_hw_ctx, cpuhp_online); |
| 2576 | |
| 2577 | if (!cpumask_test_cpu(cpu, hctx->cpumask) || |
| 2578 | !blk_mq_last_cpu_in_hctx(cpu, hctx)) |
| 2579 | return 0; |
| 2580 | |
| 2581 | /* |
| 2582 | * Prevent new request from being allocated on the current hctx. |
| 2583 | * |
| 2584 | * The smp_mb__after_atomic() Pairs with the implied barrier in |
| 2585 | * test_and_set_bit_lock in sbitmap_get(). Ensures the inactive flag is |
| 2586 | * seen once we return from the tag allocator. |
| 2587 | */ |
| 2588 | set_bit(BLK_MQ_S_INACTIVE, &hctx->state); |
| 2589 | smp_mb__after_atomic(); |
| 2590 | |
| 2591 | /* |
| 2592 | * Try to grab a reference to the queue and wait for any outstanding |
| 2593 | * requests. If we could not grab a reference the queue has been |
| 2594 | * frozen and there are no requests. |
| 2595 | */ |
| 2596 | if (percpu_ref_tryget(&hctx->queue->q_usage_counter)) { |
| 2597 | while (blk_mq_hctx_has_requests(hctx)) |
| 2598 | msleep(5); |
| 2599 | percpu_ref_put(&hctx->queue->q_usage_counter); |
| 2600 | } |
| 2601 | |
| 2602 | return 0; |
| 2603 | } |
| 2604 | |
| 2605 | static int blk_mq_hctx_notify_online(unsigned int cpu, struct hlist_node *node) |
| 2606 | { |
| 2607 | struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node, |
| 2608 | struct blk_mq_hw_ctx, cpuhp_online); |
| 2609 | |
| 2610 | if (cpumask_test_cpu(cpu, hctx->cpumask)) |
| 2611 | clear_bit(BLK_MQ_S_INACTIVE, &hctx->state); |
| 2612 | return 0; |
| 2613 | } |
| 2614 | |
Jens Axboe | e57690f | 2016-08-24 15:34:35 -0600 | [diff] [blame] | 2615 | /* |
| 2616 | * 'cpu' is going away. splice any existing rq_list entries from this |
| 2617 | * software queue to the hw queue dispatch list, and ensure that it |
| 2618 | * gets run. |
| 2619 | */ |
Thomas Gleixner | 9467f85 | 2016-09-22 08:05:17 -0600 | [diff] [blame] | 2620 | static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node) |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2621 | { |
Thomas Gleixner | 9467f85 | 2016-09-22 08:05:17 -0600 | [diff] [blame] | 2622 | struct blk_mq_hw_ctx *hctx; |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2623 | struct blk_mq_ctx *ctx; |
| 2624 | LIST_HEAD(tmp); |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 2625 | enum hctx_type type; |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2626 | |
Thomas Gleixner | 9467f85 | 2016-09-22 08:05:17 -0600 | [diff] [blame] | 2627 | hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead); |
Ming Lei | bf0beec | 2020-05-29 15:53:15 +0200 | [diff] [blame] | 2628 | if (!cpumask_test_cpu(cpu, hctx->cpumask)) |
| 2629 | return 0; |
| 2630 | |
Jens Axboe | e57690f | 2016-08-24 15:34:35 -0600 | [diff] [blame] | 2631 | ctx = __blk_mq_get_ctx(hctx->queue, cpu); |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 2632 | type = hctx->type; |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2633 | |
| 2634 | spin_lock(&ctx->lock); |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 2635 | if (!list_empty(&ctx->rq_lists[type])) { |
| 2636 | list_splice_init(&ctx->rq_lists[type], &tmp); |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2637 | blk_mq_hctx_clear_pending(hctx, ctx); |
| 2638 | } |
| 2639 | spin_unlock(&ctx->lock); |
| 2640 | |
| 2641 | if (list_empty(&tmp)) |
Thomas Gleixner | 9467f85 | 2016-09-22 08:05:17 -0600 | [diff] [blame] | 2642 | return 0; |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2643 | |
Jens Axboe | e57690f | 2016-08-24 15:34:35 -0600 | [diff] [blame] | 2644 | spin_lock(&hctx->lock); |
| 2645 | list_splice_tail_init(&tmp, &hctx->dispatch); |
| 2646 | spin_unlock(&hctx->lock); |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2647 | |
| 2648 | blk_mq_run_hw_queue(hctx, true); |
Thomas Gleixner | 9467f85 | 2016-09-22 08:05:17 -0600 | [diff] [blame] | 2649 | return 0; |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2650 | } |
| 2651 | |
Thomas Gleixner | 9467f85 | 2016-09-22 08:05:17 -0600 | [diff] [blame] | 2652 | static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx) |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2653 | { |
Ming Lei | bf0beec | 2020-05-29 15:53:15 +0200 | [diff] [blame] | 2654 | if (!(hctx->flags & BLK_MQ_F_STACKING)) |
| 2655 | cpuhp_state_remove_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE, |
| 2656 | &hctx->cpuhp_online); |
Thomas Gleixner | 9467f85 | 2016-09-22 08:05:17 -0600 | [diff] [blame] | 2657 | cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD, |
| 2658 | &hctx->cpuhp_dead); |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 2659 | } |
| 2660 | |
Ming Lei | 364b618 | 2021-05-11 23:22:36 +0800 | [diff] [blame] | 2661 | /* |
| 2662 | * Before freeing hw queue, clearing the flush request reference in |
| 2663 | * tags->rqs[] for avoiding potential UAF. |
| 2664 | */ |
| 2665 | static void blk_mq_clear_flush_rq_mapping(struct blk_mq_tags *tags, |
| 2666 | unsigned int queue_depth, struct request *flush_rq) |
| 2667 | { |
| 2668 | int i; |
| 2669 | unsigned long flags; |
| 2670 | |
| 2671 | /* The hw queue may not be mapped yet */ |
| 2672 | if (!tags) |
| 2673 | return; |
| 2674 | |
| 2675 | WARN_ON_ONCE(refcount_read(&flush_rq->ref) != 0); |
| 2676 | |
| 2677 | for (i = 0; i < queue_depth; i++) |
| 2678 | cmpxchg(&tags->rqs[i], flush_rq, NULL); |
| 2679 | |
| 2680 | /* |
| 2681 | * Wait until all pending iteration is done. |
| 2682 | * |
| 2683 | * Request reference is cleared and it is guaranteed to be observed |
| 2684 | * after the ->lock is released. |
| 2685 | */ |
| 2686 | spin_lock_irqsave(&tags->lock, flags); |
| 2687 | spin_unlock_irqrestore(&tags->lock, flags); |
| 2688 | } |
| 2689 | |
Ming Lei | c3b4afc | 2015-06-04 22:25:04 +0800 | [diff] [blame] | 2690 | /* hctx->ctxs will be freed in queue's release handler */ |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2691 | static void blk_mq_exit_hctx(struct request_queue *q, |
| 2692 | struct blk_mq_tag_set *set, |
| 2693 | struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx) |
| 2694 | { |
Ming Lei | 364b618 | 2021-05-11 23:22:36 +0800 | [diff] [blame] | 2695 | struct request *flush_rq = hctx->fq->flush_rq; |
| 2696 | |
Ming Lei | 8ab0b7d | 2018-01-09 21:28:29 +0800 | [diff] [blame] | 2697 | if (blk_mq_hw_queue_mapped(hctx)) |
| 2698 | blk_mq_tag_idle(hctx); |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2699 | |
Ming Lei | 364b618 | 2021-05-11 23:22:36 +0800 | [diff] [blame] | 2700 | blk_mq_clear_flush_rq_mapping(set->tags[hctx_idx], |
| 2701 | set->queue_depth, flush_rq); |
Ming Lei | f70ced0 | 2014-09-25 23:23:47 +0800 | [diff] [blame] | 2702 | if (set->ops->exit_request) |
Ming Lei | 364b618 | 2021-05-11 23:22:36 +0800 | [diff] [blame] | 2703 | set->ops->exit_request(set, flush_rq, hctx_idx); |
Ming Lei | f70ced0 | 2014-09-25 23:23:47 +0800 | [diff] [blame] | 2704 | |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2705 | if (set->ops->exit_hctx) |
| 2706 | set->ops->exit_hctx(hctx, hctx_idx); |
| 2707 | |
Thomas Gleixner | 9467f85 | 2016-09-22 08:05:17 -0600 | [diff] [blame] | 2708 | blk_mq_remove_cpuhp(hctx); |
Ming Lei | 2f8f133 | 2019-04-30 09:52:27 +0800 | [diff] [blame] | 2709 | |
| 2710 | spin_lock(&q->unused_hctx_lock); |
| 2711 | list_add(&hctx->hctx_list, &q->unused_hctx_list); |
| 2712 | spin_unlock(&q->unused_hctx_lock); |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2713 | } |
| 2714 | |
Ming Lei | 624dbe4 | 2014-05-27 23:35:13 +0800 | [diff] [blame] | 2715 | static void blk_mq_exit_hw_queues(struct request_queue *q, |
| 2716 | struct blk_mq_tag_set *set, int nr_queue) |
| 2717 | { |
| 2718 | struct blk_mq_hw_ctx *hctx; |
| 2719 | unsigned int i; |
| 2720 | |
| 2721 | queue_for_each_hw_ctx(q, hctx, i) { |
| 2722 | if (i == nr_queue) |
| 2723 | break; |
Jianchao Wang | 477e19d | 2018-10-12 18:07:25 +0800 | [diff] [blame] | 2724 | blk_mq_debugfs_unregister_hctx(hctx); |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2725 | blk_mq_exit_hctx(q, set, hctx, i); |
Ming Lei | 624dbe4 | 2014-05-27 23:35:13 +0800 | [diff] [blame] | 2726 | } |
Ming Lei | 624dbe4 | 2014-05-27 23:35:13 +0800 | [diff] [blame] | 2727 | } |
| 2728 | |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2729 | static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set) |
| 2730 | { |
| 2731 | int hw_ctx_size = sizeof(struct blk_mq_hw_ctx); |
| 2732 | |
| 2733 | BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu), |
| 2734 | __alignof__(struct blk_mq_hw_ctx)) != |
| 2735 | sizeof(struct blk_mq_hw_ctx)); |
| 2736 | |
| 2737 | if (tag_set->flags & BLK_MQ_F_BLOCKING) |
| 2738 | hw_ctx_size += sizeof(struct srcu_struct); |
| 2739 | |
| 2740 | return hw_ctx_size; |
| 2741 | } |
| 2742 | |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2743 | static int blk_mq_init_hctx(struct request_queue *q, |
| 2744 | struct blk_mq_tag_set *set, |
| 2745 | struct blk_mq_hw_ctx *hctx, unsigned hctx_idx) |
| 2746 | { |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2747 | hctx->queue_num = hctx_idx; |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2748 | |
Ming Lei | bf0beec | 2020-05-29 15:53:15 +0200 | [diff] [blame] | 2749 | if (!(hctx->flags & BLK_MQ_F_STACKING)) |
| 2750 | cpuhp_state_add_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE, |
| 2751 | &hctx->cpuhp_online); |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2752 | cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead); |
| 2753 | |
| 2754 | hctx->tags = set->tags[hctx_idx]; |
| 2755 | |
| 2756 | if (set->ops->init_hctx && |
| 2757 | set->ops->init_hctx(hctx, set->driver_data, hctx_idx)) |
| 2758 | goto unregister_cpu_notifier; |
| 2759 | |
| 2760 | if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx, |
| 2761 | hctx->numa_node)) |
| 2762 | goto exit_hctx; |
| 2763 | return 0; |
| 2764 | |
| 2765 | exit_hctx: |
| 2766 | if (set->ops->exit_hctx) |
| 2767 | set->ops->exit_hctx(hctx, hctx_idx); |
| 2768 | unregister_cpu_notifier: |
| 2769 | blk_mq_remove_cpuhp(hctx); |
| 2770 | return -1; |
| 2771 | } |
| 2772 | |
| 2773 | static struct blk_mq_hw_ctx * |
| 2774 | blk_mq_alloc_hctx(struct request_queue *q, struct blk_mq_tag_set *set, |
| 2775 | int node) |
| 2776 | { |
| 2777 | struct blk_mq_hw_ctx *hctx; |
| 2778 | gfp_t gfp = GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY; |
| 2779 | |
| 2780 | hctx = kzalloc_node(blk_mq_hw_ctx_size(set), gfp, node); |
| 2781 | if (!hctx) |
| 2782 | goto fail_alloc_hctx; |
| 2783 | |
| 2784 | if (!zalloc_cpumask_var_node(&hctx->cpumask, gfp, node)) |
| 2785 | goto free_hctx; |
| 2786 | |
| 2787 | atomic_set(&hctx->nr_active, 0); |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2788 | if (node == NUMA_NO_NODE) |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2789 | node = set->numa_node; |
| 2790 | hctx->numa_node = node; |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2791 | |
Jens Axboe | 9f99373 | 2017-04-10 09:54:54 -0600 | [diff] [blame] | 2792 | INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn); |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2793 | spin_lock_init(&hctx->lock); |
| 2794 | INIT_LIST_HEAD(&hctx->dispatch); |
| 2795 | hctx->queue = q; |
Ming Lei | 51db1c3 | 2020-08-19 23:20:19 +0800 | [diff] [blame] | 2796 | hctx->flags = set->flags & ~BLK_MQ_F_TAG_QUEUE_SHARED; |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2797 | |
Ming Lei | 2f8f133 | 2019-04-30 09:52:27 +0800 | [diff] [blame] | 2798 | INIT_LIST_HEAD(&hctx->hctx_list); |
| 2799 | |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2800 | /* |
| 2801 | * Allocate space for all possible cpus to avoid allocation at |
| 2802 | * runtime |
| 2803 | */ |
Johannes Thumshirn | d904bfa | 2017-11-15 17:32:33 -0800 | [diff] [blame] | 2804 | hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *), |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2805 | gfp, node); |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2806 | if (!hctx->ctxs) |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2807 | goto free_cpumask; |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2808 | |
Jianchao Wang | 5b20285 | 2018-10-12 18:07:26 +0800 | [diff] [blame] | 2809 | if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), |
Ming Lei | c548e62 | 2021-01-22 10:33:08 +0800 | [diff] [blame] | 2810 | gfp, node, false, false)) |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2811 | goto free_ctxs; |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2812 | hctx->nr_ctx = 0; |
| 2813 | |
Ming Lei | 5815839b | 2018-06-25 19:31:47 +0800 | [diff] [blame] | 2814 | spin_lock_init(&hctx->dispatch_wait_lock); |
Jens Axboe | eb619fd | 2017-11-09 08:32:43 -0700 | [diff] [blame] | 2815 | init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake); |
| 2816 | INIT_LIST_HEAD(&hctx->dispatch_wait.entry); |
| 2817 | |
Guoqing Jiang | 754a157 | 2020-03-09 22:41:37 +0100 | [diff] [blame] | 2818 | hctx->fq = blk_alloc_flush_queue(hctx->numa_node, set->cmd_size, gfp); |
Ming Lei | f70ced0 | 2014-09-25 23:23:47 +0800 | [diff] [blame] | 2819 | if (!hctx->fq) |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2820 | goto free_bitmap; |
Ming Lei | f70ced0 | 2014-09-25 23:23:47 +0800 | [diff] [blame] | 2821 | |
Bart Van Assche | 6a83e74 | 2016-11-02 10:09:51 -0600 | [diff] [blame] | 2822 | if (hctx->flags & BLK_MQ_F_BLOCKING) |
Tejun Heo | 05707b6 | 2018-01-09 08:29:53 -0800 | [diff] [blame] | 2823 | init_srcu_struct(hctx->srcu); |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2824 | blk_mq_hctx_kobj_init(hctx); |
Bart Van Assche | 6a83e74 | 2016-11-02 10:09:51 -0600 | [diff] [blame] | 2825 | |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2826 | return hctx; |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2827 | |
| 2828 | free_bitmap: |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 2829 | sbitmap_free(&hctx->ctx_map); |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2830 | free_ctxs: |
| 2831 | kfree(hctx->ctxs); |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 2832 | free_cpumask: |
| 2833 | free_cpumask_var(hctx->cpumask); |
| 2834 | free_hctx: |
| 2835 | kfree(hctx); |
| 2836 | fail_alloc_hctx: |
| 2837 | return NULL; |
Ming Lei | 08e98fc | 2014-09-25 23:23:38 +0800 | [diff] [blame] | 2838 | } |
| 2839 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2840 | static void blk_mq_init_cpu_queues(struct request_queue *q, |
| 2841 | unsigned int nr_hw_queues) |
| 2842 | { |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 2843 | struct blk_mq_tag_set *set = q->tag_set; |
| 2844 | unsigned int i, j; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2845 | |
| 2846 | for_each_possible_cpu(i) { |
| 2847 | struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i); |
| 2848 | struct blk_mq_hw_ctx *hctx; |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 2849 | int k; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2850 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2851 | __ctx->cpu = i; |
| 2852 | spin_lock_init(&__ctx->lock); |
Ming Lei | c16d6b5 | 2018-12-17 08:44:05 -0700 | [diff] [blame] | 2853 | for (k = HCTX_TYPE_DEFAULT; k < HCTX_MAX_TYPES; k++) |
| 2854 | INIT_LIST_HEAD(&__ctx->rq_lists[k]); |
| 2855 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2856 | __ctx->queue = q; |
| 2857 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2858 | /* |
| 2859 | * Set local node, IFF we have more than one hw queue. If |
| 2860 | * not, we remain on the home node of the device |
| 2861 | */ |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 2862 | for (j = 0; j < set->nr_maps; j++) { |
| 2863 | hctx = blk_mq_map_queue_type(q, j, i); |
| 2864 | if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE) |
Xianting Tian | 576e85c | 2020-10-19 16:20:47 +0800 | [diff] [blame] | 2865 | hctx->numa_node = cpu_to_node(i); |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 2866 | } |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2867 | } |
| 2868 | } |
| 2869 | |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2870 | struct blk_mq_tags *blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set, |
| 2871 | unsigned int hctx_idx, |
| 2872 | unsigned int depth) |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2873 | { |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2874 | struct blk_mq_tags *tags; |
| 2875 | int ret; |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2876 | |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2877 | tags = blk_mq_alloc_rq_map(set, hctx_idx, depth, set->reserved_tags); |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2878 | if (!tags) |
| 2879 | return NULL; |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2880 | |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2881 | ret = blk_mq_alloc_rqs(set, tags, hctx_idx, depth); |
| 2882 | if (ret) { |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2883 | blk_mq_free_rq_map(tags); |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2884 | return NULL; |
| 2885 | } |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2886 | |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2887 | return tags; |
| 2888 | } |
| 2889 | |
| 2890 | static bool __blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set, |
| 2891 | int hctx_idx) |
| 2892 | { |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 2893 | if (blk_mq_is_shared_tags(set->flags)) { |
| 2894 | set->tags[hctx_idx] = set->shared_tags; |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2895 | |
| 2896 | return true; |
| 2897 | } |
| 2898 | |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2899 | set->tags[hctx_idx] = blk_mq_alloc_map_and_rqs(set, hctx_idx, |
| 2900 | set->queue_depth); |
| 2901 | |
| 2902 | return set->tags[hctx_idx]; |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2903 | } |
| 2904 | |
John Garry | 645db34 | 2021-10-05 18:23:36 +0800 | [diff] [blame] | 2905 | void blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set, |
| 2906 | struct blk_mq_tags *tags, |
| 2907 | unsigned int hctx_idx) |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2908 | { |
John Garry | 645db34 | 2021-10-05 18:23:36 +0800 | [diff] [blame] | 2909 | if (tags) { |
| 2910 | blk_mq_free_rqs(set, tags, hctx_idx); |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2911 | blk_mq_free_rq_map(tags); |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 2912 | } |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 2913 | } |
| 2914 | |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2915 | static void __blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set, |
| 2916 | unsigned int hctx_idx) |
| 2917 | { |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 2918 | if (!blk_mq_is_shared_tags(set->flags)) |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 2919 | blk_mq_free_map_and_rqs(set, set->tags[hctx_idx], hctx_idx); |
| 2920 | |
| 2921 | set->tags[hctx_idx] = NULL; |
| 2922 | } |
| 2923 | |
Christoph Hellwig | 4b855ad | 2017-06-26 12:20:57 +0200 | [diff] [blame] | 2924 | static void blk_mq_map_swqueue(struct request_queue *q) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2925 | { |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 2926 | unsigned int i, j, hctx_idx; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2927 | struct blk_mq_hw_ctx *hctx; |
| 2928 | struct blk_mq_ctx *ctx; |
Ming Lei | 2a34c08 | 2015-04-21 10:00:20 +0800 | [diff] [blame] | 2929 | struct blk_mq_tag_set *set = q->tag_set; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2930 | |
| 2931 | queue_for_each_hw_ctx(q, hctx, i) { |
Jens Axboe | e4043dc | 2014-04-09 10:18:23 -0600 | [diff] [blame] | 2932 | cpumask_clear(hctx->cpumask); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2933 | hctx->nr_ctx = 0; |
huhai | d416c92 | 2018-05-18 08:32:30 -0600 | [diff] [blame] | 2934 | hctx->dispatch_from = NULL; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2935 | } |
| 2936 | |
| 2937 | /* |
Christoph Hellwig | 4b855ad | 2017-06-26 12:20:57 +0200 | [diff] [blame] | 2938 | * Map software to hardware queues. |
Ming Lei | 4412efe | 2018-04-25 04:01:44 +0800 | [diff] [blame] | 2939 | * |
| 2940 | * If the cpu isn't present, the cpu is mapped to first hctx. |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2941 | */ |
Christoph Hellwig | 20e4d813 | 2018-01-12 10:53:06 +0800 | [diff] [blame] | 2942 | for_each_possible_cpu(i) { |
Ming Lei | 4412efe | 2018-04-25 04:01:44 +0800 | [diff] [blame] | 2943 | |
Thomas Gleixner | 897bb0c | 2016-03-19 11:30:33 +0100 | [diff] [blame] | 2944 | ctx = per_cpu_ptr(q->queue_ctx, i); |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 2945 | for (j = 0; j < set->nr_maps; j++) { |
Jianchao Wang | bb94aea | 2019-01-24 18:25:33 +0800 | [diff] [blame] | 2946 | if (!set->map[j].nr_queues) { |
| 2947 | ctx->hctxs[j] = blk_mq_map_queue_type(q, |
| 2948 | HCTX_TYPE_DEFAULT, i); |
Ming Lei | e5edd5f | 2018-12-18 01:28:56 +0800 | [diff] [blame] | 2949 | continue; |
Jianchao Wang | bb94aea | 2019-01-24 18:25:33 +0800 | [diff] [blame] | 2950 | } |
Ming Lei | fd68987 | 2020-05-07 21:04:08 +0800 | [diff] [blame] | 2951 | hctx_idx = set->map[j].mq_map[i]; |
| 2952 | /* unmapped hw queue can be remapped after CPU topo changed */ |
| 2953 | if (!set->tags[hctx_idx] && |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 2954 | !__blk_mq_alloc_map_and_rqs(set, hctx_idx)) { |
Ming Lei | fd68987 | 2020-05-07 21:04:08 +0800 | [diff] [blame] | 2955 | /* |
| 2956 | * If tags initialization fail for some hctx, |
| 2957 | * that hctx won't be brought online. In this |
| 2958 | * case, remap the current ctx to hctx[0] which |
| 2959 | * is guaranteed to always have tags allocated |
| 2960 | */ |
| 2961 | set->map[j].mq_map[i] = 0; |
| 2962 | } |
Ming Lei | e5edd5f | 2018-12-18 01:28:56 +0800 | [diff] [blame] | 2963 | |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 2964 | hctx = blk_mq_map_queue_type(q, j, i); |
Jianchao Wang | 8ccdf4a | 2019-01-24 18:25:32 +0800 | [diff] [blame] | 2965 | ctx->hctxs[j] = hctx; |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 2966 | /* |
| 2967 | * If the CPU is already set in the mask, then we've |
| 2968 | * mapped this one already. This can happen if |
| 2969 | * devices share queues across queue maps. |
| 2970 | */ |
| 2971 | if (cpumask_test_cpu(i, hctx->cpumask)) |
| 2972 | continue; |
| 2973 | |
| 2974 | cpumask_set_cpu(i, hctx->cpumask); |
| 2975 | hctx->type = j; |
| 2976 | ctx->index_hw[hctx->type] = hctx->nr_ctx; |
| 2977 | hctx->ctxs[hctx->nr_ctx++] = ctx; |
| 2978 | |
| 2979 | /* |
| 2980 | * If the nr_ctx type overflows, we have exceeded the |
| 2981 | * amount of sw queues we can support. |
| 2982 | */ |
| 2983 | BUG_ON(!hctx->nr_ctx); |
| 2984 | } |
Jianchao Wang | bb94aea | 2019-01-24 18:25:33 +0800 | [diff] [blame] | 2985 | |
| 2986 | for (; j < HCTX_MAX_TYPES; j++) |
| 2987 | ctx->hctxs[j] = blk_mq_map_queue_type(q, |
| 2988 | HCTX_TYPE_DEFAULT, i); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 2989 | } |
Jens Axboe | 506e931 | 2014-05-07 10:26:44 -0600 | [diff] [blame] | 2990 | |
| 2991 | queue_for_each_hw_ctx(q, hctx, i) { |
Ming Lei | 4412efe | 2018-04-25 04:01:44 +0800 | [diff] [blame] | 2992 | /* |
| 2993 | * If no software queues are mapped to this hardware queue, |
| 2994 | * disable it and free the request entries. |
| 2995 | */ |
| 2996 | if (!hctx->nr_ctx) { |
| 2997 | /* Never unmap queue 0. We need it as a |
| 2998 | * fallback in case of a new remap fails |
| 2999 | * allocation |
| 3000 | */ |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 3001 | if (i) |
| 3002 | __blk_mq_free_map_and_rqs(set, i); |
Ming Lei | 4412efe | 2018-04-25 04:01:44 +0800 | [diff] [blame] | 3003 | |
| 3004 | hctx->tags = NULL; |
| 3005 | continue; |
| 3006 | } |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 3007 | |
Ming Lei | 2a34c08 | 2015-04-21 10:00:20 +0800 | [diff] [blame] | 3008 | hctx->tags = set->tags[i]; |
| 3009 | WARN_ON(!hctx->tags); |
| 3010 | |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 3011 | /* |
Chong Yuan | 889fa31 | 2015-04-15 11:39:29 -0600 | [diff] [blame] | 3012 | * Set the map size to the number of mapped software queues. |
| 3013 | * This is more accurate and more efficient than looping |
| 3014 | * over all possibly mapped software queues. |
| 3015 | */ |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 3016 | sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx); |
Chong Yuan | 889fa31 | 2015-04-15 11:39:29 -0600 | [diff] [blame] | 3017 | |
| 3018 | /* |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 3019 | * Initialize batch roundrobin counts |
| 3020 | */ |
Ming Lei | f82ddf1 | 2018-04-08 17:48:10 +0800 | [diff] [blame] | 3021 | hctx->next_cpu = blk_mq_first_mapped_cpu(hctx); |
Jens Axboe | 506e931 | 2014-05-07 10:26:44 -0600 | [diff] [blame] | 3022 | hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH; |
| 3023 | } |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3024 | } |
| 3025 | |
Jens Axboe | 8e8320c | 2017-06-20 17:56:13 -0600 | [diff] [blame] | 3026 | /* |
| 3027 | * Caller needs to ensure that we're either frozen/quiesced, or that |
| 3028 | * the queue isn't live yet. |
| 3029 | */ |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3030 | static void queue_set_hctx_shared(struct request_queue *q, bool shared) |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3031 | { |
| 3032 | struct blk_mq_hw_ctx *hctx; |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3033 | int i; |
| 3034 | |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3035 | queue_for_each_hw_ctx(q, hctx, i) { |
Yu Kuai | 454bb67 | 2021-07-31 14:21:30 +0800 | [diff] [blame] | 3036 | if (shared) { |
Ming Lei | 51db1c3 | 2020-08-19 23:20:19 +0800 | [diff] [blame] | 3037 | hctx->flags |= BLK_MQ_F_TAG_QUEUE_SHARED; |
Yu Kuai | 454bb67 | 2021-07-31 14:21:30 +0800 | [diff] [blame] | 3038 | } else { |
| 3039 | blk_mq_tag_idle(hctx); |
Ming Lei | 51db1c3 | 2020-08-19 23:20:19 +0800 | [diff] [blame] | 3040 | hctx->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED; |
Yu Kuai | 454bb67 | 2021-07-31 14:21:30 +0800 | [diff] [blame] | 3041 | } |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3042 | } |
| 3043 | } |
| 3044 | |
Hannes Reinecke | 655ac30 | 2020-08-19 23:20:20 +0800 | [diff] [blame] | 3045 | static void blk_mq_update_tag_set_shared(struct blk_mq_tag_set *set, |
| 3046 | bool shared) |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3047 | { |
| 3048 | struct request_queue *q; |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3049 | |
Bart Van Assche | 705cda9 | 2017-04-07 11:16:49 -0700 | [diff] [blame] | 3050 | lockdep_assert_held(&set->tag_list_lock); |
| 3051 | |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3052 | list_for_each_entry(q, &set->tag_list, tag_set_list) { |
| 3053 | blk_mq_freeze_queue(q); |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3054 | queue_set_hctx_shared(q, shared); |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3055 | blk_mq_unfreeze_queue(q); |
| 3056 | } |
| 3057 | } |
| 3058 | |
| 3059 | static void blk_mq_del_queue_tag_set(struct request_queue *q) |
| 3060 | { |
| 3061 | struct blk_mq_tag_set *set = q->tag_set; |
| 3062 | |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3063 | mutex_lock(&set->tag_list_lock); |
Daniel Wagner | 08c875c | 2020-07-28 15:29:51 +0200 | [diff] [blame] | 3064 | list_del(&q->tag_set_list); |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3065 | if (list_is_singular(&set->tag_list)) { |
| 3066 | /* just transitioned to unshared */ |
Ming Lei | 51db1c3 | 2020-08-19 23:20:19 +0800 | [diff] [blame] | 3067 | set->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED; |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3068 | /* update existing queue */ |
Hannes Reinecke | 655ac30 | 2020-08-19 23:20:20 +0800 | [diff] [blame] | 3069 | blk_mq_update_tag_set_shared(set, false); |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3070 | } |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3071 | mutex_unlock(&set->tag_list_lock); |
Roman Pen | a347c7a | 2018-06-10 22:38:24 +0200 | [diff] [blame] | 3072 | INIT_LIST_HEAD(&q->tag_set_list); |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3073 | } |
| 3074 | |
| 3075 | static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set, |
| 3076 | struct request_queue *q) |
| 3077 | { |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3078 | mutex_lock(&set->tag_list_lock); |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3079 | |
Jens Axboe | ff821d2 | 2017-11-10 22:05:12 -0700 | [diff] [blame] | 3080 | /* |
| 3081 | * Check to see if we're transitioning to shared (from 1 to 2 queues). |
| 3082 | */ |
| 3083 | if (!list_empty(&set->tag_list) && |
Ming Lei | 51db1c3 | 2020-08-19 23:20:19 +0800 | [diff] [blame] | 3084 | !(set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) { |
| 3085 | set->flags |= BLK_MQ_F_TAG_QUEUE_SHARED; |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3086 | /* update existing queue */ |
Hannes Reinecke | 655ac30 | 2020-08-19 23:20:20 +0800 | [diff] [blame] | 3087 | blk_mq_update_tag_set_shared(set, true); |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3088 | } |
Ming Lei | 51db1c3 | 2020-08-19 23:20:19 +0800 | [diff] [blame] | 3089 | if (set->flags & BLK_MQ_F_TAG_QUEUE_SHARED) |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3090 | queue_set_hctx_shared(q, true); |
Daniel Wagner | 08c875c | 2020-07-28 15:29:51 +0200 | [diff] [blame] | 3091 | list_add_tail(&q->tag_set_list, &set->tag_list); |
Jeff Moyer | 2404e60 | 2015-11-03 10:40:06 -0500 | [diff] [blame] | 3092 | |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3093 | mutex_unlock(&set->tag_list_lock); |
| 3094 | } |
| 3095 | |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 3096 | /* All allocations will be freed in release handler of q->mq_kobj */ |
| 3097 | static int blk_mq_alloc_ctxs(struct request_queue *q) |
| 3098 | { |
| 3099 | struct blk_mq_ctxs *ctxs; |
| 3100 | int cpu; |
| 3101 | |
| 3102 | ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL); |
| 3103 | if (!ctxs) |
| 3104 | return -ENOMEM; |
| 3105 | |
| 3106 | ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx); |
| 3107 | if (!ctxs->queue_ctx) |
| 3108 | goto fail; |
| 3109 | |
| 3110 | for_each_possible_cpu(cpu) { |
| 3111 | struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu); |
| 3112 | ctx->ctxs = ctxs; |
| 3113 | } |
| 3114 | |
| 3115 | q->mq_kobj = &ctxs->kobj; |
| 3116 | q->queue_ctx = ctxs->queue_ctx; |
| 3117 | |
| 3118 | return 0; |
| 3119 | fail: |
| 3120 | kfree(ctxs); |
| 3121 | return -ENOMEM; |
| 3122 | } |
| 3123 | |
Ming Lei | e09aae7 | 2015-01-29 20:17:27 +0800 | [diff] [blame] | 3124 | /* |
| 3125 | * It is the actual release handler for mq, but we do it from |
| 3126 | * request queue's release handler for avoiding use-after-free |
| 3127 | * and headache because q->mq_kobj shouldn't have been introduced, |
| 3128 | * but we can't group ctx/kctx kobj without it. |
| 3129 | */ |
| 3130 | void blk_mq_release(struct request_queue *q) |
| 3131 | { |
Ming Lei | 2f8f133 | 2019-04-30 09:52:27 +0800 | [diff] [blame] | 3132 | struct blk_mq_hw_ctx *hctx, *next; |
| 3133 | int i; |
Ming Lei | e09aae7 | 2015-01-29 20:17:27 +0800 | [diff] [blame] | 3134 | |
Ming Lei | 2f8f133 | 2019-04-30 09:52:27 +0800 | [diff] [blame] | 3135 | queue_for_each_hw_ctx(q, hctx, i) |
| 3136 | WARN_ON_ONCE(hctx && list_empty(&hctx->hctx_list)); |
| 3137 | |
| 3138 | /* all hctx are in .unused_hctx_list now */ |
| 3139 | list_for_each_entry_safe(hctx, next, &q->unused_hctx_list, hctx_list) { |
| 3140 | list_del_init(&hctx->hctx_list); |
Ming Lei | 6c8b232 | 2017-02-22 18:14:01 +0800 | [diff] [blame] | 3141 | kobject_put(&hctx->kobj); |
Ming Lei | c3b4afc | 2015-06-04 22:25:04 +0800 | [diff] [blame] | 3142 | } |
Ming Lei | e09aae7 | 2015-01-29 20:17:27 +0800 | [diff] [blame] | 3143 | |
| 3144 | kfree(q->queue_hw_ctx); |
| 3145 | |
Ming Lei | 7ea5fe3 | 2017-02-22 18:14:00 +0800 | [diff] [blame] | 3146 | /* |
| 3147 | * release .mq_kobj and sw queue's kobject now because |
| 3148 | * both share lifetime with request queue. |
| 3149 | */ |
| 3150 | blk_mq_sysfs_deinit(q); |
Ming Lei | e09aae7 | 2015-01-29 20:17:27 +0800 | [diff] [blame] | 3151 | } |
| 3152 | |
Christoph Hellwig | 5ec780a | 2021-06-24 10:10:12 +0200 | [diff] [blame] | 3153 | static struct request_queue *blk_mq_init_queue_data(struct blk_mq_tag_set *set, |
Christoph Hellwig | 2f227bb | 2020-03-27 09:30:08 +0100 | [diff] [blame] | 3154 | void *queuedata) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3155 | { |
Christoph Hellwig | 26a9750 | 2021-06-02 09:53:17 +0300 | [diff] [blame] | 3156 | struct request_queue *q; |
| 3157 | int ret; |
Mike Snitzer | b62c21b | 2015-03-12 23:56:02 -0400 | [diff] [blame] | 3158 | |
Christoph Hellwig | 26a9750 | 2021-06-02 09:53:17 +0300 | [diff] [blame] | 3159 | q = blk_alloc_queue(set->numa_node); |
| 3160 | if (!q) |
Mike Snitzer | b62c21b | 2015-03-12 23:56:02 -0400 | [diff] [blame] | 3161 | return ERR_PTR(-ENOMEM); |
Christoph Hellwig | 26a9750 | 2021-06-02 09:53:17 +0300 | [diff] [blame] | 3162 | q->queuedata = queuedata; |
| 3163 | ret = blk_mq_init_allocated_queue(set, q); |
| 3164 | if (ret) { |
| 3165 | blk_cleanup_queue(q); |
| 3166 | return ERR_PTR(ret); |
| 3167 | } |
Mike Snitzer | b62c21b | 2015-03-12 23:56:02 -0400 | [diff] [blame] | 3168 | return q; |
| 3169 | } |
Christoph Hellwig | 2f227bb | 2020-03-27 09:30:08 +0100 | [diff] [blame] | 3170 | |
| 3171 | struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set) |
| 3172 | { |
| 3173 | return blk_mq_init_queue_data(set, NULL); |
| 3174 | } |
Mike Snitzer | b62c21b | 2015-03-12 23:56:02 -0400 | [diff] [blame] | 3175 | EXPORT_SYMBOL(blk_mq_init_queue); |
| 3176 | |
Christoph Hellwig | 4dcc487 | 2021-08-16 15:19:05 +0200 | [diff] [blame] | 3177 | struct gendisk *__blk_mq_alloc_disk(struct blk_mq_tag_set *set, void *queuedata, |
| 3178 | struct lock_class_key *lkclass) |
Jens Axboe | 9316a9e | 2018-10-15 08:40:37 -0600 | [diff] [blame] | 3179 | { |
| 3180 | struct request_queue *q; |
Christoph Hellwig | b461dfc | 2021-06-02 09:53:18 +0300 | [diff] [blame] | 3181 | struct gendisk *disk; |
Jens Axboe | 9316a9e | 2018-10-15 08:40:37 -0600 | [diff] [blame] | 3182 | |
Christoph Hellwig | b461dfc | 2021-06-02 09:53:18 +0300 | [diff] [blame] | 3183 | q = blk_mq_init_queue_data(set, queuedata); |
| 3184 | if (IS_ERR(q)) |
| 3185 | return ERR_CAST(q); |
Jens Axboe | 9316a9e | 2018-10-15 08:40:37 -0600 | [diff] [blame] | 3186 | |
Christoph Hellwig | 4a1fa41 | 2021-08-16 15:19:08 +0200 | [diff] [blame] | 3187 | disk = __alloc_disk_node(q, set->numa_node, lkclass); |
Christoph Hellwig | b461dfc | 2021-06-02 09:53:18 +0300 | [diff] [blame] | 3188 | if (!disk) { |
| 3189 | blk_cleanup_queue(q); |
| 3190 | return ERR_PTR(-ENOMEM); |
Jens Axboe | 9316a9e | 2018-10-15 08:40:37 -0600 | [diff] [blame] | 3191 | } |
Christoph Hellwig | b461dfc | 2021-06-02 09:53:18 +0300 | [diff] [blame] | 3192 | return disk; |
Jens Axboe | 9316a9e | 2018-10-15 08:40:37 -0600 | [diff] [blame] | 3193 | } |
Christoph Hellwig | b461dfc | 2021-06-02 09:53:18 +0300 | [diff] [blame] | 3194 | EXPORT_SYMBOL(__blk_mq_alloc_disk); |
Jens Axboe | 9316a9e | 2018-10-15 08:40:37 -0600 | [diff] [blame] | 3195 | |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3196 | static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx( |
| 3197 | struct blk_mq_tag_set *set, struct request_queue *q, |
| 3198 | int hctx_idx, int node) |
| 3199 | { |
Ming Lei | 2f8f133 | 2019-04-30 09:52:27 +0800 | [diff] [blame] | 3200 | struct blk_mq_hw_ctx *hctx = NULL, *tmp; |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3201 | |
Ming Lei | 2f8f133 | 2019-04-30 09:52:27 +0800 | [diff] [blame] | 3202 | /* reuse dead hctx first */ |
| 3203 | spin_lock(&q->unused_hctx_lock); |
| 3204 | list_for_each_entry(tmp, &q->unused_hctx_list, hctx_list) { |
| 3205 | if (tmp->numa_node == node) { |
| 3206 | hctx = tmp; |
| 3207 | break; |
| 3208 | } |
| 3209 | } |
| 3210 | if (hctx) |
| 3211 | list_del_init(&hctx->hctx_list); |
| 3212 | spin_unlock(&q->unused_hctx_lock); |
| 3213 | |
| 3214 | if (!hctx) |
| 3215 | hctx = blk_mq_alloc_hctx(q, set, node); |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3216 | if (!hctx) |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 3217 | goto fail; |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3218 | |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 3219 | if (blk_mq_init_hctx(q, set, hctx, hctx_idx)) |
| 3220 | goto free_hctx; |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3221 | |
| 3222 | return hctx; |
Ming Lei | 7c6c5b7 | 2019-04-30 09:52:26 +0800 | [diff] [blame] | 3223 | |
| 3224 | free_hctx: |
| 3225 | kobject_put(&hctx->kobj); |
| 3226 | fail: |
| 3227 | return NULL; |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3228 | } |
| 3229 | |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3230 | static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set, |
| 3231 | struct request_queue *q) |
Mike Snitzer | b62c21b | 2015-03-12 23:56:02 -0400 | [diff] [blame] | 3232 | { |
Jianchao Wang | e01ad46 | 2018-10-12 18:07:28 +0800 | [diff] [blame] | 3233 | int i, j, end; |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3234 | struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3235 | |
Bart Van Assche | ac0d6b9 | 2019-10-25 09:50:09 -0700 | [diff] [blame] | 3236 | if (q->nr_hw_queues < set->nr_hw_queues) { |
| 3237 | struct blk_mq_hw_ctx **new_hctxs; |
| 3238 | |
| 3239 | new_hctxs = kcalloc_node(set->nr_hw_queues, |
| 3240 | sizeof(*new_hctxs), GFP_KERNEL, |
| 3241 | set->numa_node); |
| 3242 | if (!new_hctxs) |
| 3243 | return; |
| 3244 | if (hctxs) |
| 3245 | memcpy(new_hctxs, hctxs, q->nr_hw_queues * |
| 3246 | sizeof(*hctxs)); |
| 3247 | q->queue_hw_ctx = new_hctxs; |
Bart Van Assche | ac0d6b9 | 2019-10-25 09:50:09 -0700 | [diff] [blame] | 3248 | kfree(hctxs); |
| 3249 | hctxs = new_hctxs; |
| 3250 | } |
| 3251 | |
Ming Lei | fb350e0 | 2018-01-06 16:27:40 +0800 | [diff] [blame] | 3252 | /* protect against switching io scheduler */ |
| 3253 | mutex_lock(&q->sysfs_lock); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3254 | for (i = 0; i < set->nr_hw_queues; i++) { |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3255 | int node; |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3256 | struct blk_mq_hw_ctx *hctx; |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3257 | |
Dongli Zhang | 7d76f85 | 2019-02-27 21:35:01 +0800 | [diff] [blame] | 3258 | node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], i); |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3259 | /* |
| 3260 | * If the hw queue has been mapped to another numa node, |
| 3261 | * we need to realloc the hctx. If allocation fails, fallback |
| 3262 | * to use the previous one. |
| 3263 | */ |
| 3264 | if (hctxs[i] && (hctxs[i]->numa_node == node)) |
| 3265 | continue; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3266 | |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3267 | hctx = blk_mq_alloc_and_init_hctx(set, q, i, node); |
| 3268 | if (hctx) { |
Ming Lei | 2f8f133 | 2019-04-30 09:52:27 +0800 | [diff] [blame] | 3269 | if (hctxs[i]) |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3270 | blk_mq_exit_hctx(q, set, hctxs[i], i); |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3271 | hctxs[i] = hctx; |
| 3272 | } else { |
| 3273 | if (hctxs[i]) |
| 3274 | pr_warn("Allocate new hctx on node %d fails,\ |
| 3275 | fallback to previous one on node %d\n", |
| 3276 | node, hctxs[i]->numa_node); |
| 3277 | else |
| 3278 | break; |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3279 | } |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3280 | } |
Jianchao Wang | e01ad46 | 2018-10-12 18:07:28 +0800 | [diff] [blame] | 3281 | /* |
| 3282 | * Increasing nr_hw_queues fails. Free the newly allocated |
| 3283 | * hctxs and keep the previous q->nr_hw_queues. |
| 3284 | */ |
| 3285 | if (i != set->nr_hw_queues) { |
| 3286 | j = q->nr_hw_queues; |
| 3287 | end = i; |
| 3288 | } else { |
| 3289 | j = i; |
| 3290 | end = q->nr_hw_queues; |
| 3291 | q->nr_hw_queues = set->nr_hw_queues; |
| 3292 | } |
Jianchao Wang | 34d11ff | 2018-10-12 18:07:27 +0800 | [diff] [blame] | 3293 | |
Jianchao Wang | e01ad46 | 2018-10-12 18:07:28 +0800 | [diff] [blame] | 3294 | for (; j < end; j++) { |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3295 | struct blk_mq_hw_ctx *hctx = hctxs[j]; |
| 3296 | |
| 3297 | if (hctx) { |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 3298 | __blk_mq_free_map_and_rqs(set, j); |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3299 | blk_mq_exit_hctx(q, set, hctx, j); |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3300 | hctxs[j] = NULL; |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3301 | } |
| 3302 | } |
Ming Lei | fb350e0 | 2018-01-06 16:27:40 +0800 | [diff] [blame] | 3303 | mutex_unlock(&q->sysfs_lock); |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3304 | } |
| 3305 | |
Christoph Hellwig | 26a9750 | 2021-06-02 09:53:17 +0300 | [diff] [blame] | 3306 | int blk_mq_init_allocated_queue(struct blk_mq_tag_set *set, |
| 3307 | struct request_queue *q) |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3308 | { |
Ming Lei | 6684167 | 2016-02-12 15:27:00 +0800 | [diff] [blame] | 3309 | /* mark the queue as mq asap */ |
| 3310 | q->mq_ops = set->ops; |
| 3311 | |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 3312 | q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn, |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 3313 | blk_mq_poll_stats_bkt, |
| 3314 | BLK_MQ_POLL_STATS_BKTS, q); |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 3315 | if (!q->poll_cb) |
| 3316 | goto err_exit; |
| 3317 | |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 3318 | if (blk_mq_alloc_ctxs(q)) |
Jes Sorensen | 41de54c | 2019-04-19 16:35:44 -0400 | [diff] [blame] | 3319 | goto err_poll; |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3320 | |
Ming Lei | 737f98c | 2017-02-22 18:13:59 +0800 | [diff] [blame] | 3321 | /* init q->mq_kobj and sw queues' kobjects */ |
| 3322 | blk_mq_sysfs_init(q); |
| 3323 | |
Ming Lei | 2f8f133 | 2019-04-30 09:52:27 +0800 | [diff] [blame] | 3324 | INIT_LIST_HEAD(&q->unused_hctx_list); |
| 3325 | spin_lock_init(&q->unused_hctx_lock); |
| 3326 | |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3327 | blk_mq_realloc_hw_ctxs(set, q); |
| 3328 | if (!q->nr_hw_queues) |
| 3329 | goto err_hctxs; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3330 | |
Christoph Hellwig | 287922e | 2015-10-30 20:57:30 +0800 | [diff] [blame] | 3331 | INIT_WORK(&q->timeout_work, blk_mq_timeout_work); |
Ming Lei | e56f698 | 2015-07-16 19:53:22 +0800 | [diff] [blame] | 3332 | blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3333 | |
Jens Axboe | a890893 | 2018-10-16 14:23:06 -0600 | [diff] [blame] | 3334 | q->tag_set = set; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3335 | |
Jens Axboe | 94eddfb | 2013-11-19 09:25:07 -0700 | [diff] [blame] | 3336 | q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT; |
Ming Lei | cd19181 | 2018-12-18 12:15:29 +0800 | [diff] [blame] | 3337 | if (set->nr_maps > HCTX_TYPE_POLL && |
| 3338 | set->map[HCTX_TYPE_POLL].nr_queues) |
Christoph Hellwig | 6544d22 | 2018-12-02 17:46:28 +0100 | [diff] [blame] | 3339 | blk_queue_flag_set(QUEUE_FLAG_POLL, q); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3340 | |
Mike Snitzer | 2849450 | 2016-09-14 13:28:30 -0400 | [diff] [blame] | 3341 | INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work); |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 3342 | INIT_LIST_HEAD(&q->requeue_list); |
| 3343 | spin_lock_init(&q->requeue_lock); |
| 3344 | |
Jens Axboe | eba7176 | 2014-05-20 15:17:27 -0600 | [diff] [blame] | 3345 | q->nr_requests = set->queue_depth; |
| 3346 | |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3347 | /* |
| 3348 | * Default to classic polling |
| 3349 | */ |
Yufen Yu | 29ece8b | 2019-03-18 22:44:41 +0800 | [diff] [blame] | 3350 | q->poll_nsec = BLK_MQ_POLL_CLASSIC; |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3351 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3352 | blk_mq_init_cpu_queues(q, set->nr_hw_queues); |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3353 | blk_mq_add_queue_tag_set(set, q); |
Christoph Hellwig | 4b855ad | 2017-06-26 12:20:57 +0200 | [diff] [blame] | 3354 | blk_mq_map_swqueue(q); |
Christoph Hellwig | 26a9750 | 2021-06-02 09:53:17 +0300 | [diff] [blame] | 3355 | return 0; |
Christoph Hellwig | 1874198 | 2014-02-10 09:29:00 -0700 | [diff] [blame] | 3356 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3357 | err_hctxs: |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3358 | kfree(q->queue_hw_ctx); |
zhengbin | 73d9c8d | 2019-07-23 22:10:42 +0800 | [diff] [blame] | 3359 | q->nr_hw_queues = 0; |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 3360 | blk_mq_sysfs_deinit(q); |
Jes Sorensen | 41de54c | 2019-04-19 16:35:44 -0400 | [diff] [blame] | 3361 | err_poll: |
| 3362 | blk_stat_free_callback(q->poll_cb); |
| 3363 | q->poll_cb = NULL; |
Ming Lin | c7de572 | 2016-05-25 23:23:27 -0700 | [diff] [blame] | 3364 | err_exit: |
| 3365 | q->mq_ops = NULL; |
Christoph Hellwig | 26a9750 | 2021-06-02 09:53:17 +0300 | [diff] [blame] | 3366 | return -ENOMEM; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3367 | } |
Mike Snitzer | b62c21b | 2015-03-12 23:56:02 -0400 | [diff] [blame] | 3368 | EXPORT_SYMBOL(blk_mq_init_allocated_queue); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3369 | |
Ming Lei | c7e2d94 | 2019-04-30 09:52:25 +0800 | [diff] [blame] | 3370 | /* tags can _not_ be used after returning from blk_mq_exit_queue */ |
| 3371 | void blk_mq_exit_queue(struct request_queue *q) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3372 | { |
Bart Van Assche | 630ef62 | 2021-05-13 10:15:29 -0700 | [diff] [blame] | 3373 | struct blk_mq_tag_set *set = q->tag_set; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3374 | |
Bart Van Assche | 630ef62 | 2021-05-13 10:15:29 -0700 | [diff] [blame] | 3375 | /* Checks hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED. */ |
Ming Lei | 624dbe4 | 2014-05-27 23:35:13 +0800 | [diff] [blame] | 3376 | blk_mq_exit_hw_queues(q, set, set->nr_hw_queues); |
Bart Van Assche | 630ef62 | 2021-05-13 10:15:29 -0700 | [diff] [blame] | 3377 | /* May clear BLK_MQ_F_TAG_QUEUE_SHARED in hctx->flags. */ |
| 3378 | blk_mq_del_queue_tag_set(q); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3379 | } |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 3380 | |
Jens Axboe | a516440 | 2014-09-10 09:02:03 -0600 | [diff] [blame] | 3381 | static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set) |
| 3382 | { |
| 3383 | int i; |
| 3384 | |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 3385 | if (blk_mq_is_shared_tags(set->flags)) { |
| 3386 | set->shared_tags = blk_mq_alloc_map_and_rqs(set, |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 3387 | BLK_MQ_NO_HCTX_IDX, |
| 3388 | set->queue_depth); |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 3389 | if (!set->shared_tags) |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 3390 | return -ENOMEM; |
| 3391 | } |
| 3392 | |
Xianting Tian | 8229cca | 2020-09-26 10:39:47 +0800 | [diff] [blame] | 3393 | for (i = 0; i < set->nr_hw_queues; i++) { |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 3394 | if (!__blk_mq_alloc_map_and_rqs(set, i)) |
Jens Axboe | a516440 | 2014-09-10 09:02:03 -0600 | [diff] [blame] | 3395 | goto out_unwind; |
Xianting Tian | 8229cca | 2020-09-26 10:39:47 +0800 | [diff] [blame] | 3396 | cond_resched(); |
| 3397 | } |
Jens Axboe | a516440 | 2014-09-10 09:02:03 -0600 | [diff] [blame] | 3398 | |
| 3399 | return 0; |
| 3400 | |
| 3401 | out_unwind: |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 3402 | while (--i >= 0) |
| 3403 | __blk_mq_free_map_and_rqs(set, i); |
| 3404 | |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 3405 | if (blk_mq_is_shared_tags(set->flags)) { |
| 3406 | blk_mq_free_map_and_rqs(set, set->shared_tags, |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 3407 | BLK_MQ_NO_HCTX_IDX); |
John Garry | 645db34 | 2021-10-05 18:23:36 +0800 | [diff] [blame] | 3408 | } |
Jens Axboe | a516440 | 2014-09-10 09:02:03 -0600 | [diff] [blame] | 3409 | |
Jens Axboe | a516440 | 2014-09-10 09:02:03 -0600 | [diff] [blame] | 3410 | return -ENOMEM; |
| 3411 | } |
| 3412 | |
| 3413 | /* |
| 3414 | * Allocate the request maps associated with this tag_set. Note that this |
| 3415 | * may reduce the depth asked for, if memory is tight. set->queue_depth |
| 3416 | * will be updated to reflect the allocated depth. |
| 3417 | */ |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 3418 | static int blk_mq_alloc_set_map_and_rqs(struct blk_mq_tag_set *set) |
Jens Axboe | a516440 | 2014-09-10 09:02:03 -0600 | [diff] [blame] | 3419 | { |
| 3420 | unsigned int depth; |
| 3421 | int err; |
| 3422 | |
| 3423 | depth = set->queue_depth; |
| 3424 | do { |
| 3425 | err = __blk_mq_alloc_rq_maps(set); |
| 3426 | if (!err) |
| 3427 | break; |
| 3428 | |
| 3429 | set->queue_depth >>= 1; |
| 3430 | if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) { |
| 3431 | err = -ENOMEM; |
| 3432 | break; |
| 3433 | } |
| 3434 | } while (set->queue_depth); |
| 3435 | |
| 3436 | if (!set->queue_depth || err) { |
| 3437 | pr_err("blk-mq: failed to allocate request map\n"); |
| 3438 | return -ENOMEM; |
| 3439 | } |
| 3440 | |
| 3441 | if (depth != set->queue_depth) |
| 3442 | pr_info("blk-mq: reduced tag depth (%u -> %u)\n", |
| 3443 | depth, set->queue_depth); |
| 3444 | |
| 3445 | return 0; |
| 3446 | } |
| 3447 | |
Omar Sandoval | ebe8bdd | 2017-04-07 08:53:11 -0600 | [diff] [blame] | 3448 | static int blk_mq_update_queue_map(struct blk_mq_tag_set *set) |
| 3449 | { |
Bart Van Assche | 6e66b49 | 2020-03-09 21:26:17 -0700 | [diff] [blame] | 3450 | /* |
| 3451 | * blk_mq_map_queues() and multiple .map_queues() implementations |
| 3452 | * expect that set->map[HCTX_TYPE_DEFAULT].nr_queues is set to the |
| 3453 | * number of hardware queues. |
| 3454 | */ |
| 3455 | if (set->nr_maps == 1) |
| 3456 | set->map[HCTX_TYPE_DEFAULT].nr_queues = set->nr_hw_queues; |
| 3457 | |
Ming Lei | 5938870 | 2018-12-07 11:03:53 +0800 | [diff] [blame] | 3458 | if (set->ops->map_queues && !is_kdump_kernel()) { |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3459 | int i; |
| 3460 | |
Ming Lei | 7d4901a | 2018-01-06 16:27:39 +0800 | [diff] [blame] | 3461 | /* |
| 3462 | * transport .map_queues is usually done in the following |
| 3463 | * way: |
| 3464 | * |
| 3465 | * for (queue = 0; queue < set->nr_hw_queues; queue++) { |
| 3466 | * mask = get_cpu_mask(queue) |
| 3467 | * for_each_cpu(cpu, mask) |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3468 | * set->map[x].mq_map[cpu] = queue; |
Ming Lei | 7d4901a | 2018-01-06 16:27:39 +0800 | [diff] [blame] | 3469 | * } |
| 3470 | * |
| 3471 | * When we need to remap, the table has to be cleared for |
| 3472 | * killing stale mapping since one CPU may not be mapped |
| 3473 | * to any hw queue. |
| 3474 | */ |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3475 | for (i = 0; i < set->nr_maps; i++) |
| 3476 | blk_mq_clear_mq_map(&set->map[i]); |
Ming Lei | 7d4901a | 2018-01-06 16:27:39 +0800 | [diff] [blame] | 3477 | |
Omar Sandoval | ebe8bdd | 2017-04-07 08:53:11 -0600 | [diff] [blame] | 3478 | return set->ops->map_queues(set); |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3479 | } else { |
| 3480 | BUG_ON(set->nr_maps > 1); |
Dongli Zhang | 7d76f85 | 2019-02-27 21:35:01 +0800 | [diff] [blame] | 3481 | return blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]); |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3482 | } |
Omar Sandoval | ebe8bdd | 2017-04-07 08:53:11 -0600 | [diff] [blame] | 3483 | } |
| 3484 | |
Bart Van Assche | f7e76db | 2019-10-25 09:50:10 -0700 | [diff] [blame] | 3485 | static int blk_mq_realloc_tag_set_tags(struct blk_mq_tag_set *set, |
| 3486 | int cur_nr_hw_queues, int new_nr_hw_queues) |
| 3487 | { |
| 3488 | struct blk_mq_tags **new_tags; |
| 3489 | |
| 3490 | if (cur_nr_hw_queues >= new_nr_hw_queues) |
| 3491 | return 0; |
| 3492 | |
| 3493 | new_tags = kcalloc_node(new_nr_hw_queues, sizeof(struct blk_mq_tags *), |
| 3494 | GFP_KERNEL, set->numa_node); |
| 3495 | if (!new_tags) |
| 3496 | return -ENOMEM; |
| 3497 | |
| 3498 | if (set->tags) |
| 3499 | memcpy(new_tags, set->tags, cur_nr_hw_queues * |
| 3500 | sizeof(*set->tags)); |
| 3501 | kfree(set->tags); |
| 3502 | set->tags = new_tags; |
| 3503 | set->nr_hw_queues = new_nr_hw_queues; |
| 3504 | |
| 3505 | return 0; |
| 3506 | } |
| 3507 | |
Minwoo Im | 91cdf26 | 2020-12-05 00:20:53 +0900 | [diff] [blame] | 3508 | static int blk_mq_alloc_tag_set_tags(struct blk_mq_tag_set *set, |
| 3509 | int new_nr_hw_queues) |
| 3510 | { |
| 3511 | return blk_mq_realloc_tag_set_tags(set, 0, new_nr_hw_queues); |
| 3512 | } |
| 3513 | |
Jens Axboe | a4391c6 | 2014-06-05 15:21:56 -0600 | [diff] [blame] | 3514 | /* |
| 3515 | * Alloc a tag set to be associated with one or more request queues. |
| 3516 | * May fail with EINVAL for various error conditions. May adjust the |
Minwoo Im | c018c84 | 2018-06-30 22:12:41 +0900 | [diff] [blame] | 3517 | * requested depth down, if it's too large. In that case, the set |
Jens Axboe | a4391c6 | 2014-06-05 15:21:56 -0600 | [diff] [blame] | 3518 | * value will be stored in set->queue_depth. |
| 3519 | */ |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3520 | int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set) |
| 3521 | { |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3522 | int i, ret; |
Christoph Hellwig | da695ba | 2016-09-14 16:18:55 +0200 | [diff] [blame] | 3523 | |
Bart Van Assche | 205fb5f | 2014-10-30 14:45:11 +0100 | [diff] [blame] | 3524 | BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS); |
| 3525 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3526 | if (!set->nr_hw_queues) |
| 3527 | return -EINVAL; |
Jens Axboe | a4391c6 | 2014-06-05 15:21:56 -0600 | [diff] [blame] | 3528 | if (!set->queue_depth) |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3529 | return -EINVAL; |
| 3530 | if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) |
| 3531 | return -EINVAL; |
| 3532 | |
Christoph Hellwig | 7d7e0f9 | 2016-09-14 16:18:54 +0200 | [diff] [blame] | 3533 | if (!set->ops->queue_rq) |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3534 | return -EINVAL; |
| 3535 | |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 3536 | if (!set->ops->get_budget ^ !set->ops->put_budget) |
| 3537 | return -EINVAL; |
| 3538 | |
Jens Axboe | a4391c6 | 2014-06-05 15:21:56 -0600 | [diff] [blame] | 3539 | if (set->queue_depth > BLK_MQ_MAX_DEPTH) { |
| 3540 | pr_info("blk-mq: reduced tag depth to %u\n", |
| 3541 | BLK_MQ_MAX_DEPTH); |
| 3542 | set->queue_depth = BLK_MQ_MAX_DEPTH; |
| 3543 | } |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3544 | |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3545 | if (!set->nr_maps) |
| 3546 | set->nr_maps = 1; |
| 3547 | else if (set->nr_maps > HCTX_MAX_TYPES) |
| 3548 | return -EINVAL; |
| 3549 | |
Shaohua Li | 6637fad | 2014-11-30 16:00:58 -0800 | [diff] [blame] | 3550 | /* |
| 3551 | * If a crashdump is active, then we are potentially in a very |
| 3552 | * memory constrained environment. Limit us to 1 queue and |
| 3553 | * 64 tags to prevent using too much memory. |
| 3554 | */ |
| 3555 | if (is_kdump_kernel()) { |
| 3556 | set->nr_hw_queues = 1; |
Ming Lei | 5938870 | 2018-12-07 11:03:53 +0800 | [diff] [blame] | 3557 | set->nr_maps = 1; |
Shaohua Li | 6637fad | 2014-11-30 16:00:58 -0800 | [diff] [blame] | 3558 | set->queue_depth = min(64U, set->queue_depth); |
| 3559 | } |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3560 | /* |
Jens Axboe | 392546a | 2018-10-29 13:25:27 -0600 | [diff] [blame] | 3561 | * There is no use for more h/w queues than cpus if we just have |
| 3562 | * a single map |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3563 | */ |
Jens Axboe | 392546a | 2018-10-29 13:25:27 -0600 | [diff] [blame] | 3564 | if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids) |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3565 | set->nr_hw_queues = nr_cpu_ids; |
Shaohua Li | 6637fad | 2014-11-30 16:00:58 -0800 | [diff] [blame] | 3566 | |
Minwoo Im | 91cdf26 | 2020-12-05 00:20:53 +0900 | [diff] [blame] | 3567 | if (blk_mq_alloc_tag_set_tags(set, set->nr_hw_queues) < 0) |
Jens Axboe | a516440 | 2014-09-10 09:02:03 -0600 | [diff] [blame] | 3568 | return -ENOMEM; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3569 | |
Christoph Hellwig | da695ba | 2016-09-14 16:18:55 +0200 | [diff] [blame] | 3570 | ret = -ENOMEM; |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3571 | for (i = 0; i < set->nr_maps; i++) { |
| 3572 | set->map[i].mq_map = kcalloc_node(nr_cpu_ids, |
Ming Lei | 07b35eb | 2018-12-17 18:42:45 +0800 | [diff] [blame] | 3573 | sizeof(set->map[i].mq_map[0]), |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3574 | GFP_KERNEL, set->numa_node); |
| 3575 | if (!set->map[i].mq_map) |
| 3576 | goto out_free_mq_map; |
Ming Lei | 5938870 | 2018-12-07 11:03:53 +0800 | [diff] [blame] | 3577 | set->map[i].nr_queues = is_kdump_kernel() ? 1 : set->nr_hw_queues; |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3578 | } |
Christoph Hellwig | bdd17e7 | 2016-09-14 16:18:53 +0200 | [diff] [blame] | 3579 | |
Omar Sandoval | ebe8bdd | 2017-04-07 08:53:11 -0600 | [diff] [blame] | 3580 | ret = blk_mq_update_queue_map(set); |
Christoph Hellwig | da695ba | 2016-09-14 16:18:55 +0200 | [diff] [blame] | 3581 | if (ret) |
| 3582 | goto out_free_mq_map; |
| 3583 | |
John Garry | 63064be | 2021-10-05 18:23:35 +0800 | [diff] [blame] | 3584 | ret = blk_mq_alloc_set_map_and_rqs(set); |
Christoph Hellwig | da695ba | 2016-09-14 16:18:55 +0200 | [diff] [blame] | 3585 | if (ret) |
Christoph Hellwig | bdd17e7 | 2016-09-14 16:18:53 +0200 | [diff] [blame] | 3586 | goto out_free_mq_map; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3587 | |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 3588 | mutex_init(&set->tag_list_lock); |
| 3589 | INIT_LIST_HEAD(&set->tag_list); |
| 3590 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3591 | return 0; |
Christoph Hellwig | bdd17e7 | 2016-09-14 16:18:53 +0200 | [diff] [blame] | 3592 | |
| 3593 | out_free_mq_map: |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3594 | for (i = 0; i < set->nr_maps; i++) { |
| 3595 | kfree(set->map[i].mq_map); |
| 3596 | set->map[i].mq_map = NULL; |
| 3597 | } |
Robert Elliott | 5676e7b | 2014-09-02 11:38:44 -0500 | [diff] [blame] | 3598 | kfree(set->tags); |
| 3599 | set->tags = NULL; |
Christoph Hellwig | da695ba | 2016-09-14 16:18:55 +0200 | [diff] [blame] | 3600 | return ret; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3601 | } |
| 3602 | EXPORT_SYMBOL(blk_mq_alloc_tag_set); |
| 3603 | |
Christoph Hellwig | cdb14e0 | 2021-06-02 09:53:16 +0300 | [diff] [blame] | 3604 | /* allocate and initialize a tagset for a simple single-queue device */ |
| 3605 | int blk_mq_alloc_sq_tag_set(struct blk_mq_tag_set *set, |
| 3606 | const struct blk_mq_ops *ops, unsigned int queue_depth, |
| 3607 | unsigned int set_flags) |
| 3608 | { |
| 3609 | memset(set, 0, sizeof(*set)); |
| 3610 | set->ops = ops; |
| 3611 | set->nr_hw_queues = 1; |
| 3612 | set->nr_maps = 1; |
| 3613 | set->queue_depth = queue_depth; |
| 3614 | set->numa_node = NUMA_NO_NODE; |
| 3615 | set->flags = set_flags; |
| 3616 | return blk_mq_alloc_tag_set(set); |
| 3617 | } |
| 3618 | EXPORT_SYMBOL_GPL(blk_mq_alloc_sq_tag_set); |
| 3619 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3620 | void blk_mq_free_tag_set(struct blk_mq_tag_set *set) |
| 3621 | { |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3622 | int i, j; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3623 | |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 3624 | for (i = 0; i < set->nr_hw_queues; i++) |
| 3625 | __blk_mq_free_map_and_rqs(set, i); |
Jens Axboe | 484b406 | 2014-05-21 14:01:15 -0600 | [diff] [blame] | 3626 | |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 3627 | if (blk_mq_is_shared_tags(set->flags)) { |
| 3628 | blk_mq_free_map_and_rqs(set, set->shared_tags, |
John Garry | e155b0c | 2021-10-05 18:23:37 +0800 | [diff] [blame] | 3629 | BLK_MQ_NO_HCTX_IDX); |
| 3630 | } |
John Garry | 32bc15a | 2020-08-19 23:20:24 +0800 | [diff] [blame] | 3631 | |
Jens Axboe | b3c661b | 2018-10-30 10:36:06 -0600 | [diff] [blame] | 3632 | for (j = 0; j < set->nr_maps; j++) { |
| 3633 | kfree(set->map[j].mq_map); |
| 3634 | set->map[j].mq_map = NULL; |
| 3635 | } |
Christoph Hellwig | bdd17e7 | 2016-09-14 16:18:53 +0200 | [diff] [blame] | 3636 | |
Ming Lei | 981bd18 | 2014-04-24 00:07:34 +0800 | [diff] [blame] | 3637 | kfree(set->tags); |
Robert Elliott | 5676e7b | 2014-09-02 11:38:44 -0500 | [diff] [blame] | 3638 | set->tags = NULL; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 3639 | } |
| 3640 | EXPORT_SYMBOL(blk_mq_free_tag_set); |
| 3641 | |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 3642 | int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr) |
| 3643 | { |
| 3644 | struct blk_mq_tag_set *set = q->tag_set; |
| 3645 | struct blk_mq_hw_ctx *hctx; |
| 3646 | int i, ret; |
| 3647 | |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 3648 | if (!set) |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 3649 | return -EINVAL; |
| 3650 | |
Aleksei Zakharov | e5fa814 | 2019-02-08 19:14:05 +0300 | [diff] [blame] | 3651 | if (q->nr_requests == nr) |
| 3652 | return 0; |
| 3653 | |
Jens Axboe | 70f36b6 | 2017-01-19 10:59:07 -0700 | [diff] [blame] | 3654 | blk_mq_freeze_queue(q); |
Ming Lei | 24f5a90 | 2018-01-06 16:27:38 +0800 | [diff] [blame] | 3655 | blk_mq_quiesce_queue(q); |
Jens Axboe | 70f36b6 | 2017-01-19 10:59:07 -0700 | [diff] [blame] | 3656 | |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 3657 | ret = 0; |
| 3658 | queue_for_each_hw_ctx(q, hctx, i) { |
Keith Busch | e9137d4 | 2016-02-18 14:56:35 -0700 | [diff] [blame] | 3659 | if (!hctx->tags) |
| 3660 | continue; |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 3661 | /* |
| 3662 | * If we're using an MQ scheduler, just update the scheduler |
| 3663 | * queue depth. This is similar to what the old code would do. |
| 3664 | */ |
John Garry | f6adcef | 2021-10-05 18:23:29 +0800 | [diff] [blame] | 3665 | if (hctx->sched_tags) { |
Jens Axboe | 70f36b6 | 2017-01-19 10:59:07 -0700 | [diff] [blame] | 3666 | ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags, |
John Garry | f6adcef | 2021-10-05 18:23:29 +0800 | [diff] [blame] | 3667 | nr, true); |
John Garry | f6adcef | 2021-10-05 18:23:29 +0800 | [diff] [blame] | 3668 | } else { |
| 3669 | ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr, |
| 3670 | false); |
Jens Axboe | 70f36b6 | 2017-01-19 10:59:07 -0700 | [diff] [blame] | 3671 | } |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 3672 | if (ret) |
| 3673 | break; |
Jens Axboe | 77f1e0a | 2019-01-18 10:34:16 -0700 | [diff] [blame] | 3674 | if (q->elevator && q->elevator->type->ops.depth_updated) |
| 3675 | q->elevator->type->ops.depth_updated(hctx); |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 3676 | } |
John Garry | d97e594 | 2021-05-13 20:00:58 +0800 | [diff] [blame] | 3677 | if (!ret) { |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 3678 | q->nr_requests = nr; |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 3679 | if (blk_mq_is_shared_tags(set->flags)) { |
John Garry | 8fa0446 | 2021-10-05 18:23:28 +0800 | [diff] [blame] | 3680 | if (q->elevator) |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 3681 | blk_mq_tag_update_sched_shared_tags(q); |
John Garry | 8fa0446 | 2021-10-05 18:23:28 +0800 | [diff] [blame] | 3682 | else |
John Garry | 079a2e3 | 2021-10-05 18:23:39 +0800 | [diff] [blame] | 3683 | blk_mq_tag_resize_shared_tags(set, nr); |
John Garry | 8fa0446 | 2021-10-05 18:23:28 +0800 | [diff] [blame] | 3684 | } |
John Garry | d97e594 | 2021-05-13 20:00:58 +0800 | [diff] [blame] | 3685 | } |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 3686 | |
Ming Lei | 24f5a90 | 2018-01-06 16:27:38 +0800 | [diff] [blame] | 3687 | blk_mq_unquiesce_queue(q); |
Jens Axboe | 70f36b6 | 2017-01-19 10:59:07 -0700 | [diff] [blame] | 3688 | blk_mq_unfreeze_queue(q); |
Jens Axboe | 70f36b6 | 2017-01-19 10:59:07 -0700 | [diff] [blame] | 3689 | |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 3690 | return ret; |
| 3691 | } |
| 3692 | |
Jianchao Wang | d48ece2 | 2018-08-21 15:15:03 +0800 | [diff] [blame] | 3693 | /* |
| 3694 | * request_queue and elevator_type pair. |
| 3695 | * It is just used by __blk_mq_update_nr_hw_queues to cache |
| 3696 | * the elevator_type associated with a request_queue. |
| 3697 | */ |
| 3698 | struct blk_mq_qe_pair { |
| 3699 | struct list_head node; |
| 3700 | struct request_queue *q; |
| 3701 | struct elevator_type *type; |
| 3702 | }; |
| 3703 | |
| 3704 | /* |
| 3705 | * Cache the elevator_type in qe pair list and switch the |
| 3706 | * io scheduler to 'none' |
| 3707 | */ |
| 3708 | static bool blk_mq_elv_switch_none(struct list_head *head, |
| 3709 | struct request_queue *q) |
| 3710 | { |
| 3711 | struct blk_mq_qe_pair *qe; |
| 3712 | |
| 3713 | if (!q->elevator) |
| 3714 | return true; |
| 3715 | |
| 3716 | qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY); |
| 3717 | if (!qe) |
| 3718 | return false; |
| 3719 | |
| 3720 | INIT_LIST_HEAD(&qe->node); |
| 3721 | qe->q = q; |
| 3722 | qe->type = q->elevator->type; |
| 3723 | list_add(&qe->node, head); |
| 3724 | |
| 3725 | mutex_lock(&q->sysfs_lock); |
| 3726 | /* |
| 3727 | * After elevator_switch_mq, the previous elevator_queue will be |
| 3728 | * released by elevator_release. The reference of the io scheduler |
| 3729 | * module get by elevator_get will also be put. So we need to get |
| 3730 | * a reference of the io scheduler module here to prevent it to be |
| 3731 | * removed. |
| 3732 | */ |
| 3733 | __module_get(qe->type->elevator_owner); |
| 3734 | elevator_switch_mq(q, NULL); |
| 3735 | mutex_unlock(&q->sysfs_lock); |
| 3736 | |
| 3737 | return true; |
| 3738 | } |
| 3739 | |
| 3740 | static void blk_mq_elv_switch_back(struct list_head *head, |
| 3741 | struct request_queue *q) |
| 3742 | { |
| 3743 | struct blk_mq_qe_pair *qe; |
| 3744 | struct elevator_type *t = NULL; |
| 3745 | |
| 3746 | list_for_each_entry(qe, head, node) |
| 3747 | if (qe->q == q) { |
| 3748 | t = qe->type; |
| 3749 | break; |
| 3750 | } |
| 3751 | |
| 3752 | if (!t) |
| 3753 | return; |
| 3754 | |
| 3755 | list_del(&qe->node); |
| 3756 | kfree(qe); |
| 3757 | |
| 3758 | mutex_lock(&q->sysfs_lock); |
| 3759 | elevator_switch_mq(q, t); |
| 3760 | mutex_unlock(&q->sysfs_lock); |
| 3761 | } |
| 3762 | |
Keith Busch | e4dc2b3 | 2017-05-30 14:39:11 -0400 | [diff] [blame] | 3763 | static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, |
| 3764 | int nr_hw_queues) |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3765 | { |
| 3766 | struct request_queue *q; |
Jianchao Wang | d48ece2 | 2018-08-21 15:15:03 +0800 | [diff] [blame] | 3767 | LIST_HEAD(head); |
Jianchao Wang | e01ad46 | 2018-10-12 18:07:28 +0800 | [diff] [blame] | 3768 | int prev_nr_hw_queues; |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3769 | |
Bart Van Assche | 705cda9 | 2017-04-07 11:16:49 -0700 | [diff] [blame] | 3770 | lockdep_assert_held(&set->tag_list_lock); |
| 3771 | |
Jens Axboe | 392546a | 2018-10-29 13:25:27 -0600 | [diff] [blame] | 3772 | if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids) |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3773 | nr_hw_queues = nr_cpu_ids; |
Weiping Zhang | fe35ec5 | 2020-06-17 14:18:37 +0800 | [diff] [blame] | 3774 | if (nr_hw_queues < 1) |
| 3775 | return; |
| 3776 | if (set->nr_maps == 1 && nr_hw_queues == set->nr_hw_queues) |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3777 | return; |
| 3778 | |
| 3779 | list_for_each_entry(q, &set->tag_list, tag_set_list) |
| 3780 | blk_mq_freeze_queue(q); |
Jianchao Wang | d48ece2 | 2018-08-21 15:15:03 +0800 | [diff] [blame] | 3781 | /* |
| 3782 | * Switch IO scheduler to 'none', cleaning up the data associated |
| 3783 | * with the previous scheduler. We will switch back once we are done |
| 3784 | * updating the new sw to hw queue mappings. |
| 3785 | */ |
| 3786 | list_for_each_entry(q, &set->tag_list, tag_set_list) |
| 3787 | if (!blk_mq_elv_switch_none(&head, q)) |
| 3788 | goto switch_back; |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3789 | |
Jianchao Wang | 477e19d | 2018-10-12 18:07:25 +0800 | [diff] [blame] | 3790 | list_for_each_entry(q, &set->tag_list, tag_set_list) { |
| 3791 | blk_mq_debugfs_unregister_hctxs(q); |
| 3792 | blk_mq_sysfs_unregister(q); |
| 3793 | } |
| 3794 | |
Weiping Zhang | a2584e4 | 2020-05-07 21:03:56 +0800 | [diff] [blame] | 3795 | prev_nr_hw_queues = set->nr_hw_queues; |
Bart Van Assche | f7e76db | 2019-10-25 09:50:10 -0700 | [diff] [blame] | 3796 | if (blk_mq_realloc_tag_set_tags(set, set->nr_hw_queues, nr_hw_queues) < |
| 3797 | 0) |
| 3798 | goto reregister; |
| 3799 | |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3800 | set->nr_hw_queues = nr_hw_queues; |
Jianchao Wang | e01ad46 | 2018-10-12 18:07:28 +0800 | [diff] [blame] | 3801 | fallback: |
Weiping Zhang | aa880ad | 2020-05-13 08:44:05 +0800 | [diff] [blame] | 3802 | blk_mq_update_queue_map(set); |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3803 | list_for_each_entry(q, &set->tag_list, tag_set_list) { |
| 3804 | blk_mq_realloc_hw_ctxs(set, q); |
Jianchao Wang | e01ad46 | 2018-10-12 18:07:28 +0800 | [diff] [blame] | 3805 | if (q->nr_hw_queues != set->nr_hw_queues) { |
| 3806 | pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n", |
| 3807 | nr_hw_queues, prev_nr_hw_queues); |
| 3808 | set->nr_hw_queues = prev_nr_hw_queues; |
Dongli Zhang | 7d76f85 | 2019-02-27 21:35:01 +0800 | [diff] [blame] | 3809 | blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]); |
Jianchao Wang | e01ad46 | 2018-10-12 18:07:28 +0800 | [diff] [blame] | 3810 | goto fallback; |
| 3811 | } |
Jianchao Wang | 477e19d | 2018-10-12 18:07:25 +0800 | [diff] [blame] | 3812 | blk_mq_map_swqueue(q); |
| 3813 | } |
| 3814 | |
Bart Van Assche | f7e76db | 2019-10-25 09:50:10 -0700 | [diff] [blame] | 3815 | reregister: |
Jianchao Wang | 477e19d | 2018-10-12 18:07:25 +0800 | [diff] [blame] | 3816 | list_for_each_entry(q, &set->tag_list, tag_set_list) { |
| 3817 | blk_mq_sysfs_register(q); |
| 3818 | blk_mq_debugfs_register_hctxs(q); |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3819 | } |
| 3820 | |
Jianchao Wang | d48ece2 | 2018-08-21 15:15:03 +0800 | [diff] [blame] | 3821 | switch_back: |
| 3822 | list_for_each_entry(q, &set->tag_list, tag_set_list) |
| 3823 | blk_mq_elv_switch_back(&head, q); |
| 3824 | |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3825 | list_for_each_entry(q, &set->tag_list, tag_set_list) |
| 3826 | blk_mq_unfreeze_queue(q); |
| 3827 | } |
Keith Busch | e4dc2b3 | 2017-05-30 14:39:11 -0400 | [diff] [blame] | 3828 | |
| 3829 | void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues) |
| 3830 | { |
| 3831 | mutex_lock(&set->tag_list_lock); |
| 3832 | __blk_mq_update_nr_hw_queues(set, nr_hw_queues); |
| 3833 | mutex_unlock(&set->tag_list_lock); |
| 3834 | } |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 3835 | EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues); |
| 3836 | |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 3837 | /* Enable polling stats and return whether they were already enabled. */ |
| 3838 | static bool blk_poll_stats_enable(struct request_queue *q) |
| 3839 | { |
| 3840 | if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) || |
Bart Van Assche | 7dfdbc7 | 2018-03-07 17:10:05 -0800 | [diff] [blame] | 3841 | blk_queue_flag_test_and_set(QUEUE_FLAG_POLL_STATS, q)) |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 3842 | return true; |
| 3843 | blk_stat_add_callback(q, q->poll_cb); |
| 3844 | return false; |
| 3845 | } |
| 3846 | |
| 3847 | static void blk_mq_poll_stats_start(struct request_queue *q) |
| 3848 | { |
| 3849 | /* |
| 3850 | * We don't arm the callback if polling stats are not enabled or the |
| 3851 | * callback is already active. |
| 3852 | */ |
| 3853 | if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) || |
| 3854 | blk_stat_is_active(q->poll_cb)) |
| 3855 | return; |
| 3856 | |
| 3857 | blk_stat_activate_msecs(q->poll_cb, 100); |
| 3858 | } |
| 3859 | |
| 3860 | static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb) |
| 3861 | { |
| 3862 | struct request_queue *q = cb->data; |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 3863 | int bucket; |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 3864 | |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 3865 | for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) { |
| 3866 | if (cb->stat[bucket].nr_samples) |
| 3867 | q->poll_stat[bucket] = cb->stat[bucket]; |
| 3868 | } |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 3869 | } |
| 3870 | |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3871 | static unsigned long blk_mq_poll_nsecs(struct request_queue *q, |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3872 | struct request *rq) |
| 3873 | { |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3874 | unsigned long ret = 0; |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 3875 | int bucket; |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3876 | |
| 3877 | /* |
| 3878 | * If stats collection isn't on, don't sleep but turn it on for |
| 3879 | * future users |
| 3880 | */ |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 3881 | if (!blk_poll_stats_enable(q)) |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3882 | return 0; |
| 3883 | |
| 3884 | /* |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3885 | * As an optimistic guess, use half of the mean service time |
| 3886 | * for this type of request. We can (and should) make this smarter. |
| 3887 | * For instance, if the completion latencies are tight, we can |
| 3888 | * get closer than just half the mean. This is especially |
| 3889 | * important on devices where the completion latencies are longer |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 3890 | * than ~10 usec. We do use the stats for the relevant IO size |
| 3891 | * if available which does lead to better estimates. |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3892 | */ |
Stephen Bates | 720b8cc | 2017-04-07 06:24:03 -0600 | [diff] [blame] | 3893 | bucket = blk_mq_poll_stats_bkt(rq); |
| 3894 | if (bucket < 0) |
| 3895 | return ret; |
| 3896 | |
| 3897 | if (q->poll_stat[bucket].nr_samples) |
| 3898 | ret = (q->poll_stat[bucket].mean + 1) / 2; |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3899 | |
| 3900 | return ret; |
| 3901 | } |
| 3902 | |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 3903 | static bool blk_mq_poll_hybrid_sleep(struct request_queue *q, |
| 3904 | struct request *rq) |
| 3905 | { |
| 3906 | struct hrtimer_sleeper hs; |
| 3907 | enum hrtimer_mode mode; |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3908 | unsigned int nsecs; |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 3909 | ktime_t kt; |
| 3910 | |
Jens Axboe | 76a86f9 | 2018-01-10 11:30:56 -0700 | [diff] [blame] | 3911 | if (rq->rq_flags & RQF_MQ_POLL_SLEPT) |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3912 | return false; |
| 3913 | |
| 3914 | /* |
Jens Axboe | 1052b8a | 2018-11-26 08:21:49 -0700 | [diff] [blame] | 3915 | * If we get here, hybrid polling is enabled. Hence poll_nsec can be: |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3916 | * |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3917 | * 0: use half of prev avg |
| 3918 | * >0: use this specific value |
| 3919 | */ |
Jens Axboe | 1052b8a | 2018-11-26 08:21:49 -0700 | [diff] [blame] | 3920 | if (q->poll_nsec > 0) |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3921 | nsecs = q->poll_nsec; |
| 3922 | else |
John Garry | cae740a | 2020-02-26 20:10:15 +0800 | [diff] [blame] | 3923 | nsecs = blk_mq_poll_nsecs(q, rq); |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 3924 | |
| 3925 | if (!nsecs) |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 3926 | return false; |
| 3927 | |
Jens Axboe | 76a86f9 | 2018-01-10 11:30:56 -0700 | [diff] [blame] | 3928 | rq->rq_flags |= RQF_MQ_POLL_SLEPT; |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 3929 | |
| 3930 | /* |
| 3931 | * This will be replaced with the stats tracking code, using |
| 3932 | * 'avg_completion_time / 2' as the pre-sleep target. |
| 3933 | */ |
Thomas Gleixner | 8b0e195 | 2016-12-25 12:30:41 +0100 | [diff] [blame] | 3934 | kt = nsecs; |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 3935 | |
| 3936 | mode = HRTIMER_MODE_REL; |
Sebastian Andrzej Siewior | dbc1625 | 2019-07-26 20:30:50 +0200 | [diff] [blame] | 3937 | hrtimer_init_sleeper_on_stack(&hs, CLOCK_MONOTONIC, mode); |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 3938 | hrtimer_set_expires(&hs.timer, kt); |
| 3939 | |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 3940 | do { |
Tejun Heo | 5a61c36 | 2018-01-09 08:29:52 -0800 | [diff] [blame] | 3941 | if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE) |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 3942 | break; |
| 3943 | set_current_state(TASK_UNINTERRUPTIBLE); |
Thomas Gleixner | 9dd8813 | 2019-07-30 21:16:55 +0200 | [diff] [blame] | 3944 | hrtimer_sleeper_start_expires(&hs, mode); |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 3945 | if (hs.task) |
| 3946 | io_schedule(); |
| 3947 | hrtimer_cancel(&hs.timer); |
| 3948 | mode = HRTIMER_MODE_ABS; |
| 3949 | } while (hs.task && !signal_pending(current)); |
| 3950 | |
| 3951 | __set_current_state(TASK_RUNNING); |
| 3952 | destroy_hrtimer_on_stack(&hs.timer); |
| 3953 | return true; |
| 3954 | } |
| 3955 | |
Jens Axboe | 1052b8a | 2018-11-26 08:21:49 -0700 | [diff] [blame] | 3956 | static bool blk_mq_poll_hybrid(struct request_queue *q, |
| 3957 | struct blk_mq_hw_ctx *hctx, blk_qc_t cookie) |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 3958 | { |
Jens Axboe | 1052b8a | 2018-11-26 08:21:49 -0700 | [diff] [blame] | 3959 | struct request *rq; |
| 3960 | |
Yufen Yu | 29ece8b | 2019-03-18 22:44:41 +0800 | [diff] [blame] | 3961 | if (q->poll_nsec == BLK_MQ_POLL_CLASSIC) |
Jens Axboe | 1052b8a | 2018-11-26 08:21:49 -0700 | [diff] [blame] | 3962 | return false; |
| 3963 | |
| 3964 | if (!blk_qc_t_is_internal(cookie)) |
| 3965 | rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie)); |
| 3966 | else { |
| 3967 | rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie)); |
| 3968 | /* |
| 3969 | * With scheduling, if the request has completed, we'll |
| 3970 | * get a NULL return here, as we clear the sched tag when |
| 3971 | * that happens. The request still remains valid, like always, |
| 3972 | * so we should be safe with just the NULL check. |
| 3973 | */ |
| 3974 | if (!rq) |
| 3975 | return false; |
| 3976 | } |
| 3977 | |
John Garry | cae740a | 2020-02-26 20:10:15 +0800 | [diff] [blame] | 3978 | return blk_mq_poll_hybrid_sleep(q, rq); |
Jens Axboe | 1052b8a | 2018-11-26 08:21:49 -0700 | [diff] [blame] | 3979 | } |
| 3980 | |
Christoph Hellwig | 529262d | 2018-12-02 17:46:26 +0100 | [diff] [blame] | 3981 | /** |
| 3982 | * blk_poll - poll for IO completions |
| 3983 | * @q: the queue |
| 3984 | * @cookie: cookie passed back at IO submission time |
| 3985 | * @spin: whether to spin for completions |
| 3986 | * |
| 3987 | * Description: |
| 3988 | * Poll for completions on the passed in queue. Returns number of |
| 3989 | * completed entries found. If @spin is true, then blk_poll will continue |
| 3990 | * looping until at least one completion is found, unless the task is |
| 3991 | * otherwise marked running (or we need to reschedule). |
| 3992 | */ |
| 3993 | int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin) |
Jens Axboe | 1052b8a | 2018-11-26 08:21:49 -0700 | [diff] [blame] | 3994 | { |
| 3995 | struct blk_mq_hw_ctx *hctx; |
Peter Zijlstra | 2f064a5 | 2021-06-11 10:28:17 +0200 | [diff] [blame] | 3996 | unsigned int state; |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 3997 | |
Christoph Hellwig | 529262d | 2018-12-02 17:46:26 +0100 | [diff] [blame] | 3998 | if (!blk_qc_t_valid(cookie) || |
| 3999 | !test_bit(QUEUE_FLAG_POLL, &q->queue_flags)) |
Jens Axboe | 1052b8a | 2018-11-26 08:21:49 -0700 | [diff] [blame] | 4000 | return 0; |
| 4001 | |
Christoph Hellwig | 529262d | 2018-12-02 17:46:26 +0100 | [diff] [blame] | 4002 | if (current->plug) |
| 4003 | blk_flush_plug_list(current->plug, false); |
| 4004 | |
Jens Axboe | 1052b8a | 2018-11-26 08:21:49 -0700 | [diff] [blame] | 4005 | hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)]; |
| 4006 | |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 4007 | /* |
| 4008 | * If we sleep, have the caller restart the poll loop to reset |
| 4009 | * the state. Like for the other success return cases, the |
| 4010 | * caller is responsible for checking if the IO completed. If |
| 4011 | * the IO isn't complete, we'll get called again and will go |
Pavel Begunkov | f6f371f | 2020-12-06 14:04:39 +0000 | [diff] [blame] | 4012 | * straight to the busy poll loop. If specified not to spin, |
| 4013 | * we also should not sleep. |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 4014 | */ |
Pavel Begunkov | f6f371f | 2020-12-06 14:04:39 +0000 | [diff] [blame] | 4015 | if (spin && blk_mq_poll_hybrid(q, hctx, cookie)) |
Jens Axboe | 85f4d4b | 2018-11-06 13:30:55 -0700 | [diff] [blame] | 4016 | return 1; |
Jens Axboe | 06426ad | 2016-11-14 13:01:59 -0700 | [diff] [blame] | 4017 | |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 4018 | hctx->poll_considered++; |
| 4019 | |
Peter Zijlstra | d6c23bb | 2021-06-11 10:28:14 +0200 | [diff] [blame] | 4020 | state = get_current_state(); |
Jens Axboe | aa61bec | 2018-11-13 21:32:10 -0700 | [diff] [blame] | 4021 | do { |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 4022 | int ret; |
| 4023 | |
| 4024 | hctx->poll_invoked++; |
| 4025 | |
Jens Axboe | 9743139 | 2018-11-16 09:48:21 -0700 | [diff] [blame] | 4026 | ret = q->mq_ops->poll(hctx); |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 4027 | if (ret > 0) { |
| 4028 | hctx->poll_success++; |
Jens Axboe | 849a370 | 2018-11-16 08:37:34 -0700 | [diff] [blame] | 4029 | __set_current_state(TASK_RUNNING); |
Jens Axboe | 85f4d4b | 2018-11-06 13:30:55 -0700 | [diff] [blame] | 4030 | return ret; |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 4031 | } |
| 4032 | |
| 4033 | if (signal_pending_state(state, current)) |
Jens Axboe | 849a370 | 2018-11-16 08:37:34 -0700 | [diff] [blame] | 4034 | __set_current_state(TASK_RUNNING); |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 4035 | |
Peter Zijlstra | b03fbd4 | 2021-06-11 10:28:12 +0200 | [diff] [blame] | 4036 | if (task_is_running(current)) |
Jens Axboe | 85f4d4b | 2018-11-06 13:30:55 -0700 | [diff] [blame] | 4037 | return 1; |
Jens Axboe | 0a1b8b8 | 2018-11-26 08:24:43 -0700 | [diff] [blame] | 4038 | if (ret < 0 || !spin) |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 4039 | break; |
| 4040 | cpu_relax(); |
Jens Axboe | aa61bec | 2018-11-13 21:32:10 -0700 | [diff] [blame] | 4041 | } while (!need_resched()); |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 4042 | |
Nitesh Shetty | 67b4110 | 2018-02-13 21:18:12 +0530 | [diff] [blame] | 4043 | __set_current_state(TASK_RUNNING); |
Jens Axboe | 85f4d4b | 2018-11-06 13:30:55 -0700 | [diff] [blame] | 4044 | return 0; |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 4045 | } |
Christoph Hellwig | 529262d | 2018-12-02 17:46:26 +0100 | [diff] [blame] | 4046 | EXPORT_SYMBOL_GPL(blk_poll); |
Jens Axboe | bbd7bb7 | 2016-11-04 09:34:34 -0600 | [diff] [blame] | 4047 | |
Jens Axboe | 9cf2bab | 2018-10-31 17:01:22 -0600 | [diff] [blame] | 4048 | unsigned int blk_mq_rq_cpu(struct request *rq) |
| 4049 | { |
| 4050 | return rq->mq_ctx->cpu; |
| 4051 | } |
| 4052 | EXPORT_SYMBOL(blk_mq_rq_cpu); |
| 4053 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 4054 | static int __init blk_mq_init(void) |
| 4055 | { |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 4056 | int i; |
| 4057 | |
| 4058 | for_each_possible_cpu(i) |
Sebastian Andrzej Siewior | f9ab491 | 2021-01-23 21:10:27 +0100 | [diff] [blame] | 4059 | init_llist_head(&per_cpu(blk_cpu_done, i)); |
Christoph Hellwig | c3077b5 | 2020-06-11 08:44:41 +0200 | [diff] [blame] | 4060 | open_softirq(BLOCK_SOFTIRQ, blk_done_softirq); |
| 4061 | |
| 4062 | cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD, |
| 4063 | "block/softirq:dead", NULL, |
| 4064 | blk_softirq_cpu_dead); |
Thomas Gleixner | 9467f85 | 2016-09-22 08:05:17 -0600 | [diff] [blame] | 4065 | cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL, |
| 4066 | blk_mq_hctx_notify_dead); |
Ming Lei | bf0beec | 2020-05-29 15:53:15 +0200 | [diff] [blame] | 4067 | cpuhp_setup_state_multi(CPUHP_AP_BLK_MQ_ONLINE, "block/mq:online", |
| 4068 | blk_mq_hctx_notify_online, |
| 4069 | blk_mq_hctx_notify_offline); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 4070 | return 0; |
| 4071 | } |
| 4072 | subsys_initcall(blk_mq_init); |