blob: 7ddc7969fba43b6786607c9ffda5f396ed87af3b [file] [log] [blame]
Jens Axboe75bb4622014-05-28 10:15:41 -06001/*
2 * Block multiqueue core code
3 *
4 * Copyright (C) 2013-2014 Jens Axboe
5 * Copyright (C) 2013-2014 Christoph Hellwig
6 */
Jens Axboe320ae512013-10-24 09:20:05 +01007#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/backing-dev.h>
10#include <linux/bio.h>
11#include <linux/blkdev.h>
Catalin Marinasf75782e2015-09-14 18:16:02 +010012#include <linux/kmemleak.h>
Jens Axboe320ae512013-10-24 09:20:05 +010013#include <linux/mm.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/workqueue.h>
17#include <linux/smp.h>
18#include <linux/llist.h>
19#include <linux/list_sort.h>
20#include <linux/cpu.h>
21#include <linux/cache.h>
22#include <linux/sched/sysctl.h>
23#include <linux/delay.h>
Jens Axboeaedcd722014-09-17 08:27:03 -060024#include <linux/crash_dump.h>
Jens Axboe88c7b2b2016-08-25 08:07:30 -060025#include <linux/prefetch.h>
Jens Axboe320ae512013-10-24 09:20:05 +010026
27#include <trace/events/block.h>
28
29#include <linux/blk-mq.h>
30#include "blk.h"
31#include "blk-mq.h"
32#include "blk-mq-tag.h"
33
34static DEFINE_MUTEX(all_q_mutex);
35static LIST_HEAD(all_q_list);
36
37static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
38
Jens Axboe320ae512013-10-24 09:20:05 +010039/*
40 * Check if any of the ctx's have pending work in this hardware queue
41 */
42static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
43{
44 unsigned int i;
45
Jens Axboe569fd0c2015-04-17 08:28:50 -060046 for (i = 0; i < hctx->ctx_map.size; i++)
Jens Axboe1429d7c2014-05-19 09:23:55 -060047 if (hctx->ctx_map.map[i].word)
Jens Axboe320ae512013-10-24 09:20:05 +010048 return true;
49
50 return false;
51}
52
Jens Axboe1429d7c2014-05-19 09:23:55 -060053static inline struct blk_align_bitmap *get_bm(struct blk_mq_hw_ctx *hctx,
54 struct blk_mq_ctx *ctx)
55{
56 return &hctx->ctx_map.map[ctx->index_hw / hctx->ctx_map.bits_per_word];
57}
58
59#define CTX_TO_BIT(hctx, ctx) \
60 ((ctx)->index_hw & ((hctx)->ctx_map.bits_per_word - 1))
61
Jens Axboe320ae512013-10-24 09:20:05 +010062/*
63 * Mark this ctx as having pending work in this hardware queue
64 */
65static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
66 struct blk_mq_ctx *ctx)
67{
Jens Axboe1429d7c2014-05-19 09:23:55 -060068 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
69
70 if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
71 set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
72}
73
74static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
75 struct blk_mq_ctx *ctx)
76{
77 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
78
79 clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
Jens Axboe320ae512013-10-24 09:20:05 +010080}
81
Keith Buschb4c6a022014-12-19 17:54:14 -070082void blk_mq_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080083{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020084 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040085
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020086 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
87 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040088 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040089 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040090 }
Tejun Heof3af0202014-11-04 13:52:27 -050091}
Keith Buschb4c6a022014-12-19 17:54:14 -070092EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -050093
94static void blk_mq_freeze_queue_wait(struct request_queue *q)
95{
Dan Williams3ef28e82015-10-21 13:20:12 -040096 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +080097}
98
Tejun Heof3af0202014-11-04 13:52:27 -050099/*
100 * Guarantee no request is in use, so we can change any data structure of
101 * the queue afterward.
102 */
Dan Williams3ef28e82015-10-21 13:20:12 -0400103void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500104{
Dan Williams3ef28e82015-10-21 13:20:12 -0400105 /*
106 * In the !blk_mq case we are only calling this to kill the
107 * q_usage_counter, otherwise this increases the freeze depth
108 * and waits for it to return to zero. For this reason there is
109 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
110 * exported to drivers as the only user for unfreeze is blk_mq.
111 */
Tejun Heof3af0202014-11-04 13:52:27 -0500112 blk_mq_freeze_queue_start(q);
113 blk_mq_freeze_queue_wait(q);
114}
Dan Williams3ef28e82015-10-21 13:20:12 -0400115
116void blk_mq_freeze_queue(struct request_queue *q)
117{
118 /*
119 * ...just an alias to keep freeze and unfreeze actions balanced
120 * in the blk_mq_* namespace
121 */
122 blk_freeze_queue(q);
123}
Jens Axboec761d962015-01-02 15:05:12 -0700124EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500125
Keith Buschb4c6a022014-12-19 17:54:14 -0700126void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100127{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200128 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100129
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200130 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
131 WARN_ON_ONCE(freeze_depth < 0);
132 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400133 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100134 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600135 }
Jens Axboe320ae512013-10-24 09:20:05 +0100136}
Keith Buschb4c6a022014-12-19 17:54:14 -0700137EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100138
Jens Axboeaed3ea92014-12-22 14:04:42 -0700139void blk_mq_wake_waiters(struct request_queue *q)
140{
141 struct blk_mq_hw_ctx *hctx;
142 unsigned int i;
143
144 queue_for_each_hw_ctx(q, hctx, i)
145 if (blk_mq_hw_queue_mapped(hctx))
146 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700147
148 /*
149 * If we are called because the queue has now been marked as
150 * dying, we need to ensure that processes currently waiting on
151 * the queue are notified as well.
152 */
153 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700154}
155
Jens Axboe320ae512013-10-24 09:20:05 +0100156bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
157{
158 return blk_mq_has_free_tags(hctx->tags);
159}
160EXPORT_SYMBOL(blk_mq_can_queue);
161
Jens Axboe94eddfb2013-11-19 09:25:07 -0700162static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
Mike Christiecc6e3b12016-06-05 14:32:12 -0500163 struct request *rq, int op,
164 unsigned int op_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100165{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700166 if (blk_queue_io_stat(q))
Mike Christiecc6e3b12016-06-05 14:32:12 -0500167 op_flags |= REQ_IO_STAT;
Jens Axboe94eddfb2013-11-19 09:25:07 -0700168
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200169 INIT_LIST_HEAD(&rq->queuelist);
170 /* csd/requeue_work/fifo_time is initialized before use */
171 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100172 rq->mq_ctx = ctx;
Mike Christiecc6e3b12016-06-05 14:32:12 -0500173 req_set_op_attrs(rq, op, op_flags);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200174 /* do not touch atomic flags, it needs atomic ops against the timer */
175 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200176 INIT_HLIST_NODE(&rq->hash);
177 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200178 rq->rq_disk = NULL;
179 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600180 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200181#ifdef CONFIG_BLK_CGROUP
182 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700183 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200184 rq->io_start_time_ns = 0;
185#endif
186 rq->nr_phys_segments = 0;
187#if defined(CONFIG_BLK_DEV_INTEGRITY)
188 rq->nr_integrity_segments = 0;
189#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200190 rq->special = NULL;
191 /* tag was already set */
192 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200193
Tony Battersby6f4a16262014-08-22 15:53:39 -0400194 rq->cmd = rq->__cmd;
195
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200196 rq->extra_len = 0;
197 rq->sense_len = 0;
198 rq->resid_len = 0;
199 rq->sense = NULL;
200
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200201 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600202 rq->timeout = 0;
203
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200204 rq->end_io = NULL;
205 rq->end_io_data = NULL;
206 rq->next_rq = NULL;
207
Mike Christied9d8c5c2016-06-05 14:32:16 -0500208 ctx->rq_dispatched[rw_is_sync(op, op_flags)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100209}
210
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200211static struct request *
Mike Christiecc6e3b12016-06-05 14:32:12 -0500212__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int op, int op_flags)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200213{
214 struct request *rq;
215 unsigned int tag;
216
Ming Leicb96a422014-06-01 00:43:37 +0800217 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200218 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800219 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200220
Ming Leicb96a422014-06-01 00:43:37 +0800221 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200222 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800223 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200224 }
225
226 rq->tag = tag;
Mike Christiecc6e3b12016-06-05 14:32:12 -0500227 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op, op_flags);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200228 return rq;
229 }
230
231 return NULL;
232}
233
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100234struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
235 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100236{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200237 struct blk_mq_ctx *ctx;
238 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100239 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800240 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600241 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100242
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100243 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600244 if (ret)
245 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100246
Christoph Hellwigd8525642014-05-27 20:59:50 +0200247 ctx = blk_mq_get_ctx(q);
248 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100249 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200250
Mike Christiecc6e3b12016-06-05 14:32:12 -0500251 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100252 if (!rq && !(flags & BLK_MQ_REQ_NOWAIT)) {
Christoph Hellwigd8525642014-05-27 20:59:50 +0200253 __blk_mq_run_hw_queue(hctx);
254 blk_mq_put_ctx(ctx);
255
256 ctx = blk_mq_get_ctx(q);
257 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100258 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -0500259 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
Ming Leicb96a422014-06-01 00:43:37 +0800260 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200261 }
262 blk_mq_put_ctx(ctx);
Keith Buschc76541a92014-12-19 17:54:13 -0700263 if (!rq) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400264 blk_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600265 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a92014-12-19 17:54:13 -0700266 }
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200267
268 rq->__data_len = 0;
269 rq->__sector = (sector_t) -1;
270 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100271 return rq;
272}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600273EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100274
Ming Lin1f5bd332016-06-13 16:45:21 +0200275struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
276 unsigned int flags, unsigned int hctx_idx)
277{
278 struct blk_mq_hw_ctx *hctx;
279 struct blk_mq_ctx *ctx;
280 struct request *rq;
281 struct blk_mq_alloc_data alloc_data;
282 int ret;
283
284 /*
285 * If the tag allocator sleeps we could get an allocation for a
286 * different hardware context. No need to complicate the low level
287 * allocator for this for the rare use case of a command tied to
288 * a specific queue.
289 */
290 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
291 return ERR_PTR(-EINVAL);
292
293 if (hctx_idx >= q->nr_hw_queues)
294 return ERR_PTR(-EIO);
295
296 ret = blk_queue_enter(q, true);
297 if (ret)
298 return ERR_PTR(ret);
299
300 hctx = q->queue_hw_ctx[hctx_idx];
301 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
302
303 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
304 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
305 if (!rq) {
306 blk_queue_exit(q);
307 return ERR_PTR(-EWOULDBLOCK);
308 }
309
310 return rq;
311}
312EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
313
Jens Axboe320ae512013-10-24 09:20:05 +0100314static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
315 struct blk_mq_ctx *ctx, struct request *rq)
316{
317 const int tag = rq->tag;
318 struct request_queue *q = rq->q;
319
Jens Axboe0d2602c2014-05-13 15:10:52 -0600320 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
321 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200322 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600323
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200324 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600325 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400326 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100327}
328
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700329void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100330{
331 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700332
333 ctx->rq_completed[rq_is_sync(rq)]++;
334 __blk_mq_free_request(hctx, ctx, rq);
335
336}
337EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
338
339void blk_mq_free_request(struct request *rq)
340{
Jens Axboe320ae512013-10-24 09:20:05 +0100341 struct blk_mq_hw_ctx *hctx;
342 struct request_queue *q = rq->q;
343
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700344 hctx = q->mq_ops->map_queue(q, rq->mq_ctx->cpu);
345 blk_mq_free_hctx_request(hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100346}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700347EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100348
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700349inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100350{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700351 blk_account_io_done(rq);
352
Christoph Hellwig91b63632014-04-16 09:44:53 +0200353 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100354 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200355 } else {
356 if (unlikely(blk_bidi_rq(rq)))
357 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100358 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200359 }
Jens Axboe320ae512013-10-24 09:20:05 +0100360}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700361EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200362
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700363void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200364{
365 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
366 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700367 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200368}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700369EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100370
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800371static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100372{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800373 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100374
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800375 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100376}
377
Jens Axboeed851862014-05-30 21:20:50 -0600378static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100379{
380 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700381 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100382 int cpu;
383
Christoph Hellwig38535202014-04-25 02:32:53 -0700384 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800385 rq->q->softirq_done_fn(rq);
386 return;
387 }
Jens Axboe320ae512013-10-24 09:20:05 +0100388
389 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700390 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
391 shared = cpus_share_cache(cpu, ctx->cpu);
392
393 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800394 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800395 rq->csd.info = rq;
396 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100397 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800398 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800399 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800400 }
Jens Axboe320ae512013-10-24 09:20:05 +0100401 put_cpu();
402}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800403
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700404static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600405{
406 struct request_queue *q = rq->q;
407
408 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700409 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600410 else
411 blk_mq_ipi_complete_request(rq);
412}
413
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800414/**
415 * blk_mq_complete_request - end I/O on a request
416 * @rq: the request being processed
417 *
418 * Description:
419 * Ends all I/O on a request. It does not handle partial completions.
420 * The actual completion happens out-of-order, through a IPI handler.
421 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200422void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800423{
Jens Axboe95f09682014-05-27 17:46:48 -0600424 struct request_queue *q = rq->q;
425
426 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800427 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200428 if (!blk_mark_rq_complete(rq)) {
429 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600430 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200431 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800432}
433EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100434
Keith Busch973c0192015-01-07 18:55:43 -0700435int blk_mq_request_started(struct request *rq)
436{
437 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
438}
439EXPORT_SYMBOL_GPL(blk_mq_request_started);
440
Christoph Hellwige2490072014-09-13 16:40:09 -0700441void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100442{
443 struct request_queue *q = rq->q;
444
445 trace_block_rq_issue(q, rq);
446
Christoph Hellwig742ee692014-04-14 10:30:06 +0200447 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200448 if (unlikely(blk_bidi_rq(rq)))
449 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200450
Ming Lei2b8393b2014-06-10 00:16:41 +0800451 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600452
453 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600454 * Ensure that ->deadline is visible before set the started
455 * flag and clear the completed flag.
456 */
457 smp_mb__before_atomic();
458
459 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600460 * Mark us as started and clear complete. Complete might have been
461 * set if requeue raced with timeout, which then marked it as
462 * complete. So be sure to clear complete again when we start
463 * the request, otherwise we'll ignore the completion event.
464 */
Jens Axboe4b570522014-05-29 11:00:11 -0600465 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
466 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
467 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
468 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800469
470 if (q->dma_drain_size && blk_rq_bytes(rq)) {
471 /*
472 * Make sure space for the drain appears. We know we can do
473 * this because max_hw_segments has been adjusted to be one
474 * fewer than the device can handle.
475 */
476 rq->nr_phys_segments++;
477 }
Jens Axboe320ae512013-10-24 09:20:05 +0100478}
Christoph Hellwige2490072014-09-13 16:40:09 -0700479EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100480
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200481static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100482{
483 struct request_queue *q = rq->q;
484
485 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800486
Christoph Hellwige2490072014-09-13 16:40:09 -0700487 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
488 if (q->dma_drain_size && blk_rq_bytes(rq))
489 rq->nr_phys_segments--;
490 }
Jens Axboe320ae512013-10-24 09:20:05 +0100491}
492
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200493void blk_mq_requeue_request(struct request *rq)
494{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200495 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200496
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200497 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600498 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200499}
500EXPORT_SYMBOL(blk_mq_requeue_request);
501
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600502static void blk_mq_requeue_work(struct work_struct *work)
503{
504 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400505 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600506 LIST_HEAD(rq_list);
507 struct request *rq, *next;
508 unsigned long flags;
509
510 spin_lock_irqsave(&q->requeue_lock, flags);
511 list_splice_init(&q->requeue_list, &rq_list);
512 spin_unlock_irqrestore(&q->requeue_lock, flags);
513
514 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
515 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
516 continue;
517
518 rq->cmd_flags &= ~REQ_SOFTBARRIER;
519 list_del_init(&rq->queuelist);
520 blk_mq_insert_request(rq, true, false, false);
521 }
522
523 while (!list_empty(&rq_list)) {
524 rq = list_entry(rq_list.next, struct request, queuelist);
525 list_del_init(&rq->queuelist);
526 blk_mq_insert_request(rq, false, false, false);
527 }
528
Jens Axboe8b957412014-09-19 13:10:29 -0600529 /*
530 * Use the start variant of queue running here, so that running
531 * the requeue work will kick stopped queues.
532 */
533 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600534}
535
536void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
537{
538 struct request_queue *q = rq->q;
539 unsigned long flags;
540
541 /*
542 * We abuse this flag that is otherwise used by the I/O scheduler to
543 * request head insertation from the workqueue.
544 */
545 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
546
547 spin_lock_irqsave(&q->requeue_lock, flags);
548 if (at_head) {
549 rq->cmd_flags |= REQ_SOFTBARRIER;
550 list_add(&rq->queuelist, &q->requeue_list);
551 } else {
552 list_add_tail(&rq->queuelist, &q->requeue_list);
553 }
554 spin_unlock_irqrestore(&q->requeue_lock, flags);
555}
556EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
557
Keith Buschc68ed592015-01-07 18:55:44 -0700558void blk_mq_cancel_requeue_work(struct request_queue *q)
559{
Mike Snitzer28494502016-09-14 13:28:30 -0400560 cancel_delayed_work_sync(&q->requeue_work);
Keith Buschc68ed592015-01-07 18:55:44 -0700561}
562EXPORT_SYMBOL_GPL(blk_mq_cancel_requeue_work);
563
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600564void blk_mq_kick_requeue_list(struct request_queue *q)
565{
Mike Snitzer28494502016-09-14 13:28:30 -0400566 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600567}
568EXPORT_SYMBOL(blk_mq_kick_requeue_list);
569
Mike Snitzer28494502016-09-14 13:28:30 -0400570void blk_mq_delay_kick_requeue_list(struct request_queue *q,
571 unsigned long msecs)
572{
573 kblockd_schedule_delayed_work(&q->requeue_work,
574 msecs_to_jiffies(msecs));
575}
576EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
577
Jens Axboe1885b242015-01-07 18:55:45 -0700578void blk_mq_abort_requeue_list(struct request_queue *q)
579{
580 unsigned long flags;
581 LIST_HEAD(rq_list);
582
583 spin_lock_irqsave(&q->requeue_lock, flags);
584 list_splice_init(&q->requeue_list, &rq_list);
585 spin_unlock_irqrestore(&q->requeue_lock, flags);
586
587 while (!list_empty(&rq_list)) {
588 struct request *rq;
589
590 rq = list_first_entry(&rq_list, struct request, queuelist);
591 list_del_init(&rq->queuelist);
592 rq->errors = -EIO;
593 blk_mq_end_request(rq, rq->errors);
594 }
595}
596EXPORT_SYMBOL(blk_mq_abort_requeue_list);
597
Jens Axboe0e62f512014-06-04 10:23:49 -0600598struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
599{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600600 if (tag < tags->nr_tags) {
601 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700602 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600603 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700604
605 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600606}
607EXPORT_SYMBOL(blk_mq_tag_to_rq);
608
Jens Axboe320ae512013-10-24 09:20:05 +0100609struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700610 unsigned long next;
611 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100612};
613
Christoph Hellwig90415832014-09-22 10:21:48 -0600614void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100615{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700616 struct blk_mq_ops *ops = req->q->mq_ops;
617 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600618
619 /*
620 * We know that complete is set at this point. If STARTED isn't set
621 * anymore, then the request isn't active and the "timeout" should
622 * just be ignored. This can happen due to the bitflag ordering.
623 * Timeout first checks if STARTED is set, and if it is, assumes
624 * the request is active. But if we race with completion, then
625 * we both flags will get cleared. So check here again, and ignore
626 * a timeout event with a request that isn't active.
627 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700628 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
629 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600630
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700631 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700632 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600633
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700634 switch (ret) {
635 case BLK_EH_HANDLED:
636 __blk_mq_complete_request(req);
637 break;
638 case BLK_EH_RESET_TIMER:
639 blk_add_timer(req);
640 blk_clear_rq_complete(req);
641 break;
642 case BLK_EH_NOT_HANDLED:
643 break;
644 default:
645 printk(KERN_ERR "block: bad eh return: %d\n", ret);
646 break;
647 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600648}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700649
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700650static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
651 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100652{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700653 struct blk_mq_timeout_data *data = priv;
654
Keith Buscheb130db2015-01-08 08:59:53 -0700655 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
656 /*
657 * If a request wasn't started before the queue was
658 * marked dying, kill it here or it'll go unnoticed.
659 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700660 if (unlikely(blk_queue_dying(rq->q))) {
661 rq->errors = -EIO;
662 blk_mq_end_request(rq, rq->errors);
663 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700664 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700665 }
Jens Axboe320ae512013-10-24 09:20:05 +0100666
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700667 if (time_after_eq(jiffies, rq->deadline)) {
668 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700669 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700670 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
671 data->next = rq->deadline;
672 data->next_set = 1;
673 }
Jens Axboe320ae512013-10-24 09:20:05 +0100674}
675
Christoph Hellwig287922e2015-10-30 20:57:30 +0800676static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100677{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800678 struct request_queue *q =
679 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700680 struct blk_mq_timeout_data data = {
681 .next = 0,
682 .next_set = 0,
683 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700684 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100685
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600686 /* A deadlock might occur if a request is stuck requiring a
687 * timeout at the same time a queue freeze is waiting
688 * completion, since the timeout code would not be able to
689 * acquire the queue reference here.
690 *
691 * That's why we don't use blk_queue_enter here; instead, we use
692 * percpu_ref_tryget directly, because we need to be able to
693 * obtain a reference even in the short window between the queue
694 * starting to freeze, by dropping the first reference in
695 * blk_mq_freeze_queue_start, and the moment the last request is
696 * consumed, marked by the instant q_usage_counter reaches
697 * zero.
698 */
699 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800700 return;
701
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200702 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100703
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700704 if (data.next_set) {
705 data.next = blk_rq_timeout(round_jiffies_up(data.next));
706 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600707 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200708 struct blk_mq_hw_ctx *hctx;
709
Ming Leif054b562015-04-21 10:00:19 +0800710 queue_for_each_hw_ctx(q, hctx, i) {
711 /* the hctx may be unmapped, so check it here */
712 if (blk_mq_hw_queue_mapped(hctx))
713 blk_mq_tag_idle(hctx);
714 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600715 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800716 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100717}
718
719/*
720 * Reverse check our software queue for entries that we could potentially
721 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
722 * too much time checking for merges.
723 */
724static bool blk_mq_attempt_merge(struct request_queue *q,
725 struct blk_mq_ctx *ctx, struct bio *bio)
726{
727 struct request *rq;
728 int checked = 8;
729
730 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
731 int el_ret;
732
733 if (!checked--)
734 break;
735
736 if (!blk_rq_merge_ok(rq, bio))
737 continue;
738
739 el_ret = blk_try_merge(rq, bio);
740 if (el_ret == ELEVATOR_BACK_MERGE) {
741 if (bio_attempt_back_merge(q, rq, bio)) {
742 ctx->rq_merged++;
743 return true;
744 }
745 break;
746 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
747 if (bio_attempt_front_merge(q, rq, bio)) {
748 ctx->rq_merged++;
749 return true;
750 }
751 break;
752 }
753 }
754
755 return false;
756}
757
Jens Axboe320ae512013-10-24 09:20:05 +0100758/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600759 * Process software queues that have been marked busy, splicing them
760 * to the for-dispatch
761 */
762static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
763{
764 struct blk_mq_ctx *ctx;
765 int i;
766
Jens Axboe569fd0c2015-04-17 08:28:50 -0600767 for (i = 0; i < hctx->ctx_map.size; i++) {
Jens Axboe1429d7c2014-05-19 09:23:55 -0600768 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
769 unsigned int off, bit;
770
771 if (!bm->word)
772 continue;
773
774 bit = 0;
775 off = i * hctx->ctx_map.bits_per_word;
776 do {
777 bit = find_next_bit(&bm->word, bm->depth, bit);
778 if (bit >= bm->depth)
779 break;
780
781 ctx = hctx->ctxs[bit + off];
782 clear_bit(bit, &bm->word);
783 spin_lock(&ctx->lock);
784 list_splice_tail_init(&ctx->rq_list, list);
785 spin_unlock(&ctx->lock);
786
787 bit++;
788 } while (1);
789 }
790}
791
792/*
Jens Axboe320ae512013-10-24 09:20:05 +0100793 * Run this hardware queue, pulling any software queues mapped to it in.
794 * Note that this function currently has various problems around ordering
795 * of IO. In particular, we'd like FIFO behaviour on handling existing
796 * items on the hctx->dispatch list. Ignore that for now.
797 */
798static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
799{
800 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100801 struct request *rq;
802 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600803 LIST_HEAD(driver_list);
804 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600805 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100806
Jens Axboe5d12f902014-03-19 15:25:02 -0600807 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100808 return;
809
Jens Axboe0e87e582016-08-24 15:38:01 -0600810 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
811 cpu_online(hctx->next_cpu));
812
Jens Axboe320ae512013-10-24 09:20:05 +0100813 hctx->run++;
814
815 /*
816 * Touch any software queue that has pending entries.
817 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600818 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100819
820 /*
821 * If we have previous entries on our dispatch list, grab them
822 * and stuff them at the front for more fair dispatch.
823 */
824 if (!list_empty_careful(&hctx->dispatch)) {
825 spin_lock(&hctx->lock);
826 if (!list_empty(&hctx->dispatch))
827 list_splice_init(&hctx->dispatch, &rq_list);
828 spin_unlock(&hctx->lock);
829 }
830
831 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600832 * Start off with dptr being NULL, so we start the first request
833 * immediately, even if we have more pending.
834 */
835 dptr = NULL;
836
837 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100838 * Now process all the entries, sending them to the driver.
839 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600840 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100841 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600842 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100843 int ret;
844
845 rq = list_first_entry(&rq_list, struct request, queuelist);
846 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100847
Jens Axboe74c45052014-10-29 11:14:52 -0600848 bd.rq = rq;
849 bd.list = dptr;
850 bd.last = list_empty(&rq_list);
851
852 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100853 switch (ret) {
854 case BLK_MQ_RQ_QUEUE_OK:
855 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700856 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100857 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100858 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200859 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100860 break;
861 default:
862 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100863 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800864 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700865 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100866 break;
867 }
868
869 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
870 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600871
872 /*
873 * We've done the first request. If we have more than 1
874 * left in the list, set dptr to defer issue.
875 */
876 if (!dptr && rq_list.next != rq_list.prev)
877 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100878 }
879
880 if (!queued)
881 hctx->dispatched[0]++;
882 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
883 hctx->dispatched[ilog2(queued) + 1]++;
884
885 /*
886 * Any items that need requeuing? Stuff them into hctx->dispatch,
887 * that is where we will continue on next queue run.
888 */
889 if (!list_empty(&rq_list)) {
890 spin_lock(&hctx->lock);
891 list_splice(&rq_list, &hctx->dispatch);
892 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600893 /*
894 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
895 * it's possible the queue is stopped and restarted again
896 * before this. Queue restart will dispatch requests. And since
897 * requests in rq_list aren't added into hctx->dispatch yet,
898 * the requests in rq_list might get lost.
899 *
900 * blk_mq_run_hw_queue() already checks the STOPPED bit
901 **/
902 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100903 }
904}
905
Jens Axboe506e9312014-05-07 10:26:44 -0600906/*
907 * It'd be great if the workqueue API had a way to pass
908 * in a mask and had some smarts for more clever placement.
909 * For now we just round-robin here, switching for every
910 * BLK_MQ_CPU_WORK_BATCH queued items.
911 */
912static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
913{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100914 if (hctx->queue->nr_hw_queues == 1)
915 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600916
917 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100918 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600919
920 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
921 if (next_cpu >= nr_cpu_ids)
922 next_cpu = cpumask_first(hctx->cpumask);
923
924 hctx->next_cpu = next_cpu;
925 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100926
927 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600928 }
929
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100930 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600931}
932
Jens Axboe320ae512013-10-24 09:20:05 +0100933void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
934{
Ming Lei19c66e52014-12-03 19:38:04 +0800935 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state) ||
936 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100937 return;
938
Paolo Bonzini398205b2014-11-07 23:03:59 +0100939 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100940 int cpu = get_cpu();
941 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100942 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100943 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100944 return;
945 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600946
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100947 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600948 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100949
Jens Axboe27489a32016-08-24 15:54:25 -0600950 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100951}
952
Mike Snitzerb94ec292015-03-11 23:56:38 -0400953void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100954{
955 struct blk_mq_hw_ctx *hctx;
956 int i;
957
958 queue_for_each_hw_ctx(q, hctx, i) {
959 if ((!blk_mq_hctx_has_pending(hctx) &&
960 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600961 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100962 continue;
963
Mike Snitzerb94ec292015-03-11 23:56:38 -0400964 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100965 }
966}
Mike Snitzerb94ec292015-03-11 23:56:38 -0400967EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +0100968
969void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
970{
Jens Axboe27489a32016-08-24 15:54:25 -0600971 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600972 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100973 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
974}
975EXPORT_SYMBOL(blk_mq_stop_hw_queue);
976
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100977void blk_mq_stop_hw_queues(struct request_queue *q)
978{
979 struct blk_mq_hw_ctx *hctx;
980 int i;
981
982 queue_for_each_hw_ctx(q, hctx, i)
983 blk_mq_stop_hw_queue(hctx);
984}
985EXPORT_SYMBOL(blk_mq_stop_hw_queues);
986
Jens Axboe320ae512013-10-24 09:20:05 +0100987void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
988{
989 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600990
Jens Axboe0ffbce82014-06-25 08:22:34 -0600991 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100992}
993EXPORT_SYMBOL(blk_mq_start_hw_queue);
994
Christoph Hellwig2f268552014-04-16 09:44:56 +0200995void blk_mq_start_hw_queues(struct request_queue *q)
996{
997 struct blk_mq_hw_ctx *hctx;
998 int i;
999
1000 queue_for_each_hw_ctx(q, hctx, i)
1001 blk_mq_start_hw_queue(hctx);
1002}
1003EXPORT_SYMBOL(blk_mq_start_hw_queues);
1004
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001005void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001006{
1007 struct blk_mq_hw_ctx *hctx;
1008 int i;
1009
1010 queue_for_each_hw_ctx(q, hctx, i) {
1011 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
1012 continue;
1013
1014 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001015 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001016 }
1017}
1018EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1019
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001020static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001021{
1022 struct blk_mq_hw_ctx *hctx;
1023
Jens Axboe27489a32016-08-24 15:54:25 -06001024 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001025
Jens Axboe320ae512013-10-24 09:20:05 +01001026 __blk_mq_run_hw_queue(hctx);
1027}
1028
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001029static void blk_mq_delay_work_fn(struct work_struct *work)
1030{
1031 struct blk_mq_hw_ctx *hctx;
1032
1033 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1034
1035 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1036 __blk_mq_run_hw_queue(hctx);
1037}
1038
1039void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1040{
Ming Lei19c66e52014-12-03 19:38:04 +08001041 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1042 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001043
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001044 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1045 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001046}
1047EXPORT_SYMBOL(blk_mq_delay_queue);
1048
Ming Leicfd0c552015-10-20 23:13:57 +08001049static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001050 struct request *rq,
1051 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001052{
Jens Axboee57690f2016-08-24 15:34:35 -06001053 struct blk_mq_ctx *ctx = rq->mq_ctx;
1054
Jens Axboe01b983c2013-11-19 18:59:10 -07001055 trace_block_rq_insert(hctx->queue, rq);
1056
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001057 if (at_head)
1058 list_add(&rq->queuelist, &ctx->rq_list);
1059 else
1060 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001061}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001062
Ming Leicfd0c552015-10-20 23:13:57 +08001063static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1064 struct request *rq, bool at_head)
1065{
1066 struct blk_mq_ctx *ctx = rq->mq_ctx;
1067
Jens Axboee57690f2016-08-24 15:34:35 -06001068 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001069 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001070}
1071
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001072void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001073 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001074{
Jens Axboee57690f2016-08-24 15:34:35 -06001075 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001076 struct request_queue *q = rq->q;
1077 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001078
Jens Axboe320ae512013-10-24 09:20:05 +01001079 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1080
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001081 spin_lock(&ctx->lock);
1082 __blk_mq_insert_request(hctx, rq, at_head);
1083 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001084
Jens Axboe320ae512013-10-24 09:20:05 +01001085 if (run_queue)
1086 blk_mq_run_hw_queue(hctx, async);
1087}
1088
1089static void blk_mq_insert_requests(struct request_queue *q,
1090 struct blk_mq_ctx *ctx,
1091 struct list_head *list,
1092 int depth,
1093 bool from_schedule)
1094
1095{
1096 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001097
1098 trace_block_unplug(q, depth, !from_schedule);
1099
Jens Axboe320ae512013-10-24 09:20:05 +01001100 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1101
1102 /*
1103 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1104 * offline now
1105 */
1106 spin_lock(&ctx->lock);
1107 while (!list_empty(list)) {
1108 struct request *rq;
1109
1110 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001111 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001112 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001113 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001114 }
Ming Leicfd0c552015-10-20 23:13:57 +08001115 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001116 spin_unlock(&ctx->lock);
1117
Jens Axboe320ae512013-10-24 09:20:05 +01001118 blk_mq_run_hw_queue(hctx, from_schedule);
1119}
1120
1121static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1122{
1123 struct request *rqa = container_of(a, struct request, queuelist);
1124 struct request *rqb = container_of(b, struct request, queuelist);
1125
1126 return !(rqa->mq_ctx < rqb->mq_ctx ||
1127 (rqa->mq_ctx == rqb->mq_ctx &&
1128 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1129}
1130
1131void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1132{
1133 struct blk_mq_ctx *this_ctx;
1134 struct request_queue *this_q;
1135 struct request *rq;
1136 LIST_HEAD(list);
1137 LIST_HEAD(ctx_list);
1138 unsigned int depth;
1139
1140 list_splice_init(&plug->mq_list, &list);
1141
1142 list_sort(NULL, &list, plug_ctx_cmp);
1143
1144 this_q = NULL;
1145 this_ctx = NULL;
1146 depth = 0;
1147
1148 while (!list_empty(&list)) {
1149 rq = list_entry_rq(list.next);
1150 list_del_init(&rq->queuelist);
1151 BUG_ON(!rq->q);
1152 if (rq->mq_ctx != this_ctx) {
1153 if (this_ctx) {
1154 blk_mq_insert_requests(this_q, this_ctx,
1155 &ctx_list, depth,
1156 from_schedule);
1157 }
1158
1159 this_ctx = rq->mq_ctx;
1160 this_q = rq->q;
1161 depth = 0;
1162 }
1163
1164 depth++;
1165 list_add_tail(&rq->queuelist, &ctx_list);
1166 }
1167
1168 /*
1169 * If 'this_ctx' is set, we know we have entries to complete
1170 * on 'ctx_list'. Do those.
1171 */
1172 if (this_ctx) {
1173 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1174 from_schedule);
1175 }
1176}
1177
1178static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1179{
1180 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001181
Michael Callahana21f2a32016-05-03 11:12:49 -04001182 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001183}
1184
Jens Axboe274a5842014-08-15 12:44:08 -06001185static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1186{
1187 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1188 !blk_queue_nomerges(hctx->queue);
1189}
1190
Jens Axboe07068d52014-05-22 10:40:51 -06001191static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1192 struct blk_mq_ctx *ctx,
1193 struct request *rq, struct bio *bio)
1194{
Ming Leie18378a2015-10-20 23:13:54 +08001195 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001196 blk_mq_bio_to_request(rq, bio);
1197 spin_lock(&ctx->lock);
1198insert_rq:
1199 __blk_mq_insert_request(hctx, rq, false);
1200 spin_unlock(&ctx->lock);
1201 return false;
1202 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001203 struct request_queue *q = hctx->queue;
1204
Jens Axboe07068d52014-05-22 10:40:51 -06001205 spin_lock(&ctx->lock);
1206 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1207 blk_mq_bio_to_request(rq, bio);
1208 goto insert_rq;
1209 }
1210
1211 spin_unlock(&ctx->lock);
1212 __blk_mq_free_request(hctx, ctx, rq);
1213 return true;
1214 }
1215}
1216
1217struct blk_map_ctx {
1218 struct blk_mq_hw_ctx *hctx;
1219 struct blk_mq_ctx *ctx;
1220};
1221
1222static struct request *blk_mq_map_request(struct request_queue *q,
1223 struct bio *bio,
1224 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001225{
1226 struct blk_mq_hw_ctx *hctx;
1227 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001228 struct request *rq;
Mike Christiecc6e3b12016-06-05 14:32:12 -05001229 int op = bio_data_dir(bio);
1230 int op_flags = 0;
Ming Leicb96a422014-06-01 00:43:37 +08001231 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001232
Dan Williams3ef28e82015-10-21 13:20:12 -04001233 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001234 ctx = blk_mq_get_ctx(q);
1235 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1236
Jens Axboe1eff9d32016-08-05 15:35:16 -06001237 if (rw_is_sync(bio_op(bio), bio->bi_opf))
Mike Christiecc6e3b12016-06-05 14:32:12 -05001238 op_flags |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001239
Mike Christiecc6e3b12016-06-05 14:32:12 -05001240 trace_block_getrq(q, bio, op);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001241 blk_mq_set_alloc_data(&alloc_data, q, BLK_MQ_REQ_NOWAIT, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001242 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001243 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001244 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001245 blk_mq_put_ctx(ctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001246 trace_block_sleeprq(q, bio, op);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001247
1248 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001249 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001250 blk_mq_set_alloc_data(&alloc_data, q, 0, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001251 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Ming Leicb96a422014-06-01 00:43:37 +08001252 ctx = alloc_data.ctx;
1253 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001254 }
1255
1256 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001257 data->hctx = hctx;
1258 data->ctx = ctx;
1259 return rq;
1260}
1261
Jens Axboe7b371632015-11-05 10:41:40 -07001262static int blk_mq_direct_issue_request(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001263{
1264 int ret;
1265 struct request_queue *q = rq->q;
1266 struct blk_mq_hw_ctx *hctx = q->mq_ops->map_queue(q,
1267 rq->mq_ctx->cpu);
1268 struct blk_mq_queue_data bd = {
1269 .rq = rq,
1270 .list = NULL,
1271 .last = 1
1272 };
Jens Axboe7b371632015-11-05 10:41:40 -07001273 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001274
1275 /*
1276 * For OK queue, we are done. For error, kill it. Any other
1277 * error (busy), just add it to our list as we previously
1278 * would have done
1279 */
1280 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001281 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1282 *cookie = new_cookie;
Shaohua Lif984df12015-05-08 10:51:32 -07001283 return 0;
Shaohua Lif984df12015-05-08 10:51:32 -07001284 }
Jens Axboe7b371632015-11-05 10:41:40 -07001285
1286 __blk_mq_requeue_request(rq);
1287
1288 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1289 *cookie = BLK_QC_T_NONE;
1290 rq->errors = -EIO;
1291 blk_mq_end_request(rq, rq->errors);
1292 return 0;
1293 }
1294
1295 return -1;
Shaohua Lif984df12015-05-08 10:51:32 -07001296}
1297
Jens Axboe07068d52014-05-22 10:40:51 -06001298/*
1299 * Multiple hardware queue variant. This will not use per-process plugs,
1300 * but will attempt to bypass the hctx queueing if we can go straight to
1301 * hardware for SYNC IO.
1302 */
Jens Axboedece1632015-11-05 10:41:16 -07001303static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001304{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001305 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1306 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe07068d52014-05-22 10:40:51 -06001307 struct blk_map_ctx data;
1308 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001309 unsigned int request_count = 0;
1310 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001311 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001312 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001313
1314 blk_queue_bounce(q, &bio);
1315
1316 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001317 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001318 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001319 }
1320
Kent Overstreet54efd502015-04-23 22:37:18 -07001321 blk_queue_split(q, &bio, q->bio_split);
1322
Omar Sandoval87c279e2016-06-01 22:18:48 -07001323 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1324 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1325 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001326
Jens Axboe07068d52014-05-22 10:40:51 -06001327 rq = blk_mq_map_request(q, bio, &data);
1328 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001329 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001330
Jens Axboe7b371632015-11-05 10:41:40 -07001331 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001332
1333 if (unlikely(is_flush_fua)) {
1334 blk_mq_bio_to_request(rq, bio);
1335 blk_insert_flush(rq);
1336 goto run_queue;
1337 }
1338
Shaohua Lif984df12015-05-08 10:51:32 -07001339 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001340 /*
1341 * If the driver supports defer issued based on 'last', then
1342 * queue it up like normal since we can potentially save some
1343 * CPU this way.
1344 */
Shaohua Lif984df12015-05-08 10:51:32 -07001345 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1346 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1347 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001348
1349 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001350
1351 /*
Jens Axboeb094f892015-11-20 20:29:45 -07001352 * We do limited pluging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001353 * Otherwise the existing request in the plug list will be
1354 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001355 */
Shaohua Lif984df12015-05-08 10:51:32 -07001356 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001357 /*
1358 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001359 * happens, same_queue_rq is invalid and plug list is
1360 * empty
1361 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001362 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1363 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001364 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001365 }
Shaohua Lif984df12015-05-08 10:51:32 -07001366 list_add_tail(&rq->queuelist, &plug->mq_list);
1367 } else /* is_sync */
1368 old_rq = rq;
1369 blk_mq_put_ctx(data.ctx);
1370 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001371 goto done;
1372 if (!blk_mq_direct_issue_request(old_rq, &cookie))
1373 goto done;
Shaohua Lif984df12015-05-08 10:51:32 -07001374 blk_mq_insert_request(old_rq, false, true, true);
Jens Axboe7b371632015-11-05 10:41:40 -07001375 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001376 }
1377
1378 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1379 /*
1380 * For a SYNC request, send it to the hardware immediately. For
1381 * an ASYNC request, just ensure that we run it later on. The
1382 * latter allows for merging opportunities and more efficient
1383 * dispatching.
1384 */
1385run_queue:
1386 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1387 }
Jens Axboe07068d52014-05-22 10:40:51 -06001388 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001389done:
1390 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001391}
1392
1393/*
1394 * Single hardware queue variant. This will attempt to use any per-process
1395 * plug for merging and IO deferral.
1396 */
Jens Axboedece1632015-11-05 10:41:16 -07001397static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001398{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001399 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1400 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001401 struct blk_plug *plug;
1402 unsigned int request_count = 0;
Jens Axboe07068d52014-05-22 10:40:51 -06001403 struct blk_map_ctx data;
1404 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001405 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001406
Jens Axboe07068d52014-05-22 10:40:51 -06001407 blk_queue_bounce(q, &bio);
1408
1409 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001410 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001411 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001412 }
1413
Kent Overstreet54efd502015-04-23 22:37:18 -07001414 blk_queue_split(q, &bio, q->bio_split);
1415
Omar Sandoval87c279e2016-06-01 22:18:48 -07001416 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1417 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1418 return BLK_QC_T_NONE;
1419 } else
1420 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001421
1422 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001423 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001424 return BLK_QC_T_NONE;
Jens Axboe320ae512013-10-24 09:20:05 +01001425
Jens Axboe7b371632015-11-05 10:41:40 -07001426 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001427
1428 if (unlikely(is_flush_fua)) {
1429 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001430 blk_insert_flush(rq);
1431 goto run_queue;
1432 }
1433
1434 /*
1435 * A task plug currently exists. Since this is completely lockless,
1436 * utilize that to temporarily store requests until the task is
1437 * either done or scheduled away.
1438 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001439 plug = current->plug;
1440 if (plug) {
1441 blk_mq_bio_to_request(rq, bio);
Ming Lei676d0602015-10-20 23:13:56 +08001442 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001443 trace_block_plug(q);
Jens Axboeb094f892015-11-20 20:29:45 -07001444
1445 blk_mq_put_ctx(data.ctx);
1446
1447 if (request_count >= BLK_MAX_REQUEST_COUNT) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001448 blk_flush_plug_list(plug, false);
1449 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001450 }
Jens Axboeb094f892015-11-20 20:29:45 -07001451
Jeff Moyere6c44382015-05-08 10:51:30 -07001452 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001453 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001454 }
1455
Jens Axboe07068d52014-05-22 10:40:51 -06001456 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1457 /*
1458 * For a SYNC request, send it to the hardware immediately. For
1459 * an ASYNC request, just ensure that we run it later on. The
1460 * latter allows for merging opportunities and more efficient
1461 * dispatching.
1462 */
1463run_queue:
1464 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001465 }
1466
Jens Axboe07068d52014-05-22 10:40:51 -06001467 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001468 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001469}
1470
1471/*
1472 * Default mapping to a software queue, since we use one per CPU.
1473 */
1474struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1475{
1476 return q->queue_hw_ctx[q->mq_map[cpu]];
1477}
1478EXPORT_SYMBOL(blk_mq_map_queue);
1479
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001480static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1481 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001482{
1483 struct page *page;
1484
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001485 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001486 int i;
1487
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001488 for (i = 0; i < tags->nr_tags; i++) {
1489 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001490 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001491 set->ops->exit_request(set->driver_data, tags->rqs[i],
1492 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001493 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001494 }
1495 }
1496
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001497 while (!list_empty(&tags->page_list)) {
1498 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001499 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001500 /*
1501 * Remove kmemleak object previously allocated in
1502 * blk_mq_init_rq_map().
1503 */
1504 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001505 __free_pages(page, page->private);
1506 }
1507
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001508 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001509
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001510 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001511}
1512
1513static size_t order_to_size(unsigned int order)
1514{
Ming Lei4ca08502014-04-19 18:00:18 +08001515 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001516}
1517
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001518static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1519 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001520{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001521 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001522 unsigned int i, j, entries_per_page, max_order = 4;
1523 size_t rq_size, left;
1524
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001525 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001526 set->numa_node,
1527 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001528 if (!tags)
1529 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001530
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001531 INIT_LIST_HEAD(&tags->page_list);
1532
Jens Axboea5164402014-09-10 09:02:03 -06001533 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1534 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1535 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001536 if (!tags->rqs) {
1537 blk_mq_free_tags(tags);
1538 return NULL;
1539 }
Jens Axboe320ae512013-10-24 09:20:05 +01001540
1541 /*
1542 * rq_size is the size of the request plus driver payload, rounded
1543 * to the cacheline size
1544 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001545 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001546 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001547 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001548
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001549 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001550 int this_order = max_order;
1551 struct page *page;
1552 int to_do;
1553 void *p;
1554
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001555 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001556 this_order--;
1557
1558 do {
Jens Axboea5164402014-09-10 09:02:03 -06001559 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001560 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001561 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001562 if (page)
1563 break;
1564 if (!this_order--)
1565 break;
1566 if (order_to_size(this_order) < rq_size)
1567 break;
1568 } while (1);
1569
1570 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001571 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001572
1573 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001574 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001575
1576 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001577 /*
1578 * Allow kmemleak to scan these pages as they contain pointers
1579 * to additional allocations like via ops->init_request().
1580 */
1581 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001582 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001583 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001584 left -= to_do * rq_size;
1585 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001586 tags->rqs[i] = p;
1587 if (set->ops->init_request) {
1588 if (set->ops->init_request(set->driver_data,
1589 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001590 set->numa_node)) {
1591 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001592 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001593 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001594 }
1595
Jens Axboe320ae512013-10-24 09:20:05 +01001596 p += rq_size;
1597 i++;
1598 }
1599 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001600 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001601
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001602fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001603 blk_mq_free_rq_map(set, tags, hctx_idx);
1604 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001605}
1606
Jens Axboe1429d7c2014-05-19 09:23:55 -06001607static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1608{
1609 kfree(bitmap->map);
1610}
1611
1612static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1613{
1614 unsigned int bpw = 8, total, num_maps, i;
1615
1616 bitmap->bits_per_word = bpw;
1617
1618 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1619 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1620 GFP_KERNEL, node);
1621 if (!bitmap->map)
1622 return -ENOMEM;
1623
Jens Axboe1429d7c2014-05-19 09:23:55 -06001624 total = nr_cpu_ids;
1625 for (i = 0; i < num_maps; i++) {
1626 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1627 total -= bitmap->map[i].depth;
1628 }
1629
1630 return 0;
1631}
1632
Jens Axboee57690f2016-08-24 15:34:35 -06001633/*
1634 * 'cpu' is going away. splice any existing rq_list entries from this
1635 * software queue to the hw queue dispatch list, and ensure that it
1636 * gets run.
1637 */
Jens Axboe484b4062014-05-21 14:01:15 -06001638static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1639{
Jens Axboe484b4062014-05-21 14:01:15 -06001640 struct blk_mq_ctx *ctx;
1641 LIST_HEAD(tmp);
1642
Jens Axboee57690f2016-08-24 15:34:35 -06001643 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001644
1645 spin_lock(&ctx->lock);
1646 if (!list_empty(&ctx->rq_list)) {
1647 list_splice_init(&ctx->rq_list, &tmp);
1648 blk_mq_hctx_clear_pending(hctx, ctx);
1649 }
1650 spin_unlock(&ctx->lock);
1651
1652 if (list_empty(&tmp))
1653 return NOTIFY_OK;
1654
Jens Axboee57690f2016-08-24 15:34:35 -06001655 spin_lock(&hctx->lock);
1656 list_splice_tail_init(&tmp, &hctx->dispatch);
1657 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001658
1659 blk_mq_run_hw_queue(hctx, true);
Jens Axboe484b4062014-05-21 14:01:15 -06001660 return NOTIFY_OK;
1661}
1662
Jens Axboe484b4062014-05-21 14:01:15 -06001663static int blk_mq_hctx_notify(void *data, unsigned long action,
1664 unsigned int cpu)
1665{
1666 struct blk_mq_hw_ctx *hctx = data;
1667
1668 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1669 return blk_mq_hctx_cpu_offline(hctx, cpu);
Ming Lei2a34c082015-04-21 10:00:20 +08001670
1671 /*
1672 * In case of CPU online, tags may be reallocated
1673 * in blk_mq_map_swqueue() after mapping is updated.
1674 */
Jens Axboe484b4062014-05-21 14:01:15 -06001675
1676 return NOTIFY_OK;
1677}
1678
Ming Leic3b4afc2015-06-04 22:25:04 +08001679/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001680static void blk_mq_exit_hctx(struct request_queue *q,
1681 struct blk_mq_tag_set *set,
1682 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1683{
Ming Leif70ced02014-09-25 23:23:47 +08001684 unsigned flush_start_tag = set->queue_depth;
1685
Ming Lei08e98fc2014-09-25 23:23:38 +08001686 blk_mq_tag_idle(hctx);
1687
Ming Leif70ced02014-09-25 23:23:47 +08001688 if (set->ops->exit_request)
1689 set->ops->exit_request(set->driver_data,
1690 hctx->fq->flush_rq, hctx_idx,
1691 flush_start_tag + hctx_idx);
1692
Ming Lei08e98fc2014-09-25 23:23:38 +08001693 if (set->ops->exit_hctx)
1694 set->ops->exit_hctx(hctx, hctx_idx);
1695
1696 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001697 blk_free_flush_queue(hctx->fq);
Ming Lei08e98fc2014-09-25 23:23:38 +08001698 blk_mq_free_bitmap(&hctx->ctx_map);
1699}
1700
Ming Lei624dbe42014-05-27 23:35:13 +08001701static void blk_mq_exit_hw_queues(struct request_queue *q,
1702 struct blk_mq_tag_set *set, int nr_queue)
1703{
1704 struct blk_mq_hw_ctx *hctx;
1705 unsigned int i;
1706
1707 queue_for_each_hw_ctx(q, hctx, i) {
1708 if (i == nr_queue)
1709 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001710 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001711 }
Ming Lei624dbe42014-05-27 23:35:13 +08001712}
1713
1714static void blk_mq_free_hw_queues(struct request_queue *q,
1715 struct blk_mq_tag_set *set)
1716{
1717 struct blk_mq_hw_ctx *hctx;
1718 unsigned int i;
1719
Ming Leie09aae72015-01-29 20:17:27 +08001720 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001721 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001722}
1723
Ming Lei08e98fc2014-09-25 23:23:38 +08001724static int blk_mq_init_hctx(struct request_queue *q,
1725 struct blk_mq_tag_set *set,
1726 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1727{
1728 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001729 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001730
1731 node = hctx->numa_node;
1732 if (node == NUMA_NO_NODE)
1733 node = hctx->numa_node = set->numa_node;
1734
Jens Axboe27489a32016-08-24 15:54:25 -06001735 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001736 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1737 spin_lock_init(&hctx->lock);
1738 INIT_LIST_HEAD(&hctx->dispatch);
1739 hctx->queue = q;
1740 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001741 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001742
1743 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1744 blk_mq_hctx_notify, hctx);
1745 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1746
1747 hctx->tags = set->tags[hctx_idx];
1748
1749 /*
1750 * Allocate space for all possible cpus to avoid allocation at
1751 * runtime
1752 */
1753 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1754 GFP_KERNEL, node);
1755 if (!hctx->ctxs)
1756 goto unregister_cpu_notifier;
1757
1758 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1759 goto free_ctxs;
1760
1761 hctx->nr_ctx = 0;
1762
1763 if (set->ops->init_hctx &&
1764 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1765 goto free_bitmap;
1766
Ming Leif70ced02014-09-25 23:23:47 +08001767 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1768 if (!hctx->fq)
1769 goto exit_hctx;
1770
1771 if (set->ops->init_request &&
1772 set->ops->init_request(set->driver_data,
1773 hctx->fq->flush_rq, hctx_idx,
1774 flush_start_tag + hctx_idx, node))
1775 goto free_fq;
1776
Ming Lei08e98fc2014-09-25 23:23:38 +08001777 return 0;
1778
Ming Leif70ced02014-09-25 23:23:47 +08001779 free_fq:
1780 kfree(hctx->fq);
1781 exit_hctx:
1782 if (set->ops->exit_hctx)
1783 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001784 free_bitmap:
1785 blk_mq_free_bitmap(&hctx->ctx_map);
1786 free_ctxs:
1787 kfree(hctx->ctxs);
1788 unregister_cpu_notifier:
1789 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1790
1791 return -1;
1792}
1793
Jens Axboe320ae512013-10-24 09:20:05 +01001794static void blk_mq_init_cpu_queues(struct request_queue *q,
1795 unsigned int nr_hw_queues)
1796{
1797 unsigned int i;
1798
1799 for_each_possible_cpu(i) {
1800 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1801 struct blk_mq_hw_ctx *hctx;
1802
1803 memset(__ctx, 0, sizeof(*__ctx));
1804 __ctx->cpu = i;
1805 spin_lock_init(&__ctx->lock);
1806 INIT_LIST_HEAD(&__ctx->rq_list);
1807 __ctx->queue = q;
1808
1809 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001810 if (!cpu_online(i))
1811 continue;
1812
Jens Axboee4043dc2014-04-09 10:18:23 -06001813 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001814
Jens Axboe320ae512013-10-24 09:20:05 +01001815 /*
1816 * Set local node, IFF we have more than one hw queue. If
1817 * not, we remain on the home node of the device
1818 */
1819 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301820 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001821 }
1822}
1823
Akinobu Mita57783222015-09-27 02:09:23 +09001824static void blk_mq_map_swqueue(struct request_queue *q,
1825 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001826{
1827 unsigned int i;
1828 struct blk_mq_hw_ctx *hctx;
1829 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001830 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001831
Akinobu Mita60de0742015-09-27 02:09:25 +09001832 /*
1833 * Avoid others reading imcomplete hctx->cpumask through sysfs
1834 */
1835 mutex_lock(&q->sysfs_lock);
1836
Jens Axboe320ae512013-10-24 09:20:05 +01001837 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001838 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001839 hctx->nr_ctx = 0;
1840 }
1841
1842 /*
1843 * Map software to hardware queues
1844 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001845 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001846 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001847 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001848 continue;
1849
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001850 ctx = per_cpu_ptr(q->queue_ctx, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001851 hctx = q->mq_ops->map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001852
Jens Axboee4043dc2014-04-09 10:18:23 -06001853 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001854 ctx->index_hw = hctx->nr_ctx;
1855 hctx->ctxs[hctx->nr_ctx++] = ctx;
1856 }
Jens Axboe506e9312014-05-07 10:26:44 -06001857
Akinobu Mita60de0742015-09-27 02:09:25 +09001858 mutex_unlock(&q->sysfs_lock);
1859
Jens Axboe506e9312014-05-07 10:26:44 -06001860 queue_for_each_hw_ctx(q, hctx, i) {
Chong Yuan889fa312015-04-15 11:39:29 -06001861 struct blk_mq_ctxmap *map = &hctx->ctx_map;
1862
Jens Axboe484b4062014-05-21 14:01:15 -06001863 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001864 * If no software queues are mapped to this hardware queue,
1865 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001866 */
1867 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001868 if (set->tags[i]) {
1869 blk_mq_free_rq_map(set, set->tags[i], i);
1870 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001871 }
Ming Lei2a34c082015-04-21 10:00:20 +08001872 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001873 continue;
1874 }
1875
Ming Lei2a34c082015-04-21 10:00:20 +08001876 /* unmapped hw queue can be remapped after CPU topo changed */
1877 if (!set->tags[i])
1878 set->tags[i] = blk_mq_init_rq_map(set, i);
1879 hctx->tags = set->tags[i];
1880 WARN_ON(!hctx->tags);
1881
Raghavendra K Te0e827b2015-12-02 16:57:06 +05301882 cpumask_copy(hctx->tags->cpumask, hctx->cpumask);
Jens Axboe484b4062014-05-21 14:01:15 -06001883 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001884 * Set the map size to the number of mapped software queues.
1885 * This is more accurate and more efficient than looping
1886 * over all possibly mapped software queues.
1887 */
Jens Axboe569fd0c2015-04-17 08:28:50 -06001888 map->size = DIV_ROUND_UP(hctx->nr_ctx, map->bits_per_word);
Chong Yuan889fa312015-04-15 11:39:29 -06001889
1890 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001891 * Initialize batch roundrobin counts
1892 */
Jens Axboe506e9312014-05-07 10:26:44 -06001893 hctx->next_cpu = cpumask_first(hctx->cpumask);
1894 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1895 }
Jens Axboe320ae512013-10-24 09:20:05 +01001896}
1897
Jeff Moyer2404e602015-11-03 10:40:06 -05001898static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001899{
1900 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001901 int i;
1902
Jeff Moyer2404e602015-11-03 10:40:06 -05001903 queue_for_each_hw_ctx(q, hctx, i) {
1904 if (shared)
1905 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1906 else
1907 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1908 }
1909}
1910
1911static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1912{
1913 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001914
1915 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1916 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001917 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001918 blk_mq_unfreeze_queue(q);
1919 }
1920}
1921
1922static void blk_mq_del_queue_tag_set(struct request_queue *q)
1923{
1924 struct blk_mq_tag_set *set = q->tag_set;
1925
Jens Axboe0d2602c2014-05-13 15:10:52 -06001926 mutex_lock(&set->tag_list_lock);
1927 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001928 if (list_is_singular(&set->tag_list)) {
1929 /* just transitioned to unshared */
1930 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1931 /* update existing queue */
1932 blk_mq_update_tag_set_depth(set, false);
1933 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001934 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001935}
1936
1937static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1938 struct request_queue *q)
1939{
1940 q->tag_set = set;
1941
1942 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001943
1944 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1945 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1946 set->flags |= BLK_MQ_F_TAG_SHARED;
1947 /* update existing queue */
1948 blk_mq_update_tag_set_depth(set, true);
1949 }
1950 if (set->flags & BLK_MQ_F_TAG_SHARED)
1951 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001952 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001953
Jens Axboe0d2602c2014-05-13 15:10:52 -06001954 mutex_unlock(&set->tag_list_lock);
1955}
1956
Ming Leie09aae72015-01-29 20:17:27 +08001957/*
1958 * It is the actual release handler for mq, but we do it from
1959 * request queue's release handler for avoiding use-after-free
1960 * and headache because q->mq_kobj shouldn't have been introduced,
1961 * but we can't group ctx/kctx kobj without it.
1962 */
1963void blk_mq_release(struct request_queue *q)
1964{
1965 struct blk_mq_hw_ctx *hctx;
1966 unsigned int i;
1967
1968 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001969 queue_for_each_hw_ctx(q, hctx, i) {
1970 if (!hctx)
1971 continue;
1972 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08001973 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08001974 }
Ming Leie09aae72015-01-29 20:17:27 +08001975
Akinobu Mitaa723bab2015-09-27 02:09:21 +09001976 kfree(q->mq_map);
1977 q->mq_map = NULL;
1978
Ming Leie09aae72015-01-29 20:17:27 +08001979 kfree(q->queue_hw_ctx);
1980
1981 /* ctx kobj stays in queue_ctx */
1982 free_percpu(q->queue_ctx);
1983}
1984
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001985struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001986{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001987 struct request_queue *uninit_q, *q;
1988
1989 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1990 if (!uninit_q)
1991 return ERR_PTR(-ENOMEM);
1992
1993 q = blk_mq_init_allocated_queue(set, uninit_q);
1994 if (IS_ERR(q))
1995 blk_cleanup_queue(uninit_q);
1996
1997 return q;
1998}
1999EXPORT_SYMBOL(blk_mq_init_queue);
2000
Keith Busch868f2f02015-12-17 17:08:14 -07002001static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2002 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002003{
Keith Busch868f2f02015-12-17 17:08:14 -07002004 int i, j;
2005 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002006
Keith Busch868f2f02015-12-17 17:08:14 -07002007 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002008 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002009 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002010
Keith Busch868f2f02015-12-17 17:08:14 -07002011 if (hctxs[i])
2012 continue;
2013
2014 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002015 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2016 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002017 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002018 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002019
Jens Axboea86073e2014-10-13 15:41:54 -06002020 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002021 node)) {
2022 kfree(hctxs[i]);
2023 hctxs[i] = NULL;
2024 break;
2025 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002026
Jens Axboe0d2602c2014-05-13 15:10:52 -06002027 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002028 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002029 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002030
2031 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2032 free_cpumask_var(hctxs[i]->cpumask);
2033 kfree(hctxs[i]);
2034 hctxs[i] = NULL;
2035 break;
2036 }
2037 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002038 }
Keith Busch868f2f02015-12-17 17:08:14 -07002039 for (j = i; j < q->nr_hw_queues; j++) {
2040 struct blk_mq_hw_ctx *hctx = hctxs[j];
2041
2042 if (hctx) {
2043 if (hctx->tags) {
2044 blk_mq_free_rq_map(set, hctx->tags, j);
2045 set->tags[j] = NULL;
2046 }
2047 blk_mq_exit_hctx(q, set, hctx, j);
2048 free_cpumask_var(hctx->cpumask);
2049 kobject_put(&hctx->kobj);
2050 kfree(hctx->ctxs);
2051 kfree(hctx);
2052 hctxs[j] = NULL;
2053
2054 }
2055 }
2056 q->nr_hw_queues = i;
2057 blk_mq_sysfs_register(q);
2058}
2059
2060struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2061 struct request_queue *q)
2062{
Ming Lei66841672016-02-12 15:27:00 +08002063 /* mark the queue as mq asap */
2064 q->mq_ops = set->ops;
2065
Keith Busch868f2f02015-12-17 17:08:14 -07002066 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2067 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002068 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002069
2070 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2071 GFP_KERNEL, set->numa_node);
2072 if (!q->queue_hw_ctx)
2073 goto err_percpu;
2074
2075 q->mq_map = blk_mq_make_queue_map(set);
2076 if (!q->mq_map)
2077 goto err_map;
2078
2079 blk_mq_realloc_hw_ctxs(set, q);
2080 if (!q->nr_hw_queues)
2081 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002082
Christoph Hellwig287922e2015-10-30 20:57:30 +08002083 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002084 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002085
2086 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002087
Jens Axboe94eddfb2013-11-19 09:25:07 -07002088 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002089
Jens Axboe05f1dd52014-05-29 09:53:32 -06002090 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2091 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2092
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002093 q->sg_reserved_size = INT_MAX;
2094
Mike Snitzer28494502016-09-14 13:28:30 -04002095 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002096 INIT_LIST_HEAD(&q->requeue_list);
2097 spin_lock_init(&q->requeue_lock);
2098
Jens Axboe07068d52014-05-22 10:40:51 -06002099 if (q->nr_hw_queues > 1)
2100 blk_queue_make_request(q, blk_mq_make_request);
2101 else
2102 blk_queue_make_request(q, blk_sq_make_request);
2103
Jens Axboeeba71762014-05-20 15:17:27 -06002104 /*
2105 * Do this after blk_queue_make_request() overrides it...
2106 */
2107 q->nr_requests = set->queue_depth;
2108
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002109 if (set->ops->complete)
2110 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002111
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002112 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002113
Akinobu Mita57783222015-09-27 02:09:23 +09002114 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002115 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002116
Jens Axboe320ae512013-10-24 09:20:05 +01002117 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002118 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002119 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002120
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002121 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002122 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002123
Jens Axboe320ae512013-10-24 09:20:05 +01002124 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002125
Jens Axboe320ae512013-10-24 09:20:05 +01002126err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002127 kfree(q->mq_map);
Jens Axboef14bbe72014-05-27 12:06:53 -06002128err_map:
Keith Busch868f2f02015-12-17 17:08:14 -07002129 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002130err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002131 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002132err_exit:
2133 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002134 return ERR_PTR(-ENOMEM);
2135}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002136EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002137
2138void blk_mq_free_queue(struct request_queue *q)
2139{
Ming Lei624dbe42014-05-27 23:35:13 +08002140 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002141
Akinobu Mita0e626362015-09-27 02:09:22 +09002142 mutex_lock(&all_q_mutex);
2143 list_del_init(&q->all_q_node);
2144 mutex_unlock(&all_q_mutex);
2145
Jens Axboe0d2602c2014-05-13 15:10:52 -06002146 blk_mq_del_queue_tag_set(q);
2147
Ming Lei624dbe42014-05-27 23:35:13 +08002148 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2149 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002150}
Jens Axboe320ae512013-10-24 09:20:05 +01002151
2152/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002153static void blk_mq_queue_reinit(struct request_queue *q,
2154 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002155{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002156 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002157
Jens Axboe67aec142014-05-30 08:25:36 -06002158 blk_mq_sysfs_unregister(q);
2159
Akinobu Mita57783222015-09-27 02:09:23 +09002160 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002161
2162 /*
2163 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2164 * we should change hctx numa_node according to new topology (this
2165 * involves free and re-allocate memory, worthy doing?)
2166 */
2167
Akinobu Mita57783222015-09-27 02:09:23 +09002168 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002169
Jens Axboe67aec142014-05-30 08:25:36 -06002170 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002171}
2172
Paul Gortmakerf618ef72013-11-14 08:26:02 -07002173static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
2174 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01002175{
2176 struct request_queue *q;
Akinobu Mita57783222015-09-27 02:09:23 +09002177 int cpu = (unsigned long)hcpu;
2178 /*
2179 * New online cpumask which is going to be set in this hotplug event.
2180 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2181 * one-by-one and dynamically allocating this could result in a failure.
2182 */
2183 static struct cpumask online_new;
Jens Axboe320ae512013-10-24 09:20:05 +01002184
2185 /*
Akinobu Mita57783222015-09-27 02:09:23 +09002186 * Before hotadded cpu starts handling requests, new mappings must
2187 * be established. Otherwise, these requests in hw queue might
2188 * never be dispatched.
2189 *
2190 * For example, there is a single hw queue (hctx) and two CPU queues
2191 * (ctx0 for CPU0, and ctx1 for CPU1).
2192 *
2193 * Now CPU1 is just onlined and a request is inserted into
2194 * ctx1->rq_list and set bit0 in pending bitmap as ctx1->index_hw is
2195 * still zero.
2196 *
2197 * And then while running hw queue, flush_busy_ctxs() finds bit0 is
2198 * set in pending bitmap and tries to retrieve requests in
2199 * hctx->ctxs[0]->rq_list. But htx->ctxs[0] is a pointer to ctx0,
2200 * so the request in ctx1->rq_list is ignored.
Jens Axboe320ae512013-10-24 09:20:05 +01002201 */
Akinobu Mita57783222015-09-27 02:09:23 +09002202 switch (action & ~CPU_TASKS_FROZEN) {
2203 case CPU_DEAD:
2204 case CPU_UP_CANCELED:
2205 cpumask_copy(&online_new, cpu_online_mask);
2206 break;
2207 case CPU_UP_PREPARE:
2208 cpumask_copy(&online_new, cpu_online_mask);
2209 cpumask_set_cpu(cpu, &online_new);
2210 break;
2211 default:
Jens Axboe320ae512013-10-24 09:20:05 +01002212 return NOTIFY_OK;
Akinobu Mita57783222015-09-27 02:09:23 +09002213 }
Jens Axboe320ae512013-10-24 09:20:05 +01002214
2215 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002216
2217 /*
2218 * We need to freeze and reinit all existing queues. Freezing
2219 * involves synchronous wait for an RCU grace period and doing it
2220 * one by one may take a long time. Start freezing all queues in
2221 * one swoop and then wait for the completions so that freezing can
2222 * take place in parallel.
2223 */
2224 list_for_each_entry(q, &all_q_list, all_q_node)
2225 blk_mq_freeze_queue_start(q);
Ming Leif054b562015-04-21 10:00:19 +08002226 list_for_each_entry(q, &all_q_list, all_q_node) {
Tejun Heof3af0202014-11-04 13:52:27 -05002227 blk_mq_freeze_queue_wait(q);
2228
Ming Leif054b562015-04-21 10:00:19 +08002229 /*
2230 * timeout handler can't touch hw queue during the
2231 * reinitialization
2232 */
2233 del_timer_sync(&q->timeout);
2234 }
2235
Jens Axboe320ae512013-10-24 09:20:05 +01002236 list_for_each_entry(q, &all_q_list, all_q_node)
Akinobu Mita57783222015-09-27 02:09:23 +09002237 blk_mq_queue_reinit(q, &online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002238
2239 list_for_each_entry(q, &all_q_list, all_q_node)
2240 blk_mq_unfreeze_queue(q);
2241
Jens Axboe320ae512013-10-24 09:20:05 +01002242 mutex_unlock(&all_q_mutex);
2243 return NOTIFY_OK;
2244}
2245
Jens Axboea5164402014-09-10 09:02:03 -06002246static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2247{
2248 int i;
2249
2250 for (i = 0; i < set->nr_hw_queues; i++) {
2251 set->tags[i] = blk_mq_init_rq_map(set, i);
2252 if (!set->tags[i])
2253 goto out_unwind;
2254 }
2255
2256 return 0;
2257
2258out_unwind:
2259 while (--i >= 0)
2260 blk_mq_free_rq_map(set, set->tags[i], i);
2261
Jens Axboea5164402014-09-10 09:02:03 -06002262 return -ENOMEM;
2263}
2264
2265/*
2266 * Allocate the request maps associated with this tag_set. Note that this
2267 * may reduce the depth asked for, if memory is tight. set->queue_depth
2268 * will be updated to reflect the allocated depth.
2269 */
2270static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2271{
2272 unsigned int depth;
2273 int err;
2274
2275 depth = set->queue_depth;
2276 do {
2277 err = __blk_mq_alloc_rq_maps(set);
2278 if (!err)
2279 break;
2280
2281 set->queue_depth >>= 1;
2282 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2283 err = -ENOMEM;
2284 break;
2285 }
2286 } while (set->queue_depth);
2287
2288 if (!set->queue_depth || err) {
2289 pr_err("blk-mq: failed to allocate request map\n");
2290 return -ENOMEM;
2291 }
2292
2293 if (depth != set->queue_depth)
2294 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2295 depth, set->queue_depth);
2296
2297 return 0;
2298}
2299
Keith Buschf26cdc82015-06-01 09:29:53 -06002300struct cpumask *blk_mq_tags_cpumask(struct blk_mq_tags *tags)
2301{
2302 return tags->cpumask;
2303}
2304EXPORT_SYMBOL_GPL(blk_mq_tags_cpumask);
2305
Jens Axboea4391c62014-06-05 15:21:56 -06002306/*
2307 * Alloc a tag set to be associated with one or more request queues.
2308 * May fail with EINVAL for various error conditions. May adjust the
2309 * requested depth down, if if it too large. In that case, the set
2310 * value will be stored in set->queue_depth.
2311 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002312int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2313{
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002314 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2315
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002316 if (!set->nr_hw_queues)
2317 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002318 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002319 return -EINVAL;
2320 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2321 return -EINVAL;
2322
Xiaoguang Wangf9018ac2015-03-30 13:19:14 +08002323 if (!set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002324 return -EINVAL;
2325
Jens Axboea4391c62014-06-05 15:21:56 -06002326 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2327 pr_info("blk-mq: reduced tag depth to %u\n",
2328 BLK_MQ_MAX_DEPTH);
2329 set->queue_depth = BLK_MQ_MAX_DEPTH;
2330 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002331
Shaohua Li6637fad2014-11-30 16:00:58 -08002332 /*
2333 * If a crashdump is active, then we are potentially in a very
2334 * memory constrained environment. Limit us to 1 queue and
2335 * 64 tags to prevent using too much memory.
2336 */
2337 if (is_kdump_kernel()) {
2338 set->nr_hw_queues = 1;
2339 set->queue_depth = min(64U, set->queue_depth);
2340 }
Keith Busch868f2f02015-12-17 17:08:14 -07002341 /*
2342 * There is no use for more h/w queues than cpus.
2343 */
2344 if (set->nr_hw_queues > nr_cpu_ids)
2345 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002346
Keith Busch868f2f02015-12-17 17:08:14 -07002347 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002348 GFP_KERNEL, set->numa_node);
2349 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002350 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002351
Jens Axboea5164402014-09-10 09:02:03 -06002352 if (blk_mq_alloc_rq_maps(set))
2353 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002354
Jens Axboe0d2602c2014-05-13 15:10:52 -06002355 mutex_init(&set->tag_list_lock);
2356 INIT_LIST_HEAD(&set->tag_list);
2357
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002358 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002359enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002360 kfree(set->tags);
2361 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002362 return -ENOMEM;
2363}
2364EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2365
2366void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2367{
2368 int i;
2369
Keith Busch868f2f02015-12-17 17:08:14 -07002370 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002371 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002372 blk_mq_free_rq_map(set, set->tags[i], i);
2373 }
2374
Ming Lei981bd182014-04-24 00:07:34 +08002375 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002376 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002377}
2378EXPORT_SYMBOL(blk_mq_free_tag_set);
2379
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002380int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2381{
2382 struct blk_mq_tag_set *set = q->tag_set;
2383 struct blk_mq_hw_ctx *hctx;
2384 int i, ret;
2385
2386 if (!set || nr > set->queue_depth)
2387 return -EINVAL;
2388
2389 ret = 0;
2390 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002391 if (!hctx->tags)
2392 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002393 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2394 if (ret)
2395 break;
2396 }
2397
2398 if (!ret)
2399 q->nr_requests = nr;
2400
2401 return ret;
2402}
2403
Keith Busch868f2f02015-12-17 17:08:14 -07002404void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2405{
2406 struct request_queue *q;
2407
2408 if (nr_hw_queues > nr_cpu_ids)
2409 nr_hw_queues = nr_cpu_ids;
2410 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2411 return;
2412
2413 list_for_each_entry(q, &set->tag_list, tag_set_list)
2414 blk_mq_freeze_queue(q);
2415
2416 set->nr_hw_queues = nr_hw_queues;
2417 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2418 blk_mq_realloc_hw_ctxs(set, q);
2419
2420 if (q->nr_hw_queues > 1)
2421 blk_queue_make_request(q, blk_mq_make_request);
2422 else
2423 blk_queue_make_request(q, blk_sq_make_request);
2424
2425 blk_mq_queue_reinit(q, cpu_online_mask);
2426 }
2427
2428 list_for_each_entry(q, &set->tag_list, tag_set_list)
2429 blk_mq_unfreeze_queue(q);
2430}
2431EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2432
Jens Axboe676141e2014-03-20 13:29:18 -06002433void blk_mq_disable_hotplug(void)
2434{
2435 mutex_lock(&all_q_mutex);
2436}
2437
2438void blk_mq_enable_hotplug(void)
2439{
2440 mutex_unlock(&all_q_mutex);
2441}
2442
Jens Axboe320ae512013-10-24 09:20:05 +01002443static int __init blk_mq_init(void)
2444{
Jens Axboe320ae512013-10-24 09:20:05 +01002445 blk_mq_cpu_init();
2446
Tejun Heoadd703f2014-07-01 10:34:38 -06002447 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002448
2449 return 0;
2450}
2451subsys_initcall(blk_mq_init);