blob: 0cb93625d8121d77b5a8f171478da39eb09be0b6 [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 Buschc76541a2014-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 Buschc76541a2014-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
Jens Axboe703fd1c2016-09-16 13:59:14 -0600792static inline unsigned int queued_to_index(unsigned int queued)
793{
794 if (!queued)
795 return 0;
796
797 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
798}
799
Jens Axboe1429d7c2014-05-19 09:23:55 -0600800/*
Jens Axboe320ae512013-10-24 09:20:05 +0100801 * Run this hardware queue, pulling any software queues mapped to it in.
802 * Note that this function currently has various problems around ordering
803 * of IO. In particular, we'd like FIFO behaviour on handling existing
804 * items on the hctx->dispatch list. Ignore that for now.
805 */
806static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
807{
808 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100809 struct request *rq;
810 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600811 LIST_HEAD(driver_list);
812 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600813 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100814
Jens Axboe5d12f902014-03-19 15:25:02 -0600815 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100816 return;
817
Jens Axboe0e87e582016-08-24 15:38:01 -0600818 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
819 cpu_online(hctx->next_cpu));
820
Jens Axboe320ae512013-10-24 09:20:05 +0100821 hctx->run++;
822
823 /*
824 * Touch any software queue that has pending entries.
825 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600826 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100827
828 /*
829 * If we have previous entries on our dispatch list, grab them
830 * and stuff them at the front for more fair dispatch.
831 */
832 if (!list_empty_careful(&hctx->dispatch)) {
833 spin_lock(&hctx->lock);
834 if (!list_empty(&hctx->dispatch))
835 list_splice_init(&hctx->dispatch, &rq_list);
836 spin_unlock(&hctx->lock);
837 }
838
839 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600840 * Start off with dptr being NULL, so we start the first request
841 * immediately, even if we have more pending.
842 */
843 dptr = NULL;
844
845 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100846 * Now process all the entries, sending them to the driver.
847 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600848 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100849 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600850 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100851 int ret;
852
853 rq = list_first_entry(&rq_list, struct request, queuelist);
854 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100855
Jens Axboe74c45052014-10-29 11:14:52 -0600856 bd.rq = rq;
857 bd.list = dptr;
858 bd.last = list_empty(&rq_list);
859
860 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100861 switch (ret) {
862 case BLK_MQ_RQ_QUEUE_OK:
863 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700864 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100865 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100866 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200867 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100868 break;
869 default:
870 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100871 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800872 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700873 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100874 break;
875 }
876
877 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
878 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600879
880 /*
881 * We've done the first request. If we have more than 1
882 * left in the list, set dptr to defer issue.
883 */
884 if (!dptr && rq_list.next != rq_list.prev)
885 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100886 }
887
Jens Axboe703fd1c2016-09-16 13:59:14 -0600888 hctx->dispatched[queued_to_index(queued)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100889
890 /*
891 * Any items that need requeuing? Stuff them into hctx->dispatch,
892 * that is where we will continue on next queue run.
893 */
894 if (!list_empty(&rq_list)) {
895 spin_lock(&hctx->lock);
896 list_splice(&rq_list, &hctx->dispatch);
897 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600898 /*
899 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
900 * it's possible the queue is stopped and restarted again
901 * before this. Queue restart will dispatch requests. And since
902 * requests in rq_list aren't added into hctx->dispatch yet,
903 * the requests in rq_list might get lost.
904 *
905 * blk_mq_run_hw_queue() already checks the STOPPED bit
906 **/
907 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100908 }
909}
910
Jens Axboe506e9312014-05-07 10:26:44 -0600911/*
912 * It'd be great if the workqueue API had a way to pass
913 * in a mask and had some smarts for more clever placement.
914 * For now we just round-robin here, switching for every
915 * BLK_MQ_CPU_WORK_BATCH queued items.
916 */
917static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
918{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100919 if (hctx->queue->nr_hw_queues == 1)
920 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600921
922 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100923 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600924
925 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
926 if (next_cpu >= nr_cpu_ids)
927 next_cpu = cpumask_first(hctx->cpumask);
928
929 hctx->next_cpu = next_cpu;
930 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100931
932 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600933 }
934
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100935 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600936}
937
Jens Axboe320ae512013-10-24 09:20:05 +0100938void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
939{
Ming Lei19c66e52014-12-03 19:38:04 +0800940 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state) ||
941 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100942 return;
943
Paolo Bonzini398205b2014-11-07 23:03:59 +0100944 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100945 int cpu = get_cpu();
946 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100947 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100948 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100949 return;
950 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600951
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100952 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600953 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100954
Jens Axboe27489a32016-08-24 15:54:25 -0600955 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100956}
957
Mike Snitzerb94ec292015-03-11 23:56:38 -0400958void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100959{
960 struct blk_mq_hw_ctx *hctx;
961 int i;
962
963 queue_for_each_hw_ctx(q, hctx, i) {
964 if ((!blk_mq_hctx_has_pending(hctx) &&
965 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600966 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100967 continue;
968
Mike Snitzerb94ec292015-03-11 23:56:38 -0400969 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100970 }
971}
Mike Snitzerb94ec292015-03-11 23:56:38 -0400972EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +0100973
974void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
975{
Jens Axboe27489a32016-08-24 15:54:25 -0600976 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600977 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100978 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
979}
980EXPORT_SYMBOL(blk_mq_stop_hw_queue);
981
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100982void blk_mq_stop_hw_queues(struct request_queue *q)
983{
984 struct blk_mq_hw_ctx *hctx;
985 int i;
986
987 queue_for_each_hw_ctx(q, hctx, i)
988 blk_mq_stop_hw_queue(hctx);
989}
990EXPORT_SYMBOL(blk_mq_stop_hw_queues);
991
Jens Axboe320ae512013-10-24 09:20:05 +0100992void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
993{
994 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600995
Jens Axboe0ffbce82014-06-25 08:22:34 -0600996 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100997}
998EXPORT_SYMBOL(blk_mq_start_hw_queue);
999
Christoph Hellwig2f268552014-04-16 09:44:56 +02001000void blk_mq_start_hw_queues(struct request_queue *q)
1001{
1002 struct blk_mq_hw_ctx *hctx;
1003 int i;
1004
1005 queue_for_each_hw_ctx(q, hctx, i)
1006 blk_mq_start_hw_queue(hctx);
1007}
1008EXPORT_SYMBOL(blk_mq_start_hw_queues);
1009
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001010void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001011{
1012 struct blk_mq_hw_ctx *hctx;
1013 int i;
1014
1015 queue_for_each_hw_ctx(q, hctx, i) {
1016 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
1017 continue;
1018
1019 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001020 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001021 }
1022}
1023EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1024
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001025static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001026{
1027 struct blk_mq_hw_ctx *hctx;
1028
Jens Axboe27489a32016-08-24 15:54:25 -06001029 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001030
Jens Axboe320ae512013-10-24 09:20:05 +01001031 __blk_mq_run_hw_queue(hctx);
1032}
1033
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001034static void blk_mq_delay_work_fn(struct work_struct *work)
1035{
1036 struct blk_mq_hw_ctx *hctx;
1037
1038 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1039
1040 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1041 __blk_mq_run_hw_queue(hctx);
1042}
1043
1044void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1045{
Ming Lei19c66e52014-12-03 19:38:04 +08001046 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1047 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001048
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001049 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1050 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001051}
1052EXPORT_SYMBOL(blk_mq_delay_queue);
1053
Ming Leicfd0c552015-10-20 23:13:57 +08001054static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001055 struct request *rq,
1056 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001057{
Jens Axboee57690f2016-08-24 15:34:35 -06001058 struct blk_mq_ctx *ctx = rq->mq_ctx;
1059
Jens Axboe01b983c2013-11-19 18:59:10 -07001060 trace_block_rq_insert(hctx->queue, rq);
1061
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001062 if (at_head)
1063 list_add(&rq->queuelist, &ctx->rq_list);
1064 else
1065 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001066}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001067
Ming Leicfd0c552015-10-20 23:13:57 +08001068static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1069 struct request *rq, bool at_head)
1070{
1071 struct blk_mq_ctx *ctx = rq->mq_ctx;
1072
Jens Axboee57690f2016-08-24 15:34:35 -06001073 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001074 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001075}
1076
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001077void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001078 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001079{
Jens Axboee57690f2016-08-24 15:34:35 -06001080 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001081 struct request_queue *q = rq->q;
1082 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001083
Jens Axboe320ae512013-10-24 09:20:05 +01001084 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1085
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001086 spin_lock(&ctx->lock);
1087 __blk_mq_insert_request(hctx, rq, at_head);
1088 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001089
Jens Axboe320ae512013-10-24 09:20:05 +01001090 if (run_queue)
1091 blk_mq_run_hw_queue(hctx, async);
1092}
1093
1094static void blk_mq_insert_requests(struct request_queue *q,
1095 struct blk_mq_ctx *ctx,
1096 struct list_head *list,
1097 int depth,
1098 bool from_schedule)
1099
1100{
1101 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001102
1103 trace_block_unplug(q, depth, !from_schedule);
1104
Jens Axboe320ae512013-10-24 09:20:05 +01001105 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1106
1107 /*
1108 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1109 * offline now
1110 */
1111 spin_lock(&ctx->lock);
1112 while (!list_empty(list)) {
1113 struct request *rq;
1114
1115 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001116 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001117 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001118 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001119 }
Ming Leicfd0c552015-10-20 23:13:57 +08001120 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001121 spin_unlock(&ctx->lock);
1122
Jens Axboe320ae512013-10-24 09:20:05 +01001123 blk_mq_run_hw_queue(hctx, from_schedule);
1124}
1125
1126static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1127{
1128 struct request *rqa = container_of(a, struct request, queuelist);
1129 struct request *rqb = container_of(b, struct request, queuelist);
1130
1131 return !(rqa->mq_ctx < rqb->mq_ctx ||
1132 (rqa->mq_ctx == rqb->mq_ctx &&
1133 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1134}
1135
1136void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1137{
1138 struct blk_mq_ctx *this_ctx;
1139 struct request_queue *this_q;
1140 struct request *rq;
1141 LIST_HEAD(list);
1142 LIST_HEAD(ctx_list);
1143 unsigned int depth;
1144
1145 list_splice_init(&plug->mq_list, &list);
1146
1147 list_sort(NULL, &list, plug_ctx_cmp);
1148
1149 this_q = NULL;
1150 this_ctx = NULL;
1151 depth = 0;
1152
1153 while (!list_empty(&list)) {
1154 rq = list_entry_rq(list.next);
1155 list_del_init(&rq->queuelist);
1156 BUG_ON(!rq->q);
1157 if (rq->mq_ctx != this_ctx) {
1158 if (this_ctx) {
1159 blk_mq_insert_requests(this_q, this_ctx,
1160 &ctx_list, depth,
1161 from_schedule);
1162 }
1163
1164 this_ctx = rq->mq_ctx;
1165 this_q = rq->q;
1166 depth = 0;
1167 }
1168
1169 depth++;
1170 list_add_tail(&rq->queuelist, &ctx_list);
1171 }
1172
1173 /*
1174 * If 'this_ctx' is set, we know we have entries to complete
1175 * on 'ctx_list'. Do those.
1176 */
1177 if (this_ctx) {
1178 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1179 from_schedule);
1180 }
1181}
1182
1183static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1184{
1185 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001186
Michael Callahana21f2a32016-05-03 11:12:49 -04001187 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001188}
1189
Jens Axboe274a5842014-08-15 12:44:08 -06001190static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1191{
1192 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1193 !blk_queue_nomerges(hctx->queue);
1194}
1195
Jens Axboe07068d52014-05-22 10:40:51 -06001196static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1197 struct blk_mq_ctx *ctx,
1198 struct request *rq, struct bio *bio)
1199{
Ming Leie18378a2015-10-20 23:13:54 +08001200 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001201 blk_mq_bio_to_request(rq, bio);
1202 spin_lock(&ctx->lock);
1203insert_rq:
1204 __blk_mq_insert_request(hctx, rq, false);
1205 spin_unlock(&ctx->lock);
1206 return false;
1207 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001208 struct request_queue *q = hctx->queue;
1209
Jens Axboe07068d52014-05-22 10:40:51 -06001210 spin_lock(&ctx->lock);
1211 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1212 blk_mq_bio_to_request(rq, bio);
1213 goto insert_rq;
1214 }
1215
1216 spin_unlock(&ctx->lock);
1217 __blk_mq_free_request(hctx, ctx, rq);
1218 return true;
1219 }
1220}
1221
1222struct blk_map_ctx {
1223 struct blk_mq_hw_ctx *hctx;
1224 struct blk_mq_ctx *ctx;
1225};
1226
1227static struct request *blk_mq_map_request(struct request_queue *q,
1228 struct bio *bio,
1229 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001230{
1231 struct blk_mq_hw_ctx *hctx;
1232 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001233 struct request *rq;
Mike Christiecc6e3b12016-06-05 14:32:12 -05001234 int op = bio_data_dir(bio);
1235 int op_flags = 0;
Ming Leicb96a422014-06-01 00:43:37 +08001236 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001237
Dan Williams3ef28e82015-10-21 13:20:12 -04001238 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001239 ctx = blk_mq_get_ctx(q);
1240 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1241
Jens Axboe1eff9d32016-08-05 15:35:16 -06001242 if (rw_is_sync(bio_op(bio), bio->bi_opf))
Mike Christiecc6e3b12016-06-05 14:32:12 -05001243 op_flags |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001244
Mike Christiecc6e3b12016-06-05 14:32:12 -05001245 trace_block_getrq(q, bio, op);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001246 blk_mq_set_alloc_data(&alloc_data, q, BLK_MQ_REQ_NOWAIT, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001247 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001248 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001249 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001250 blk_mq_put_ctx(ctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001251 trace_block_sleeprq(q, bio, op);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001252
1253 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001254 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001255 blk_mq_set_alloc_data(&alloc_data, q, 0, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001256 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Ming Leicb96a422014-06-01 00:43:37 +08001257 ctx = alloc_data.ctx;
1258 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001259 }
1260
1261 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001262 data->hctx = hctx;
1263 data->ctx = ctx;
1264 return rq;
1265}
1266
Jens Axboe7b371632015-11-05 10:41:40 -07001267static int blk_mq_direct_issue_request(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001268{
1269 int ret;
1270 struct request_queue *q = rq->q;
1271 struct blk_mq_hw_ctx *hctx = q->mq_ops->map_queue(q,
1272 rq->mq_ctx->cpu);
1273 struct blk_mq_queue_data bd = {
1274 .rq = rq,
1275 .list = NULL,
1276 .last = 1
1277 };
Jens Axboe7b371632015-11-05 10:41:40 -07001278 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001279
1280 /*
1281 * For OK queue, we are done. For error, kill it. Any other
1282 * error (busy), just add it to our list as we previously
1283 * would have done
1284 */
1285 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001286 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1287 *cookie = new_cookie;
Shaohua Lif984df12015-05-08 10:51:32 -07001288 return 0;
Shaohua Lif984df12015-05-08 10:51:32 -07001289 }
Jens Axboe7b371632015-11-05 10:41:40 -07001290
1291 __blk_mq_requeue_request(rq);
1292
1293 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1294 *cookie = BLK_QC_T_NONE;
1295 rq->errors = -EIO;
1296 blk_mq_end_request(rq, rq->errors);
1297 return 0;
1298 }
1299
1300 return -1;
Shaohua Lif984df12015-05-08 10:51:32 -07001301}
1302
Jens Axboe07068d52014-05-22 10:40:51 -06001303/*
1304 * Multiple hardware queue variant. This will not use per-process plugs,
1305 * but will attempt to bypass the hctx queueing if we can go straight to
1306 * hardware for SYNC IO.
1307 */
Jens Axboedece1632015-11-05 10:41:16 -07001308static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001309{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001310 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1311 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe07068d52014-05-22 10:40:51 -06001312 struct blk_map_ctx data;
1313 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001314 unsigned int request_count = 0;
1315 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001316 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001317 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001318
1319 blk_queue_bounce(q, &bio);
1320
1321 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001322 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001323 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001324 }
1325
Kent Overstreet54efd502015-04-23 22:37:18 -07001326 blk_queue_split(q, &bio, q->bio_split);
1327
Omar Sandoval87c279e2016-06-01 22:18:48 -07001328 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1329 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1330 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001331
Jens Axboe07068d52014-05-22 10:40:51 -06001332 rq = blk_mq_map_request(q, bio, &data);
1333 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001334 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001335
Jens Axboe7b371632015-11-05 10:41:40 -07001336 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001337
1338 if (unlikely(is_flush_fua)) {
1339 blk_mq_bio_to_request(rq, bio);
1340 blk_insert_flush(rq);
1341 goto run_queue;
1342 }
1343
Shaohua Lif984df12015-05-08 10:51:32 -07001344 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001345 /*
1346 * If the driver supports defer issued based on 'last', then
1347 * queue it up like normal since we can potentially save some
1348 * CPU this way.
1349 */
Shaohua Lif984df12015-05-08 10:51:32 -07001350 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1351 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1352 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001353
1354 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001355
1356 /*
Jens Axboeb094f892015-11-20 20:29:45 -07001357 * We do limited pluging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001358 * Otherwise the existing request in the plug list will be
1359 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001360 */
Shaohua Lif984df12015-05-08 10:51:32 -07001361 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001362 /*
1363 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001364 * happens, same_queue_rq is invalid and plug list is
1365 * empty
1366 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001367 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1368 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001369 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001370 }
Shaohua Lif984df12015-05-08 10:51:32 -07001371 list_add_tail(&rq->queuelist, &plug->mq_list);
1372 } else /* is_sync */
1373 old_rq = rq;
1374 blk_mq_put_ctx(data.ctx);
1375 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001376 goto done;
1377 if (!blk_mq_direct_issue_request(old_rq, &cookie))
1378 goto done;
Shaohua Lif984df12015-05-08 10:51:32 -07001379 blk_mq_insert_request(old_rq, false, true, true);
Jens Axboe7b371632015-11-05 10:41:40 -07001380 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001381 }
1382
1383 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1384 /*
1385 * For a SYNC request, send it to the hardware immediately. For
1386 * an ASYNC request, just ensure that we run it later on. The
1387 * latter allows for merging opportunities and more efficient
1388 * dispatching.
1389 */
1390run_queue:
1391 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1392 }
Jens Axboe07068d52014-05-22 10:40:51 -06001393 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001394done:
1395 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001396}
1397
1398/*
1399 * Single hardware queue variant. This will attempt to use any per-process
1400 * plug for merging and IO deferral.
1401 */
Jens Axboedece1632015-11-05 10:41:16 -07001402static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001403{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001404 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1405 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001406 struct blk_plug *plug;
1407 unsigned int request_count = 0;
Jens Axboe07068d52014-05-22 10:40:51 -06001408 struct blk_map_ctx data;
1409 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001410 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001411
Jens Axboe07068d52014-05-22 10:40:51 -06001412 blk_queue_bounce(q, &bio);
1413
1414 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001415 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001416 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001417 }
1418
Kent Overstreet54efd502015-04-23 22:37:18 -07001419 blk_queue_split(q, &bio, q->bio_split);
1420
Omar Sandoval87c279e2016-06-01 22:18:48 -07001421 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1422 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1423 return BLK_QC_T_NONE;
1424 } else
1425 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001426
1427 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001428 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001429 return BLK_QC_T_NONE;
Jens Axboe320ae512013-10-24 09:20:05 +01001430
Jens Axboe7b371632015-11-05 10:41:40 -07001431 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001432
1433 if (unlikely(is_flush_fua)) {
1434 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001435 blk_insert_flush(rq);
1436 goto run_queue;
1437 }
1438
1439 /*
1440 * A task plug currently exists. Since this is completely lockless,
1441 * utilize that to temporarily store requests until the task is
1442 * either done or scheduled away.
1443 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001444 plug = current->plug;
1445 if (plug) {
1446 blk_mq_bio_to_request(rq, bio);
Ming Lei676d0602015-10-20 23:13:56 +08001447 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001448 trace_block_plug(q);
Jens Axboeb094f892015-11-20 20:29:45 -07001449
1450 blk_mq_put_ctx(data.ctx);
1451
1452 if (request_count >= BLK_MAX_REQUEST_COUNT) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001453 blk_flush_plug_list(plug, false);
1454 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001455 }
Jens Axboeb094f892015-11-20 20:29:45 -07001456
Jeff Moyere6c44382015-05-08 10:51:30 -07001457 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001458 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001459 }
1460
Jens Axboe07068d52014-05-22 10:40:51 -06001461 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1462 /*
1463 * For a SYNC request, send it to the hardware immediately. For
1464 * an ASYNC request, just ensure that we run it later on. The
1465 * latter allows for merging opportunities and more efficient
1466 * dispatching.
1467 */
1468run_queue:
1469 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001470 }
1471
Jens Axboe07068d52014-05-22 10:40:51 -06001472 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001473 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001474}
1475
1476/*
1477 * Default mapping to a software queue, since we use one per CPU.
1478 */
1479struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1480{
1481 return q->queue_hw_ctx[q->mq_map[cpu]];
1482}
1483EXPORT_SYMBOL(blk_mq_map_queue);
1484
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001485static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1486 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001487{
1488 struct page *page;
1489
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001490 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001491 int i;
1492
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001493 for (i = 0; i < tags->nr_tags; i++) {
1494 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001495 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001496 set->ops->exit_request(set->driver_data, tags->rqs[i],
1497 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001498 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001499 }
1500 }
1501
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001502 while (!list_empty(&tags->page_list)) {
1503 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001504 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001505 /*
1506 * Remove kmemleak object previously allocated in
1507 * blk_mq_init_rq_map().
1508 */
1509 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001510 __free_pages(page, page->private);
1511 }
1512
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001513 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001514
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001515 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001516}
1517
1518static size_t order_to_size(unsigned int order)
1519{
Ming Lei4ca08502014-04-19 18:00:18 +08001520 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001521}
1522
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001523static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1524 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001525{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001526 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001527 unsigned int i, j, entries_per_page, max_order = 4;
1528 size_t rq_size, left;
1529
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001530 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001531 set->numa_node,
1532 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001533 if (!tags)
1534 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001535
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001536 INIT_LIST_HEAD(&tags->page_list);
1537
Jens Axboea5164402014-09-10 09:02:03 -06001538 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1539 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1540 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001541 if (!tags->rqs) {
1542 blk_mq_free_tags(tags);
1543 return NULL;
1544 }
Jens Axboe320ae512013-10-24 09:20:05 +01001545
1546 /*
1547 * rq_size is the size of the request plus driver payload, rounded
1548 * to the cacheline size
1549 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001550 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001551 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001552 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001553
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001554 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001555 int this_order = max_order;
1556 struct page *page;
1557 int to_do;
1558 void *p;
1559
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001560 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001561 this_order--;
1562
1563 do {
Jens Axboea5164402014-09-10 09:02:03 -06001564 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001565 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001566 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001567 if (page)
1568 break;
1569 if (!this_order--)
1570 break;
1571 if (order_to_size(this_order) < rq_size)
1572 break;
1573 } while (1);
1574
1575 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001576 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001577
1578 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001579 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001580
1581 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001582 /*
1583 * Allow kmemleak to scan these pages as they contain pointers
1584 * to additional allocations like via ops->init_request().
1585 */
1586 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001587 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001588 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001589 left -= to_do * rq_size;
1590 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001591 tags->rqs[i] = p;
1592 if (set->ops->init_request) {
1593 if (set->ops->init_request(set->driver_data,
1594 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001595 set->numa_node)) {
1596 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001597 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001598 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001599 }
1600
Jens Axboe320ae512013-10-24 09:20:05 +01001601 p += rq_size;
1602 i++;
1603 }
1604 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001605 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001606
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001607fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001608 blk_mq_free_rq_map(set, tags, hctx_idx);
1609 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001610}
1611
Jens Axboe1429d7c2014-05-19 09:23:55 -06001612static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1613{
1614 kfree(bitmap->map);
1615}
1616
1617static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1618{
1619 unsigned int bpw = 8, total, num_maps, i;
1620
1621 bitmap->bits_per_word = bpw;
1622
1623 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1624 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1625 GFP_KERNEL, node);
1626 if (!bitmap->map)
1627 return -ENOMEM;
1628
Jens Axboe1429d7c2014-05-19 09:23:55 -06001629 total = nr_cpu_ids;
1630 for (i = 0; i < num_maps; i++) {
1631 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1632 total -= bitmap->map[i].depth;
1633 }
1634
1635 return 0;
1636}
1637
Jens Axboee57690f2016-08-24 15:34:35 -06001638/*
1639 * 'cpu' is going away. splice any existing rq_list entries from this
1640 * software queue to the hw queue dispatch list, and ensure that it
1641 * gets run.
1642 */
Jens Axboe484b4062014-05-21 14:01:15 -06001643static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1644{
Jens Axboe484b4062014-05-21 14:01:15 -06001645 struct blk_mq_ctx *ctx;
1646 LIST_HEAD(tmp);
1647
Jens Axboee57690f2016-08-24 15:34:35 -06001648 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001649
1650 spin_lock(&ctx->lock);
1651 if (!list_empty(&ctx->rq_list)) {
1652 list_splice_init(&ctx->rq_list, &tmp);
1653 blk_mq_hctx_clear_pending(hctx, ctx);
1654 }
1655 spin_unlock(&ctx->lock);
1656
1657 if (list_empty(&tmp))
1658 return NOTIFY_OK;
1659
Jens Axboee57690f2016-08-24 15:34:35 -06001660 spin_lock(&hctx->lock);
1661 list_splice_tail_init(&tmp, &hctx->dispatch);
1662 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001663
1664 blk_mq_run_hw_queue(hctx, true);
Jens Axboe484b4062014-05-21 14:01:15 -06001665 return NOTIFY_OK;
1666}
1667
Jens Axboe484b4062014-05-21 14:01:15 -06001668static int blk_mq_hctx_notify(void *data, unsigned long action,
1669 unsigned int cpu)
1670{
1671 struct blk_mq_hw_ctx *hctx = data;
1672
1673 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1674 return blk_mq_hctx_cpu_offline(hctx, cpu);
Ming Lei2a34c082015-04-21 10:00:20 +08001675
1676 /*
1677 * In case of CPU online, tags may be reallocated
1678 * in blk_mq_map_swqueue() after mapping is updated.
1679 */
Jens Axboe484b4062014-05-21 14:01:15 -06001680
1681 return NOTIFY_OK;
1682}
1683
Ming Leic3b4afc2015-06-04 22:25:04 +08001684/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001685static void blk_mq_exit_hctx(struct request_queue *q,
1686 struct blk_mq_tag_set *set,
1687 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1688{
Ming Leif70ced02014-09-25 23:23:47 +08001689 unsigned flush_start_tag = set->queue_depth;
1690
Ming Lei08e98fc2014-09-25 23:23:38 +08001691 blk_mq_tag_idle(hctx);
1692
Ming Leif70ced02014-09-25 23:23:47 +08001693 if (set->ops->exit_request)
1694 set->ops->exit_request(set->driver_data,
1695 hctx->fq->flush_rq, hctx_idx,
1696 flush_start_tag + hctx_idx);
1697
Ming Lei08e98fc2014-09-25 23:23:38 +08001698 if (set->ops->exit_hctx)
1699 set->ops->exit_hctx(hctx, hctx_idx);
1700
1701 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001702 blk_free_flush_queue(hctx->fq);
Ming Lei08e98fc2014-09-25 23:23:38 +08001703 blk_mq_free_bitmap(&hctx->ctx_map);
1704}
1705
Ming Lei624dbe42014-05-27 23:35:13 +08001706static void blk_mq_exit_hw_queues(struct request_queue *q,
1707 struct blk_mq_tag_set *set, int nr_queue)
1708{
1709 struct blk_mq_hw_ctx *hctx;
1710 unsigned int i;
1711
1712 queue_for_each_hw_ctx(q, hctx, i) {
1713 if (i == nr_queue)
1714 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001715 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001716 }
Ming Lei624dbe42014-05-27 23:35:13 +08001717}
1718
1719static void blk_mq_free_hw_queues(struct request_queue *q,
1720 struct blk_mq_tag_set *set)
1721{
1722 struct blk_mq_hw_ctx *hctx;
1723 unsigned int i;
1724
Ming Leie09aae7e2015-01-29 20:17:27 +08001725 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001726 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001727}
1728
Ming Lei08e98fc2014-09-25 23:23:38 +08001729static int blk_mq_init_hctx(struct request_queue *q,
1730 struct blk_mq_tag_set *set,
1731 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1732{
1733 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001734 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001735
1736 node = hctx->numa_node;
1737 if (node == NUMA_NO_NODE)
1738 node = hctx->numa_node = set->numa_node;
1739
Jens Axboe27489a32016-08-24 15:54:25 -06001740 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001741 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1742 spin_lock_init(&hctx->lock);
1743 INIT_LIST_HEAD(&hctx->dispatch);
1744 hctx->queue = q;
1745 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001746 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001747
1748 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1749 blk_mq_hctx_notify, hctx);
1750 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1751
1752 hctx->tags = set->tags[hctx_idx];
1753
1754 /*
1755 * Allocate space for all possible cpus to avoid allocation at
1756 * runtime
1757 */
1758 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1759 GFP_KERNEL, node);
1760 if (!hctx->ctxs)
1761 goto unregister_cpu_notifier;
1762
1763 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1764 goto free_ctxs;
1765
1766 hctx->nr_ctx = 0;
1767
1768 if (set->ops->init_hctx &&
1769 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1770 goto free_bitmap;
1771
Ming Leif70ced02014-09-25 23:23:47 +08001772 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1773 if (!hctx->fq)
1774 goto exit_hctx;
1775
1776 if (set->ops->init_request &&
1777 set->ops->init_request(set->driver_data,
1778 hctx->fq->flush_rq, hctx_idx,
1779 flush_start_tag + hctx_idx, node))
1780 goto free_fq;
1781
Ming Lei08e98fc2014-09-25 23:23:38 +08001782 return 0;
1783
Ming Leif70ced02014-09-25 23:23:47 +08001784 free_fq:
1785 kfree(hctx->fq);
1786 exit_hctx:
1787 if (set->ops->exit_hctx)
1788 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001789 free_bitmap:
1790 blk_mq_free_bitmap(&hctx->ctx_map);
1791 free_ctxs:
1792 kfree(hctx->ctxs);
1793 unregister_cpu_notifier:
1794 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1795
1796 return -1;
1797}
1798
Jens Axboe320ae512013-10-24 09:20:05 +01001799static void blk_mq_init_cpu_queues(struct request_queue *q,
1800 unsigned int nr_hw_queues)
1801{
1802 unsigned int i;
1803
1804 for_each_possible_cpu(i) {
1805 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1806 struct blk_mq_hw_ctx *hctx;
1807
1808 memset(__ctx, 0, sizeof(*__ctx));
1809 __ctx->cpu = i;
1810 spin_lock_init(&__ctx->lock);
1811 INIT_LIST_HEAD(&__ctx->rq_list);
1812 __ctx->queue = q;
1813
1814 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001815 if (!cpu_online(i))
1816 continue;
1817
Jens Axboee4043dc2014-04-09 10:18:23 -06001818 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001819
Jens Axboe320ae512013-10-24 09:20:05 +01001820 /*
1821 * Set local node, IFF we have more than one hw queue. If
1822 * not, we remain on the home node of the device
1823 */
1824 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301825 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001826 }
1827}
1828
Akinobu Mita57783222015-09-27 02:09:23 +09001829static void blk_mq_map_swqueue(struct request_queue *q,
1830 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001831{
1832 unsigned int i;
1833 struct blk_mq_hw_ctx *hctx;
1834 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001835 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001836
Akinobu Mita60de0742015-09-27 02:09:25 +09001837 /*
1838 * Avoid others reading imcomplete hctx->cpumask through sysfs
1839 */
1840 mutex_lock(&q->sysfs_lock);
1841
Jens Axboe320ae512013-10-24 09:20:05 +01001842 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001843 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001844 hctx->nr_ctx = 0;
1845 }
1846
1847 /*
1848 * Map software to hardware queues
1849 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001850 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001851 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001852 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001853 continue;
1854
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001855 ctx = per_cpu_ptr(q->queue_ctx, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001856 hctx = q->mq_ops->map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001857
Jens Axboee4043dc2014-04-09 10:18:23 -06001858 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001859 ctx->index_hw = hctx->nr_ctx;
1860 hctx->ctxs[hctx->nr_ctx++] = ctx;
1861 }
Jens Axboe506e9312014-05-07 10:26:44 -06001862
Akinobu Mita60de0742015-09-27 02:09:25 +09001863 mutex_unlock(&q->sysfs_lock);
1864
Jens Axboe506e9312014-05-07 10:26:44 -06001865 queue_for_each_hw_ctx(q, hctx, i) {
Chong Yuan889fa312015-04-15 11:39:29 -06001866 struct blk_mq_ctxmap *map = &hctx->ctx_map;
1867
Jens Axboe484b4062014-05-21 14:01:15 -06001868 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001869 * If no software queues are mapped to this hardware queue,
1870 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001871 */
1872 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001873 if (set->tags[i]) {
1874 blk_mq_free_rq_map(set, set->tags[i], i);
1875 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001876 }
Ming Lei2a34c082015-04-21 10:00:20 +08001877 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001878 continue;
1879 }
1880
Ming Lei2a34c082015-04-21 10:00:20 +08001881 /* unmapped hw queue can be remapped after CPU topo changed */
1882 if (!set->tags[i])
1883 set->tags[i] = blk_mq_init_rq_map(set, i);
1884 hctx->tags = set->tags[i];
1885 WARN_ON(!hctx->tags);
1886
Raghavendra K Te0e827b2015-12-02 16:57:06 +05301887 cpumask_copy(hctx->tags->cpumask, hctx->cpumask);
Jens Axboe484b4062014-05-21 14:01:15 -06001888 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001889 * Set the map size to the number of mapped software queues.
1890 * This is more accurate and more efficient than looping
1891 * over all possibly mapped software queues.
1892 */
Jens Axboe569fd0c2015-04-17 08:28:50 -06001893 map->size = DIV_ROUND_UP(hctx->nr_ctx, map->bits_per_word);
Chong Yuan889fa312015-04-15 11:39:29 -06001894
1895 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001896 * Initialize batch roundrobin counts
1897 */
Jens Axboe506e9312014-05-07 10:26:44 -06001898 hctx->next_cpu = cpumask_first(hctx->cpumask);
1899 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1900 }
Jens Axboe320ae512013-10-24 09:20:05 +01001901}
1902
Jeff Moyer2404e602015-11-03 10:40:06 -05001903static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001904{
1905 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001906 int i;
1907
Jeff Moyer2404e602015-11-03 10:40:06 -05001908 queue_for_each_hw_ctx(q, hctx, i) {
1909 if (shared)
1910 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1911 else
1912 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1913 }
1914}
1915
1916static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1917{
1918 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001919
1920 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1921 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001922 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001923 blk_mq_unfreeze_queue(q);
1924 }
1925}
1926
1927static void blk_mq_del_queue_tag_set(struct request_queue *q)
1928{
1929 struct blk_mq_tag_set *set = q->tag_set;
1930
Jens Axboe0d2602c2014-05-13 15:10:52 -06001931 mutex_lock(&set->tag_list_lock);
1932 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001933 if (list_is_singular(&set->tag_list)) {
1934 /* just transitioned to unshared */
1935 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1936 /* update existing queue */
1937 blk_mq_update_tag_set_depth(set, false);
1938 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001939 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001940}
1941
1942static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1943 struct request_queue *q)
1944{
1945 q->tag_set = set;
1946
1947 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001948
1949 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1950 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1951 set->flags |= BLK_MQ_F_TAG_SHARED;
1952 /* update existing queue */
1953 blk_mq_update_tag_set_depth(set, true);
1954 }
1955 if (set->flags & BLK_MQ_F_TAG_SHARED)
1956 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001957 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001958
Jens Axboe0d2602c2014-05-13 15:10:52 -06001959 mutex_unlock(&set->tag_list_lock);
1960}
1961
Ming Leie09aae7e2015-01-29 20:17:27 +08001962/*
1963 * It is the actual release handler for mq, but we do it from
1964 * request queue's release handler for avoiding use-after-free
1965 * and headache because q->mq_kobj shouldn't have been introduced,
1966 * but we can't group ctx/kctx kobj without it.
1967 */
1968void blk_mq_release(struct request_queue *q)
1969{
1970 struct blk_mq_hw_ctx *hctx;
1971 unsigned int i;
1972
1973 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001974 queue_for_each_hw_ctx(q, hctx, i) {
1975 if (!hctx)
1976 continue;
1977 kfree(hctx->ctxs);
Ming Leie09aae7e2015-01-29 20:17:27 +08001978 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08001979 }
Ming Leie09aae7e2015-01-29 20:17:27 +08001980
Akinobu Mitaa723bab2015-09-27 02:09:21 +09001981 kfree(q->mq_map);
1982 q->mq_map = NULL;
1983
Ming Leie09aae7e2015-01-29 20:17:27 +08001984 kfree(q->queue_hw_ctx);
1985
1986 /* ctx kobj stays in queue_ctx */
1987 free_percpu(q->queue_ctx);
1988}
1989
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001990struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001991{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001992 struct request_queue *uninit_q, *q;
1993
1994 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1995 if (!uninit_q)
1996 return ERR_PTR(-ENOMEM);
1997
1998 q = blk_mq_init_allocated_queue(set, uninit_q);
1999 if (IS_ERR(q))
2000 blk_cleanup_queue(uninit_q);
2001
2002 return q;
2003}
2004EXPORT_SYMBOL(blk_mq_init_queue);
2005
Keith Busch868f2f02015-12-17 17:08:14 -07002006static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2007 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002008{
Keith Busch868f2f02015-12-17 17:08:14 -07002009 int i, j;
2010 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002011
Keith Busch868f2f02015-12-17 17:08:14 -07002012 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002013 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002014 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002015
Keith Busch868f2f02015-12-17 17:08:14 -07002016 if (hctxs[i])
2017 continue;
2018
2019 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002020 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2021 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002022 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002023 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002024
Jens Axboea86073e2014-10-13 15:41:54 -06002025 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002026 node)) {
2027 kfree(hctxs[i]);
2028 hctxs[i] = NULL;
2029 break;
2030 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002031
Jens Axboe0d2602c2014-05-13 15:10:52 -06002032 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002033 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002034 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002035
2036 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2037 free_cpumask_var(hctxs[i]->cpumask);
2038 kfree(hctxs[i]);
2039 hctxs[i] = NULL;
2040 break;
2041 }
2042 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002043 }
Keith Busch868f2f02015-12-17 17:08:14 -07002044 for (j = i; j < q->nr_hw_queues; j++) {
2045 struct blk_mq_hw_ctx *hctx = hctxs[j];
2046
2047 if (hctx) {
2048 if (hctx->tags) {
2049 blk_mq_free_rq_map(set, hctx->tags, j);
2050 set->tags[j] = NULL;
2051 }
2052 blk_mq_exit_hctx(q, set, hctx, j);
2053 free_cpumask_var(hctx->cpumask);
2054 kobject_put(&hctx->kobj);
2055 kfree(hctx->ctxs);
2056 kfree(hctx);
2057 hctxs[j] = NULL;
2058
2059 }
2060 }
2061 q->nr_hw_queues = i;
2062 blk_mq_sysfs_register(q);
2063}
2064
2065struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2066 struct request_queue *q)
2067{
Ming Lei66841672016-02-12 15:27:00 +08002068 /* mark the queue as mq asap */
2069 q->mq_ops = set->ops;
2070
Keith Busch868f2f02015-12-17 17:08:14 -07002071 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2072 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002073 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002074
2075 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2076 GFP_KERNEL, set->numa_node);
2077 if (!q->queue_hw_ctx)
2078 goto err_percpu;
2079
2080 q->mq_map = blk_mq_make_queue_map(set);
2081 if (!q->mq_map)
2082 goto err_map;
2083
2084 blk_mq_realloc_hw_ctxs(set, q);
2085 if (!q->nr_hw_queues)
2086 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002087
Christoph Hellwig287922e2015-10-30 20:57:30 +08002088 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002089 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002090
2091 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002092
Jens Axboe94eddfb2013-11-19 09:25:07 -07002093 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002094
Jens Axboe05f1dd52014-05-29 09:53:32 -06002095 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2096 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2097
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002098 q->sg_reserved_size = INT_MAX;
2099
Mike Snitzer28494502016-09-14 13:28:30 -04002100 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002101 INIT_LIST_HEAD(&q->requeue_list);
2102 spin_lock_init(&q->requeue_lock);
2103
Jens Axboe07068d52014-05-22 10:40:51 -06002104 if (q->nr_hw_queues > 1)
2105 blk_queue_make_request(q, blk_mq_make_request);
2106 else
2107 blk_queue_make_request(q, blk_sq_make_request);
2108
Jens Axboeeba71762014-05-20 15:17:27 -06002109 /*
2110 * Do this after blk_queue_make_request() overrides it...
2111 */
2112 q->nr_requests = set->queue_depth;
2113
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002114 if (set->ops->complete)
2115 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002116
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002117 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002118
Akinobu Mita57783222015-09-27 02:09:23 +09002119 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002120 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002121
Jens Axboe320ae512013-10-24 09:20:05 +01002122 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002123 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002124 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002125
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002126 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002127 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002128
Jens Axboe320ae512013-10-24 09:20:05 +01002129 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002130
Jens Axboe320ae512013-10-24 09:20:05 +01002131err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002132 kfree(q->mq_map);
Jens Axboef14bbe72014-05-27 12:06:53 -06002133err_map:
Keith Busch868f2f02015-12-17 17:08:14 -07002134 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002135err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002136 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002137err_exit:
2138 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002139 return ERR_PTR(-ENOMEM);
2140}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002141EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002142
2143void blk_mq_free_queue(struct request_queue *q)
2144{
Ming Lei624dbe42014-05-27 23:35:13 +08002145 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002146
Akinobu Mita0e626362015-09-27 02:09:22 +09002147 mutex_lock(&all_q_mutex);
2148 list_del_init(&q->all_q_node);
2149 mutex_unlock(&all_q_mutex);
2150
Jens Axboe0d2602c2014-05-13 15:10:52 -06002151 blk_mq_del_queue_tag_set(q);
2152
Ming Lei624dbe42014-05-27 23:35:13 +08002153 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2154 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002155}
Jens Axboe320ae512013-10-24 09:20:05 +01002156
2157/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002158static void blk_mq_queue_reinit(struct request_queue *q,
2159 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002160{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002161 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002162
Jens Axboe67aec142014-05-30 08:25:36 -06002163 blk_mq_sysfs_unregister(q);
2164
Akinobu Mita57783222015-09-27 02:09:23 +09002165 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002166
2167 /*
2168 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2169 * we should change hctx numa_node according to new topology (this
2170 * involves free and re-allocate memory, worthy doing?)
2171 */
2172
Akinobu Mita57783222015-09-27 02:09:23 +09002173 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002174
Jens Axboe67aec142014-05-30 08:25:36 -06002175 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002176}
2177
Paul Gortmakerf618ef72013-11-14 08:26:02 -07002178static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
2179 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01002180{
2181 struct request_queue *q;
Akinobu Mita57783222015-09-27 02:09:23 +09002182 int cpu = (unsigned long)hcpu;
2183 /*
2184 * New online cpumask which is going to be set in this hotplug event.
2185 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2186 * one-by-one and dynamically allocating this could result in a failure.
2187 */
2188 static struct cpumask online_new;
Jens Axboe320ae512013-10-24 09:20:05 +01002189
2190 /*
Akinobu Mita57783222015-09-27 02:09:23 +09002191 * Before hotadded cpu starts handling requests, new mappings must
2192 * be established. Otherwise, these requests in hw queue might
2193 * never be dispatched.
2194 *
2195 * For example, there is a single hw queue (hctx) and two CPU queues
2196 * (ctx0 for CPU0, and ctx1 for CPU1).
2197 *
2198 * Now CPU1 is just onlined and a request is inserted into
2199 * ctx1->rq_list and set bit0 in pending bitmap as ctx1->index_hw is
2200 * still zero.
2201 *
2202 * And then while running hw queue, flush_busy_ctxs() finds bit0 is
2203 * set in pending bitmap and tries to retrieve requests in
2204 * hctx->ctxs[0]->rq_list. But htx->ctxs[0] is a pointer to ctx0,
2205 * so the request in ctx1->rq_list is ignored.
Jens Axboe320ae512013-10-24 09:20:05 +01002206 */
Akinobu Mita57783222015-09-27 02:09:23 +09002207 switch (action & ~CPU_TASKS_FROZEN) {
2208 case CPU_DEAD:
2209 case CPU_UP_CANCELED:
2210 cpumask_copy(&online_new, cpu_online_mask);
2211 break;
2212 case CPU_UP_PREPARE:
2213 cpumask_copy(&online_new, cpu_online_mask);
2214 cpumask_set_cpu(cpu, &online_new);
2215 break;
2216 default:
Jens Axboe320ae512013-10-24 09:20:05 +01002217 return NOTIFY_OK;
Akinobu Mita57783222015-09-27 02:09:23 +09002218 }
Jens Axboe320ae512013-10-24 09:20:05 +01002219
2220 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002221
2222 /*
2223 * We need to freeze and reinit all existing queues. Freezing
2224 * involves synchronous wait for an RCU grace period and doing it
2225 * one by one may take a long time. Start freezing all queues in
2226 * one swoop and then wait for the completions so that freezing can
2227 * take place in parallel.
2228 */
2229 list_for_each_entry(q, &all_q_list, all_q_node)
2230 blk_mq_freeze_queue_start(q);
Ming Leif054b562015-04-21 10:00:19 +08002231 list_for_each_entry(q, &all_q_list, all_q_node) {
Tejun Heof3af0202014-11-04 13:52:27 -05002232 blk_mq_freeze_queue_wait(q);
2233
Ming Leif054b562015-04-21 10:00:19 +08002234 /*
2235 * timeout handler can't touch hw queue during the
2236 * reinitialization
2237 */
2238 del_timer_sync(&q->timeout);
2239 }
2240
Jens Axboe320ae512013-10-24 09:20:05 +01002241 list_for_each_entry(q, &all_q_list, all_q_node)
Akinobu Mita57783222015-09-27 02:09:23 +09002242 blk_mq_queue_reinit(q, &online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002243
2244 list_for_each_entry(q, &all_q_list, all_q_node)
2245 blk_mq_unfreeze_queue(q);
2246
Jens Axboe320ae512013-10-24 09:20:05 +01002247 mutex_unlock(&all_q_mutex);
2248 return NOTIFY_OK;
2249}
2250
Jens Axboea5164402014-09-10 09:02:03 -06002251static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2252{
2253 int i;
2254
2255 for (i = 0; i < set->nr_hw_queues; i++) {
2256 set->tags[i] = blk_mq_init_rq_map(set, i);
2257 if (!set->tags[i])
2258 goto out_unwind;
2259 }
2260
2261 return 0;
2262
2263out_unwind:
2264 while (--i >= 0)
2265 blk_mq_free_rq_map(set, set->tags[i], i);
2266
Jens Axboea5164402014-09-10 09:02:03 -06002267 return -ENOMEM;
2268}
2269
2270/*
2271 * Allocate the request maps associated with this tag_set. Note that this
2272 * may reduce the depth asked for, if memory is tight. set->queue_depth
2273 * will be updated to reflect the allocated depth.
2274 */
2275static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2276{
2277 unsigned int depth;
2278 int err;
2279
2280 depth = set->queue_depth;
2281 do {
2282 err = __blk_mq_alloc_rq_maps(set);
2283 if (!err)
2284 break;
2285
2286 set->queue_depth >>= 1;
2287 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2288 err = -ENOMEM;
2289 break;
2290 }
2291 } while (set->queue_depth);
2292
2293 if (!set->queue_depth || err) {
2294 pr_err("blk-mq: failed to allocate request map\n");
2295 return -ENOMEM;
2296 }
2297
2298 if (depth != set->queue_depth)
2299 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2300 depth, set->queue_depth);
2301
2302 return 0;
2303}
2304
Keith Buschf26cdc82015-06-01 09:29:53 -06002305struct cpumask *blk_mq_tags_cpumask(struct blk_mq_tags *tags)
2306{
2307 return tags->cpumask;
2308}
2309EXPORT_SYMBOL_GPL(blk_mq_tags_cpumask);
2310
Jens Axboea4391c62014-06-05 15:21:56 -06002311/*
2312 * Alloc a tag set to be associated with one or more request queues.
2313 * May fail with EINVAL for various error conditions. May adjust the
2314 * requested depth down, if if it too large. In that case, the set
2315 * value will be stored in set->queue_depth.
2316 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002317int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2318{
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002319 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2320
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002321 if (!set->nr_hw_queues)
2322 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002323 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002324 return -EINVAL;
2325 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2326 return -EINVAL;
2327
Xiaoguang Wangf9018ac2015-03-30 13:19:14 +08002328 if (!set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002329 return -EINVAL;
2330
Jens Axboea4391c62014-06-05 15:21:56 -06002331 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2332 pr_info("blk-mq: reduced tag depth to %u\n",
2333 BLK_MQ_MAX_DEPTH);
2334 set->queue_depth = BLK_MQ_MAX_DEPTH;
2335 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002336
Shaohua Li6637fad2014-11-30 16:00:58 -08002337 /*
2338 * If a crashdump is active, then we are potentially in a very
2339 * memory constrained environment. Limit us to 1 queue and
2340 * 64 tags to prevent using too much memory.
2341 */
2342 if (is_kdump_kernel()) {
2343 set->nr_hw_queues = 1;
2344 set->queue_depth = min(64U, set->queue_depth);
2345 }
Keith Busch868f2f02015-12-17 17:08:14 -07002346 /*
2347 * There is no use for more h/w queues than cpus.
2348 */
2349 if (set->nr_hw_queues > nr_cpu_ids)
2350 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002351
Keith Busch868f2f02015-12-17 17:08:14 -07002352 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002353 GFP_KERNEL, set->numa_node);
2354 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002355 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002356
Jens Axboea5164402014-09-10 09:02:03 -06002357 if (blk_mq_alloc_rq_maps(set))
2358 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002359
Jens Axboe0d2602c2014-05-13 15:10:52 -06002360 mutex_init(&set->tag_list_lock);
2361 INIT_LIST_HEAD(&set->tag_list);
2362
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002363 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002364enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002365 kfree(set->tags);
2366 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002367 return -ENOMEM;
2368}
2369EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2370
2371void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2372{
2373 int i;
2374
Keith Busch868f2f02015-12-17 17:08:14 -07002375 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002376 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002377 blk_mq_free_rq_map(set, set->tags[i], i);
2378 }
2379
Ming Lei981bd182014-04-24 00:07:34 +08002380 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002381 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002382}
2383EXPORT_SYMBOL(blk_mq_free_tag_set);
2384
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002385int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2386{
2387 struct blk_mq_tag_set *set = q->tag_set;
2388 struct blk_mq_hw_ctx *hctx;
2389 int i, ret;
2390
2391 if (!set || nr > set->queue_depth)
2392 return -EINVAL;
2393
2394 ret = 0;
2395 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002396 if (!hctx->tags)
2397 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002398 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2399 if (ret)
2400 break;
2401 }
2402
2403 if (!ret)
2404 q->nr_requests = nr;
2405
2406 return ret;
2407}
2408
Keith Busch868f2f02015-12-17 17:08:14 -07002409void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2410{
2411 struct request_queue *q;
2412
2413 if (nr_hw_queues > nr_cpu_ids)
2414 nr_hw_queues = nr_cpu_ids;
2415 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2416 return;
2417
2418 list_for_each_entry(q, &set->tag_list, tag_set_list)
2419 blk_mq_freeze_queue(q);
2420
2421 set->nr_hw_queues = nr_hw_queues;
2422 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2423 blk_mq_realloc_hw_ctxs(set, q);
2424
2425 if (q->nr_hw_queues > 1)
2426 blk_queue_make_request(q, blk_mq_make_request);
2427 else
2428 blk_queue_make_request(q, blk_sq_make_request);
2429
2430 blk_mq_queue_reinit(q, cpu_online_mask);
2431 }
2432
2433 list_for_each_entry(q, &set->tag_list, tag_set_list)
2434 blk_mq_unfreeze_queue(q);
2435}
2436EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2437
Jens Axboe676141e2014-03-20 13:29:18 -06002438void blk_mq_disable_hotplug(void)
2439{
2440 mutex_lock(&all_q_mutex);
2441}
2442
2443void blk_mq_enable_hotplug(void)
2444{
2445 mutex_unlock(&all_q_mutex);
2446}
2447
Jens Axboe320ae512013-10-24 09:20:05 +01002448static int __init blk_mq_init(void)
2449{
Jens Axboe320ae512013-10-24 09:20:05 +01002450 blk_mq_cpu_init();
2451
Tejun Heoadd703f2014-07-01 10:34:38 -06002452 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002453
2454 return 0;
2455}
2456subsys_initcall(blk_mq_init);