blob: 65347cb7d7e1c4d3dff83132cf0f5feb660bca80 [file] [log] [blame]
Jens Axboe75bb4622014-05-28 10:15:41 -06001/*
2 * Block multiqueue core code
3 *
4 * Copyright (C) 2013-2014 Jens Axboe
5 * Copyright (C) 2013-2014 Christoph Hellwig
6 */
Jens Axboe320ae512013-10-24 09:20:05 +01007#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/backing-dev.h>
10#include <linux/bio.h>
11#include <linux/blkdev.h>
Catalin Marinasf75782e2015-09-14 18:16:02 +010012#include <linux/kmemleak.h>
Jens Axboe320ae512013-10-24 09:20:05 +010013#include <linux/mm.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/workqueue.h>
17#include <linux/smp.h>
18#include <linux/llist.h>
19#include <linux/list_sort.h>
20#include <linux/cpu.h>
21#include <linux/cache.h>
22#include <linux/sched/sysctl.h>
23#include <linux/delay.h>
Jens Axboeaedcd722014-09-17 08:27:03 -060024#include <linux/crash_dump.h>
Jens Axboe88c7b2b2016-08-25 08:07:30 -060025#include <linux/prefetch.h>
Jens Axboe320ae512013-10-24 09:20:05 +010026
27#include <trace/events/block.h>
28
29#include <linux/blk-mq.h>
30#include "blk.h"
31#include "blk-mq.h"
32#include "blk-mq-tag.h"
33
34static DEFINE_MUTEX(all_q_mutex);
35static LIST_HEAD(all_q_list);
36
37static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
38
Jens Axboe320ae512013-10-24 09:20:05 +010039/*
40 * Check if any of the ctx's have pending work in this hardware queue
41 */
42static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
43{
Omar Sandoval88459642016-09-17 08:38:44 -060044 return sbitmap_any_bit_set(&hctx->ctx_map);
Jens Axboe320ae512013-10-24 09:20:05 +010045}
46
47/*
48 * Mark this ctx as having pending work in this hardware queue
49 */
50static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
51 struct blk_mq_ctx *ctx)
52{
Omar Sandoval88459642016-09-17 08:38:44 -060053 if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw))
54 sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe1429d7c2014-05-19 09:23:55 -060055}
56
57static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
58 struct blk_mq_ctx *ctx)
59{
Omar Sandoval88459642016-09-17 08:38:44 -060060 sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe320ae512013-10-24 09:20:05 +010061}
62
Keith Buschb4c6a022014-12-19 17:54:14 -070063void blk_mq_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080064{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020065 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040066
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020067 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
68 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040069 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040070 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040071 }
Tejun Heof3af0202014-11-04 13:52:27 -050072}
Keith Buschb4c6a022014-12-19 17:54:14 -070073EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -050074
75static void blk_mq_freeze_queue_wait(struct request_queue *q)
76{
Dan Williams3ef28e82015-10-21 13:20:12 -040077 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +080078}
79
Tejun Heof3af0202014-11-04 13:52:27 -050080/*
81 * Guarantee no request is in use, so we can change any data structure of
82 * the queue afterward.
83 */
Dan Williams3ef28e82015-10-21 13:20:12 -040084void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -050085{
Dan Williams3ef28e82015-10-21 13:20:12 -040086 /*
87 * In the !blk_mq case we are only calling this to kill the
88 * q_usage_counter, otherwise this increases the freeze depth
89 * and waits for it to return to zero. For this reason there is
90 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
91 * exported to drivers as the only user for unfreeze is blk_mq.
92 */
Tejun Heof3af0202014-11-04 13:52:27 -050093 blk_mq_freeze_queue_start(q);
94 blk_mq_freeze_queue_wait(q);
95}
Dan Williams3ef28e82015-10-21 13:20:12 -040096
97void blk_mq_freeze_queue(struct request_queue *q)
98{
99 /*
100 * ...just an alias to keep freeze and unfreeze actions balanced
101 * in the blk_mq_* namespace
102 */
103 blk_freeze_queue(q);
104}
Jens Axboec761d962015-01-02 15:05:12 -0700105EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500106
Keith Buschb4c6a022014-12-19 17:54:14 -0700107void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100108{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200109 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100110
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200111 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
112 WARN_ON_ONCE(freeze_depth < 0);
113 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400114 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100115 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600116 }
Jens Axboe320ae512013-10-24 09:20:05 +0100117}
Keith Buschb4c6a022014-12-19 17:54:14 -0700118EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100119
Jens Axboeaed3ea92014-12-22 14:04:42 -0700120void blk_mq_wake_waiters(struct request_queue *q)
121{
122 struct blk_mq_hw_ctx *hctx;
123 unsigned int i;
124
125 queue_for_each_hw_ctx(q, hctx, i)
126 if (blk_mq_hw_queue_mapped(hctx))
127 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700128
129 /*
130 * If we are called because the queue has now been marked as
131 * dying, we need to ensure that processes currently waiting on
132 * the queue are notified as well.
133 */
134 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700135}
136
Jens Axboe320ae512013-10-24 09:20:05 +0100137bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
138{
139 return blk_mq_has_free_tags(hctx->tags);
140}
141EXPORT_SYMBOL(blk_mq_can_queue);
142
Jens Axboe94eddfb2013-11-19 09:25:07 -0700143static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
Mike Christiecc6e3b12016-06-05 14:32:12 -0500144 struct request *rq, int op,
145 unsigned int op_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100146{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700147 if (blk_queue_io_stat(q))
Mike Christiecc6e3b12016-06-05 14:32:12 -0500148 op_flags |= REQ_IO_STAT;
Jens Axboe94eddfb2013-11-19 09:25:07 -0700149
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200150 INIT_LIST_HEAD(&rq->queuelist);
151 /* csd/requeue_work/fifo_time is initialized before use */
152 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100153 rq->mq_ctx = ctx;
Mike Christiecc6e3b12016-06-05 14:32:12 -0500154 req_set_op_attrs(rq, op, op_flags);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200155 /* do not touch atomic flags, it needs atomic ops against the timer */
156 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200157 INIT_HLIST_NODE(&rq->hash);
158 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200159 rq->rq_disk = NULL;
160 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600161 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200162#ifdef CONFIG_BLK_CGROUP
163 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700164 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200165 rq->io_start_time_ns = 0;
166#endif
167 rq->nr_phys_segments = 0;
168#if defined(CONFIG_BLK_DEV_INTEGRITY)
169 rq->nr_integrity_segments = 0;
170#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200171 rq->special = NULL;
172 /* tag was already set */
173 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200174
Tony Battersby6f4a16262014-08-22 15:53:39 -0400175 rq->cmd = rq->__cmd;
176
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200177 rq->extra_len = 0;
178 rq->sense_len = 0;
179 rq->resid_len = 0;
180 rq->sense = NULL;
181
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200182 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600183 rq->timeout = 0;
184
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200185 rq->end_io = NULL;
186 rq->end_io_data = NULL;
187 rq->next_rq = NULL;
188
Mike Christied9d8c5c2016-06-05 14:32:16 -0500189 ctx->rq_dispatched[rw_is_sync(op, op_flags)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100190}
191
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200192static struct request *
Mike Christiecc6e3b12016-06-05 14:32:12 -0500193__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int op, int op_flags)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200194{
195 struct request *rq;
196 unsigned int tag;
197
Ming Leicb96a42c2014-06-01 00:43:37 +0800198 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200199 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a42c2014-06-01 00:43:37 +0800200 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200201
Ming Leicb96a42c2014-06-01 00:43:37 +0800202 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200203 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a42c2014-06-01 00:43:37 +0800204 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200205 }
206
207 rq->tag = tag;
Mike Christiecc6e3b12016-06-05 14:32:12 -0500208 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op, op_flags);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200209 return rq;
210 }
211
212 return NULL;
213}
214
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100215struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
216 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100217{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200218 struct blk_mq_ctx *ctx;
219 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100220 struct request *rq;
Ming Leicb96a42c2014-06-01 00:43:37 +0800221 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600222 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100223
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100224 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600225 if (ret)
226 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100227
Christoph Hellwigd8525642014-05-27 20:59:50 +0200228 ctx = blk_mq_get_ctx(q);
229 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100230 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200231
Mike Christiecc6e3b12016-06-05 14:32:12 -0500232 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100233 if (!rq && !(flags & BLK_MQ_REQ_NOWAIT)) {
Christoph Hellwigd8525642014-05-27 20:59:50 +0200234 __blk_mq_run_hw_queue(hctx);
235 blk_mq_put_ctx(ctx);
236
237 ctx = blk_mq_get_ctx(q);
238 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100239 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -0500240 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
Ming Leicb96a42c2014-06-01 00:43:37 +0800241 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200242 }
243 blk_mq_put_ctx(ctx);
Keith Buschc76541a2014-12-19 17:54:13 -0700244 if (!rq) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400245 blk_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600246 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a2014-12-19 17:54:13 -0700247 }
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200248
249 rq->__data_len = 0;
250 rq->__sector = (sector_t) -1;
251 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100252 return rq;
253}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600254EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100255
Ming Lin1f5bd332016-06-13 16:45:21 +0200256struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
257 unsigned int flags, unsigned int hctx_idx)
258{
259 struct blk_mq_hw_ctx *hctx;
260 struct blk_mq_ctx *ctx;
261 struct request *rq;
262 struct blk_mq_alloc_data alloc_data;
263 int ret;
264
265 /*
266 * If the tag allocator sleeps we could get an allocation for a
267 * different hardware context. No need to complicate the low level
268 * allocator for this for the rare use case of a command tied to
269 * a specific queue.
270 */
271 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
272 return ERR_PTR(-EINVAL);
273
274 if (hctx_idx >= q->nr_hw_queues)
275 return ERR_PTR(-EIO);
276
277 ret = blk_queue_enter(q, true);
278 if (ret)
279 return ERR_PTR(ret);
280
281 hctx = q->queue_hw_ctx[hctx_idx];
282 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
283
284 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
285 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
286 if (!rq) {
287 blk_queue_exit(q);
288 return ERR_PTR(-EWOULDBLOCK);
289 }
290
291 return rq;
292}
293EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
294
Jens Axboe320ae512013-10-24 09:20:05 +0100295static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
296 struct blk_mq_ctx *ctx, struct request *rq)
297{
298 const int tag = rq->tag;
299 struct request_queue *q = rq->q;
300
Jens Axboe0d2602c2014-05-13 15:10:52 -0600301 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
302 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200303 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600304
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200305 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Omar Sandoval40aabb62016-09-17 01:28:23 -0700306 blk_mq_put_tag(hctx, ctx, tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400307 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100308}
309
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700310void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100311{
312 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700313
314 ctx->rq_completed[rq_is_sync(rq)]++;
315 __blk_mq_free_request(hctx, ctx, rq);
316
317}
318EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
319
320void blk_mq_free_request(struct request *rq)
321{
Jens Axboe320ae512013-10-24 09:20:05 +0100322 struct blk_mq_hw_ctx *hctx;
323 struct request_queue *q = rq->q;
324
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700325 hctx = q->mq_ops->map_queue(q, rq->mq_ctx->cpu);
326 blk_mq_free_hctx_request(hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100327}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700328EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100329
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700330inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100331{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700332 blk_account_io_done(rq);
333
Christoph Hellwig91b63632014-04-16 09:44:53 +0200334 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100335 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200336 } else {
337 if (unlikely(blk_bidi_rq(rq)))
338 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100339 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200340 }
Jens Axboe320ae512013-10-24 09:20:05 +0100341}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700342EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200343
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700344void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200345{
346 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
347 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700348 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200349}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700350EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100351
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800352static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100353{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800354 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100355
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800356 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100357}
358
Jens Axboeed851862014-05-30 21:20:50 -0600359static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100360{
361 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700362 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100363 int cpu;
364
Christoph Hellwig38535202014-04-25 02:32:53 -0700365 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800366 rq->q->softirq_done_fn(rq);
367 return;
368 }
Jens Axboe320ae512013-10-24 09:20:05 +0100369
370 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700371 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
372 shared = cpus_share_cache(cpu, ctx->cpu);
373
374 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800375 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800376 rq->csd.info = rq;
377 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100378 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800379 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800380 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800381 }
Jens Axboe320ae512013-10-24 09:20:05 +0100382 put_cpu();
383}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800384
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700385static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600386{
387 struct request_queue *q = rq->q;
388
389 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700390 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600391 else
392 blk_mq_ipi_complete_request(rq);
393}
394
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800395/**
396 * blk_mq_complete_request - end I/O on a request
397 * @rq: the request being processed
398 *
399 * Description:
400 * Ends all I/O on a request. It does not handle partial completions.
401 * The actual completion happens out-of-order, through a IPI handler.
402 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200403void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800404{
Jens Axboe95f09682014-05-27 17:46:48 -0600405 struct request_queue *q = rq->q;
406
407 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800408 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200409 if (!blk_mark_rq_complete(rq)) {
410 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600411 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200412 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800413}
414EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100415
Keith Busch973c0192015-01-07 18:55:43 -0700416int blk_mq_request_started(struct request *rq)
417{
418 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
419}
420EXPORT_SYMBOL_GPL(blk_mq_request_started);
421
Christoph Hellwige2490072014-09-13 16:40:09 -0700422void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100423{
424 struct request_queue *q = rq->q;
425
426 trace_block_rq_issue(q, rq);
427
Christoph Hellwig742ee692014-04-14 10:30:06 +0200428 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200429 if (unlikely(blk_bidi_rq(rq)))
430 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200431
Ming Lei2b8393b2014-06-10 00:16:41 +0800432 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600433
434 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600435 * Ensure that ->deadline is visible before set the started
436 * flag and clear the completed flag.
437 */
438 smp_mb__before_atomic();
439
440 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600441 * Mark us as started and clear complete. Complete might have been
442 * set if requeue raced with timeout, which then marked it as
443 * complete. So be sure to clear complete again when we start
444 * the request, otherwise we'll ignore the completion event.
445 */
Jens Axboe4b570522014-05-29 11:00:11 -0600446 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
447 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
448 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
449 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800450
451 if (q->dma_drain_size && blk_rq_bytes(rq)) {
452 /*
453 * Make sure space for the drain appears. We know we can do
454 * this because max_hw_segments has been adjusted to be one
455 * fewer than the device can handle.
456 */
457 rq->nr_phys_segments++;
458 }
Jens Axboe320ae512013-10-24 09:20:05 +0100459}
Christoph Hellwige2490072014-09-13 16:40:09 -0700460EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100461
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200462static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100463{
464 struct request_queue *q = rq->q;
465
466 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800467
Christoph Hellwige2490072014-09-13 16:40:09 -0700468 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
469 if (q->dma_drain_size && blk_rq_bytes(rq))
470 rq->nr_phys_segments--;
471 }
Jens Axboe320ae512013-10-24 09:20:05 +0100472}
473
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200474void blk_mq_requeue_request(struct request *rq)
475{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200476 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200477
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200478 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600479 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200480}
481EXPORT_SYMBOL(blk_mq_requeue_request);
482
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600483static void blk_mq_requeue_work(struct work_struct *work)
484{
485 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400486 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600487 LIST_HEAD(rq_list);
488 struct request *rq, *next;
489 unsigned long flags;
490
491 spin_lock_irqsave(&q->requeue_lock, flags);
492 list_splice_init(&q->requeue_list, &rq_list);
493 spin_unlock_irqrestore(&q->requeue_lock, flags);
494
495 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
496 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
497 continue;
498
499 rq->cmd_flags &= ~REQ_SOFTBARRIER;
500 list_del_init(&rq->queuelist);
501 blk_mq_insert_request(rq, true, false, false);
502 }
503
504 while (!list_empty(&rq_list)) {
505 rq = list_entry(rq_list.next, struct request, queuelist);
506 list_del_init(&rq->queuelist);
507 blk_mq_insert_request(rq, false, false, false);
508 }
509
Jens Axboe8b957412014-09-19 13:10:29 -0600510 /*
511 * Use the start variant of queue running here, so that running
512 * the requeue work will kick stopped queues.
513 */
514 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600515}
516
517void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
518{
519 struct request_queue *q = rq->q;
520 unsigned long flags;
521
522 /*
523 * We abuse this flag that is otherwise used by the I/O scheduler to
524 * request head insertation from the workqueue.
525 */
526 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
527
528 spin_lock_irqsave(&q->requeue_lock, flags);
529 if (at_head) {
530 rq->cmd_flags |= REQ_SOFTBARRIER;
531 list_add(&rq->queuelist, &q->requeue_list);
532 } else {
533 list_add_tail(&rq->queuelist, &q->requeue_list);
534 }
535 spin_unlock_irqrestore(&q->requeue_lock, flags);
536}
537EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
538
Keith Buschc68ed592015-01-07 18:55:44 -0700539void blk_mq_cancel_requeue_work(struct request_queue *q)
540{
Mike Snitzer28494502016-09-14 13:28:30 -0400541 cancel_delayed_work_sync(&q->requeue_work);
Keith Buschc68ed592015-01-07 18:55:44 -0700542}
543EXPORT_SYMBOL_GPL(blk_mq_cancel_requeue_work);
544
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600545void blk_mq_kick_requeue_list(struct request_queue *q)
546{
Mike Snitzer28494502016-09-14 13:28:30 -0400547 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600548}
549EXPORT_SYMBOL(blk_mq_kick_requeue_list);
550
Mike Snitzer28494502016-09-14 13:28:30 -0400551void blk_mq_delay_kick_requeue_list(struct request_queue *q,
552 unsigned long msecs)
553{
554 kblockd_schedule_delayed_work(&q->requeue_work,
555 msecs_to_jiffies(msecs));
556}
557EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
558
Jens Axboe1885b242015-01-07 18:55:45 -0700559void blk_mq_abort_requeue_list(struct request_queue *q)
560{
561 unsigned long flags;
562 LIST_HEAD(rq_list);
563
564 spin_lock_irqsave(&q->requeue_lock, flags);
565 list_splice_init(&q->requeue_list, &rq_list);
566 spin_unlock_irqrestore(&q->requeue_lock, flags);
567
568 while (!list_empty(&rq_list)) {
569 struct request *rq;
570
571 rq = list_first_entry(&rq_list, struct request, queuelist);
572 list_del_init(&rq->queuelist);
573 rq->errors = -EIO;
574 blk_mq_end_request(rq, rq->errors);
575 }
576}
577EXPORT_SYMBOL(blk_mq_abort_requeue_list);
578
Jens Axboe0e62f512014-06-04 10:23:49 -0600579struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
580{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600581 if (tag < tags->nr_tags) {
582 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700583 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600584 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700585
586 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600587}
588EXPORT_SYMBOL(blk_mq_tag_to_rq);
589
Jens Axboe320ae512013-10-24 09:20:05 +0100590struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700591 unsigned long next;
592 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100593};
594
Christoph Hellwig90415832014-09-22 10:21:48 -0600595void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100596{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700597 struct blk_mq_ops *ops = req->q->mq_ops;
598 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600599
600 /*
601 * We know that complete is set at this point. If STARTED isn't set
602 * anymore, then the request isn't active and the "timeout" should
603 * just be ignored. This can happen due to the bitflag ordering.
604 * Timeout first checks if STARTED is set, and if it is, assumes
605 * the request is active. But if we race with completion, then
606 * we both flags will get cleared. So check here again, and ignore
607 * a timeout event with a request that isn't active.
608 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700609 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
610 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600611
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700612 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700613 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600614
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700615 switch (ret) {
616 case BLK_EH_HANDLED:
617 __blk_mq_complete_request(req);
618 break;
619 case BLK_EH_RESET_TIMER:
620 blk_add_timer(req);
621 blk_clear_rq_complete(req);
622 break;
623 case BLK_EH_NOT_HANDLED:
624 break;
625 default:
626 printk(KERN_ERR "block: bad eh return: %d\n", ret);
627 break;
628 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600629}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700630
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700631static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
632 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100633{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700634 struct blk_mq_timeout_data *data = priv;
635
Keith Buscheb130db2015-01-08 08:59:53 -0700636 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
637 /*
638 * If a request wasn't started before the queue was
639 * marked dying, kill it here or it'll go unnoticed.
640 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700641 if (unlikely(blk_queue_dying(rq->q))) {
642 rq->errors = -EIO;
643 blk_mq_end_request(rq, rq->errors);
644 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700645 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700646 }
Jens Axboe320ae512013-10-24 09:20:05 +0100647
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700648 if (time_after_eq(jiffies, rq->deadline)) {
649 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700650 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700651 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
652 data->next = rq->deadline;
653 data->next_set = 1;
654 }
Jens Axboe320ae512013-10-24 09:20:05 +0100655}
656
Christoph Hellwig287922e2015-10-30 20:57:30 +0800657static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100658{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800659 struct request_queue *q =
660 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700661 struct blk_mq_timeout_data data = {
662 .next = 0,
663 .next_set = 0,
664 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700665 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100666
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600667 /* A deadlock might occur if a request is stuck requiring a
668 * timeout at the same time a queue freeze is waiting
669 * completion, since the timeout code would not be able to
670 * acquire the queue reference here.
671 *
672 * That's why we don't use blk_queue_enter here; instead, we use
673 * percpu_ref_tryget directly, because we need to be able to
674 * obtain a reference even in the short window between the queue
675 * starting to freeze, by dropping the first reference in
676 * blk_mq_freeze_queue_start, and the moment the last request is
677 * consumed, marked by the instant q_usage_counter reaches
678 * zero.
679 */
680 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800681 return;
682
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200683 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100684
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700685 if (data.next_set) {
686 data.next = blk_rq_timeout(round_jiffies_up(data.next));
687 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600688 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200689 struct blk_mq_hw_ctx *hctx;
690
Ming Leif054b562015-04-21 10:00:19 +0800691 queue_for_each_hw_ctx(q, hctx, i) {
692 /* the hctx may be unmapped, so check it here */
693 if (blk_mq_hw_queue_mapped(hctx))
694 blk_mq_tag_idle(hctx);
695 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600696 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800697 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100698}
699
700/*
701 * Reverse check our software queue for entries that we could potentially
702 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
703 * too much time checking for merges.
704 */
705static bool blk_mq_attempt_merge(struct request_queue *q,
706 struct blk_mq_ctx *ctx, struct bio *bio)
707{
708 struct request *rq;
709 int checked = 8;
710
711 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
712 int el_ret;
713
714 if (!checked--)
715 break;
716
717 if (!blk_rq_merge_ok(rq, bio))
718 continue;
719
720 el_ret = blk_try_merge(rq, bio);
721 if (el_ret == ELEVATOR_BACK_MERGE) {
722 if (bio_attempt_back_merge(q, rq, bio)) {
723 ctx->rq_merged++;
724 return true;
725 }
726 break;
727 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
728 if (bio_attempt_front_merge(q, rq, bio)) {
729 ctx->rq_merged++;
730 return true;
731 }
732 break;
733 }
734 }
735
736 return false;
737}
738
Omar Sandoval88459642016-09-17 08:38:44 -0600739struct flush_busy_ctx_data {
740 struct blk_mq_hw_ctx *hctx;
741 struct list_head *list;
742};
743
744static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
745{
746 struct flush_busy_ctx_data *flush_data = data;
747 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
748 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
749
750 sbitmap_clear_bit(sb, bitnr);
751 spin_lock(&ctx->lock);
752 list_splice_tail_init(&ctx->rq_list, flush_data->list);
753 spin_unlock(&ctx->lock);
754 return true;
755}
756
Jens Axboe320ae512013-10-24 09:20:05 +0100757/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600758 * Process software queues that have been marked busy, splicing them
759 * to the for-dispatch
760 */
761static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
762{
Omar Sandoval88459642016-09-17 08:38:44 -0600763 struct flush_busy_ctx_data data = {
764 .hctx = hctx,
765 .list = list,
766 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600767
Omar Sandoval88459642016-09-17 08:38:44 -0600768 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600769}
770
Jens Axboe703fd1c2016-09-16 13:59:14 -0600771static inline unsigned int queued_to_index(unsigned int queued)
772{
773 if (!queued)
774 return 0;
775
776 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
777}
778
Jens Axboe1429d7c2014-05-19 09:23:55 -0600779/*
Jens Axboe320ae512013-10-24 09:20:05 +0100780 * Run this hardware queue, pulling any software queues mapped to it in.
781 * Note that this function currently has various problems around ordering
782 * of IO. In particular, we'd like FIFO behaviour on handling existing
783 * items on the hctx->dispatch list. Ignore that for now.
784 */
785static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
786{
787 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100788 struct request *rq;
789 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600790 LIST_HEAD(driver_list);
791 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600792 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100793
Jens Axboe5d12f902014-03-19 15:25:02 -0600794 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100795 return;
796
Jens Axboe0e87e582016-08-24 15:38:01 -0600797 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
798 cpu_online(hctx->next_cpu));
799
Jens Axboe320ae512013-10-24 09:20:05 +0100800 hctx->run++;
801
802 /*
803 * Touch any software queue that has pending entries.
804 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600805 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100806
807 /*
808 * If we have previous entries on our dispatch list, grab them
809 * and stuff them at the front for more fair dispatch.
810 */
811 if (!list_empty_careful(&hctx->dispatch)) {
812 spin_lock(&hctx->lock);
813 if (!list_empty(&hctx->dispatch))
814 list_splice_init(&hctx->dispatch, &rq_list);
815 spin_unlock(&hctx->lock);
816 }
817
818 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600819 * Start off with dptr being NULL, so we start the first request
820 * immediately, even if we have more pending.
821 */
822 dptr = NULL;
823
824 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100825 * Now process all the entries, sending them to the driver.
826 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600827 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100828 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600829 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100830 int ret;
831
832 rq = list_first_entry(&rq_list, struct request, queuelist);
833 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100834
Jens Axboe74c45052014-10-29 11:14:52 -0600835 bd.rq = rq;
836 bd.list = dptr;
837 bd.last = list_empty(&rq_list);
838
839 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100840 switch (ret) {
841 case BLK_MQ_RQ_QUEUE_OK:
842 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700843 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100844 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100845 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200846 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100847 break;
848 default:
849 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100850 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800851 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700852 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100853 break;
854 }
855
856 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
857 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600858
859 /*
860 * We've done the first request. If we have more than 1
861 * left in the list, set dptr to defer issue.
862 */
863 if (!dptr && rq_list.next != rq_list.prev)
864 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100865 }
866
Jens Axboe703fd1c2016-09-16 13:59:14 -0600867 hctx->dispatched[queued_to_index(queued)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100868
869 /*
870 * Any items that need requeuing? Stuff them into hctx->dispatch,
871 * that is where we will continue on next queue run.
872 */
873 if (!list_empty(&rq_list)) {
874 spin_lock(&hctx->lock);
875 list_splice(&rq_list, &hctx->dispatch);
876 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600877 /*
878 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
879 * it's possible the queue is stopped and restarted again
880 * before this. Queue restart will dispatch requests. And since
881 * requests in rq_list aren't added into hctx->dispatch yet,
882 * the requests in rq_list might get lost.
883 *
884 * blk_mq_run_hw_queue() already checks the STOPPED bit
885 **/
886 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100887 }
888}
889
Jens Axboe506e9312014-05-07 10:26:44 -0600890/*
891 * It'd be great if the workqueue API had a way to pass
892 * in a mask and had some smarts for more clever placement.
893 * For now we just round-robin here, switching for every
894 * BLK_MQ_CPU_WORK_BATCH queued items.
895 */
896static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
897{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100898 if (hctx->queue->nr_hw_queues == 1)
899 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600900
901 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100902 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600903
904 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
905 if (next_cpu >= nr_cpu_ids)
906 next_cpu = cpumask_first(hctx->cpumask);
907
908 hctx->next_cpu = next_cpu;
909 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100910
911 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600912 }
913
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100914 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600915}
916
Jens Axboe320ae512013-10-24 09:20:05 +0100917void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
918{
Ming Lei19c66e52014-12-03 19:38:04 +0800919 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state) ||
920 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100921 return;
922
Paolo Bonzini398205b2014-11-07 23:03:59 +0100923 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100924 int cpu = get_cpu();
925 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100926 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100927 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100928 return;
929 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600930
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100931 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600932 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100933
Jens Axboe27489a32016-08-24 15:54:25 -0600934 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100935}
936
Mike Snitzerb94ec292015-03-11 23:56:38 -0400937void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100938{
939 struct blk_mq_hw_ctx *hctx;
940 int i;
941
942 queue_for_each_hw_ctx(q, hctx, i) {
943 if ((!blk_mq_hctx_has_pending(hctx) &&
944 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600945 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100946 continue;
947
Mike Snitzerb94ec292015-03-11 23:56:38 -0400948 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100949 }
950}
Mike Snitzerb94ec292015-03-11 23:56:38 -0400951EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +0100952
953void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
954{
Jens Axboe27489a32016-08-24 15:54:25 -0600955 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600956 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100957 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
958}
959EXPORT_SYMBOL(blk_mq_stop_hw_queue);
960
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100961void blk_mq_stop_hw_queues(struct request_queue *q)
962{
963 struct blk_mq_hw_ctx *hctx;
964 int i;
965
966 queue_for_each_hw_ctx(q, hctx, i)
967 blk_mq_stop_hw_queue(hctx);
968}
969EXPORT_SYMBOL(blk_mq_stop_hw_queues);
970
Jens Axboe320ae512013-10-24 09:20:05 +0100971void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
972{
973 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600974
Jens Axboe0ffbce82014-06-25 08:22:34 -0600975 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100976}
977EXPORT_SYMBOL(blk_mq_start_hw_queue);
978
Christoph Hellwig2f268552014-04-16 09:44:56 +0200979void blk_mq_start_hw_queues(struct request_queue *q)
980{
981 struct blk_mq_hw_ctx *hctx;
982 int i;
983
984 queue_for_each_hw_ctx(q, hctx, i)
985 blk_mq_start_hw_queue(hctx);
986}
987EXPORT_SYMBOL(blk_mq_start_hw_queues);
988
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200989void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100990{
991 struct blk_mq_hw_ctx *hctx;
992 int i;
993
994 queue_for_each_hw_ctx(q, hctx, i) {
995 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
996 continue;
997
998 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200999 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001000 }
1001}
1002EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1003
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001004static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001005{
1006 struct blk_mq_hw_ctx *hctx;
1007
Jens Axboe27489a32016-08-24 15:54:25 -06001008 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001009
Jens Axboe320ae512013-10-24 09:20:05 +01001010 __blk_mq_run_hw_queue(hctx);
1011}
1012
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001013static void blk_mq_delay_work_fn(struct work_struct *work)
1014{
1015 struct blk_mq_hw_ctx *hctx;
1016
1017 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1018
1019 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1020 __blk_mq_run_hw_queue(hctx);
1021}
1022
1023void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1024{
Ming Lei19c66e52014-12-03 19:38:04 +08001025 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1026 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001027
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001028 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1029 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001030}
1031EXPORT_SYMBOL(blk_mq_delay_queue);
1032
Ming Leicfd0c552015-10-20 23:13:57 +08001033static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001034 struct request *rq,
1035 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001036{
Jens Axboee57690f2016-08-24 15:34:35 -06001037 struct blk_mq_ctx *ctx = rq->mq_ctx;
1038
Jens Axboe01b983c2013-11-19 18:59:10 -07001039 trace_block_rq_insert(hctx->queue, rq);
1040
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001041 if (at_head)
1042 list_add(&rq->queuelist, &ctx->rq_list);
1043 else
1044 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001045}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001046
Ming Leicfd0c552015-10-20 23:13:57 +08001047static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1048 struct request *rq, bool at_head)
1049{
1050 struct blk_mq_ctx *ctx = rq->mq_ctx;
1051
Jens Axboee57690f2016-08-24 15:34:35 -06001052 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001053 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001054}
1055
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001056void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001057 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001058{
Jens Axboee57690f2016-08-24 15:34:35 -06001059 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001060 struct request_queue *q = rq->q;
1061 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001062
Jens Axboe320ae512013-10-24 09:20:05 +01001063 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1064
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001065 spin_lock(&ctx->lock);
1066 __blk_mq_insert_request(hctx, rq, at_head);
1067 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001068
Jens Axboe320ae512013-10-24 09:20:05 +01001069 if (run_queue)
1070 blk_mq_run_hw_queue(hctx, async);
1071}
1072
1073static void blk_mq_insert_requests(struct request_queue *q,
1074 struct blk_mq_ctx *ctx,
1075 struct list_head *list,
1076 int depth,
1077 bool from_schedule)
1078
1079{
1080 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001081
1082 trace_block_unplug(q, depth, !from_schedule);
1083
Jens Axboe320ae512013-10-24 09:20:05 +01001084 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1085
1086 /*
1087 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1088 * offline now
1089 */
1090 spin_lock(&ctx->lock);
1091 while (!list_empty(list)) {
1092 struct request *rq;
1093
1094 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001095 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001096 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001097 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001098 }
Ming Leicfd0c552015-10-20 23:13:57 +08001099 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001100 spin_unlock(&ctx->lock);
1101
Jens Axboe320ae512013-10-24 09:20:05 +01001102 blk_mq_run_hw_queue(hctx, from_schedule);
1103}
1104
1105static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1106{
1107 struct request *rqa = container_of(a, struct request, queuelist);
1108 struct request *rqb = container_of(b, struct request, queuelist);
1109
1110 return !(rqa->mq_ctx < rqb->mq_ctx ||
1111 (rqa->mq_ctx == rqb->mq_ctx &&
1112 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1113}
1114
1115void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1116{
1117 struct blk_mq_ctx *this_ctx;
1118 struct request_queue *this_q;
1119 struct request *rq;
1120 LIST_HEAD(list);
1121 LIST_HEAD(ctx_list);
1122 unsigned int depth;
1123
1124 list_splice_init(&plug->mq_list, &list);
1125
1126 list_sort(NULL, &list, plug_ctx_cmp);
1127
1128 this_q = NULL;
1129 this_ctx = NULL;
1130 depth = 0;
1131
1132 while (!list_empty(&list)) {
1133 rq = list_entry_rq(list.next);
1134 list_del_init(&rq->queuelist);
1135 BUG_ON(!rq->q);
1136 if (rq->mq_ctx != this_ctx) {
1137 if (this_ctx) {
1138 blk_mq_insert_requests(this_q, this_ctx,
1139 &ctx_list, depth,
1140 from_schedule);
1141 }
1142
1143 this_ctx = rq->mq_ctx;
1144 this_q = rq->q;
1145 depth = 0;
1146 }
1147
1148 depth++;
1149 list_add_tail(&rq->queuelist, &ctx_list);
1150 }
1151
1152 /*
1153 * If 'this_ctx' is set, we know we have entries to complete
1154 * on 'ctx_list'. Do those.
1155 */
1156 if (this_ctx) {
1157 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1158 from_schedule);
1159 }
1160}
1161
1162static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1163{
1164 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001165
Michael Callahana21f2a32016-05-03 11:12:49 -04001166 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001167}
1168
Jens Axboe274a5842014-08-15 12:44:08 -06001169static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1170{
1171 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1172 !blk_queue_nomerges(hctx->queue);
1173}
1174
Jens Axboe07068d52014-05-22 10:40:51 -06001175static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1176 struct blk_mq_ctx *ctx,
1177 struct request *rq, struct bio *bio)
1178{
Ming Leie18378a2015-10-20 23:13:54 +08001179 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001180 blk_mq_bio_to_request(rq, bio);
1181 spin_lock(&ctx->lock);
1182insert_rq:
1183 __blk_mq_insert_request(hctx, rq, false);
1184 spin_unlock(&ctx->lock);
1185 return false;
1186 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001187 struct request_queue *q = hctx->queue;
1188
Jens Axboe07068d52014-05-22 10:40:51 -06001189 spin_lock(&ctx->lock);
1190 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1191 blk_mq_bio_to_request(rq, bio);
1192 goto insert_rq;
1193 }
1194
1195 spin_unlock(&ctx->lock);
1196 __blk_mq_free_request(hctx, ctx, rq);
1197 return true;
1198 }
1199}
1200
1201struct blk_map_ctx {
1202 struct blk_mq_hw_ctx *hctx;
1203 struct blk_mq_ctx *ctx;
1204};
1205
1206static struct request *blk_mq_map_request(struct request_queue *q,
1207 struct bio *bio,
1208 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001209{
1210 struct blk_mq_hw_ctx *hctx;
1211 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001212 struct request *rq;
Mike Christiecc6e3b12016-06-05 14:32:12 -05001213 int op = bio_data_dir(bio);
1214 int op_flags = 0;
Ming Leicb96a42c2014-06-01 00:43:37 +08001215 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001216
Dan Williams3ef28e82015-10-21 13:20:12 -04001217 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001218 ctx = blk_mq_get_ctx(q);
1219 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1220
Jens Axboe1eff9d32016-08-05 15:35:16 -06001221 if (rw_is_sync(bio_op(bio), bio->bi_opf))
Mike Christiecc6e3b12016-06-05 14:32:12 -05001222 op_flags |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001223
Mike Christiecc6e3b12016-06-05 14:32:12 -05001224 trace_block_getrq(q, bio, op);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001225 blk_mq_set_alloc_data(&alloc_data, q, BLK_MQ_REQ_NOWAIT, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001226 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001227 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001228 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001229 blk_mq_put_ctx(ctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001230 trace_block_sleeprq(q, bio, op);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001231
1232 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001233 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001234 blk_mq_set_alloc_data(&alloc_data, q, 0, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001235 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Ming Leicb96a42c2014-06-01 00:43:37 +08001236 ctx = alloc_data.ctx;
1237 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001238 }
1239
1240 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001241 data->hctx = hctx;
1242 data->ctx = ctx;
1243 return rq;
1244}
1245
Jens Axboe7b371632015-11-05 10:41:40 -07001246static int blk_mq_direct_issue_request(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001247{
1248 int ret;
1249 struct request_queue *q = rq->q;
1250 struct blk_mq_hw_ctx *hctx = q->mq_ops->map_queue(q,
1251 rq->mq_ctx->cpu);
1252 struct blk_mq_queue_data bd = {
1253 .rq = rq,
1254 .list = NULL,
1255 .last = 1
1256 };
Jens Axboe7b371632015-11-05 10:41:40 -07001257 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001258
1259 /*
1260 * For OK queue, we are done. For error, kill it. Any other
1261 * error (busy), just add it to our list as we previously
1262 * would have done
1263 */
1264 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001265 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1266 *cookie = new_cookie;
Shaohua Lif984df12015-05-08 10:51:32 -07001267 return 0;
Shaohua Lif984df12015-05-08 10:51:32 -07001268 }
Jens Axboe7b371632015-11-05 10:41:40 -07001269
1270 __blk_mq_requeue_request(rq);
1271
1272 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1273 *cookie = BLK_QC_T_NONE;
1274 rq->errors = -EIO;
1275 blk_mq_end_request(rq, rq->errors);
1276 return 0;
1277 }
1278
1279 return -1;
Shaohua Lif984df12015-05-08 10:51:32 -07001280}
1281
Jens Axboe07068d52014-05-22 10:40:51 -06001282/*
1283 * Multiple hardware queue variant. This will not use per-process plugs,
1284 * but will attempt to bypass the hctx queueing if we can go straight to
1285 * hardware for SYNC IO.
1286 */
Jens Axboedece1632015-11-05 10:41:16 -07001287static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001288{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001289 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1290 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe07068d52014-05-22 10:40:51 -06001291 struct blk_map_ctx data;
1292 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001293 unsigned int request_count = 0;
1294 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001295 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001296 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001297
1298 blk_queue_bounce(q, &bio);
1299
1300 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001301 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001302 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001303 }
1304
Kent Overstreet54efd502015-04-23 22:37:18 -07001305 blk_queue_split(q, &bio, q->bio_split);
1306
Omar Sandoval87c279e2016-06-01 22:18:48 -07001307 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1308 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1309 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001310
Jens Axboe07068d52014-05-22 10:40:51 -06001311 rq = blk_mq_map_request(q, bio, &data);
1312 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001313 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001314
Jens Axboe7b371632015-11-05 10:41:40 -07001315 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001316
1317 if (unlikely(is_flush_fua)) {
1318 blk_mq_bio_to_request(rq, bio);
1319 blk_insert_flush(rq);
1320 goto run_queue;
1321 }
1322
Shaohua Lif984df12015-05-08 10:51:32 -07001323 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001324 /*
1325 * If the driver supports defer issued based on 'last', then
1326 * queue it up like normal since we can potentially save some
1327 * CPU this way.
1328 */
Shaohua Lif984df12015-05-08 10:51:32 -07001329 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1330 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1331 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001332
1333 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001334
1335 /*
Jens Axboeb094f892015-11-20 20:29:45 -07001336 * We do limited pluging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001337 * Otherwise the existing request in the plug list will be
1338 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001339 */
Shaohua Lif984df12015-05-08 10:51:32 -07001340 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001341 /*
1342 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001343 * happens, same_queue_rq is invalid and plug list is
1344 * empty
1345 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001346 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1347 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001348 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001349 }
Shaohua Lif984df12015-05-08 10:51:32 -07001350 list_add_tail(&rq->queuelist, &plug->mq_list);
1351 } else /* is_sync */
1352 old_rq = rq;
1353 blk_mq_put_ctx(data.ctx);
1354 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001355 goto done;
1356 if (!blk_mq_direct_issue_request(old_rq, &cookie))
1357 goto done;
Shaohua Lif984df12015-05-08 10:51:32 -07001358 blk_mq_insert_request(old_rq, false, true, true);
Jens Axboe7b371632015-11-05 10:41:40 -07001359 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001360 }
1361
1362 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1363 /*
1364 * For a SYNC request, send it to the hardware immediately. For
1365 * an ASYNC request, just ensure that we run it later on. The
1366 * latter allows for merging opportunities and more efficient
1367 * dispatching.
1368 */
1369run_queue:
1370 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1371 }
Jens Axboe07068d52014-05-22 10:40:51 -06001372 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001373done:
1374 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001375}
1376
1377/*
1378 * Single hardware queue variant. This will attempt to use any per-process
1379 * plug for merging and IO deferral.
1380 */
Jens Axboedece1632015-11-05 10:41:16 -07001381static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001382{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001383 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1384 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001385 struct blk_plug *plug;
1386 unsigned int request_count = 0;
Jens Axboe07068d52014-05-22 10:40:51 -06001387 struct blk_map_ctx data;
1388 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001389 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001390
Jens Axboe07068d52014-05-22 10:40:51 -06001391 blk_queue_bounce(q, &bio);
1392
1393 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001394 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001395 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001396 }
1397
Kent Overstreet54efd502015-04-23 22:37:18 -07001398 blk_queue_split(q, &bio, q->bio_split);
1399
Omar Sandoval87c279e2016-06-01 22:18:48 -07001400 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1401 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1402 return BLK_QC_T_NONE;
1403 } else
1404 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001405
1406 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001407 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001408 return BLK_QC_T_NONE;
Jens Axboe320ae512013-10-24 09:20:05 +01001409
Jens Axboe7b371632015-11-05 10:41:40 -07001410 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001411
1412 if (unlikely(is_flush_fua)) {
1413 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001414 blk_insert_flush(rq);
1415 goto run_queue;
1416 }
1417
1418 /*
1419 * A task plug currently exists. Since this is completely lockless,
1420 * utilize that to temporarily store requests until the task is
1421 * either done or scheduled away.
1422 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001423 plug = current->plug;
1424 if (plug) {
1425 blk_mq_bio_to_request(rq, bio);
Ming Lei676d0602015-10-20 23:13:56 +08001426 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001427 trace_block_plug(q);
Jens Axboeb094f892015-11-20 20:29:45 -07001428
1429 blk_mq_put_ctx(data.ctx);
1430
1431 if (request_count >= BLK_MAX_REQUEST_COUNT) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001432 blk_flush_plug_list(plug, false);
1433 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001434 }
Jens Axboeb094f892015-11-20 20:29:45 -07001435
Jeff Moyere6c44382015-05-08 10:51:30 -07001436 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001437 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001438 }
1439
Jens Axboe07068d52014-05-22 10:40:51 -06001440 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1441 /*
1442 * For a SYNC request, send it to the hardware immediately. For
1443 * an ASYNC request, just ensure that we run it later on. The
1444 * latter allows for merging opportunities and more efficient
1445 * dispatching.
1446 */
1447run_queue:
1448 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001449 }
1450
Jens Axboe07068d52014-05-22 10:40:51 -06001451 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001452 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001453}
1454
1455/*
1456 * Default mapping to a software queue, since we use one per CPU.
1457 */
1458struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1459{
1460 return q->queue_hw_ctx[q->mq_map[cpu]];
1461}
1462EXPORT_SYMBOL(blk_mq_map_queue);
1463
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001464static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1465 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001466{
1467 struct page *page;
1468
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001469 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001470 int i;
1471
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001472 for (i = 0; i < tags->nr_tags; i++) {
1473 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001474 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001475 set->ops->exit_request(set->driver_data, tags->rqs[i],
1476 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001477 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001478 }
1479 }
1480
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001481 while (!list_empty(&tags->page_list)) {
1482 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001483 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001484 /*
1485 * Remove kmemleak object previously allocated in
1486 * blk_mq_init_rq_map().
1487 */
1488 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001489 __free_pages(page, page->private);
1490 }
1491
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001492 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001493
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001494 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001495}
1496
1497static size_t order_to_size(unsigned int order)
1498{
Ming Lei4ca08502014-04-19 18:00:18 +08001499 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001500}
1501
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001502static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1503 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001504{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001505 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001506 unsigned int i, j, entries_per_page, max_order = 4;
1507 size_t rq_size, left;
1508
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001509 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001510 set->numa_node,
1511 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001512 if (!tags)
1513 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001514
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001515 INIT_LIST_HEAD(&tags->page_list);
1516
Jens Axboea5164402014-09-10 09:02:03 -06001517 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1518 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1519 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001520 if (!tags->rqs) {
1521 blk_mq_free_tags(tags);
1522 return NULL;
1523 }
Jens Axboe320ae512013-10-24 09:20:05 +01001524
1525 /*
1526 * rq_size is the size of the request plus driver payload, rounded
1527 * to the cacheline size
1528 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001529 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001530 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001531 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001532
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001533 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001534 int this_order = max_order;
1535 struct page *page;
1536 int to_do;
1537 void *p;
1538
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001539 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001540 this_order--;
1541
1542 do {
Jens Axboea5164402014-09-10 09:02:03 -06001543 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001544 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001545 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001546 if (page)
1547 break;
1548 if (!this_order--)
1549 break;
1550 if (order_to_size(this_order) < rq_size)
1551 break;
1552 } while (1);
1553
1554 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001555 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001556
1557 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001558 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001559
1560 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001561 /*
1562 * Allow kmemleak to scan these pages as they contain pointers
1563 * to additional allocations like via ops->init_request().
1564 */
1565 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001566 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001567 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001568 left -= to_do * rq_size;
1569 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001570 tags->rqs[i] = p;
1571 if (set->ops->init_request) {
1572 if (set->ops->init_request(set->driver_data,
1573 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001574 set->numa_node)) {
1575 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001576 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001577 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001578 }
1579
Jens Axboe320ae512013-10-24 09:20:05 +01001580 p += rq_size;
1581 i++;
1582 }
1583 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001584 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001585
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001586fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001587 blk_mq_free_rq_map(set, tags, hctx_idx);
1588 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001589}
1590
Jens Axboee57690f2016-08-24 15:34:35 -06001591/*
1592 * 'cpu' is going away. splice any existing rq_list entries from this
1593 * software queue to the hw queue dispatch list, and ensure that it
1594 * gets run.
1595 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001596static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001597{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001598 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001599 struct blk_mq_ctx *ctx;
1600 LIST_HEAD(tmp);
1601
Thomas Gleixner9467f852016-09-22 08:05:17 -06001602 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001603 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001604
1605 spin_lock(&ctx->lock);
1606 if (!list_empty(&ctx->rq_list)) {
1607 list_splice_init(&ctx->rq_list, &tmp);
1608 blk_mq_hctx_clear_pending(hctx, ctx);
1609 }
1610 spin_unlock(&ctx->lock);
1611
1612 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001613 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001614
Jens Axboee57690f2016-08-24 15:34:35 -06001615 spin_lock(&hctx->lock);
1616 list_splice_tail_init(&tmp, &hctx->dispatch);
1617 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001618
1619 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001620 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001621}
1622
Thomas Gleixner9467f852016-09-22 08:05:17 -06001623static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001624{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001625 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1626 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001627}
1628
Ming Leic3b4afc2015-06-04 22:25:04 +08001629/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001630static void blk_mq_exit_hctx(struct request_queue *q,
1631 struct blk_mq_tag_set *set,
1632 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1633{
Ming Leif70ced02014-09-25 23:23:47 +08001634 unsigned flush_start_tag = set->queue_depth;
1635
Ming Lei08e98fc2014-09-25 23:23:38 +08001636 blk_mq_tag_idle(hctx);
1637
Ming Leif70ced02014-09-25 23:23:47 +08001638 if (set->ops->exit_request)
1639 set->ops->exit_request(set->driver_data,
1640 hctx->fq->flush_rq, hctx_idx,
1641 flush_start_tag + hctx_idx);
1642
Ming Lei08e98fc2014-09-25 23:23:38 +08001643 if (set->ops->exit_hctx)
1644 set->ops->exit_hctx(hctx, hctx_idx);
1645
Thomas Gleixner9467f852016-09-22 08:05:17 -06001646 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001647 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001648 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001649}
1650
Ming Lei624dbe42014-05-27 23:35:13 +08001651static void blk_mq_exit_hw_queues(struct request_queue *q,
1652 struct blk_mq_tag_set *set, int nr_queue)
1653{
1654 struct blk_mq_hw_ctx *hctx;
1655 unsigned int i;
1656
1657 queue_for_each_hw_ctx(q, hctx, i) {
1658 if (i == nr_queue)
1659 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001660 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001661 }
Ming Lei624dbe42014-05-27 23:35:13 +08001662}
1663
1664static void blk_mq_free_hw_queues(struct request_queue *q,
1665 struct blk_mq_tag_set *set)
1666{
1667 struct blk_mq_hw_ctx *hctx;
1668 unsigned int i;
1669
Ming Leie09aae72015-01-29 20:17:27 +08001670 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001671 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001672}
1673
Ming Lei08e98fc2014-09-25 23:23:38 +08001674static int blk_mq_init_hctx(struct request_queue *q,
1675 struct blk_mq_tag_set *set,
1676 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1677{
1678 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001679 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001680
1681 node = hctx->numa_node;
1682 if (node == NUMA_NO_NODE)
1683 node = hctx->numa_node = set->numa_node;
1684
Jens Axboe27489a32016-08-24 15:54:25 -06001685 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001686 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1687 spin_lock_init(&hctx->lock);
1688 INIT_LIST_HEAD(&hctx->dispatch);
1689 hctx->queue = q;
1690 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001691 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001692
Thomas Gleixner9467f852016-09-22 08:05:17 -06001693 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001694
1695 hctx->tags = set->tags[hctx_idx];
1696
1697 /*
1698 * Allocate space for all possible cpus to avoid allocation at
1699 * runtime
1700 */
1701 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1702 GFP_KERNEL, node);
1703 if (!hctx->ctxs)
1704 goto unregister_cpu_notifier;
1705
Omar Sandoval88459642016-09-17 08:38:44 -06001706 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1707 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001708 goto free_ctxs;
1709
1710 hctx->nr_ctx = 0;
1711
1712 if (set->ops->init_hctx &&
1713 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1714 goto free_bitmap;
1715
Ming Leif70ced02014-09-25 23:23:47 +08001716 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1717 if (!hctx->fq)
1718 goto exit_hctx;
1719
1720 if (set->ops->init_request &&
1721 set->ops->init_request(set->driver_data,
1722 hctx->fq->flush_rq, hctx_idx,
1723 flush_start_tag + hctx_idx, node))
1724 goto free_fq;
1725
Ming Lei08e98fc2014-09-25 23:23:38 +08001726 return 0;
1727
Ming Leif70ced02014-09-25 23:23:47 +08001728 free_fq:
1729 kfree(hctx->fq);
1730 exit_hctx:
1731 if (set->ops->exit_hctx)
1732 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001733 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001734 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001735 free_ctxs:
1736 kfree(hctx->ctxs);
1737 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001738 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001739 return -1;
1740}
1741
Jens Axboe320ae512013-10-24 09:20:05 +01001742static void blk_mq_init_cpu_queues(struct request_queue *q,
1743 unsigned int nr_hw_queues)
1744{
1745 unsigned int i;
1746
1747 for_each_possible_cpu(i) {
1748 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1749 struct blk_mq_hw_ctx *hctx;
1750
1751 memset(__ctx, 0, sizeof(*__ctx));
1752 __ctx->cpu = i;
1753 spin_lock_init(&__ctx->lock);
1754 INIT_LIST_HEAD(&__ctx->rq_list);
1755 __ctx->queue = q;
1756
1757 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001758 if (!cpu_online(i))
1759 continue;
1760
Jens Axboee4043dc2014-04-09 10:18:23 -06001761 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001762
Jens Axboe320ae512013-10-24 09:20:05 +01001763 /*
1764 * Set local node, IFF we have more than one hw queue. If
1765 * not, we remain on the home node of the device
1766 */
1767 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301768 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001769 }
1770}
1771
Akinobu Mita57783222015-09-27 02:09:23 +09001772static void blk_mq_map_swqueue(struct request_queue *q,
1773 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001774{
1775 unsigned int i;
1776 struct blk_mq_hw_ctx *hctx;
1777 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001778 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001779
Akinobu Mita60de0742015-09-27 02:09:25 +09001780 /*
1781 * Avoid others reading imcomplete hctx->cpumask through sysfs
1782 */
1783 mutex_lock(&q->sysfs_lock);
1784
Jens Axboe320ae512013-10-24 09:20:05 +01001785 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001786 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001787 hctx->nr_ctx = 0;
1788 }
1789
1790 /*
1791 * Map software to hardware queues
1792 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001793 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001794 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001795 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001796 continue;
1797
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001798 ctx = per_cpu_ptr(q->queue_ctx, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001799 hctx = q->mq_ops->map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001800
Jens Axboee4043dc2014-04-09 10:18:23 -06001801 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001802 ctx->index_hw = hctx->nr_ctx;
1803 hctx->ctxs[hctx->nr_ctx++] = ctx;
1804 }
Jens Axboe506e9312014-05-07 10:26:44 -06001805
Akinobu Mita60de0742015-09-27 02:09:25 +09001806 mutex_unlock(&q->sysfs_lock);
1807
Jens Axboe506e9312014-05-07 10:26:44 -06001808 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001809 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001810 * If no software queues are mapped to this hardware queue,
1811 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001812 */
1813 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001814 if (set->tags[i]) {
1815 blk_mq_free_rq_map(set, set->tags[i], i);
1816 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001817 }
Ming Lei2a34c082015-04-21 10:00:20 +08001818 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001819 continue;
1820 }
1821
Ming Lei2a34c082015-04-21 10:00:20 +08001822 /* unmapped hw queue can be remapped after CPU topo changed */
1823 if (!set->tags[i])
1824 set->tags[i] = blk_mq_init_rq_map(set, i);
1825 hctx->tags = set->tags[i];
1826 WARN_ON(!hctx->tags);
1827
Raghavendra K Te0e827b2015-12-02 16:57:06 +05301828 cpumask_copy(hctx->tags->cpumask, hctx->cpumask);
Jens Axboe484b4062014-05-21 14:01:15 -06001829 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001830 * Set the map size to the number of mapped software queues.
1831 * This is more accurate and more efficient than looping
1832 * over all possibly mapped software queues.
1833 */
Omar Sandoval88459642016-09-17 08:38:44 -06001834 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06001835
1836 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001837 * Initialize batch roundrobin counts
1838 */
Jens Axboe506e9312014-05-07 10:26:44 -06001839 hctx->next_cpu = cpumask_first(hctx->cpumask);
1840 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1841 }
Jens Axboe320ae512013-10-24 09:20:05 +01001842}
1843
Jeff Moyer2404e602015-11-03 10:40:06 -05001844static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001845{
1846 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001847 int i;
1848
Jeff Moyer2404e602015-11-03 10:40:06 -05001849 queue_for_each_hw_ctx(q, hctx, i) {
1850 if (shared)
1851 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1852 else
1853 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1854 }
1855}
1856
1857static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1858{
1859 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001860
1861 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1862 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001863 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001864 blk_mq_unfreeze_queue(q);
1865 }
1866}
1867
1868static void blk_mq_del_queue_tag_set(struct request_queue *q)
1869{
1870 struct blk_mq_tag_set *set = q->tag_set;
1871
Jens Axboe0d2602c2014-05-13 15:10:52 -06001872 mutex_lock(&set->tag_list_lock);
1873 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001874 if (list_is_singular(&set->tag_list)) {
1875 /* just transitioned to unshared */
1876 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1877 /* update existing queue */
1878 blk_mq_update_tag_set_depth(set, false);
1879 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001880 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001881}
1882
1883static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1884 struct request_queue *q)
1885{
1886 q->tag_set = set;
1887
1888 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001889
1890 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1891 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1892 set->flags |= BLK_MQ_F_TAG_SHARED;
1893 /* update existing queue */
1894 blk_mq_update_tag_set_depth(set, true);
1895 }
1896 if (set->flags & BLK_MQ_F_TAG_SHARED)
1897 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001898 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001899
Jens Axboe0d2602c2014-05-13 15:10:52 -06001900 mutex_unlock(&set->tag_list_lock);
1901}
1902
Ming Leie09aae72015-01-29 20:17:27 +08001903/*
1904 * It is the actual release handler for mq, but we do it from
1905 * request queue's release handler for avoiding use-after-free
1906 * and headache because q->mq_kobj shouldn't have been introduced,
1907 * but we can't group ctx/kctx kobj without it.
1908 */
1909void blk_mq_release(struct request_queue *q)
1910{
1911 struct blk_mq_hw_ctx *hctx;
1912 unsigned int i;
1913
1914 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001915 queue_for_each_hw_ctx(q, hctx, i) {
1916 if (!hctx)
1917 continue;
1918 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08001919 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08001920 }
Ming Leie09aae72015-01-29 20:17:27 +08001921
Akinobu Mitaa723bab2015-09-27 02:09:21 +09001922 kfree(q->mq_map);
1923 q->mq_map = NULL;
1924
Ming Leie09aae72015-01-29 20:17:27 +08001925 kfree(q->queue_hw_ctx);
1926
1927 /* ctx kobj stays in queue_ctx */
1928 free_percpu(q->queue_ctx);
1929}
1930
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001931struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001932{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001933 struct request_queue *uninit_q, *q;
1934
1935 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1936 if (!uninit_q)
1937 return ERR_PTR(-ENOMEM);
1938
1939 q = blk_mq_init_allocated_queue(set, uninit_q);
1940 if (IS_ERR(q))
1941 blk_cleanup_queue(uninit_q);
1942
1943 return q;
1944}
1945EXPORT_SYMBOL(blk_mq_init_queue);
1946
Keith Busch868f2f02015-12-17 17:08:14 -07001947static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
1948 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001949{
Keith Busch868f2f02015-12-17 17:08:14 -07001950 int i, j;
1951 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001952
Keith Busch868f2f02015-12-17 17:08:14 -07001953 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001954 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07001955 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06001956
Keith Busch868f2f02015-12-17 17:08:14 -07001957 if (hctxs[i])
1958 continue;
1959
1960 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001961 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1962 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001963 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07001964 break;
Jens Axboe320ae512013-10-24 09:20:05 +01001965
Jens Axboea86073e2014-10-13 15:41:54 -06001966 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07001967 node)) {
1968 kfree(hctxs[i]);
1969 hctxs[i] = NULL;
1970 break;
1971 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001972
Jens Axboe0d2602c2014-05-13 15:10:52 -06001973 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001974 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001975 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07001976
1977 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
1978 free_cpumask_var(hctxs[i]->cpumask);
1979 kfree(hctxs[i]);
1980 hctxs[i] = NULL;
1981 break;
1982 }
1983 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001984 }
Keith Busch868f2f02015-12-17 17:08:14 -07001985 for (j = i; j < q->nr_hw_queues; j++) {
1986 struct blk_mq_hw_ctx *hctx = hctxs[j];
1987
1988 if (hctx) {
1989 if (hctx->tags) {
1990 blk_mq_free_rq_map(set, hctx->tags, j);
1991 set->tags[j] = NULL;
1992 }
1993 blk_mq_exit_hctx(q, set, hctx, j);
1994 free_cpumask_var(hctx->cpumask);
1995 kobject_put(&hctx->kobj);
1996 kfree(hctx->ctxs);
1997 kfree(hctx);
1998 hctxs[j] = NULL;
1999
2000 }
2001 }
2002 q->nr_hw_queues = i;
2003 blk_mq_sysfs_register(q);
2004}
2005
2006struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2007 struct request_queue *q)
2008{
Ming Lei66841672016-02-12 15:27:00 +08002009 /* mark the queue as mq asap */
2010 q->mq_ops = set->ops;
2011
Keith Busch868f2f02015-12-17 17:08:14 -07002012 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2013 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002014 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002015
2016 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2017 GFP_KERNEL, set->numa_node);
2018 if (!q->queue_hw_ctx)
2019 goto err_percpu;
2020
2021 q->mq_map = blk_mq_make_queue_map(set);
2022 if (!q->mq_map)
2023 goto err_map;
2024
2025 blk_mq_realloc_hw_ctxs(set, q);
2026 if (!q->nr_hw_queues)
2027 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002028
Christoph Hellwig287922e2015-10-30 20:57:30 +08002029 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002030 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002031
2032 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002033
Jens Axboe94eddfb2013-11-19 09:25:07 -07002034 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002035
Jens Axboe05f1dd52014-05-29 09:53:32 -06002036 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2037 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2038
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002039 q->sg_reserved_size = INT_MAX;
2040
Mike Snitzer28494502016-09-14 13:28:30 -04002041 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002042 INIT_LIST_HEAD(&q->requeue_list);
2043 spin_lock_init(&q->requeue_lock);
2044
Jens Axboe07068d52014-05-22 10:40:51 -06002045 if (q->nr_hw_queues > 1)
2046 blk_queue_make_request(q, blk_mq_make_request);
2047 else
2048 blk_queue_make_request(q, blk_sq_make_request);
2049
Jens Axboeeba71762014-05-20 15:17:27 -06002050 /*
2051 * Do this after blk_queue_make_request() overrides it...
2052 */
2053 q->nr_requests = set->queue_depth;
2054
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002055 if (set->ops->complete)
2056 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002057
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002058 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002059
Akinobu Mita57783222015-09-27 02:09:23 +09002060 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002061 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002062
Jens Axboe320ae512013-10-24 09:20:05 +01002063 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002064 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002065 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002066
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002067 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002068 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002069
Jens Axboe320ae512013-10-24 09:20:05 +01002070 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002071
Jens Axboe320ae512013-10-24 09:20:05 +01002072err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002073 kfree(q->mq_map);
Jens Axboef14bbe72014-05-27 12:06:53 -06002074err_map:
Keith Busch868f2f02015-12-17 17:08:14 -07002075 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002076err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002077 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002078err_exit:
2079 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002080 return ERR_PTR(-ENOMEM);
2081}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002082EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002083
2084void blk_mq_free_queue(struct request_queue *q)
2085{
Ming Lei624dbe42014-05-27 23:35:13 +08002086 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002087
Akinobu Mita0e626362015-09-27 02:09:22 +09002088 mutex_lock(&all_q_mutex);
2089 list_del_init(&q->all_q_node);
2090 mutex_unlock(&all_q_mutex);
2091
Jens Axboe0d2602c2014-05-13 15:10:52 -06002092 blk_mq_del_queue_tag_set(q);
2093
Ming Lei624dbe42014-05-27 23:35:13 +08002094 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2095 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002096}
Jens Axboe320ae512013-10-24 09:20:05 +01002097
2098/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002099static void blk_mq_queue_reinit(struct request_queue *q,
2100 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002101{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002102 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002103
Jens Axboe67aec142014-05-30 08:25:36 -06002104 blk_mq_sysfs_unregister(q);
2105
Akinobu Mita57783222015-09-27 02:09:23 +09002106 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002107
2108 /*
2109 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2110 * we should change hctx numa_node according to new topology (this
2111 * involves free and re-allocate memory, worthy doing?)
2112 */
2113
Akinobu Mita57783222015-09-27 02:09:23 +09002114 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002115
Jens Axboe67aec142014-05-30 08:25:36 -06002116 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002117}
2118
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002119/*
2120 * New online cpumask which is going to be set in this hotplug event.
2121 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2122 * one-by-one and dynamically allocating this could result in a failure.
2123 */
2124static struct cpumask cpuhp_online_new;
2125
2126static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002127{
2128 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002129
2130 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002131 /*
2132 * We need to freeze and reinit all existing queues. Freezing
2133 * involves synchronous wait for an RCU grace period and doing it
2134 * one by one may take a long time. Start freezing all queues in
2135 * one swoop and then wait for the completions so that freezing can
2136 * take place in parallel.
2137 */
2138 list_for_each_entry(q, &all_q_list, all_q_node)
2139 blk_mq_freeze_queue_start(q);
Ming Leif054b562015-04-21 10:00:19 +08002140 list_for_each_entry(q, &all_q_list, all_q_node) {
Tejun Heof3af0202014-11-04 13:52:27 -05002141 blk_mq_freeze_queue_wait(q);
2142
Ming Leif054b562015-04-21 10:00:19 +08002143 /*
2144 * timeout handler can't touch hw queue during the
2145 * reinitialization
2146 */
2147 del_timer_sync(&q->timeout);
2148 }
2149
Jens Axboe320ae512013-10-24 09:20:05 +01002150 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002151 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002152
2153 list_for_each_entry(q, &all_q_list, all_q_node)
2154 blk_mq_unfreeze_queue(q);
2155
Jens Axboe320ae512013-10-24 09:20:05 +01002156 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002157}
2158
2159static int blk_mq_queue_reinit_dead(unsigned int cpu)
2160{
2161 cpumask_clear_cpu(cpu, &cpuhp_online_new);
2162 blk_mq_queue_reinit_work();
2163 return 0;
2164}
2165
2166/*
2167 * Before hotadded cpu starts handling requests, new mappings must be
2168 * established. Otherwise, these requests in hw queue might never be
2169 * dispatched.
2170 *
2171 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2172 * for CPU0, and ctx1 for CPU1).
2173 *
2174 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2175 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2176 *
2177 * And then while running hw queue, flush_busy_ctxs() finds bit0 is set in
2178 * pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2179 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list
2180 * is ignored.
2181 */
2182static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2183{
2184 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2185 cpumask_set_cpu(cpu, &cpuhp_online_new);
2186 blk_mq_queue_reinit_work();
2187 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002188}
2189
Jens Axboea5164402014-09-10 09:02:03 -06002190static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2191{
2192 int i;
2193
2194 for (i = 0; i < set->nr_hw_queues; i++) {
2195 set->tags[i] = blk_mq_init_rq_map(set, i);
2196 if (!set->tags[i])
2197 goto out_unwind;
2198 }
2199
2200 return 0;
2201
2202out_unwind:
2203 while (--i >= 0)
2204 blk_mq_free_rq_map(set, set->tags[i], i);
2205
Jens Axboea5164402014-09-10 09:02:03 -06002206 return -ENOMEM;
2207}
2208
2209/*
2210 * Allocate the request maps associated with this tag_set. Note that this
2211 * may reduce the depth asked for, if memory is tight. set->queue_depth
2212 * will be updated to reflect the allocated depth.
2213 */
2214static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2215{
2216 unsigned int depth;
2217 int err;
2218
2219 depth = set->queue_depth;
2220 do {
2221 err = __blk_mq_alloc_rq_maps(set);
2222 if (!err)
2223 break;
2224
2225 set->queue_depth >>= 1;
2226 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2227 err = -ENOMEM;
2228 break;
2229 }
2230 } while (set->queue_depth);
2231
2232 if (!set->queue_depth || err) {
2233 pr_err("blk-mq: failed to allocate request map\n");
2234 return -ENOMEM;
2235 }
2236
2237 if (depth != set->queue_depth)
2238 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2239 depth, set->queue_depth);
2240
2241 return 0;
2242}
2243
Keith Buschf26cdc82015-06-01 09:29:53 -06002244struct cpumask *blk_mq_tags_cpumask(struct blk_mq_tags *tags)
2245{
2246 return tags->cpumask;
2247}
2248EXPORT_SYMBOL_GPL(blk_mq_tags_cpumask);
2249
Jens Axboea4391c62014-06-05 15:21:56 -06002250/*
2251 * Alloc a tag set to be associated with one or more request queues.
2252 * May fail with EINVAL for various error conditions. May adjust the
2253 * requested depth down, if if it too large. In that case, the set
2254 * value will be stored in set->queue_depth.
2255 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002256int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2257{
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002258 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2259
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002260 if (!set->nr_hw_queues)
2261 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002262 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002263 return -EINVAL;
2264 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2265 return -EINVAL;
2266
Xiaoguang Wangf9018ac2015-03-30 13:19:14 +08002267 if (!set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002268 return -EINVAL;
2269
Jens Axboea4391c62014-06-05 15:21:56 -06002270 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2271 pr_info("blk-mq: reduced tag depth to %u\n",
2272 BLK_MQ_MAX_DEPTH);
2273 set->queue_depth = BLK_MQ_MAX_DEPTH;
2274 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002275
Shaohua Li6637fad2014-11-30 16:00:58 -08002276 /*
2277 * If a crashdump is active, then we are potentially in a very
2278 * memory constrained environment. Limit us to 1 queue and
2279 * 64 tags to prevent using too much memory.
2280 */
2281 if (is_kdump_kernel()) {
2282 set->nr_hw_queues = 1;
2283 set->queue_depth = min(64U, set->queue_depth);
2284 }
Keith Busch868f2f02015-12-17 17:08:14 -07002285 /*
2286 * There is no use for more h/w queues than cpus.
2287 */
2288 if (set->nr_hw_queues > nr_cpu_ids)
2289 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002290
Keith Busch868f2f02015-12-17 17:08:14 -07002291 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002292 GFP_KERNEL, set->numa_node);
2293 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002294 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002295
Jens Axboea5164402014-09-10 09:02:03 -06002296 if (blk_mq_alloc_rq_maps(set))
2297 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002298
Jens Axboe0d2602c2014-05-13 15:10:52 -06002299 mutex_init(&set->tag_list_lock);
2300 INIT_LIST_HEAD(&set->tag_list);
2301
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002302 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002303enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002304 kfree(set->tags);
2305 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002306 return -ENOMEM;
2307}
2308EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2309
2310void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2311{
2312 int i;
2313
Keith Busch868f2f02015-12-17 17:08:14 -07002314 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002315 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002316 blk_mq_free_rq_map(set, set->tags[i], i);
2317 }
2318
Ming Lei981bd182014-04-24 00:07:34 +08002319 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002320 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002321}
2322EXPORT_SYMBOL(blk_mq_free_tag_set);
2323
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002324int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2325{
2326 struct blk_mq_tag_set *set = q->tag_set;
2327 struct blk_mq_hw_ctx *hctx;
2328 int i, ret;
2329
2330 if (!set || nr > set->queue_depth)
2331 return -EINVAL;
2332
2333 ret = 0;
2334 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002335 if (!hctx->tags)
2336 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002337 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2338 if (ret)
2339 break;
2340 }
2341
2342 if (!ret)
2343 q->nr_requests = nr;
2344
2345 return ret;
2346}
2347
Keith Busch868f2f02015-12-17 17:08:14 -07002348void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2349{
2350 struct request_queue *q;
2351
2352 if (nr_hw_queues > nr_cpu_ids)
2353 nr_hw_queues = nr_cpu_ids;
2354 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2355 return;
2356
2357 list_for_each_entry(q, &set->tag_list, tag_set_list)
2358 blk_mq_freeze_queue(q);
2359
2360 set->nr_hw_queues = nr_hw_queues;
2361 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2362 blk_mq_realloc_hw_ctxs(set, q);
2363
2364 if (q->nr_hw_queues > 1)
2365 blk_queue_make_request(q, blk_mq_make_request);
2366 else
2367 blk_queue_make_request(q, blk_sq_make_request);
2368
2369 blk_mq_queue_reinit(q, cpu_online_mask);
2370 }
2371
2372 list_for_each_entry(q, &set->tag_list, tag_set_list)
2373 blk_mq_unfreeze_queue(q);
2374}
2375EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2376
Jens Axboe676141e2014-03-20 13:29:18 -06002377void blk_mq_disable_hotplug(void)
2378{
2379 mutex_lock(&all_q_mutex);
2380}
2381
2382void blk_mq_enable_hotplug(void)
2383{
2384 mutex_unlock(&all_q_mutex);
2385}
2386
Jens Axboe320ae512013-10-24 09:20:05 +01002387static int __init blk_mq_init(void)
2388{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002389 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2390 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002391
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002392 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2393 blk_mq_queue_reinit_prepare,
2394 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002395 return 0;
2396}
2397subsys_initcall(blk_mq_init);