blob: b68fdcbe58f6fe95e418710cbb92853e8708042d [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 Axboe320ae512013-10-24 09:20:05 +010025
26#include <trace/events/block.h>
27
28#include <linux/blk-mq.h>
29#include "blk.h"
30#include "blk-mq.h"
31#include "blk-mq-tag.h"
32
33static DEFINE_MUTEX(all_q_mutex);
34static LIST_HEAD(all_q_list);
35
36static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
37
Jens Axboe320ae512013-10-24 09:20:05 +010038/*
39 * Check if any of the ctx's have pending work in this hardware queue
40 */
41static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
42{
43 unsigned int i;
44
Jens Axboe569fd0c2015-04-17 08:28:50 -060045 for (i = 0; i < hctx->ctx_map.size; i++)
Jens Axboe1429d7c2014-05-19 09:23:55 -060046 if (hctx->ctx_map.map[i].word)
Jens Axboe320ae512013-10-24 09:20:05 +010047 return true;
48
49 return false;
50}
51
Jens Axboe1429d7c2014-05-19 09:23:55 -060052static inline struct blk_align_bitmap *get_bm(struct blk_mq_hw_ctx *hctx,
53 struct blk_mq_ctx *ctx)
54{
55 return &hctx->ctx_map.map[ctx->index_hw / hctx->ctx_map.bits_per_word];
56}
57
58#define CTX_TO_BIT(hctx, ctx) \
59 ((ctx)->index_hw & ((hctx)->ctx_map.bits_per_word - 1))
60
Jens Axboe320ae512013-10-24 09:20:05 +010061/*
62 * Mark this ctx as having pending work in this hardware queue
63 */
64static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
65 struct blk_mq_ctx *ctx)
66{
Jens Axboe1429d7c2014-05-19 09:23:55 -060067 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
68
69 if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
70 set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
71}
72
73static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
74 struct blk_mq_ctx *ctx)
75{
76 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
77
78 clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
Jens Axboe320ae512013-10-24 09:20:05 +010079}
80
Keith Buschb4c6a022014-12-19 17:54:14 -070081void blk_mq_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080082{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020083 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040084
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020085 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
86 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040087 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040088 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040089 }
Tejun Heof3af0202014-11-04 13:52:27 -050090}
Keith Buschb4c6a022014-12-19 17:54:14 -070091EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -050092
93static void blk_mq_freeze_queue_wait(struct request_queue *q)
94{
Dan Williams3ef28e82015-10-21 13:20:12 -040095 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +080096}
97
Tejun Heof3af0202014-11-04 13:52:27 -050098/*
99 * Guarantee no request is in use, so we can change any data structure of
100 * the queue afterward.
101 */
Dan Williams3ef28e82015-10-21 13:20:12 -0400102void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500103{
Dan Williams3ef28e82015-10-21 13:20:12 -0400104 /*
105 * In the !blk_mq case we are only calling this to kill the
106 * q_usage_counter, otherwise this increases the freeze depth
107 * and waits for it to return to zero. For this reason there is
108 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
109 * exported to drivers as the only user for unfreeze is blk_mq.
110 */
Tejun Heof3af0202014-11-04 13:52:27 -0500111 blk_mq_freeze_queue_start(q);
112 blk_mq_freeze_queue_wait(q);
113}
Dan Williams3ef28e82015-10-21 13:20:12 -0400114
115void blk_mq_freeze_queue(struct request_queue *q)
116{
117 /*
118 * ...just an alias to keep freeze and unfreeze actions balanced
119 * in the blk_mq_* namespace
120 */
121 blk_freeze_queue(q);
122}
Jens Axboec761d962015-01-02 15:05:12 -0700123EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500124
Keith Buschb4c6a022014-12-19 17:54:14 -0700125void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100126{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200127 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100128
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200129 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
130 WARN_ON_ONCE(freeze_depth < 0);
131 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400132 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100133 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600134 }
Jens Axboe320ae512013-10-24 09:20:05 +0100135}
Keith Buschb4c6a022014-12-19 17:54:14 -0700136EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100137
Jens Axboeaed3ea92014-12-22 14:04:42 -0700138void blk_mq_wake_waiters(struct request_queue *q)
139{
140 struct blk_mq_hw_ctx *hctx;
141 unsigned int i;
142
143 queue_for_each_hw_ctx(q, hctx, i)
144 if (blk_mq_hw_queue_mapped(hctx))
145 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700146
147 /*
148 * If we are called because the queue has now been marked as
149 * dying, we need to ensure that processes currently waiting on
150 * the queue are notified as well.
151 */
152 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700153}
154
Jens Axboe320ae512013-10-24 09:20:05 +0100155bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
156{
157 return blk_mq_has_free_tags(hctx->tags);
158}
159EXPORT_SYMBOL(blk_mq_can_queue);
160
Jens Axboe94eddfb2013-11-19 09:25:07 -0700161static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
Mike Christiecc6e3b12016-06-05 14:32:12 -0500162 struct request *rq, int op,
163 unsigned int op_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100164{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700165 if (blk_queue_io_stat(q))
Mike Christiecc6e3b12016-06-05 14:32:12 -0500166 op_flags |= REQ_IO_STAT;
Jens Axboe94eddfb2013-11-19 09:25:07 -0700167
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200168 INIT_LIST_HEAD(&rq->queuelist);
169 /* csd/requeue_work/fifo_time is initialized before use */
170 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100171 rq->mq_ctx = ctx;
Mike Christiecc6e3b12016-06-05 14:32:12 -0500172 req_set_op_attrs(rq, op, op_flags);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200173 /* do not touch atomic flags, it needs atomic ops against the timer */
174 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200175 INIT_HLIST_NODE(&rq->hash);
176 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200177 rq->rq_disk = NULL;
178 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600179 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200180#ifdef CONFIG_BLK_CGROUP
181 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700182 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200183 rq->io_start_time_ns = 0;
184#endif
185 rq->nr_phys_segments = 0;
186#if defined(CONFIG_BLK_DEV_INTEGRITY)
187 rq->nr_integrity_segments = 0;
188#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200189 rq->special = NULL;
190 /* tag was already set */
191 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200192
Tony Battersby6f4a16262014-08-22 15:53:39 -0400193 rq->cmd = rq->__cmd;
194
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200195 rq->extra_len = 0;
196 rq->sense_len = 0;
197 rq->resid_len = 0;
198 rq->sense = NULL;
199
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200200 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600201 rq->timeout = 0;
202
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200203 rq->end_io = NULL;
204 rq->end_io_data = NULL;
205 rq->next_rq = NULL;
206
Mike Christied9d8c5c2016-06-05 14:32:16 -0500207 ctx->rq_dispatched[rw_is_sync(op, op_flags)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100208}
209
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200210static struct request *
Mike Christiecc6e3b12016-06-05 14:32:12 -0500211__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int op, int op_flags)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200212{
213 struct request *rq;
214 unsigned int tag;
215
Ming Leicb96a422014-06-01 00:43:37 +0800216 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200217 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800218 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200219
Ming Leicb96a422014-06-01 00:43:37 +0800220 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200221 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800222 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200223 }
224
225 rq->tag = tag;
Mike Christiecc6e3b12016-06-05 14:32:12 -0500226 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op, op_flags);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200227 return rq;
228 }
229
230 return NULL;
231}
232
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100233struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
234 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100235{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200236 struct blk_mq_ctx *ctx;
237 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100238 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800239 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600240 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100241
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100242 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600243 if (ret)
244 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100245
Christoph Hellwigd8525642014-05-27 20:59:50 +0200246 ctx = blk_mq_get_ctx(q);
247 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100248 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200249
Mike Christiecc6e3b12016-06-05 14:32:12 -0500250 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100251 if (!rq && !(flags & BLK_MQ_REQ_NOWAIT)) {
Christoph Hellwigd8525642014-05-27 20:59:50 +0200252 __blk_mq_run_hw_queue(hctx);
253 blk_mq_put_ctx(ctx);
254
255 ctx = blk_mq_get_ctx(q);
256 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100257 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -0500258 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
Ming Leicb96a422014-06-01 00:43:37 +0800259 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200260 }
261 blk_mq_put_ctx(ctx);
Keith Buschc76541a2014-12-19 17:54:13 -0700262 if (!rq) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400263 blk_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600264 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a2014-12-19 17:54:13 -0700265 }
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200266
267 rq->__data_len = 0;
268 rq->__sector = (sector_t) -1;
269 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100270 return rq;
271}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600272EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100273
Ming Lin1f5bd332016-06-13 16:45:21 +0200274struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
275 unsigned int flags, unsigned int hctx_idx)
276{
277 struct blk_mq_hw_ctx *hctx;
278 struct blk_mq_ctx *ctx;
279 struct request *rq;
280 struct blk_mq_alloc_data alloc_data;
281 int ret;
282
283 /*
284 * If the tag allocator sleeps we could get an allocation for a
285 * different hardware context. No need to complicate the low level
286 * allocator for this for the rare use case of a command tied to
287 * a specific queue.
288 */
289 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
290 return ERR_PTR(-EINVAL);
291
292 if (hctx_idx >= q->nr_hw_queues)
293 return ERR_PTR(-EIO);
294
295 ret = blk_queue_enter(q, true);
296 if (ret)
297 return ERR_PTR(ret);
298
299 hctx = q->queue_hw_ctx[hctx_idx];
300 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
301
302 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
303 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
304 if (!rq) {
305 blk_queue_exit(q);
306 return ERR_PTR(-EWOULDBLOCK);
307 }
308
309 return rq;
310}
311EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
312
Jens Axboe320ae512013-10-24 09:20:05 +0100313static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
314 struct blk_mq_ctx *ctx, struct request *rq)
315{
316 const int tag = rq->tag;
317 struct request_queue *q = rq->q;
318
Jens Axboe0d2602c2014-05-13 15:10:52 -0600319 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
320 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200321 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600322
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200323 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600324 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400325 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100326}
327
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700328void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100329{
330 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700331
332 ctx->rq_completed[rq_is_sync(rq)]++;
333 __blk_mq_free_request(hctx, ctx, rq);
334
335}
336EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
337
338void blk_mq_free_request(struct request *rq)
339{
Jens Axboe320ae512013-10-24 09:20:05 +0100340 struct blk_mq_hw_ctx *hctx;
341 struct request_queue *q = rq->q;
342
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700343 hctx = q->mq_ops->map_queue(q, rq->mq_ctx->cpu);
344 blk_mq_free_hctx_request(hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100345}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700346EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100347
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700348inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100349{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700350 blk_account_io_done(rq);
351
Christoph Hellwig91b63632014-04-16 09:44:53 +0200352 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100353 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200354 } else {
355 if (unlikely(blk_bidi_rq(rq)))
356 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100357 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200358 }
Jens Axboe320ae512013-10-24 09:20:05 +0100359}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700360EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200361
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700362void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200363{
364 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
365 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700366 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200367}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700368EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100369
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800370static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100371{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800372 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100373
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800374 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100375}
376
Jens Axboeed851862014-05-30 21:20:50 -0600377static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100378{
379 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700380 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100381 int cpu;
382
Christoph Hellwig38535202014-04-25 02:32:53 -0700383 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800384 rq->q->softirq_done_fn(rq);
385 return;
386 }
Jens Axboe320ae512013-10-24 09:20:05 +0100387
388 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700389 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
390 shared = cpus_share_cache(cpu, ctx->cpu);
391
392 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800393 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800394 rq->csd.info = rq;
395 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100396 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800397 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800398 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800399 }
Jens Axboe320ae512013-10-24 09:20:05 +0100400 put_cpu();
401}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800402
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700403static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600404{
405 struct request_queue *q = rq->q;
406
407 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700408 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600409 else
410 blk_mq_ipi_complete_request(rq);
411}
412
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800413/**
414 * blk_mq_complete_request - end I/O on a request
415 * @rq: the request being processed
416 *
417 * Description:
418 * Ends all I/O on a request. It does not handle partial completions.
419 * The actual completion happens out-of-order, through a IPI handler.
420 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200421void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800422{
Jens Axboe95f09682014-05-27 17:46:48 -0600423 struct request_queue *q = rq->q;
424
425 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800426 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200427 if (!blk_mark_rq_complete(rq)) {
428 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600429 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200430 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800431}
432EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100433
Keith Busch973c0192015-01-07 18:55:43 -0700434int blk_mq_request_started(struct request *rq)
435{
436 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
437}
438EXPORT_SYMBOL_GPL(blk_mq_request_started);
439
Christoph Hellwige2490072014-09-13 16:40:09 -0700440void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100441{
442 struct request_queue *q = rq->q;
443
444 trace_block_rq_issue(q, rq);
445
Christoph Hellwig742ee692014-04-14 10:30:06 +0200446 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200447 if (unlikely(blk_bidi_rq(rq)))
448 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200449
Ming Lei2b8393b2014-06-10 00:16:41 +0800450 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600451
452 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600453 * Ensure that ->deadline is visible before set the started
454 * flag and clear the completed flag.
455 */
456 smp_mb__before_atomic();
457
458 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600459 * Mark us as started and clear complete. Complete might have been
460 * set if requeue raced with timeout, which then marked it as
461 * complete. So be sure to clear complete again when we start
462 * the request, otherwise we'll ignore the completion event.
463 */
Jens Axboe4b570522014-05-29 11:00:11 -0600464 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
465 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
466 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
467 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800468
469 if (q->dma_drain_size && blk_rq_bytes(rq)) {
470 /*
471 * Make sure space for the drain appears. We know we can do
472 * this because max_hw_segments has been adjusted to be one
473 * fewer than the device can handle.
474 */
475 rq->nr_phys_segments++;
476 }
Jens Axboe320ae512013-10-24 09:20:05 +0100477}
Christoph Hellwige2490072014-09-13 16:40:09 -0700478EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100479
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200480static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100481{
482 struct request_queue *q = rq->q;
483
484 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800485
Christoph Hellwige2490072014-09-13 16:40:09 -0700486 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
487 if (q->dma_drain_size && blk_rq_bytes(rq))
488 rq->nr_phys_segments--;
489 }
Jens Axboe320ae512013-10-24 09:20:05 +0100490}
491
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200492void blk_mq_requeue_request(struct request *rq)
493{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200494 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200495
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200496 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600497 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200498}
499EXPORT_SYMBOL(blk_mq_requeue_request);
500
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600501static void blk_mq_requeue_work(struct work_struct *work)
502{
503 struct request_queue *q =
504 container_of(work, struct request_queue, requeue_work);
505 LIST_HEAD(rq_list);
506 struct request *rq, *next;
507 unsigned long flags;
508
509 spin_lock_irqsave(&q->requeue_lock, flags);
510 list_splice_init(&q->requeue_list, &rq_list);
511 spin_unlock_irqrestore(&q->requeue_lock, flags);
512
513 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
514 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
515 continue;
516
517 rq->cmd_flags &= ~REQ_SOFTBARRIER;
518 list_del_init(&rq->queuelist);
519 blk_mq_insert_request(rq, true, false, false);
520 }
521
522 while (!list_empty(&rq_list)) {
523 rq = list_entry(rq_list.next, struct request, queuelist);
524 list_del_init(&rq->queuelist);
525 blk_mq_insert_request(rq, false, false, false);
526 }
527
Jens Axboe8b957412014-09-19 13:10:29 -0600528 /*
529 * Use the start variant of queue running here, so that running
530 * the requeue work will kick stopped queues.
531 */
532 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600533}
534
535void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
536{
537 struct request_queue *q = rq->q;
538 unsigned long flags;
539
540 /*
541 * We abuse this flag that is otherwise used by the I/O scheduler to
542 * request head insertation from the workqueue.
543 */
544 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
545
546 spin_lock_irqsave(&q->requeue_lock, flags);
547 if (at_head) {
548 rq->cmd_flags |= REQ_SOFTBARRIER;
549 list_add(&rq->queuelist, &q->requeue_list);
550 } else {
551 list_add_tail(&rq->queuelist, &q->requeue_list);
552 }
553 spin_unlock_irqrestore(&q->requeue_lock, flags);
554}
555EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
556
Keith Buschc68ed592015-01-07 18:55:44 -0700557void blk_mq_cancel_requeue_work(struct request_queue *q)
558{
559 cancel_work_sync(&q->requeue_work);
560}
561EXPORT_SYMBOL_GPL(blk_mq_cancel_requeue_work);
562
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600563void blk_mq_kick_requeue_list(struct request_queue *q)
564{
565 kblockd_schedule_work(&q->requeue_work);
566}
567EXPORT_SYMBOL(blk_mq_kick_requeue_list);
568
Jens Axboe1885b242015-01-07 18:55:45 -0700569void blk_mq_abort_requeue_list(struct request_queue *q)
570{
571 unsigned long flags;
572 LIST_HEAD(rq_list);
573
574 spin_lock_irqsave(&q->requeue_lock, flags);
575 list_splice_init(&q->requeue_list, &rq_list);
576 spin_unlock_irqrestore(&q->requeue_lock, flags);
577
578 while (!list_empty(&rq_list)) {
579 struct request *rq;
580
581 rq = list_first_entry(&rq_list, struct request, queuelist);
582 list_del_init(&rq->queuelist);
583 rq->errors = -EIO;
584 blk_mq_end_request(rq, rq->errors);
585 }
586}
587EXPORT_SYMBOL(blk_mq_abort_requeue_list);
588
Jens Axboe0e62f512014-06-04 10:23:49 -0600589struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
590{
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700591 if (tag < tags->nr_tags)
592 return tags->rqs[tag];
593
594 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600595}
596EXPORT_SYMBOL(blk_mq_tag_to_rq);
597
Jens Axboe320ae512013-10-24 09:20:05 +0100598struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700599 unsigned long next;
600 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100601};
602
Christoph Hellwig90415832014-09-22 10:21:48 -0600603void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100604{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700605 struct blk_mq_ops *ops = req->q->mq_ops;
606 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600607
608 /*
609 * We know that complete is set at this point. If STARTED isn't set
610 * anymore, then the request isn't active and the "timeout" should
611 * just be ignored. This can happen due to the bitflag ordering.
612 * Timeout first checks if STARTED is set, and if it is, assumes
613 * the request is active. But if we race with completion, then
614 * we both flags will get cleared. So check here again, and ignore
615 * a timeout event with a request that isn't active.
616 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700617 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
618 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600619
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700620 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700621 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600622
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700623 switch (ret) {
624 case BLK_EH_HANDLED:
625 __blk_mq_complete_request(req);
626 break;
627 case BLK_EH_RESET_TIMER:
628 blk_add_timer(req);
629 blk_clear_rq_complete(req);
630 break;
631 case BLK_EH_NOT_HANDLED:
632 break;
633 default:
634 printk(KERN_ERR "block: bad eh return: %d\n", ret);
635 break;
636 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600637}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700638
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700639static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
640 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100641{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700642 struct blk_mq_timeout_data *data = priv;
643
Keith Buscheb130db2015-01-08 08:59:53 -0700644 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
645 /*
646 * If a request wasn't started before the queue was
647 * marked dying, kill it here or it'll go unnoticed.
648 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700649 if (unlikely(blk_queue_dying(rq->q))) {
650 rq->errors = -EIO;
651 blk_mq_end_request(rq, rq->errors);
652 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700653 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700654 }
Jens Axboe320ae512013-10-24 09:20:05 +0100655
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700656 if (time_after_eq(jiffies, rq->deadline)) {
657 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700658 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700659 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
660 data->next = rq->deadline;
661 data->next_set = 1;
662 }
Jens Axboe320ae512013-10-24 09:20:05 +0100663}
664
Christoph Hellwig287922e2015-10-30 20:57:30 +0800665static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100666{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800667 struct request_queue *q =
668 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700669 struct blk_mq_timeout_data data = {
670 .next = 0,
671 .next_set = 0,
672 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700673 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100674
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600675 /* A deadlock might occur if a request is stuck requiring a
676 * timeout at the same time a queue freeze is waiting
677 * completion, since the timeout code would not be able to
678 * acquire the queue reference here.
679 *
680 * That's why we don't use blk_queue_enter here; instead, we use
681 * percpu_ref_tryget directly, because we need to be able to
682 * obtain a reference even in the short window between the queue
683 * starting to freeze, by dropping the first reference in
684 * blk_mq_freeze_queue_start, and the moment the last request is
685 * consumed, marked by the instant q_usage_counter reaches
686 * zero.
687 */
688 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800689 return;
690
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200691 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100692
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700693 if (data.next_set) {
694 data.next = blk_rq_timeout(round_jiffies_up(data.next));
695 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600696 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200697 struct blk_mq_hw_ctx *hctx;
698
Ming Leif054b562015-04-21 10:00:19 +0800699 queue_for_each_hw_ctx(q, hctx, i) {
700 /* the hctx may be unmapped, so check it here */
701 if (blk_mq_hw_queue_mapped(hctx))
702 blk_mq_tag_idle(hctx);
703 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600704 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800705 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100706}
707
708/*
709 * Reverse check our software queue for entries that we could potentially
710 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
711 * too much time checking for merges.
712 */
713static bool blk_mq_attempt_merge(struct request_queue *q,
714 struct blk_mq_ctx *ctx, struct bio *bio)
715{
716 struct request *rq;
717 int checked = 8;
718
719 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
720 int el_ret;
721
722 if (!checked--)
723 break;
724
725 if (!blk_rq_merge_ok(rq, bio))
726 continue;
727
728 el_ret = blk_try_merge(rq, bio);
729 if (el_ret == ELEVATOR_BACK_MERGE) {
730 if (bio_attempt_back_merge(q, rq, bio)) {
731 ctx->rq_merged++;
732 return true;
733 }
734 break;
735 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
736 if (bio_attempt_front_merge(q, rq, bio)) {
737 ctx->rq_merged++;
738 return true;
739 }
740 break;
741 }
742 }
743
744 return false;
745}
746
Jens Axboe320ae512013-10-24 09:20:05 +0100747/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600748 * Process software queues that have been marked busy, splicing them
749 * to the for-dispatch
750 */
751static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
752{
753 struct blk_mq_ctx *ctx;
754 int i;
755
Jens Axboe569fd0c2015-04-17 08:28:50 -0600756 for (i = 0; i < hctx->ctx_map.size; i++) {
Jens Axboe1429d7c2014-05-19 09:23:55 -0600757 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
758 unsigned int off, bit;
759
760 if (!bm->word)
761 continue;
762
763 bit = 0;
764 off = i * hctx->ctx_map.bits_per_word;
765 do {
766 bit = find_next_bit(&bm->word, bm->depth, bit);
767 if (bit >= bm->depth)
768 break;
769
770 ctx = hctx->ctxs[bit + off];
771 clear_bit(bit, &bm->word);
772 spin_lock(&ctx->lock);
773 list_splice_tail_init(&ctx->rq_list, list);
774 spin_unlock(&ctx->lock);
775
776 bit++;
777 } while (1);
778 }
779}
780
781/*
Jens Axboe320ae512013-10-24 09:20:05 +0100782 * Run this hardware queue, pulling any software queues mapped to it in.
783 * Note that this function currently has various problems around ordering
784 * of IO. In particular, we'd like FIFO behaviour on handling existing
785 * items on the hctx->dispatch list. Ignore that for now.
786 */
787static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
788{
789 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100790 struct request *rq;
791 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600792 LIST_HEAD(driver_list);
793 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600794 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100795
Jens Axboe5d12f902014-03-19 15:25:02 -0600796 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100797 return;
798
Jens Axboe0e87e582016-08-24 15:38:01 -0600799 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
800 cpu_online(hctx->next_cpu));
801
Jens Axboe320ae512013-10-24 09:20:05 +0100802 hctx->run++;
803
804 /*
805 * Touch any software queue that has pending entries.
806 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600807 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100808
809 /*
810 * If we have previous entries on our dispatch list, grab them
811 * and stuff them at the front for more fair dispatch.
812 */
813 if (!list_empty_careful(&hctx->dispatch)) {
814 spin_lock(&hctx->lock);
815 if (!list_empty(&hctx->dispatch))
816 list_splice_init(&hctx->dispatch, &rq_list);
817 spin_unlock(&hctx->lock);
818 }
819
820 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600821 * Start off with dptr being NULL, so we start the first request
822 * immediately, even if we have more pending.
823 */
824 dptr = NULL;
825
826 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100827 * Now process all the entries, sending them to the driver.
828 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600829 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100830 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600831 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100832 int ret;
833
834 rq = list_first_entry(&rq_list, struct request, queuelist);
835 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100836
Jens Axboe74c45052014-10-29 11:14:52 -0600837 bd.rq = rq;
838 bd.list = dptr;
839 bd.last = list_empty(&rq_list);
840
841 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100842 switch (ret) {
843 case BLK_MQ_RQ_QUEUE_OK:
844 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700845 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100846 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100847 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200848 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100849 break;
850 default:
851 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100852 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800853 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700854 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100855 break;
856 }
857
858 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
859 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600860
861 /*
862 * We've done the first request. If we have more than 1
863 * left in the list, set dptr to defer issue.
864 */
865 if (!dptr && rq_list.next != rq_list.prev)
866 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100867 }
868
869 if (!queued)
870 hctx->dispatched[0]++;
871 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
872 hctx->dispatched[ilog2(queued) + 1]++;
873
874 /*
875 * Any items that need requeuing? Stuff them into hctx->dispatch,
876 * that is where we will continue on next queue run.
877 */
878 if (!list_empty(&rq_list)) {
879 spin_lock(&hctx->lock);
880 list_splice(&rq_list, &hctx->dispatch);
881 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600882 /*
883 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
884 * it's possible the queue is stopped and restarted again
885 * before this. Queue restart will dispatch requests. And since
886 * requests in rq_list aren't added into hctx->dispatch yet,
887 * the requests in rq_list might get lost.
888 *
889 * blk_mq_run_hw_queue() already checks the STOPPED bit
890 **/
891 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100892 }
893}
894
Jens Axboe506e9312014-05-07 10:26:44 -0600895/*
896 * It'd be great if the workqueue API had a way to pass
897 * in a mask and had some smarts for more clever placement.
898 * For now we just round-robin here, switching for every
899 * BLK_MQ_CPU_WORK_BATCH queued items.
900 */
901static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
902{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100903 if (hctx->queue->nr_hw_queues == 1)
904 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600905
906 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100907 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600908
909 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
910 if (next_cpu >= nr_cpu_ids)
911 next_cpu = cpumask_first(hctx->cpumask);
912
913 hctx->next_cpu = next_cpu;
914 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100915
916 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600917 }
918
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100919 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600920}
921
Jens Axboe320ae512013-10-24 09:20:05 +0100922void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
923{
Ming Lei19c66e52014-12-03 19:38:04 +0800924 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state) ||
925 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100926 return;
927
Paolo Bonzini398205b2014-11-07 23:03:59 +0100928 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100929 int cpu = get_cpu();
930 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100931 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100932 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100933 return;
934 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600935
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100936 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600937 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100938
Jens Axboe27489a32016-08-24 15:54:25 -0600939 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100940}
941
Mike Snitzerb94ec292015-03-11 23:56:38 -0400942void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100943{
944 struct blk_mq_hw_ctx *hctx;
945 int i;
946
947 queue_for_each_hw_ctx(q, hctx, i) {
948 if ((!blk_mq_hctx_has_pending(hctx) &&
949 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600950 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100951 continue;
952
Mike Snitzerb94ec292015-03-11 23:56:38 -0400953 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100954 }
955}
Mike Snitzerb94ec292015-03-11 23:56:38 -0400956EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +0100957
958void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
959{
Jens Axboe27489a32016-08-24 15:54:25 -0600960 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600961 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100962 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
963}
964EXPORT_SYMBOL(blk_mq_stop_hw_queue);
965
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100966void blk_mq_stop_hw_queues(struct request_queue *q)
967{
968 struct blk_mq_hw_ctx *hctx;
969 int i;
970
971 queue_for_each_hw_ctx(q, hctx, i)
972 blk_mq_stop_hw_queue(hctx);
973}
974EXPORT_SYMBOL(blk_mq_stop_hw_queues);
975
Jens Axboe320ae512013-10-24 09:20:05 +0100976void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
977{
978 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600979
Jens Axboe0ffbce82014-06-25 08:22:34 -0600980 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100981}
982EXPORT_SYMBOL(blk_mq_start_hw_queue);
983
Christoph Hellwig2f268552014-04-16 09:44:56 +0200984void blk_mq_start_hw_queues(struct request_queue *q)
985{
986 struct blk_mq_hw_ctx *hctx;
987 int i;
988
989 queue_for_each_hw_ctx(q, hctx, i)
990 blk_mq_start_hw_queue(hctx);
991}
992EXPORT_SYMBOL(blk_mq_start_hw_queues);
993
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200994void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100995{
996 struct blk_mq_hw_ctx *hctx;
997 int i;
998
999 queue_for_each_hw_ctx(q, hctx, i) {
1000 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
1001 continue;
1002
1003 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001004 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001005 }
1006}
1007EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1008
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001009static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001010{
1011 struct blk_mq_hw_ctx *hctx;
1012
Jens Axboe27489a32016-08-24 15:54:25 -06001013 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001014
Jens Axboe320ae512013-10-24 09:20:05 +01001015 __blk_mq_run_hw_queue(hctx);
1016}
1017
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001018static void blk_mq_delay_work_fn(struct work_struct *work)
1019{
1020 struct blk_mq_hw_ctx *hctx;
1021
1022 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1023
1024 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1025 __blk_mq_run_hw_queue(hctx);
1026}
1027
1028void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1029{
Ming Lei19c66e52014-12-03 19:38:04 +08001030 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1031 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001032
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001033 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1034 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001035}
1036EXPORT_SYMBOL(blk_mq_delay_queue);
1037
Ming Leicfd0c552015-10-20 23:13:57 +08001038static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001039 struct request *rq,
1040 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001041{
Jens Axboee57690f2016-08-24 15:34:35 -06001042 struct blk_mq_ctx *ctx = rq->mq_ctx;
1043
Jens Axboe01b983c2013-11-19 18:59:10 -07001044 trace_block_rq_insert(hctx->queue, rq);
1045
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001046 if (at_head)
1047 list_add(&rq->queuelist, &ctx->rq_list);
1048 else
1049 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001050}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001051
Ming Leicfd0c552015-10-20 23:13:57 +08001052static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1053 struct request *rq, bool at_head)
1054{
1055 struct blk_mq_ctx *ctx = rq->mq_ctx;
1056
Jens Axboee57690f2016-08-24 15:34:35 -06001057 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001058 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001059}
1060
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001061void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001062 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001063{
Jens Axboee57690f2016-08-24 15:34:35 -06001064 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001065 struct request_queue *q = rq->q;
1066 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001067
Jens Axboe320ae512013-10-24 09:20:05 +01001068 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1069
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001070 spin_lock(&ctx->lock);
1071 __blk_mq_insert_request(hctx, rq, at_head);
1072 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001073
Jens Axboe320ae512013-10-24 09:20:05 +01001074 if (run_queue)
1075 blk_mq_run_hw_queue(hctx, async);
1076}
1077
1078static void blk_mq_insert_requests(struct request_queue *q,
1079 struct blk_mq_ctx *ctx,
1080 struct list_head *list,
1081 int depth,
1082 bool from_schedule)
1083
1084{
1085 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001086
1087 trace_block_unplug(q, depth, !from_schedule);
1088
Jens Axboe320ae512013-10-24 09:20:05 +01001089 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1090
1091 /*
1092 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1093 * offline now
1094 */
1095 spin_lock(&ctx->lock);
1096 while (!list_empty(list)) {
1097 struct request *rq;
1098
1099 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001100 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001101 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001102 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001103 }
Ming Leicfd0c552015-10-20 23:13:57 +08001104 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001105 spin_unlock(&ctx->lock);
1106
Jens Axboe320ae512013-10-24 09:20:05 +01001107 blk_mq_run_hw_queue(hctx, from_schedule);
1108}
1109
1110static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1111{
1112 struct request *rqa = container_of(a, struct request, queuelist);
1113 struct request *rqb = container_of(b, struct request, queuelist);
1114
1115 return !(rqa->mq_ctx < rqb->mq_ctx ||
1116 (rqa->mq_ctx == rqb->mq_ctx &&
1117 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1118}
1119
1120void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1121{
1122 struct blk_mq_ctx *this_ctx;
1123 struct request_queue *this_q;
1124 struct request *rq;
1125 LIST_HEAD(list);
1126 LIST_HEAD(ctx_list);
1127 unsigned int depth;
1128
1129 list_splice_init(&plug->mq_list, &list);
1130
1131 list_sort(NULL, &list, plug_ctx_cmp);
1132
1133 this_q = NULL;
1134 this_ctx = NULL;
1135 depth = 0;
1136
1137 while (!list_empty(&list)) {
1138 rq = list_entry_rq(list.next);
1139 list_del_init(&rq->queuelist);
1140 BUG_ON(!rq->q);
1141 if (rq->mq_ctx != this_ctx) {
1142 if (this_ctx) {
1143 blk_mq_insert_requests(this_q, this_ctx,
1144 &ctx_list, depth,
1145 from_schedule);
1146 }
1147
1148 this_ctx = rq->mq_ctx;
1149 this_q = rq->q;
1150 depth = 0;
1151 }
1152
1153 depth++;
1154 list_add_tail(&rq->queuelist, &ctx_list);
1155 }
1156
1157 /*
1158 * If 'this_ctx' is set, we know we have entries to complete
1159 * on 'ctx_list'. Do those.
1160 */
1161 if (this_ctx) {
1162 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1163 from_schedule);
1164 }
1165}
1166
1167static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1168{
1169 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001170
Michael Callahana21f2a32016-05-03 11:12:49 -04001171 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001172}
1173
Jens Axboe274a5842014-08-15 12:44:08 -06001174static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1175{
1176 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1177 !blk_queue_nomerges(hctx->queue);
1178}
1179
Jens Axboe07068d52014-05-22 10:40:51 -06001180static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1181 struct blk_mq_ctx *ctx,
1182 struct request *rq, struct bio *bio)
1183{
Ming Leie18378a2015-10-20 23:13:54 +08001184 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001185 blk_mq_bio_to_request(rq, bio);
1186 spin_lock(&ctx->lock);
1187insert_rq:
1188 __blk_mq_insert_request(hctx, rq, false);
1189 spin_unlock(&ctx->lock);
1190 return false;
1191 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001192 struct request_queue *q = hctx->queue;
1193
Jens Axboe07068d52014-05-22 10:40:51 -06001194 spin_lock(&ctx->lock);
1195 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1196 blk_mq_bio_to_request(rq, bio);
1197 goto insert_rq;
1198 }
1199
1200 spin_unlock(&ctx->lock);
1201 __blk_mq_free_request(hctx, ctx, rq);
1202 return true;
1203 }
1204}
1205
1206struct blk_map_ctx {
1207 struct blk_mq_hw_ctx *hctx;
1208 struct blk_mq_ctx *ctx;
1209};
1210
1211static struct request *blk_mq_map_request(struct request_queue *q,
1212 struct bio *bio,
1213 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001214{
1215 struct blk_mq_hw_ctx *hctx;
1216 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001217 struct request *rq;
Mike Christiecc6e3b12016-06-05 14:32:12 -05001218 int op = bio_data_dir(bio);
1219 int op_flags = 0;
Ming Leicb96a422014-06-01 00:43:37 +08001220 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001221
Dan Williams3ef28e82015-10-21 13:20:12 -04001222 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001223 ctx = blk_mq_get_ctx(q);
1224 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1225
Jens Axboe1eff9d32016-08-05 15:35:16 -06001226 if (rw_is_sync(bio_op(bio), bio->bi_opf))
Mike Christiecc6e3b12016-06-05 14:32:12 -05001227 op_flags |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001228
Mike Christiecc6e3b12016-06-05 14:32:12 -05001229 trace_block_getrq(q, bio, op);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001230 blk_mq_set_alloc_data(&alloc_data, q, BLK_MQ_REQ_NOWAIT, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001231 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001232 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001233 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001234 blk_mq_put_ctx(ctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001235 trace_block_sleeprq(q, bio, op);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001236
1237 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001238 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001239 blk_mq_set_alloc_data(&alloc_data, q, 0, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001240 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Ming Leicb96a422014-06-01 00:43:37 +08001241 ctx = alloc_data.ctx;
1242 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001243 }
1244
1245 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001246 data->hctx = hctx;
1247 data->ctx = ctx;
1248 return rq;
1249}
1250
Jens Axboe7b371632015-11-05 10:41:40 -07001251static int blk_mq_direct_issue_request(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001252{
1253 int ret;
1254 struct request_queue *q = rq->q;
1255 struct blk_mq_hw_ctx *hctx = q->mq_ops->map_queue(q,
1256 rq->mq_ctx->cpu);
1257 struct blk_mq_queue_data bd = {
1258 .rq = rq,
1259 .list = NULL,
1260 .last = 1
1261 };
Jens Axboe7b371632015-11-05 10:41:40 -07001262 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001263
1264 /*
1265 * For OK queue, we are done. For error, kill it. Any other
1266 * error (busy), just add it to our list as we previously
1267 * would have done
1268 */
1269 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001270 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1271 *cookie = new_cookie;
Shaohua Lif984df12015-05-08 10:51:32 -07001272 return 0;
Shaohua Lif984df12015-05-08 10:51:32 -07001273 }
Jens Axboe7b371632015-11-05 10:41:40 -07001274
1275 __blk_mq_requeue_request(rq);
1276
1277 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1278 *cookie = BLK_QC_T_NONE;
1279 rq->errors = -EIO;
1280 blk_mq_end_request(rq, rq->errors);
1281 return 0;
1282 }
1283
1284 return -1;
Shaohua Lif984df12015-05-08 10:51:32 -07001285}
1286
Jens Axboe07068d52014-05-22 10:40:51 -06001287/*
1288 * Multiple hardware queue variant. This will not use per-process plugs,
1289 * but will attempt to bypass the hctx queueing if we can go straight to
1290 * hardware for SYNC IO.
1291 */
Jens Axboedece1632015-11-05 10:41:16 -07001292static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001293{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001294 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1295 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe07068d52014-05-22 10:40:51 -06001296 struct blk_map_ctx data;
1297 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001298 unsigned int request_count = 0;
1299 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001300 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001301 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001302
1303 blk_queue_bounce(q, &bio);
1304
1305 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001306 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001307 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001308 }
1309
Kent Overstreet54efd502015-04-23 22:37:18 -07001310 blk_queue_split(q, &bio, q->bio_split);
1311
Omar Sandoval87c279e2016-06-01 22:18:48 -07001312 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1313 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1314 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001315
Jens Axboe07068d52014-05-22 10:40:51 -06001316 rq = blk_mq_map_request(q, bio, &data);
1317 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001318 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001319
Jens Axboe7b371632015-11-05 10:41:40 -07001320 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001321
1322 if (unlikely(is_flush_fua)) {
1323 blk_mq_bio_to_request(rq, bio);
1324 blk_insert_flush(rq);
1325 goto run_queue;
1326 }
1327
Shaohua Lif984df12015-05-08 10:51:32 -07001328 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001329 /*
1330 * If the driver supports defer issued based on 'last', then
1331 * queue it up like normal since we can potentially save some
1332 * CPU this way.
1333 */
Shaohua Lif984df12015-05-08 10:51:32 -07001334 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1335 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1336 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001337
1338 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001339
1340 /*
Jens Axboeb094f892015-11-20 20:29:45 -07001341 * We do limited pluging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001342 * Otherwise the existing request in the plug list will be
1343 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001344 */
Shaohua Lif984df12015-05-08 10:51:32 -07001345 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001346 /*
1347 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001348 * happens, same_queue_rq is invalid and plug list is
1349 * empty
1350 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001351 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1352 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001353 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001354 }
Shaohua Lif984df12015-05-08 10:51:32 -07001355 list_add_tail(&rq->queuelist, &plug->mq_list);
1356 } else /* is_sync */
1357 old_rq = rq;
1358 blk_mq_put_ctx(data.ctx);
1359 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001360 goto done;
1361 if (!blk_mq_direct_issue_request(old_rq, &cookie))
1362 goto done;
Shaohua Lif984df12015-05-08 10:51:32 -07001363 blk_mq_insert_request(old_rq, false, true, true);
Jens Axboe7b371632015-11-05 10:41:40 -07001364 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001365 }
1366
1367 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1368 /*
1369 * For a SYNC request, send it to the hardware immediately. For
1370 * an ASYNC request, just ensure that we run it later on. The
1371 * latter allows for merging opportunities and more efficient
1372 * dispatching.
1373 */
1374run_queue:
1375 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1376 }
Jens Axboe07068d52014-05-22 10:40:51 -06001377 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001378done:
1379 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001380}
1381
1382/*
1383 * Single hardware queue variant. This will attempt to use any per-process
1384 * plug for merging and IO deferral.
1385 */
Jens Axboedece1632015-11-05 10:41:16 -07001386static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001387{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001388 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1389 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001390 struct blk_plug *plug;
1391 unsigned int request_count = 0;
Jens Axboe07068d52014-05-22 10:40:51 -06001392 struct blk_map_ctx data;
1393 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001394 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001395
Jens Axboe07068d52014-05-22 10:40:51 -06001396 blk_queue_bounce(q, &bio);
1397
1398 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001399 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001400 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001401 }
1402
Kent Overstreet54efd502015-04-23 22:37:18 -07001403 blk_queue_split(q, &bio, q->bio_split);
1404
Omar Sandoval87c279e2016-06-01 22:18:48 -07001405 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1406 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1407 return BLK_QC_T_NONE;
1408 } else
1409 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001410
1411 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001412 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001413 return BLK_QC_T_NONE;
Jens Axboe320ae512013-10-24 09:20:05 +01001414
Jens Axboe7b371632015-11-05 10:41:40 -07001415 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001416
1417 if (unlikely(is_flush_fua)) {
1418 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001419 blk_insert_flush(rq);
1420 goto run_queue;
1421 }
1422
1423 /*
1424 * A task plug currently exists. Since this is completely lockless,
1425 * utilize that to temporarily store requests until the task is
1426 * either done or scheduled away.
1427 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001428 plug = current->plug;
1429 if (plug) {
1430 blk_mq_bio_to_request(rq, bio);
Ming Lei676d0602015-10-20 23:13:56 +08001431 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001432 trace_block_plug(q);
Jens Axboeb094f892015-11-20 20:29:45 -07001433
1434 blk_mq_put_ctx(data.ctx);
1435
1436 if (request_count >= BLK_MAX_REQUEST_COUNT) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001437 blk_flush_plug_list(plug, false);
1438 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001439 }
Jens Axboeb094f892015-11-20 20:29:45 -07001440
Jeff Moyere6c44382015-05-08 10:51:30 -07001441 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001442 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001443 }
1444
Jens Axboe07068d52014-05-22 10:40:51 -06001445 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1446 /*
1447 * For a SYNC request, send it to the hardware immediately. For
1448 * an ASYNC request, just ensure that we run it later on. The
1449 * latter allows for merging opportunities and more efficient
1450 * dispatching.
1451 */
1452run_queue:
1453 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001454 }
1455
Jens Axboe07068d52014-05-22 10:40:51 -06001456 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001457 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001458}
1459
1460/*
1461 * Default mapping to a software queue, since we use one per CPU.
1462 */
1463struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1464{
1465 return q->queue_hw_ctx[q->mq_map[cpu]];
1466}
1467EXPORT_SYMBOL(blk_mq_map_queue);
1468
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001469static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1470 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001471{
1472 struct page *page;
1473
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001474 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001475 int i;
1476
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001477 for (i = 0; i < tags->nr_tags; i++) {
1478 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001479 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001480 set->ops->exit_request(set->driver_data, tags->rqs[i],
1481 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001482 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001483 }
1484 }
1485
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001486 while (!list_empty(&tags->page_list)) {
1487 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001488 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001489 /*
1490 * Remove kmemleak object previously allocated in
1491 * blk_mq_init_rq_map().
1492 */
1493 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001494 __free_pages(page, page->private);
1495 }
1496
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001497 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001498
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001499 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001500}
1501
1502static size_t order_to_size(unsigned int order)
1503{
Ming Lei4ca08502014-04-19 18:00:18 +08001504 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001505}
1506
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001507static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1508 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001509{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001510 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001511 unsigned int i, j, entries_per_page, max_order = 4;
1512 size_t rq_size, left;
1513
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001514 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001515 set->numa_node,
1516 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001517 if (!tags)
1518 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001519
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001520 INIT_LIST_HEAD(&tags->page_list);
1521
Jens Axboea5164402014-09-10 09:02:03 -06001522 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1523 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1524 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001525 if (!tags->rqs) {
1526 blk_mq_free_tags(tags);
1527 return NULL;
1528 }
Jens Axboe320ae512013-10-24 09:20:05 +01001529
1530 /*
1531 * rq_size is the size of the request plus driver payload, rounded
1532 * to the cacheline size
1533 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001534 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001535 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001536 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001537
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001538 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001539 int this_order = max_order;
1540 struct page *page;
1541 int to_do;
1542 void *p;
1543
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001544 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001545 this_order--;
1546
1547 do {
Jens Axboea5164402014-09-10 09:02:03 -06001548 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001549 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001550 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001551 if (page)
1552 break;
1553 if (!this_order--)
1554 break;
1555 if (order_to_size(this_order) < rq_size)
1556 break;
1557 } while (1);
1558
1559 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001560 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001561
1562 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001563 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001564
1565 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001566 /*
1567 * Allow kmemleak to scan these pages as they contain pointers
1568 * to additional allocations like via ops->init_request().
1569 */
1570 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001571 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001572 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001573 left -= to_do * rq_size;
1574 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001575 tags->rqs[i] = p;
1576 if (set->ops->init_request) {
1577 if (set->ops->init_request(set->driver_data,
1578 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001579 set->numa_node)) {
1580 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001581 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001582 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001583 }
1584
Jens Axboe320ae512013-10-24 09:20:05 +01001585 p += rq_size;
1586 i++;
1587 }
1588 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001589 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001590
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001591fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001592 blk_mq_free_rq_map(set, tags, hctx_idx);
1593 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001594}
1595
Jens Axboe1429d7c2014-05-19 09:23:55 -06001596static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1597{
1598 kfree(bitmap->map);
1599}
1600
1601static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1602{
1603 unsigned int bpw = 8, total, num_maps, i;
1604
1605 bitmap->bits_per_word = bpw;
1606
1607 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1608 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1609 GFP_KERNEL, node);
1610 if (!bitmap->map)
1611 return -ENOMEM;
1612
Jens Axboe1429d7c2014-05-19 09:23:55 -06001613 total = nr_cpu_ids;
1614 for (i = 0; i < num_maps; i++) {
1615 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1616 total -= bitmap->map[i].depth;
1617 }
1618
1619 return 0;
1620}
1621
Jens Axboee57690f2016-08-24 15:34:35 -06001622/*
1623 * 'cpu' is going away. splice any existing rq_list entries from this
1624 * software queue to the hw queue dispatch list, and ensure that it
1625 * gets run.
1626 */
Jens Axboe484b4062014-05-21 14:01:15 -06001627static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1628{
Jens Axboe484b4062014-05-21 14:01:15 -06001629 struct blk_mq_ctx *ctx;
1630 LIST_HEAD(tmp);
1631
Jens Axboee57690f2016-08-24 15:34:35 -06001632 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001633
1634 spin_lock(&ctx->lock);
1635 if (!list_empty(&ctx->rq_list)) {
1636 list_splice_init(&ctx->rq_list, &tmp);
1637 blk_mq_hctx_clear_pending(hctx, ctx);
1638 }
1639 spin_unlock(&ctx->lock);
1640
1641 if (list_empty(&tmp))
1642 return NOTIFY_OK;
1643
Jens Axboee57690f2016-08-24 15:34:35 -06001644 spin_lock(&hctx->lock);
1645 list_splice_tail_init(&tmp, &hctx->dispatch);
1646 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001647
1648 blk_mq_run_hw_queue(hctx, true);
Jens Axboe484b4062014-05-21 14:01:15 -06001649 return NOTIFY_OK;
1650}
1651
Jens Axboe484b4062014-05-21 14:01:15 -06001652static int blk_mq_hctx_notify(void *data, unsigned long action,
1653 unsigned int cpu)
1654{
1655 struct blk_mq_hw_ctx *hctx = data;
1656
1657 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1658 return blk_mq_hctx_cpu_offline(hctx, cpu);
Ming Lei2a34c082015-04-21 10:00:20 +08001659
1660 /*
1661 * In case of CPU online, tags may be reallocated
1662 * in blk_mq_map_swqueue() after mapping is updated.
1663 */
Jens Axboe484b4062014-05-21 14:01:15 -06001664
1665 return NOTIFY_OK;
1666}
1667
Ming Leic3b4afc2015-06-04 22:25:04 +08001668/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001669static void blk_mq_exit_hctx(struct request_queue *q,
1670 struct blk_mq_tag_set *set,
1671 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1672{
Ming Leif70ced02014-09-25 23:23:47 +08001673 unsigned flush_start_tag = set->queue_depth;
1674
Ming Lei08e98fc2014-09-25 23:23:38 +08001675 blk_mq_tag_idle(hctx);
1676
Ming Leif70ced02014-09-25 23:23:47 +08001677 if (set->ops->exit_request)
1678 set->ops->exit_request(set->driver_data,
1679 hctx->fq->flush_rq, hctx_idx,
1680 flush_start_tag + hctx_idx);
1681
Ming Lei08e98fc2014-09-25 23:23:38 +08001682 if (set->ops->exit_hctx)
1683 set->ops->exit_hctx(hctx, hctx_idx);
1684
1685 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001686 blk_free_flush_queue(hctx->fq);
Ming Lei08e98fc2014-09-25 23:23:38 +08001687 blk_mq_free_bitmap(&hctx->ctx_map);
1688}
1689
Ming Lei624dbe42014-05-27 23:35:13 +08001690static void blk_mq_exit_hw_queues(struct request_queue *q,
1691 struct blk_mq_tag_set *set, int nr_queue)
1692{
1693 struct blk_mq_hw_ctx *hctx;
1694 unsigned int i;
1695
1696 queue_for_each_hw_ctx(q, hctx, i) {
1697 if (i == nr_queue)
1698 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001699 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001700 }
Ming Lei624dbe42014-05-27 23:35:13 +08001701}
1702
1703static void blk_mq_free_hw_queues(struct request_queue *q,
1704 struct blk_mq_tag_set *set)
1705{
1706 struct blk_mq_hw_ctx *hctx;
1707 unsigned int i;
1708
Ming Leie09aae72015-01-29 20:17:27 +08001709 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001710 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001711}
1712
Ming Lei08e98fc2014-09-25 23:23:38 +08001713static int blk_mq_init_hctx(struct request_queue *q,
1714 struct blk_mq_tag_set *set,
1715 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1716{
1717 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001718 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001719
1720 node = hctx->numa_node;
1721 if (node == NUMA_NO_NODE)
1722 node = hctx->numa_node = set->numa_node;
1723
Jens Axboe27489a32016-08-24 15:54:25 -06001724 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001725 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1726 spin_lock_init(&hctx->lock);
1727 INIT_LIST_HEAD(&hctx->dispatch);
1728 hctx->queue = q;
1729 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001730 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001731
1732 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1733 blk_mq_hctx_notify, hctx);
1734 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1735
1736 hctx->tags = set->tags[hctx_idx];
1737
1738 /*
1739 * Allocate space for all possible cpus to avoid allocation at
1740 * runtime
1741 */
1742 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1743 GFP_KERNEL, node);
1744 if (!hctx->ctxs)
1745 goto unregister_cpu_notifier;
1746
1747 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1748 goto free_ctxs;
1749
1750 hctx->nr_ctx = 0;
1751
1752 if (set->ops->init_hctx &&
1753 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1754 goto free_bitmap;
1755
Ming Leif70ced02014-09-25 23:23:47 +08001756 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1757 if (!hctx->fq)
1758 goto exit_hctx;
1759
1760 if (set->ops->init_request &&
1761 set->ops->init_request(set->driver_data,
1762 hctx->fq->flush_rq, hctx_idx,
1763 flush_start_tag + hctx_idx, node))
1764 goto free_fq;
1765
Ming Lei08e98fc2014-09-25 23:23:38 +08001766 return 0;
1767
Ming Leif70ced02014-09-25 23:23:47 +08001768 free_fq:
1769 kfree(hctx->fq);
1770 exit_hctx:
1771 if (set->ops->exit_hctx)
1772 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001773 free_bitmap:
1774 blk_mq_free_bitmap(&hctx->ctx_map);
1775 free_ctxs:
1776 kfree(hctx->ctxs);
1777 unregister_cpu_notifier:
1778 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1779
1780 return -1;
1781}
1782
Jens Axboe320ae512013-10-24 09:20:05 +01001783static void blk_mq_init_cpu_queues(struct request_queue *q,
1784 unsigned int nr_hw_queues)
1785{
1786 unsigned int i;
1787
1788 for_each_possible_cpu(i) {
1789 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1790 struct blk_mq_hw_ctx *hctx;
1791
1792 memset(__ctx, 0, sizeof(*__ctx));
1793 __ctx->cpu = i;
1794 spin_lock_init(&__ctx->lock);
1795 INIT_LIST_HEAD(&__ctx->rq_list);
1796 __ctx->queue = q;
1797
1798 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001799 if (!cpu_online(i))
1800 continue;
1801
Jens Axboee4043dc2014-04-09 10:18:23 -06001802 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001803
Jens Axboe320ae512013-10-24 09:20:05 +01001804 /*
1805 * Set local node, IFF we have more than one hw queue. If
1806 * not, we remain on the home node of the device
1807 */
1808 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301809 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001810 }
1811}
1812
Akinobu Mita57783222015-09-27 02:09:23 +09001813static void blk_mq_map_swqueue(struct request_queue *q,
1814 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001815{
1816 unsigned int i;
1817 struct blk_mq_hw_ctx *hctx;
1818 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001819 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001820
Akinobu Mita60de0742015-09-27 02:09:25 +09001821 /*
1822 * Avoid others reading imcomplete hctx->cpumask through sysfs
1823 */
1824 mutex_lock(&q->sysfs_lock);
1825
Jens Axboe320ae512013-10-24 09:20:05 +01001826 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001827 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001828 hctx->nr_ctx = 0;
1829 }
1830
1831 /*
1832 * Map software to hardware queues
1833 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001834 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001835 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001836 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001837 continue;
1838
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001839 ctx = per_cpu_ptr(q->queue_ctx, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001840 hctx = q->mq_ops->map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001841
Jens Axboee4043dc2014-04-09 10:18:23 -06001842 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001843 ctx->index_hw = hctx->nr_ctx;
1844 hctx->ctxs[hctx->nr_ctx++] = ctx;
1845 }
Jens Axboe506e9312014-05-07 10:26:44 -06001846
Akinobu Mita60de0742015-09-27 02:09:25 +09001847 mutex_unlock(&q->sysfs_lock);
1848
Jens Axboe506e9312014-05-07 10:26:44 -06001849 queue_for_each_hw_ctx(q, hctx, i) {
Chong Yuan889fa312015-04-15 11:39:29 -06001850 struct blk_mq_ctxmap *map = &hctx->ctx_map;
1851
Jens Axboe484b4062014-05-21 14:01:15 -06001852 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001853 * If no software queues are mapped to this hardware queue,
1854 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001855 */
1856 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001857 if (set->tags[i]) {
1858 blk_mq_free_rq_map(set, set->tags[i], i);
1859 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001860 }
Ming Lei2a34c082015-04-21 10:00:20 +08001861 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001862 continue;
1863 }
1864
Ming Lei2a34c082015-04-21 10:00:20 +08001865 /* unmapped hw queue can be remapped after CPU topo changed */
1866 if (!set->tags[i])
1867 set->tags[i] = blk_mq_init_rq_map(set, i);
1868 hctx->tags = set->tags[i];
1869 WARN_ON(!hctx->tags);
1870
Raghavendra K Te0e827b2015-12-02 16:57:06 +05301871 cpumask_copy(hctx->tags->cpumask, hctx->cpumask);
Jens Axboe484b4062014-05-21 14:01:15 -06001872 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001873 * Set the map size to the number of mapped software queues.
1874 * This is more accurate and more efficient than looping
1875 * over all possibly mapped software queues.
1876 */
Jens Axboe569fd0c2015-04-17 08:28:50 -06001877 map->size = DIV_ROUND_UP(hctx->nr_ctx, map->bits_per_word);
Chong Yuan889fa312015-04-15 11:39:29 -06001878
1879 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001880 * Initialize batch roundrobin counts
1881 */
Jens Axboe506e9312014-05-07 10:26:44 -06001882 hctx->next_cpu = cpumask_first(hctx->cpumask);
1883 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1884 }
Jens Axboe320ae512013-10-24 09:20:05 +01001885}
1886
Jeff Moyer2404e602015-11-03 10:40:06 -05001887static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001888{
1889 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001890 int i;
1891
Jeff Moyer2404e602015-11-03 10:40:06 -05001892 queue_for_each_hw_ctx(q, hctx, i) {
1893 if (shared)
1894 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1895 else
1896 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1897 }
1898}
1899
1900static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1901{
1902 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001903
1904 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1905 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001906 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001907 blk_mq_unfreeze_queue(q);
1908 }
1909}
1910
1911static void blk_mq_del_queue_tag_set(struct request_queue *q)
1912{
1913 struct blk_mq_tag_set *set = q->tag_set;
1914
Jens Axboe0d2602c2014-05-13 15:10:52 -06001915 mutex_lock(&set->tag_list_lock);
1916 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001917 if (list_is_singular(&set->tag_list)) {
1918 /* just transitioned to unshared */
1919 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1920 /* update existing queue */
1921 blk_mq_update_tag_set_depth(set, false);
1922 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001923 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001924}
1925
1926static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1927 struct request_queue *q)
1928{
1929 q->tag_set = set;
1930
1931 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001932
1933 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1934 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1935 set->flags |= BLK_MQ_F_TAG_SHARED;
1936 /* update existing queue */
1937 blk_mq_update_tag_set_depth(set, true);
1938 }
1939 if (set->flags & BLK_MQ_F_TAG_SHARED)
1940 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001941 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001942
Jens Axboe0d2602c2014-05-13 15:10:52 -06001943 mutex_unlock(&set->tag_list_lock);
1944}
1945
Ming Leie09aae72015-01-29 20:17:27 +08001946/*
1947 * It is the actual release handler for mq, but we do it from
1948 * request queue's release handler for avoiding use-after-free
1949 * and headache because q->mq_kobj shouldn't have been introduced,
1950 * but we can't group ctx/kctx kobj without it.
1951 */
1952void blk_mq_release(struct request_queue *q)
1953{
1954 struct blk_mq_hw_ctx *hctx;
1955 unsigned int i;
1956
1957 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001958 queue_for_each_hw_ctx(q, hctx, i) {
1959 if (!hctx)
1960 continue;
1961 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08001962 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08001963 }
Ming Leie09aae72015-01-29 20:17:27 +08001964
Akinobu Mitaa723bab2015-09-27 02:09:21 +09001965 kfree(q->mq_map);
1966 q->mq_map = NULL;
1967
Ming Leie09aae72015-01-29 20:17:27 +08001968 kfree(q->queue_hw_ctx);
1969
1970 /* ctx kobj stays in queue_ctx */
1971 free_percpu(q->queue_ctx);
1972}
1973
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001974struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001975{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001976 struct request_queue *uninit_q, *q;
1977
1978 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1979 if (!uninit_q)
1980 return ERR_PTR(-ENOMEM);
1981
1982 q = blk_mq_init_allocated_queue(set, uninit_q);
1983 if (IS_ERR(q))
1984 blk_cleanup_queue(uninit_q);
1985
1986 return q;
1987}
1988EXPORT_SYMBOL(blk_mq_init_queue);
1989
Keith Busch868f2f02015-12-17 17:08:14 -07001990static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
1991 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001992{
Keith Busch868f2f02015-12-17 17:08:14 -07001993 int i, j;
1994 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001995
Keith Busch868f2f02015-12-17 17:08:14 -07001996 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001997 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07001998 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06001999
Keith Busch868f2f02015-12-17 17:08:14 -07002000 if (hctxs[i])
2001 continue;
2002
2003 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002004 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2005 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002006 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002007 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002008
Jens Axboea86073e2014-10-13 15:41:54 -06002009 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002010 node)) {
2011 kfree(hctxs[i]);
2012 hctxs[i] = NULL;
2013 break;
2014 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002015
Jens Axboe0d2602c2014-05-13 15:10:52 -06002016 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002017 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002018 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002019
2020 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2021 free_cpumask_var(hctxs[i]->cpumask);
2022 kfree(hctxs[i]);
2023 hctxs[i] = NULL;
2024 break;
2025 }
2026 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002027 }
Keith Busch868f2f02015-12-17 17:08:14 -07002028 for (j = i; j < q->nr_hw_queues; j++) {
2029 struct blk_mq_hw_ctx *hctx = hctxs[j];
2030
2031 if (hctx) {
2032 if (hctx->tags) {
2033 blk_mq_free_rq_map(set, hctx->tags, j);
2034 set->tags[j] = NULL;
2035 }
2036 blk_mq_exit_hctx(q, set, hctx, j);
2037 free_cpumask_var(hctx->cpumask);
2038 kobject_put(&hctx->kobj);
2039 kfree(hctx->ctxs);
2040 kfree(hctx);
2041 hctxs[j] = NULL;
2042
2043 }
2044 }
2045 q->nr_hw_queues = i;
2046 blk_mq_sysfs_register(q);
2047}
2048
2049struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2050 struct request_queue *q)
2051{
Ming Lei66841672016-02-12 15:27:00 +08002052 /* mark the queue as mq asap */
2053 q->mq_ops = set->ops;
2054
Keith Busch868f2f02015-12-17 17:08:14 -07002055 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2056 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002057 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002058
2059 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2060 GFP_KERNEL, set->numa_node);
2061 if (!q->queue_hw_ctx)
2062 goto err_percpu;
2063
2064 q->mq_map = blk_mq_make_queue_map(set);
2065 if (!q->mq_map)
2066 goto err_map;
2067
2068 blk_mq_realloc_hw_ctxs(set, q);
2069 if (!q->nr_hw_queues)
2070 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002071
Christoph Hellwig287922e2015-10-30 20:57:30 +08002072 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002073 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002074
2075 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002076
Jens Axboe94eddfb2013-11-19 09:25:07 -07002077 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002078
Jens Axboe05f1dd52014-05-29 09:53:32 -06002079 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2080 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2081
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002082 q->sg_reserved_size = INT_MAX;
2083
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002084 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
2085 INIT_LIST_HEAD(&q->requeue_list);
2086 spin_lock_init(&q->requeue_lock);
2087
Jens Axboe07068d52014-05-22 10:40:51 -06002088 if (q->nr_hw_queues > 1)
2089 blk_queue_make_request(q, blk_mq_make_request);
2090 else
2091 blk_queue_make_request(q, blk_sq_make_request);
2092
Jens Axboeeba71762014-05-20 15:17:27 -06002093 /*
2094 * Do this after blk_queue_make_request() overrides it...
2095 */
2096 q->nr_requests = set->queue_depth;
2097
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002098 if (set->ops->complete)
2099 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002100
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002101 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002102
Akinobu Mita57783222015-09-27 02:09:23 +09002103 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002104 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002105
Jens Axboe320ae512013-10-24 09:20:05 +01002106 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002107 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002108 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002109
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002110 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002111 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002112
Jens Axboe320ae512013-10-24 09:20:05 +01002113 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002114
Jens Axboe320ae512013-10-24 09:20:05 +01002115err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002116 kfree(q->mq_map);
Jens Axboef14bbe72014-05-27 12:06:53 -06002117err_map:
Keith Busch868f2f02015-12-17 17:08:14 -07002118 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002119err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002120 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002121err_exit:
2122 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002123 return ERR_PTR(-ENOMEM);
2124}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002125EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002126
2127void blk_mq_free_queue(struct request_queue *q)
2128{
Ming Lei624dbe42014-05-27 23:35:13 +08002129 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002130
Akinobu Mita0e626362015-09-27 02:09:22 +09002131 mutex_lock(&all_q_mutex);
2132 list_del_init(&q->all_q_node);
2133 mutex_unlock(&all_q_mutex);
2134
Jens Axboe0d2602c2014-05-13 15:10:52 -06002135 blk_mq_del_queue_tag_set(q);
2136
Ming Lei624dbe42014-05-27 23:35:13 +08002137 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2138 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002139}
Jens Axboe320ae512013-10-24 09:20:05 +01002140
2141/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002142static void blk_mq_queue_reinit(struct request_queue *q,
2143 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002144{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002145 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002146
Jens Axboe67aec142014-05-30 08:25:36 -06002147 blk_mq_sysfs_unregister(q);
2148
Akinobu Mita57783222015-09-27 02:09:23 +09002149 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002150
2151 /*
2152 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2153 * we should change hctx numa_node according to new topology (this
2154 * involves free and re-allocate memory, worthy doing?)
2155 */
2156
Akinobu Mita57783222015-09-27 02:09:23 +09002157 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002158
Jens Axboe67aec142014-05-30 08:25:36 -06002159 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002160}
2161
Paul Gortmakerf618ef72013-11-14 08:26:02 -07002162static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
2163 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01002164{
2165 struct request_queue *q;
Akinobu Mita57783222015-09-27 02:09:23 +09002166 int cpu = (unsigned long)hcpu;
2167 /*
2168 * New online cpumask which is going to be set in this hotplug event.
2169 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2170 * one-by-one and dynamically allocating this could result in a failure.
2171 */
2172 static struct cpumask online_new;
Jens Axboe320ae512013-10-24 09:20:05 +01002173
2174 /*
Akinobu Mita57783222015-09-27 02:09:23 +09002175 * Before hotadded cpu starts handling requests, new mappings must
2176 * be established. Otherwise, these requests in hw queue might
2177 * never be dispatched.
2178 *
2179 * For example, there is a single hw queue (hctx) and two CPU queues
2180 * (ctx0 for CPU0, and ctx1 for CPU1).
2181 *
2182 * Now CPU1 is just onlined and a request is inserted into
2183 * ctx1->rq_list and set bit0 in pending bitmap as ctx1->index_hw is
2184 * still zero.
2185 *
2186 * And then while running hw queue, flush_busy_ctxs() finds bit0 is
2187 * set in pending bitmap and tries to retrieve requests in
2188 * hctx->ctxs[0]->rq_list. But htx->ctxs[0] is a pointer to ctx0,
2189 * so the request in ctx1->rq_list is ignored.
Jens Axboe320ae512013-10-24 09:20:05 +01002190 */
Akinobu Mita57783222015-09-27 02:09:23 +09002191 switch (action & ~CPU_TASKS_FROZEN) {
2192 case CPU_DEAD:
2193 case CPU_UP_CANCELED:
2194 cpumask_copy(&online_new, cpu_online_mask);
2195 break;
2196 case CPU_UP_PREPARE:
2197 cpumask_copy(&online_new, cpu_online_mask);
2198 cpumask_set_cpu(cpu, &online_new);
2199 break;
2200 default:
Jens Axboe320ae512013-10-24 09:20:05 +01002201 return NOTIFY_OK;
Akinobu Mita57783222015-09-27 02:09:23 +09002202 }
Jens Axboe320ae512013-10-24 09:20:05 +01002203
2204 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002205
2206 /*
2207 * We need to freeze and reinit all existing queues. Freezing
2208 * involves synchronous wait for an RCU grace period and doing it
2209 * one by one may take a long time. Start freezing all queues in
2210 * one swoop and then wait for the completions so that freezing can
2211 * take place in parallel.
2212 */
2213 list_for_each_entry(q, &all_q_list, all_q_node)
2214 blk_mq_freeze_queue_start(q);
Ming Leif054b562015-04-21 10:00:19 +08002215 list_for_each_entry(q, &all_q_list, all_q_node) {
Tejun Heof3af0202014-11-04 13:52:27 -05002216 blk_mq_freeze_queue_wait(q);
2217
Ming Leif054b562015-04-21 10:00:19 +08002218 /*
2219 * timeout handler can't touch hw queue during the
2220 * reinitialization
2221 */
2222 del_timer_sync(&q->timeout);
2223 }
2224
Jens Axboe320ae512013-10-24 09:20:05 +01002225 list_for_each_entry(q, &all_q_list, all_q_node)
Akinobu Mita57783222015-09-27 02:09:23 +09002226 blk_mq_queue_reinit(q, &online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002227
2228 list_for_each_entry(q, &all_q_list, all_q_node)
2229 blk_mq_unfreeze_queue(q);
2230
Jens Axboe320ae512013-10-24 09:20:05 +01002231 mutex_unlock(&all_q_mutex);
2232 return NOTIFY_OK;
2233}
2234
Jens Axboea5164402014-09-10 09:02:03 -06002235static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2236{
2237 int i;
2238
2239 for (i = 0; i < set->nr_hw_queues; i++) {
2240 set->tags[i] = blk_mq_init_rq_map(set, i);
2241 if (!set->tags[i])
2242 goto out_unwind;
2243 }
2244
2245 return 0;
2246
2247out_unwind:
2248 while (--i >= 0)
2249 blk_mq_free_rq_map(set, set->tags[i], i);
2250
Jens Axboea5164402014-09-10 09:02:03 -06002251 return -ENOMEM;
2252}
2253
2254/*
2255 * Allocate the request maps associated with this tag_set. Note that this
2256 * may reduce the depth asked for, if memory is tight. set->queue_depth
2257 * will be updated to reflect the allocated depth.
2258 */
2259static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2260{
2261 unsigned int depth;
2262 int err;
2263
2264 depth = set->queue_depth;
2265 do {
2266 err = __blk_mq_alloc_rq_maps(set);
2267 if (!err)
2268 break;
2269
2270 set->queue_depth >>= 1;
2271 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2272 err = -ENOMEM;
2273 break;
2274 }
2275 } while (set->queue_depth);
2276
2277 if (!set->queue_depth || err) {
2278 pr_err("blk-mq: failed to allocate request map\n");
2279 return -ENOMEM;
2280 }
2281
2282 if (depth != set->queue_depth)
2283 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2284 depth, set->queue_depth);
2285
2286 return 0;
2287}
2288
Keith Buschf26cdc82015-06-01 09:29:53 -06002289struct cpumask *blk_mq_tags_cpumask(struct blk_mq_tags *tags)
2290{
2291 return tags->cpumask;
2292}
2293EXPORT_SYMBOL_GPL(blk_mq_tags_cpumask);
2294
Jens Axboea4391c62014-06-05 15:21:56 -06002295/*
2296 * Alloc a tag set to be associated with one or more request queues.
2297 * May fail with EINVAL for various error conditions. May adjust the
2298 * requested depth down, if if it too large. In that case, the set
2299 * value will be stored in set->queue_depth.
2300 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002301int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2302{
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002303 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2304
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002305 if (!set->nr_hw_queues)
2306 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002307 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002308 return -EINVAL;
2309 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2310 return -EINVAL;
2311
Xiaoguang Wangf9018ac2015-03-30 13:19:14 +08002312 if (!set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002313 return -EINVAL;
2314
Jens Axboea4391c62014-06-05 15:21:56 -06002315 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2316 pr_info("blk-mq: reduced tag depth to %u\n",
2317 BLK_MQ_MAX_DEPTH);
2318 set->queue_depth = BLK_MQ_MAX_DEPTH;
2319 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002320
Shaohua Li6637fad2014-11-30 16:00:58 -08002321 /*
2322 * If a crashdump is active, then we are potentially in a very
2323 * memory constrained environment. Limit us to 1 queue and
2324 * 64 tags to prevent using too much memory.
2325 */
2326 if (is_kdump_kernel()) {
2327 set->nr_hw_queues = 1;
2328 set->queue_depth = min(64U, set->queue_depth);
2329 }
Keith Busch868f2f02015-12-17 17:08:14 -07002330 /*
2331 * There is no use for more h/w queues than cpus.
2332 */
2333 if (set->nr_hw_queues > nr_cpu_ids)
2334 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002335
Keith Busch868f2f02015-12-17 17:08:14 -07002336 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002337 GFP_KERNEL, set->numa_node);
2338 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002339 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002340
Jens Axboea5164402014-09-10 09:02:03 -06002341 if (blk_mq_alloc_rq_maps(set))
2342 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002343
Jens Axboe0d2602c2014-05-13 15:10:52 -06002344 mutex_init(&set->tag_list_lock);
2345 INIT_LIST_HEAD(&set->tag_list);
2346
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002347 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002348enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002349 kfree(set->tags);
2350 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002351 return -ENOMEM;
2352}
2353EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2354
2355void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2356{
2357 int i;
2358
Keith Busch868f2f02015-12-17 17:08:14 -07002359 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002360 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002361 blk_mq_free_rq_map(set, set->tags[i], i);
2362 }
2363
Ming Lei981bd182014-04-24 00:07:34 +08002364 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002365 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002366}
2367EXPORT_SYMBOL(blk_mq_free_tag_set);
2368
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002369int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2370{
2371 struct blk_mq_tag_set *set = q->tag_set;
2372 struct blk_mq_hw_ctx *hctx;
2373 int i, ret;
2374
2375 if (!set || nr > set->queue_depth)
2376 return -EINVAL;
2377
2378 ret = 0;
2379 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002380 if (!hctx->tags)
2381 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002382 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2383 if (ret)
2384 break;
2385 }
2386
2387 if (!ret)
2388 q->nr_requests = nr;
2389
2390 return ret;
2391}
2392
Keith Busch868f2f02015-12-17 17:08:14 -07002393void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2394{
2395 struct request_queue *q;
2396
2397 if (nr_hw_queues > nr_cpu_ids)
2398 nr_hw_queues = nr_cpu_ids;
2399 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2400 return;
2401
2402 list_for_each_entry(q, &set->tag_list, tag_set_list)
2403 blk_mq_freeze_queue(q);
2404
2405 set->nr_hw_queues = nr_hw_queues;
2406 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2407 blk_mq_realloc_hw_ctxs(set, q);
2408
2409 if (q->nr_hw_queues > 1)
2410 blk_queue_make_request(q, blk_mq_make_request);
2411 else
2412 blk_queue_make_request(q, blk_sq_make_request);
2413
2414 blk_mq_queue_reinit(q, cpu_online_mask);
2415 }
2416
2417 list_for_each_entry(q, &set->tag_list, tag_set_list)
2418 blk_mq_unfreeze_queue(q);
2419}
2420EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2421
Jens Axboe676141e2014-03-20 13:29:18 -06002422void blk_mq_disable_hotplug(void)
2423{
2424 mutex_lock(&all_q_mutex);
2425}
2426
2427void blk_mq_enable_hotplug(void)
2428{
2429 mutex_unlock(&all_q_mutex);
2430}
2431
Jens Axboe320ae512013-10-24 09:20:05 +01002432static int __init blk_mq_init(void)
2433{
Jens Axboe320ae512013-10-24 09:20:05 +01002434 blk_mq_cpu_init();
2435
Tejun Heoadd703f2014-07-01 10:34:38 -06002436 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002437
2438 return 0;
2439}
2440subsys_initcall(blk_mq_init);