blob: ae8df5ec20d3860663bad8bdd2ef271f8eadc491 [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"
Jens Axboecf43e6b2016-11-07 21:32:37 -070033#include "blk-stat.h"
Jens Axboe87760e52016-11-09 12:38:14 -070034#include "blk-wbt.h"
Jens Axboe320ae512013-10-24 09:20:05 +010035
36static DEFINE_MUTEX(all_q_mutex);
37static LIST_HEAD(all_q_list);
38
Jens Axboe320ae512013-10-24 09:20:05 +010039/*
40 * Check if any of the ctx's have pending work in this hardware queue
41 */
42static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
43{
Omar Sandoval88459642016-09-17 08:38:44 -060044 return sbitmap_any_bit_set(&hctx->ctx_map);
Jens Axboe320ae512013-10-24 09:20:05 +010045}
46
47/*
48 * Mark this ctx as having pending work in this hardware queue
49 */
50static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
51 struct blk_mq_ctx *ctx)
52{
Omar Sandoval88459642016-09-17 08:38:44 -060053 if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw))
54 sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe1429d7c2014-05-19 09:23:55 -060055}
56
57static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
58 struct blk_mq_ctx *ctx)
59{
Omar Sandoval88459642016-09-17 08:38:44 -060060 sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe320ae512013-10-24 09:20:05 +010061}
62
Keith Buschb4c6a022014-12-19 17:54:14 -070063void blk_mq_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080064{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020065 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040066
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020067 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
68 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040069 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040070 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040071 }
Tejun Heof3af0202014-11-04 13:52:27 -050072}
Keith Buschb4c6a022014-12-19 17:54:14 -070073EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -050074
75static void blk_mq_freeze_queue_wait(struct request_queue *q)
76{
Dan Williams3ef28e82015-10-21 13:20:12 -040077 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +080078}
79
Tejun Heof3af0202014-11-04 13:52:27 -050080/*
81 * Guarantee no request is in use, so we can change any data structure of
82 * the queue afterward.
83 */
Dan Williams3ef28e82015-10-21 13:20:12 -040084void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -050085{
Dan Williams3ef28e82015-10-21 13:20:12 -040086 /*
87 * In the !blk_mq case we are only calling this to kill the
88 * q_usage_counter, otherwise this increases the freeze depth
89 * and waits for it to return to zero. For this reason there is
90 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
91 * exported to drivers as the only user for unfreeze is blk_mq.
92 */
Tejun Heof3af0202014-11-04 13:52:27 -050093 blk_mq_freeze_queue_start(q);
94 blk_mq_freeze_queue_wait(q);
95}
Dan Williams3ef28e82015-10-21 13:20:12 -040096
97void blk_mq_freeze_queue(struct request_queue *q)
98{
99 /*
100 * ...just an alias to keep freeze and unfreeze actions balanced
101 * in the blk_mq_* namespace
102 */
103 blk_freeze_queue(q);
104}
Jens Axboec761d962015-01-02 15:05:12 -0700105EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500106
Keith Buschb4c6a022014-12-19 17:54:14 -0700107void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100108{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200109 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100110
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200111 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
112 WARN_ON_ONCE(freeze_depth < 0);
113 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400114 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100115 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600116 }
Jens Axboe320ae512013-10-24 09:20:05 +0100117}
Keith Buschb4c6a022014-12-19 17:54:14 -0700118EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100119
Bart Van Assche6a83e742016-11-02 10:09:51 -0600120/**
121 * blk_mq_quiesce_queue() - wait until all ongoing queue_rq calls have finished
122 * @q: request queue.
123 *
124 * Note: this function does not prevent that the struct request end_io()
125 * callback function is invoked. Additionally, it is not prevented that
126 * new queue_rq() calls occur unless the queue has been stopped first.
127 */
128void blk_mq_quiesce_queue(struct request_queue *q)
129{
130 struct blk_mq_hw_ctx *hctx;
131 unsigned int i;
132 bool rcu = false;
133
134 blk_mq_stop_hw_queues(q);
135
136 queue_for_each_hw_ctx(q, hctx, i) {
137 if (hctx->flags & BLK_MQ_F_BLOCKING)
138 synchronize_srcu(&hctx->queue_rq_srcu);
139 else
140 rcu = true;
141 }
142 if (rcu)
143 synchronize_rcu();
144}
145EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
146
Jens Axboeaed3ea92014-12-22 14:04:42 -0700147void blk_mq_wake_waiters(struct request_queue *q)
148{
149 struct blk_mq_hw_ctx *hctx;
150 unsigned int i;
151
152 queue_for_each_hw_ctx(q, hctx, i)
153 if (blk_mq_hw_queue_mapped(hctx))
154 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700155
156 /*
157 * If we are called because the queue has now been marked as
158 * dying, we need to ensure that processes currently waiting on
159 * the queue are notified as well.
160 */
161 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700162}
163
Jens Axboe320ae512013-10-24 09:20:05 +0100164bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
165{
166 return blk_mq_has_free_tags(hctx->tags);
167}
168EXPORT_SYMBOL(blk_mq_can_queue);
169
Jens Axboe94eddfb2013-11-19 09:25:07 -0700170static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600171 struct request *rq, unsigned int op)
Jens Axboe320ae512013-10-24 09:20:05 +0100172{
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200173 INIT_LIST_HEAD(&rq->queuelist);
174 /* csd/requeue_work/fifo_time is initialized before use */
175 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100176 rq->mq_ctx = ctx;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600177 rq->cmd_flags = op;
Christoph Hellwige8064022016-10-20 15:12:13 +0200178 if (blk_queue_io_stat(q))
179 rq->rq_flags |= RQF_IO_STAT;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200180 /* do not touch atomic flags, it needs atomic ops against the timer */
181 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200182 INIT_HLIST_NODE(&rq->hash);
183 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200184 rq->rq_disk = NULL;
185 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600186 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200187#ifdef CONFIG_BLK_CGROUP
188 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700189 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200190 rq->io_start_time_ns = 0;
191#endif
192 rq->nr_phys_segments = 0;
193#if defined(CONFIG_BLK_DEV_INTEGRITY)
194 rq->nr_integrity_segments = 0;
195#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200196 rq->special = NULL;
197 /* tag was already set */
198 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200199
Tony Battersby6f4a16262014-08-22 15:53:39 -0400200 rq->cmd = rq->__cmd;
201
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200202 rq->extra_len = 0;
203 rq->sense_len = 0;
204 rq->resid_len = 0;
205 rq->sense = NULL;
206
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200207 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600208 rq->timeout = 0;
209
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200210 rq->end_io = NULL;
211 rq->end_io_data = NULL;
212 rq->next_rq = NULL;
213
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600214 ctx->rq_dispatched[op_is_sync(op)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100215}
216
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200217static struct request *
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600218__blk_mq_alloc_request(struct blk_mq_alloc_data *data, unsigned int op)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200219{
220 struct request *rq;
221 unsigned int tag;
222
Ming Leicb96a422014-06-01 00:43:37 +0800223 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200224 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800225 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200226
Ming Leicb96a422014-06-01 00:43:37 +0800227 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200228 rq->rq_flags = RQF_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800229 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200230 }
231
232 rq->tag = tag;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600233 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200234 return rq;
235 }
236
237 return NULL;
238}
239
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100240struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
241 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100242{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200243 struct blk_mq_ctx *ctx;
244 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100245 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800246 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600247 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100248
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100249 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600250 if (ret)
251 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100252
Christoph Hellwigd8525642014-05-27 20:59:50 +0200253 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200254 hctx = blk_mq_map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100255 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600256 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200257 blk_mq_put_ctx(ctx);
Jens Axboe841bac22016-09-21 10:08:43 -0600258
Keith Buschc76541a2014-12-19 17:54:13 -0700259 if (!rq) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400260 blk_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600261 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a2014-12-19 17:54:13 -0700262 }
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200263
264 rq->__data_len = 0;
265 rq->__sector = (sector_t) -1;
266 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100267 return rq;
268}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600269EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100270
Ming Lin1f5bd332016-06-13 16:45:21 +0200271struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
272 unsigned int flags, unsigned int hctx_idx)
273{
274 struct blk_mq_hw_ctx *hctx;
275 struct blk_mq_ctx *ctx;
276 struct request *rq;
277 struct blk_mq_alloc_data alloc_data;
278 int ret;
279
280 /*
281 * If the tag allocator sleeps we could get an allocation for a
282 * different hardware context. No need to complicate the low level
283 * allocator for this for the rare use case of a command tied to
284 * a specific queue.
285 */
286 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
287 return ERR_PTR(-EINVAL);
288
289 if (hctx_idx >= q->nr_hw_queues)
290 return ERR_PTR(-EIO);
291
292 ret = blk_queue_enter(q, true);
293 if (ret)
294 return ERR_PTR(ret);
295
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600296 /*
297 * Check if the hardware context is actually mapped to anything.
298 * If not tell the caller that it should skip this queue.
299 */
Ming Lin1f5bd332016-06-13 16:45:21 +0200300 hctx = q->queue_hw_ctx[hctx_idx];
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600301 if (!blk_mq_hw_queue_mapped(hctx)) {
302 ret = -EXDEV;
303 goto out_queue_exit;
304 }
Ming Lin1f5bd332016-06-13 16:45:21 +0200305 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
306
307 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600308 rq = __blk_mq_alloc_request(&alloc_data, rw);
Ming Lin1f5bd332016-06-13 16:45:21 +0200309 if (!rq) {
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600310 ret = -EWOULDBLOCK;
311 goto out_queue_exit;
Ming Lin1f5bd332016-06-13 16:45:21 +0200312 }
313
314 return rq;
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600315
316out_queue_exit:
317 blk_queue_exit(q);
318 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200319}
320EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
321
Jens Axboe320ae512013-10-24 09:20:05 +0100322static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
323 struct blk_mq_ctx *ctx, struct request *rq)
324{
325 const int tag = rq->tag;
326 struct request_queue *q = rq->q;
327
Christoph Hellwige8064022016-10-20 15:12:13 +0200328 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600329 atomic_dec(&hctx->nr_active);
Jens Axboe87760e52016-11-09 12:38:14 -0700330
331 wbt_done(q->rq_wb, &rq->issue_stat);
Christoph Hellwige8064022016-10-20 15:12:13 +0200332 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600333
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200334 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Omar Sandoval40aabb62016-09-17 01:28:23 -0700335 blk_mq_put_tag(hctx, ctx, tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400336 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100337}
338
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700339void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100340{
341 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700342
343 ctx->rq_completed[rq_is_sync(rq)]++;
344 __blk_mq_free_request(hctx, ctx, rq);
345
346}
347EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
348
349void blk_mq_free_request(struct request *rq)
350{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200351 blk_mq_free_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100352}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700353EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100354
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700355inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100356{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700357 blk_account_io_done(rq);
358
Christoph Hellwig91b63632014-04-16 09:44:53 +0200359 if (rq->end_io) {
Jens Axboe87760e52016-11-09 12:38:14 -0700360 wbt_done(rq->q->rq_wb, &rq->issue_stat);
Jens Axboe320ae512013-10-24 09:20:05 +0100361 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200362 } else {
363 if (unlikely(blk_bidi_rq(rq)))
364 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100365 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200366 }
Jens Axboe320ae512013-10-24 09:20:05 +0100367}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700368EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200369
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700370void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200371{
372 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
373 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700374 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200375}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700376EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100377
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800378static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100379{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800380 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100381
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800382 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100383}
384
Jens Axboeed851862014-05-30 21:20:50 -0600385static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100386{
387 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700388 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100389 int cpu;
390
Christoph Hellwig38535202014-04-25 02:32:53 -0700391 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800392 rq->q->softirq_done_fn(rq);
393 return;
394 }
Jens Axboe320ae512013-10-24 09:20:05 +0100395
396 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700397 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
398 shared = cpus_share_cache(cpu, ctx->cpu);
399
400 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800401 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800402 rq->csd.info = rq;
403 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100404 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800405 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800406 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800407 }
Jens Axboe320ae512013-10-24 09:20:05 +0100408 put_cpu();
409}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800410
Jens Axboecf43e6b2016-11-07 21:32:37 -0700411static void blk_mq_stat_add(struct request *rq)
412{
413 if (rq->rq_flags & RQF_STATS) {
414 /*
415 * We could rq->mq_ctx here, but there's less of a risk
416 * of races if we have the completion event add the stats
417 * to the local software queue.
418 */
419 struct blk_mq_ctx *ctx;
420
421 ctx = __blk_mq_get_ctx(rq->q, raw_smp_processor_id());
422 blk_stat_add(&ctx->stat[rq_data_dir(rq)], rq);
423 }
424}
425
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700426static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600427{
428 struct request_queue *q = rq->q;
429
Jens Axboecf43e6b2016-11-07 21:32:37 -0700430 blk_mq_stat_add(rq);
431
Jens Axboeed851862014-05-30 21:20:50 -0600432 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700433 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600434 else
435 blk_mq_ipi_complete_request(rq);
436}
437
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800438/**
439 * blk_mq_complete_request - end I/O on a request
440 * @rq: the request being processed
441 *
442 * Description:
443 * Ends all I/O on a request. It does not handle partial completions.
444 * The actual completion happens out-of-order, through a IPI handler.
445 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200446void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800447{
Jens Axboe95f09682014-05-27 17:46:48 -0600448 struct request_queue *q = rq->q;
449
450 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800451 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200452 if (!blk_mark_rq_complete(rq)) {
453 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600454 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200455 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800456}
457EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100458
Keith Busch973c0192015-01-07 18:55:43 -0700459int blk_mq_request_started(struct request *rq)
460{
461 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
462}
463EXPORT_SYMBOL_GPL(blk_mq_request_started);
464
Christoph Hellwige2490072014-09-13 16:40:09 -0700465void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100466{
467 struct request_queue *q = rq->q;
468
469 trace_block_rq_issue(q, rq);
470
Christoph Hellwig742ee692014-04-14 10:30:06 +0200471 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200472 if (unlikely(blk_bidi_rq(rq)))
473 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200474
Jens Axboecf43e6b2016-11-07 21:32:37 -0700475 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
476 blk_stat_set_issue_time(&rq->issue_stat);
477 rq->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -0700478 wbt_issue(q->rq_wb, &rq->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700479 }
480
Ming Lei2b8393b2014-06-10 00:16:41 +0800481 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600482
483 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600484 * Ensure that ->deadline is visible before set the started
485 * flag and clear the completed flag.
486 */
487 smp_mb__before_atomic();
488
489 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600490 * Mark us as started and clear complete. Complete might have been
491 * set if requeue raced with timeout, which then marked it as
492 * complete. So be sure to clear complete again when we start
493 * the request, otherwise we'll ignore the completion event.
494 */
Jens Axboe4b570522014-05-29 11:00:11 -0600495 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
496 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
497 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
498 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800499
500 if (q->dma_drain_size && blk_rq_bytes(rq)) {
501 /*
502 * Make sure space for the drain appears. We know we can do
503 * this because max_hw_segments has been adjusted to be one
504 * fewer than the device can handle.
505 */
506 rq->nr_phys_segments++;
507 }
Jens Axboe320ae512013-10-24 09:20:05 +0100508}
Christoph Hellwige2490072014-09-13 16:40:09 -0700509EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100510
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200511static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100512{
513 struct request_queue *q = rq->q;
514
515 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -0700516 wbt_requeue(q->rq_wb, &rq->issue_stat);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800517
Christoph Hellwige2490072014-09-13 16:40:09 -0700518 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
519 if (q->dma_drain_size && blk_rq_bytes(rq))
520 rq->nr_phys_segments--;
521 }
Jens Axboe320ae512013-10-24 09:20:05 +0100522}
523
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700524void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200525{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200526 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200527
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200528 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700529 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200530}
531EXPORT_SYMBOL(blk_mq_requeue_request);
532
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600533static void blk_mq_requeue_work(struct work_struct *work)
534{
535 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400536 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600537 LIST_HEAD(rq_list);
538 struct request *rq, *next;
539 unsigned long flags;
540
541 spin_lock_irqsave(&q->requeue_lock, flags);
542 list_splice_init(&q->requeue_list, &rq_list);
543 spin_unlock_irqrestore(&q->requeue_lock, flags);
544
545 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200546 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600547 continue;
548
Christoph Hellwige8064022016-10-20 15:12:13 +0200549 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600550 list_del_init(&rq->queuelist);
551 blk_mq_insert_request(rq, true, false, false);
552 }
553
554 while (!list_empty(&rq_list)) {
555 rq = list_entry(rq_list.next, struct request, queuelist);
556 list_del_init(&rq->queuelist);
557 blk_mq_insert_request(rq, false, false, false);
558 }
559
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700560 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600561}
562
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700563void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
564 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600565{
566 struct request_queue *q = rq->q;
567 unsigned long flags;
568
569 /*
570 * We abuse this flag that is otherwise used by the I/O scheduler to
571 * request head insertation from the workqueue.
572 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200573 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600574
575 spin_lock_irqsave(&q->requeue_lock, flags);
576 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200577 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600578 list_add(&rq->queuelist, &q->requeue_list);
579 } else {
580 list_add_tail(&rq->queuelist, &q->requeue_list);
581 }
582 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700583
584 if (kick_requeue_list)
585 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600586}
587EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
588
589void blk_mq_kick_requeue_list(struct request_queue *q)
590{
Mike Snitzer28494502016-09-14 13:28:30 -0400591 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600592}
593EXPORT_SYMBOL(blk_mq_kick_requeue_list);
594
Mike Snitzer28494502016-09-14 13:28:30 -0400595void blk_mq_delay_kick_requeue_list(struct request_queue *q,
596 unsigned long msecs)
597{
598 kblockd_schedule_delayed_work(&q->requeue_work,
599 msecs_to_jiffies(msecs));
600}
601EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
602
Jens Axboe1885b242015-01-07 18:55:45 -0700603void blk_mq_abort_requeue_list(struct request_queue *q)
604{
605 unsigned long flags;
606 LIST_HEAD(rq_list);
607
608 spin_lock_irqsave(&q->requeue_lock, flags);
609 list_splice_init(&q->requeue_list, &rq_list);
610 spin_unlock_irqrestore(&q->requeue_lock, flags);
611
612 while (!list_empty(&rq_list)) {
613 struct request *rq;
614
615 rq = list_first_entry(&rq_list, struct request, queuelist);
616 list_del_init(&rq->queuelist);
617 rq->errors = -EIO;
618 blk_mq_end_request(rq, rq->errors);
619 }
620}
621EXPORT_SYMBOL(blk_mq_abort_requeue_list);
622
Jens Axboe0e62f512014-06-04 10:23:49 -0600623struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
624{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600625 if (tag < tags->nr_tags) {
626 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700627 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600628 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700629
630 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600631}
632EXPORT_SYMBOL(blk_mq_tag_to_rq);
633
Jens Axboe320ae512013-10-24 09:20:05 +0100634struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700635 unsigned long next;
636 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100637};
638
Christoph Hellwig90415832014-09-22 10:21:48 -0600639void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100640{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700641 struct blk_mq_ops *ops = req->q->mq_ops;
642 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600643
644 /*
645 * We know that complete is set at this point. If STARTED isn't set
646 * anymore, then the request isn't active and the "timeout" should
647 * just be ignored. This can happen due to the bitflag ordering.
648 * Timeout first checks if STARTED is set, and if it is, assumes
649 * the request is active. But if we race with completion, then
650 * we both flags will get cleared. So check here again, and ignore
651 * a timeout event with a request that isn't active.
652 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700653 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
654 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600655
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700656 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700657 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600658
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700659 switch (ret) {
660 case BLK_EH_HANDLED:
661 __blk_mq_complete_request(req);
662 break;
663 case BLK_EH_RESET_TIMER:
664 blk_add_timer(req);
665 blk_clear_rq_complete(req);
666 break;
667 case BLK_EH_NOT_HANDLED:
668 break;
669 default:
670 printk(KERN_ERR "block: bad eh return: %d\n", ret);
671 break;
672 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600673}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700674
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700675static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
676 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100677{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700678 struct blk_mq_timeout_data *data = priv;
679
Keith Buscheb130db2015-01-08 08:59:53 -0700680 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
681 /*
682 * If a request wasn't started before the queue was
683 * marked dying, kill it here or it'll go unnoticed.
684 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700685 if (unlikely(blk_queue_dying(rq->q))) {
686 rq->errors = -EIO;
687 blk_mq_end_request(rq, rq->errors);
688 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700689 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700690 }
Jens Axboe320ae512013-10-24 09:20:05 +0100691
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700692 if (time_after_eq(jiffies, rq->deadline)) {
693 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700694 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700695 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
696 data->next = rq->deadline;
697 data->next_set = 1;
698 }
Jens Axboe320ae512013-10-24 09:20:05 +0100699}
700
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800701static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100702{
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800703 struct request_queue *q =
704 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700705 struct blk_mq_timeout_data data = {
706 .next = 0,
707 .next_set = 0,
708 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700709 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100710
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600711 /* A deadlock might occur if a request is stuck requiring a
712 * timeout at the same time a queue freeze is waiting
713 * completion, since the timeout code would not be able to
714 * acquire the queue reference here.
715 *
716 * That's why we don't use blk_queue_enter here; instead, we use
717 * percpu_ref_tryget directly, because we need to be able to
718 * obtain a reference even in the short window between the queue
719 * starting to freeze, by dropping the first reference in
720 * blk_mq_freeze_queue_start, and the moment the last request is
721 * consumed, marked by the instant q_usage_counter reaches
722 * zero.
723 */
724 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800725 return;
726
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200727 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100728
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700729 if (data.next_set) {
730 data.next = blk_rq_timeout(round_jiffies_up(data.next));
731 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600732 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200733 struct blk_mq_hw_ctx *hctx;
734
Ming Leif054b562015-04-21 10:00:19 +0800735 queue_for_each_hw_ctx(q, hctx, i) {
736 /* the hctx may be unmapped, so check it here */
737 if (blk_mq_hw_queue_mapped(hctx))
738 blk_mq_tag_idle(hctx);
739 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600740 }
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800741 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100742}
743
744/*
745 * Reverse check our software queue for entries that we could potentially
746 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
747 * too much time checking for merges.
748 */
749static bool blk_mq_attempt_merge(struct request_queue *q,
750 struct blk_mq_ctx *ctx, struct bio *bio)
751{
752 struct request *rq;
753 int checked = 8;
754
755 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
756 int el_ret;
757
758 if (!checked--)
759 break;
760
761 if (!blk_rq_merge_ok(rq, bio))
762 continue;
763
764 el_ret = blk_try_merge(rq, bio);
765 if (el_ret == ELEVATOR_BACK_MERGE) {
766 if (bio_attempt_back_merge(q, rq, bio)) {
767 ctx->rq_merged++;
768 return true;
769 }
770 break;
771 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
772 if (bio_attempt_front_merge(q, rq, bio)) {
773 ctx->rq_merged++;
774 return true;
775 }
776 break;
777 }
778 }
779
780 return false;
781}
782
Omar Sandoval88459642016-09-17 08:38:44 -0600783struct flush_busy_ctx_data {
784 struct blk_mq_hw_ctx *hctx;
785 struct list_head *list;
786};
787
788static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
789{
790 struct flush_busy_ctx_data *flush_data = data;
791 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
792 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
793
794 sbitmap_clear_bit(sb, bitnr);
795 spin_lock(&ctx->lock);
796 list_splice_tail_init(&ctx->rq_list, flush_data->list);
797 spin_unlock(&ctx->lock);
798 return true;
799}
800
Jens Axboe320ae512013-10-24 09:20:05 +0100801/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600802 * Process software queues that have been marked busy, splicing them
803 * to the for-dispatch
804 */
805static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
806{
Omar Sandoval88459642016-09-17 08:38:44 -0600807 struct flush_busy_ctx_data data = {
808 .hctx = hctx,
809 .list = list,
810 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600811
Omar Sandoval88459642016-09-17 08:38:44 -0600812 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600813}
Jens Axboe1429d7c2014-05-19 09:23:55 -0600814
Jens Axboe703fd1c2016-09-16 13:59:14 -0600815static inline unsigned int queued_to_index(unsigned int queued)
816{
817 if (!queued)
818 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600819
Jens Axboe703fd1c2016-09-16 13:59:14 -0600820 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600821}
822
823/*
Jens Axboe320ae512013-10-24 09:20:05 +0100824 * Run this hardware queue, pulling any software queues mapped to it in.
825 * Note that this function currently has various problems around ordering
826 * of IO. In particular, we'd like FIFO behaviour on handling existing
827 * items on the hctx->dispatch list. Ignore that for now.
828 */
Bart Van Assche6a83e742016-11-02 10:09:51 -0600829static void blk_mq_process_rq_list(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +0100830{
831 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100832 struct request *rq;
833 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600834 LIST_HEAD(driver_list);
835 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600836 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100837
Bart Van Assche5d1b25c2016-10-28 17:19:15 -0700838 if (unlikely(blk_mq_hctx_stopped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100839 return;
840
841 hctx->run++;
842
843 /*
844 * Touch any software queue that has pending entries.
845 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600846 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100847
848 /*
849 * If we have previous entries on our dispatch list, grab them
850 * and stuff them at the front for more fair dispatch.
851 */
852 if (!list_empty_careful(&hctx->dispatch)) {
853 spin_lock(&hctx->lock);
854 if (!list_empty(&hctx->dispatch))
855 list_splice_init(&hctx->dispatch, &rq_list);
856 spin_unlock(&hctx->lock);
857 }
858
859 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600860 * Start off with dptr being NULL, so we start the first request
861 * immediately, even if we have more pending.
862 */
863 dptr = NULL;
864
865 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100866 * Now process all the entries, sending them to the driver.
867 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600868 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100869 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600870 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100871 int ret;
872
873 rq = list_first_entry(&rq_list, struct request, queuelist);
874 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100875
Jens Axboe74c45052014-10-29 11:14:52 -0600876 bd.rq = rq;
877 bd.list = dptr;
878 bd.last = list_empty(&rq_list);
879
880 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100881 switch (ret) {
882 case BLK_MQ_RQ_QUEUE_OK:
883 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700884 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100885 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100886 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200887 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100888 break;
889 default:
890 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100891 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800892 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700893 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100894 break;
895 }
896
897 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
898 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600899
900 /*
901 * We've done the first request. If we have more than 1
902 * left in the list, set dptr to defer issue.
903 */
904 if (!dptr && rq_list.next != rq_list.prev)
905 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100906 }
907
Jens Axboe703fd1c2016-09-16 13:59:14 -0600908 hctx->dispatched[queued_to_index(queued)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100909
910 /*
911 * Any items that need requeuing? Stuff them into hctx->dispatch,
912 * that is where we will continue on next queue run.
913 */
914 if (!list_empty(&rq_list)) {
915 spin_lock(&hctx->lock);
916 list_splice(&rq_list, &hctx->dispatch);
917 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600918 /*
919 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
920 * it's possible the queue is stopped and restarted again
921 * before this. Queue restart will dispatch requests. And since
922 * requests in rq_list aren't added into hctx->dispatch yet,
923 * the requests in rq_list might get lost.
924 *
925 * blk_mq_run_hw_queue() already checks the STOPPED bit
926 **/
927 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100928 }
929}
930
Bart Van Assche6a83e742016-11-02 10:09:51 -0600931static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
932{
933 int srcu_idx;
934
935 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
936 cpu_online(hctx->next_cpu));
937
938 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
939 rcu_read_lock();
940 blk_mq_process_rq_list(hctx);
941 rcu_read_unlock();
942 } else {
943 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
944 blk_mq_process_rq_list(hctx);
945 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
946 }
947}
948
Jens Axboe506e9312014-05-07 10:26:44 -0600949/*
950 * It'd be great if the workqueue API had a way to pass
951 * in a mask and had some smarts for more clever placement.
952 * For now we just round-robin here, switching for every
953 * BLK_MQ_CPU_WORK_BATCH queued items.
954 */
955static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
956{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100957 if (hctx->queue->nr_hw_queues == 1)
958 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600959
960 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazic02ebfd2016-09-28 00:24:24 -0300961 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600962
963 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
964 if (next_cpu >= nr_cpu_ids)
965 next_cpu = cpumask_first(hctx->cpumask);
966
967 hctx->next_cpu = next_cpu;
968 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
969 }
970
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100971 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600972}
973
Jens Axboe320ae512013-10-24 09:20:05 +0100974void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
975{
Bart Van Assche5d1b25c2016-10-28 17:19:15 -0700976 if (unlikely(blk_mq_hctx_stopped(hctx) ||
977 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100978 return;
979
Jens Axboe1b792f22016-09-21 10:12:13 -0600980 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100981 int cpu = get_cpu();
982 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100983 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100984 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100985 return;
986 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600987
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100988 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600989 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100990
Jens Axboe27489a32016-08-24 15:54:25 -0600991 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100992}
993
Mike Snitzerb94ec292015-03-11 23:56:38 -0400994void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100995{
996 struct blk_mq_hw_ctx *hctx;
997 int i;
998
999 queue_for_each_hw_ctx(q, hctx, i) {
1000 if ((!blk_mq_hctx_has_pending(hctx) &&
1001 list_empty_careful(&hctx->dispatch)) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001002 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001003 continue;
1004
Mike Snitzerb94ec292015-03-11 23:56:38 -04001005 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001006 }
1007}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001008EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001009
Bart Van Asschefd001442016-10-28 17:19:37 -07001010/**
1011 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1012 * @q: request queue.
1013 *
1014 * The caller is responsible for serializing this function against
1015 * blk_mq_{start,stop}_hw_queue().
1016 */
1017bool blk_mq_queue_stopped(struct request_queue *q)
1018{
1019 struct blk_mq_hw_ctx *hctx;
1020 int i;
1021
1022 queue_for_each_hw_ctx(q, hctx, i)
1023 if (blk_mq_hctx_stopped(hctx))
1024 return true;
1025
1026 return false;
1027}
1028EXPORT_SYMBOL(blk_mq_queue_stopped);
1029
Jens Axboe320ae512013-10-24 09:20:05 +01001030void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1031{
Jens Axboe27489a32016-08-24 15:54:25 -06001032 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001033 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001034 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1035}
1036EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1037
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001038void blk_mq_stop_hw_queues(struct request_queue *q)
1039{
1040 struct blk_mq_hw_ctx *hctx;
1041 int i;
1042
1043 queue_for_each_hw_ctx(q, hctx, i)
1044 blk_mq_stop_hw_queue(hctx);
1045}
1046EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1047
Jens Axboe320ae512013-10-24 09:20:05 +01001048void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1049{
1050 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001051
Jens Axboe0ffbce82014-06-25 08:22:34 -06001052 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001053}
1054EXPORT_SYMBOL(blk_mq_start_hw_queue);
1055
Christoph Hellwig2f268552014-04-16 09:44:56 +02001056void blk_mq_start_hw_queues(struct request_queue *q)
1057{
1058 struct blk_mq_hw_ctx *hctx;
1059 int i;
1060
1061 queue_for_each_hw_ctx(q, hctx, i)
1062 blk_mq_start_hw_queue(hctx);
1063}
1064EXPORT_SYMBOL(blk_mq_start_hw_queues);
1065
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001066void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001067{
1068 struct blk_mq_hw_ctx *hctx;
1069 int i;
1070
1071 queue_for_each_hw_ctx(q, hctx, i) {
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001072 if (!blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001073 continue;
1074
1075 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001076 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001077 }
1078}
1079EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1080
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001081static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001082{
1083 struct blk_mq_hw_ctx *hctx;
1084
Jens Axboe27489a32016-08-24 15:54:25 -06001085 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001086
Jens Axboe320ae512013-10-24 09:20:05 +01001087 __blk_mq_run_hw_queue(hctx);
1088}
1089
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001090static void blk_mq_delay_work_fn(struct work_struct *work)
1091{
1092 struct blk_mq_hw_ctx *hctx;
1093
1094 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1095
1096 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1097 __blk_mq_run_hw_queue(hctx);
1098}
1099
1100void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1101{
Ming Lei19c66e52014-12-03 19:38:04 +08001102 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1103 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001104
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001105 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1106 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001107}
1108EXPORT_SYMBOL(blk_mq_delay_queue);
1109
Ming Leicfd0c552015-10-20 23:13:57 +08001110static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001111 struct request *rq,
1112 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001113{
Jens Axboee57690f2016-08-24 15:34:35 -06001114 struct blk_mq_ctx *ctx = rq->mq_ctx;
1115
Jens Axboe01b983c2013-11-19 18:59:10 -07001116 trace_block_rq_insert(hctx->queue, rq);
1117
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001118 if (at_head)
1119 list_add(&rq->queuelist, &ctx->rq_list);
1120 else
1121 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001122}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001123
Ming Leicfd0c552015-10-20 23:13:57 +08001124static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1125 struct request *rq, bool at_head)
1126{
1127 struct blk_mq_ctx *ctx = rq->mq_ctx;
1128
Jens Axboee57690f2016-08-24 15:34:35 -06001129 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001130 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001131}
1132
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001133void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001134 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001135{
Jens Axboee57690f2016-08-24 15:34:35 -06001136 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001137 struct request_queue *q = rq->q;
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001138 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001139
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001140 spin_lock(&ctx->lock);
1141 __blk_mq_insert_request(hctx, rq, at_head);
1142 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001143
Jens Axboe320ae512013-10-24 09:20:05 +01001144 if (run_queue)
1145 blk_mq_run_hw_queue(hctx, async);
1146}
1147
1148static void blk_mq_insert_requests(struct request_queue *q,
1149 struct blk_mq_ctx *ctx,
1150 struct list_head *list,
1151 int depth,
1152 bool from_schedule)
1153
1154{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001155 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001156
1157 trace_block_unplug(q, depth, !from_schedule);
1158
Jens Axboe320ae512013-10-24 09:20:05 +01001159 /*
1160 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1161 * offline now
1162 */
1163 spin_lock(&ctx->lock);
1164 while (!list_empty(list)) {
1165 struct request *rq;
1166
1167 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001168 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001169 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001170 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001171 }
Ming Leicfd0c552015-10-20 23:13:57 +08001172 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001173 spin_unlock(&ctx->lock);
1174
Jens Axboe320ae512013-10-24 09:20:05 +01001175 blk_mq_run_hw_queue(hctx, from_schedule);
1176}
1177
1178static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1179{
1180 struct request *rqa = container_of(a, struct request, queuelist);
1181 struct request *rqb = container_of(b, struct request, queuelist);
1182
1183 return !(rqa->mq_ctx < rqb->mq_ctx ||
1184 (rqa->mq_ctx == rqb->mq_ctx &&
1185 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1186}
1187
1188void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1189{
1190 struct blk_mq_ctx *this_ctx;
1191 struct request_queue *this_q;
1192 struct request *rq;
1193 LIST_HEAD(list);
1194 LIST_HEAD(ctx_list);
1195 unsigned int depth;
1196
1197 list_splice_init(&plug->mq_list, &list);
1198
1199 list_sort(NULL, &list, plug_ctx_cmp);
1200
1201 this_q = NULL;
1202 this_ctx = NULL;
1203 depth = 0;
1204
1205 while (!list_empty(&list)) {
1206 rq = list_entry_rq(list.next);
1207 list_del_init(&rq->queuelist);
1208 BUG_ON(!rq->q);
1209 if (rq->mq_ctx != this_ctx) {
1210 if (this_ctx) {
1211 blk_mq_insert_requests(this_q, this_ctx,
1212 &ctx_list, depth,
1213 from_schedule);
1214 }
1215
1216 this_ctx = rq->mq_ctx;
1217 this_q = rq->q;
1218 depth = 0;
1219 }
1220
1221 depth++;
1222 list_add_tail(&rq->queuelist, &ctx_list);
1223 }
1224
1225 /*
1226 * If 'this_ctx' is set, we know we have entries to complete
1227 * on 'ctx_list'. Do those.
1228 */
1229 if (this_ctx) {
1230 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1231 from_schedule);
1232 }
1233}
1234
1235static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1236{
1237 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001238
Michael Callahana21f2a32016-05-03 11:12:49 -04001239 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001240}
1241
Jens Axboe274a5842014-08-15 12:44:08 -06001242static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1243{
1244 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1245 !blk_queue_nomerges(hctx->queue);
1246}
1247
Jens Axboe07068d52014-05-22 10:40:51 -06001248static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1249 struct blk_mq_ctx *ctx,
1250 struct request *rq, struct bio *bio)
1251{
Ming Leie18378a2015-10-20 23:13:54 +08001252 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001253 blk_mq_bio_to_request(rq, bio);
1254 spin_lock(&ctx->lock);
1255insert_rq:
1256 __blk_mq_insert_request(hctx, rq, false);
1257 spin_unlock(&ctx->lock);
1258 return false;
1259 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001260 struct request_queue *q = hctx->queue;
1261
Jens Axboe07068d52014-05-22 10:40:51 -06001262 spin_lock(&ctx->lock);
1263 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1264 blk_mq_bio_to_request(rq, bio);
1265 goto insert_rq;
1266 }
1267
1268 spin_unlock(&ctx->lock);
1269 __blk_mq_free_request(hctx, ctx, rq);
1270 return true;
1271 }
1272}
1273
Jens Axboe07068d52014-05-22 10:40:51 -06001274static struct request *blk_mq_map_request(struct request_queue *q,
1275 struct bio *bio,
Jens Axboe2552e3f2016-10-27 19:03:55 -06001276 struct blk_mq_alloc_data *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001277{
1278 struct blk_mq_hw_ctx *hctx;
1279 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001280 struct request *rq;
Jens Axboe320ae512013-10-24 09:20:05 +01001281
Dan Williams3ef28e82015-10-21 13:20:12 -04001282 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001283 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001284 hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001285
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001286 trace_block_getrq(q, bio, bio->bi_opf);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001287 blk_mq_set_alloc_data(data, q, 0, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001288 rq = __blk_mq_alloc_request(data, bio->bi_opf);
Jens Axboe320ae512013-10-24 09:20:05 +01001289
Jens Axboe7dd2fb62016-10-27 09:49:19 -06001290 data->hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001291 return rq;
1292}
1293
Jens Axboe066a4a72016-11-11 12:24:46 -07001294static void blk_mq_try_issue_directly(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001295{
1296 int ret;
1297 struct request_queue *q = rq->q;
Jens Axboe066a4a72016-11-11 12:24:46 -07001298 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, rq->mq_ctx->cpu);
Shaohua Lif984df12015-05-08 10:51:32 -07001299 struct blk_mq_queue_data bd = {
1300 .rq = rq,
1301 .list = NULL,
1302 .last = 1
1303 };
Jens Axboe7b371632015-11-05 10:41:40 -07001304 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001305
Bart Van Assche2253efc2016-10-28 17:20:02 -07001306 if (blk_mq_hctx_stopped(hctx))
1307 goto insert;
1308
Shaohua Lif984df12015-05-08 10:51:32 -07001309 /*
1310 * For OK queue, we are done. For error, kill it. Any other
1311 * error (busy), just add it to our list as we previously
1312 * would have done
1313 */
1314 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001315 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1316 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001317 return;
Shaohua Lif984df12015-05-08 10:51:32 -07001318 }
Jens Axboe7b371632015-11-05 10:41:40 -07001319
1320 __blk_mq_requeue_request(rq);
1321
1322 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1323 *cookie = BLK_QC_T_NONE;
1324 rq->errors = -EIO;
1325 blk_mq_end_request(rq, rq->errors);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001326 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001327 }
1328
Bart Van Assche2253efc2016-10-28 17:20:02 -07001329insert:
1330 blk_mq_insert_request(rq, false, true, true);
Shaohua Lif984df12015-05-08 10:51:32 -07001331}
1332
Jens Axboe07068d52014-05-22 10:40:51 -06001333/*
1334 * Multiple hardware queue variant. This will not use per-process plugs,
1335 * but will attempt to bypass the hctx queueing if we can go straight to
1336 * hardware for SYNC IO.
1337 */
Jens Axboedece1632015-11-05 10:41:16 -07001338static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001339{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001340 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001341 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001342 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001343 struct request *rq;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001344 unsigned int request_count = 0, srcu_idx;
Shaohua Lif984df12015-05-08 10:51:32 -07001345 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001346 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001347 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001348 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001349
1350 blk_queue_bounce(q, &bio);
1351
1352 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001353 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001354 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001355 }
1356
Kent Overstreet54efd502015-04-23 22:37:18 -07001357 blk_queue_split(q, &bio, q->bio_split);
1358
Omar Sandoval87c279e2016-06-01 22:18:48 -07001359 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1360 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1361 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001362
Jens Axboe87760e52016-11-09 12:38:14 -07001363 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1364
Jens Axboe07068d52014-05-22 10:40:51 -06001365 rq = blk_mq_map_request(q, bio, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001366 if (unlikely(!rq)) {
1367 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001368 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001369 }
1370
1371 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe07068d52014-05-22 10:40:51 -06001372
Jens Axboe7b371632015-11-05 10:41:40 -07001373 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001374
1375 if (unlikely(is_flush_fua)) {
1376 blk_mq_bio_to_request(rq, bio);
1377 blk_insert_flush(rq);
1378 goto run_queue;
1379 }
1380
Shaohua Lif984df12015-05-08 10:51:32 -07001381 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001382 /*
1383 * If the driver supports defer issued based on 'last', then
1384 * queue it up like normal since we can potentially save some
1385 * CPU this way.
1386 */
Shaohua Lif984df12015-05-08 10:51:32 -07001387 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1388 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1389 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001390
1391 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001392
1393 /*
Bart Van Assche6a83e742016-11-02 10:09:51 -06001394 * We do limited plugging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001395 * Otherwise the existing request in the plug list will be
1396 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001397 */
Shaohua Lif984df12015-05-08 10:51:32 -07001398 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001399 /*
1400 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001401 * happens, same_queue_rq is invalid and plug list is
1402 * empty
1403 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001404 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1405 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001406 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001407 }
Shaohua Lif984df12015-05-08 10:51:32 -07001408 list_add_tail(&rq->queuelist, &plug->mq_list);
1409 } else /* is_sync */
1410 old_rq = rq;
1411 blk_mq_put_ctx(data.ctx);
1412 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001413 goto done;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001414
1415 if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) {
1416 rcu_read_lock();
Jens Axboe066a4a72016-11-11 12:24:46 -07001417 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001418 rcu_read_unlock();
1419 } else {
1420 srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu);
Jens Axboe066a4a72016-11-11 12:24:46 -07001421 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001422 srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx);
1423 }
Jens Axboe7b371632015-11-05 10:41:40 -07001424 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001425 }
1426
1427 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1428 /*
1429 * For a SYNC request, send it to the hardware immediately. For
1430 * an ASYNC request, just ensure that we run it later on. The
1431 * latter allows for merging opportunities and more efficient
1432 * dispatching.
1433 */
1434run_queue:
1435 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1436 }
Jens Axboe07068d52014-05-22 10:40:51 -06001437 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001438done:
1439 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001440}
1441
1442/*
1443 * Single hardware queue variant. This will attempt to use any per-process
1444 * plug for merging and IO deferral.
1445 */
Jens Axboedece1632015-11-05 10:41:16 -07001446static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001447{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001448 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001449 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001450 struct blk_plug *plug;
1451 unsigned int request_count = 0;
Jens Axboe2552e3f2016-10-27 19:03:55 -06001452 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001453 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001454 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001455 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001456
Jens Axboe07068d52014-05-22 10:40:51 -06001457 blk_queue_bounce(q, &bio);
1458
1459 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001460 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001461 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001462 }
1463
Kent Overstreet54efd502015-04-23 22:37:18 -07001464 blk_queue_split(q, &bio, q->bio_split);
1465
Omar Sandoval87c279e2016-06-01 22:18:48 -07001466 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1467 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1468 return BLK_QC_T_NONE;
1469 } else
1470 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001471
Jens Axboe87760e52016-11-09 12:38:14 -07001472 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1473
Jens Axboe07068d52014-05-22 10:40:51 -06001474 rq = blk_mq_map_request(q, bio, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001475 if (unlikely(!rq)) {
1476 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001477 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001478 }
1479
1480 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe320ae512013-10-24 09:20:05 +01001481
Jens Axboe7b371632015-11-05 10:41:40 -07001482 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001483
1484 if (unlikely(is_flush_fua)) {
1485 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001486 blk_insert_flush(rq);
1487 goto run_queue;
1488 }
1489
1490 /*
1491 * A task plug currently exists. Since this is completely lockless,
1492 * utilize that to temporarily store requests until the task is
1493 * either done or scheduled away.
1494 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001495 plug = current->plug;
1496 if (plug) {
Shaohua Li600271d2016-11-03 17:03:54 -07001497 struct request *last = NULL;
1498
Jeff Moyere6c44382015-05-08 10:51:30 -07001499 blk_mq_bio_to_request(rq, bio);
Ming Lei676d0602015-10-20 23:13:56 +08001500 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001501 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001502 else
1503 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001504
1505 blk_mq_put_ctx(data.ctx);
1506
Shaohua Li600271d2016-11-03 17:03:54 -07001507 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1508 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001509 blk_flush_plug_list(plug, false);
1510 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001511 }
Jens Axboeb094f892015-11-20 20:29:45 -07001512
Jeff Moyere6c44382015-05-08 10:51:30 -07001513 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001514 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001515 }
1516
Jens Axboe07068d52014-05-22 10:40:51 -06001517 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1518 /*
1519 * For a SYNC request, send it to the hardware immediately. For
1520 * an ASYNC request, just ensure that we run it later on. The
1521 * latter allows for merging opportunities and more efficient
1522 * dispatching.
1523 */
1524run_queue:
1525 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001526 }
1527
Jens Axboe07068d52014-05-22 10:40:51 -06001528 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001529 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001530}
1531
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001532static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1533 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001534{
1535 struct page *page;
1536
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001537 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001538 int i;
1539
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001540 for (i = 0; i < tags->nr_tags; i++) {
1541 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001542 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001543 set->ops->exit_request(set->driver_data, tags->rqs[i],
1544 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001545 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001546 }
1547 }
1548
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001549 while (!list_empty(&tags->page_list)) {
1550 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001551 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001552 /*
1553 * Remove kmemleak object previously allocated in
1554 * blk_mq_init_rq_map().
1555 */
1556 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001557 __free_pages(page, page->private);
1558 }
1559
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001560 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001561
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001562 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001563}
1564
1565static size_t order_to_size(unsigned int order)
1566{
Ming Lei4ca08502014-04-19 18:00:18 +08001567 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001568}
1569
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001570static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1571 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001572{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001573 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001574 unsigned int i, j, entries_per_page, max_order = 4;
1575 size_t rq_size, left;
1576
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001577 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001578 set->numa_node,
1579 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001580 if (!tags)
1581 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001582
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001583 INIT_LIST_HEAD(&tags->page_list);
1584
Jens Axboea5164402014-09-10 09:02:03 -06001585 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1586 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1587 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001588 if (!tags->rqs) {
1589 blk_mq_free_tags(tags);
1590 return NULL;
1591 }
Jens Axboe320ae512013-10-24 09:20:05 +01001592
1593 /*
1594 * rq_size is the size of the request plus driver payload, rounded
1595 * to the cacheline size
1596 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001597 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001598 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001599 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001600
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001601 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001602 int this_order = max_order;
1603 struct page *page;
1604 int to_do;
1605 void *p;
1606
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001607 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001608 this_order--;
1609
1610 do {
Jens Axboea5164402014-09-10 09:02:03 -06001611 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001612 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001613 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001614 if (page)
1615 break;
1616 if (!this_order--)
1617 break;
1618 if (order_to_size(this_order) < rq_size)
1619 break;
1620 } while (1);
1621
1622 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001623 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001624
1625 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001626 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001627
1628 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001629 /*
1630 * Allow kmemleak to scan these pages as they contain pointers
1631 * to additional allocations like via ops->init_request().
1632 */
1633 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001634 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001635 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001636 left -= to_do * rq_size;
1637 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001638 tags->rqs[i] = p;
1639 if (set->ops->init_request) {
1640 if (set->ops->init_request(set->driver_data,
1641 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001642 set->numa_node)) {
1643 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001644 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001645 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001646 }
1647
Jens Axboe320ae512013-10-24 09:20:05 +01001648 p += rq_size;
1649 i++;
1650 }
1651 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001652 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001653
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001654fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001655 blk_mq_free_rq_map(set, tags, hctx_idx);
1656 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001657}
1658
Jens Axboee57690f2016-08-24 15:34:35 -06001659/*
1660 * 'cpu' is going away. splice any existing rq_list entries from this
1661 * software queue to the hw queue dispatch list, and ensure that it
1662 * gets run.
1663 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001664static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001665{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001666 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001667 struct blk_mq_ctx *ctx;
1668 LIST_HEAD(tmp);
1669
Thomas Gleixner9467f852016-09-22 08:05:17 -06001670 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001671 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001672
1673 spin_lock(&ctx->lock);
1674 if (!list_empty(&ctx->rq_list)) {
1675 list_splice_init(&ctx->rq_list, &tmp);
1676 blk_mq_hctx_clear_pending(hctx, ctx);
1677 }
1678 spin_unlock(&ctx->lock);
1679
1680 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001681 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001682
Jens Axboee57690f2016-08-24 15:34:35 -06001683 spin_lock(&hctx->lock);
1684 list_splice_tail_init(&tmp, &hctx->dispatch);
1685 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001686
1687 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001688 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001689}
1690
Thomas Gleixner9467f852016-09-22 08:05:17 -06001691static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001692{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001693 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1694 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001695}
1696
Ming Leic3b4afc2015-06-04 22:25:04 +08001697/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001698static void blk_mq_exit_hctx(struct request_queue *q,
1699 struct blk_mq_tag_set *set,
1700 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1701{
Ming Leif70ced02014-09-25 23:23:47 +08001702 unsigned flush_start_tag = set->queue_depth;
1703
Ming Lei08e98fc2014-09-25 23:23:38 +08001704 blk_mq_tag_idle(hctx);
1705
Ming Leif70ced02014-09-25 23:23:47 +08001706 if (set->ops->exit_request)
1707 set->ops->exit_request(set->driver_data,
1708 hctx->fq->flush_rq, hctx_idx,
1709 flush_start_tag + hctx_idx);
1710
Ming Lei08e98fc2014-09-25 23:23:38 +08001711 if (set->ops->exit_hctx)
1712 set->ops->exit_hctx(hctx, hctx_idx);
1713
Bart Van Assche6a83e742016-11-02 10:09:51 -06001714 if (hctx->flags & BLK_MQ_F_BLOCKING)
1715 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1716
Thomas Gleixner9467f852016-09-22 08:05:17 -06001717 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001718 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001719 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001720}
1721
Ming Lei624dbe42014-05-27 23:35:13 +08001722static void blk_mq_exit_hw_queues(struct request_queue *q,
1723 struct blk_mq_tag_set *set, int nr_queue)
1724{
1725 struct blk_mq_hw_ctx *hctx;
1726 unsigned int i;
1727
1728 queue_for_each_hw_ctx(q, hctx, i) {
1729 if (i == nr_queue)
1730 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001731 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001732 }
Ming Lei624dbe42014-05-27 23:35:13 +08001733}
1734
1735static void blk_mq_free_hw_queues(struct request_queue *q,
1736 struct blk_mq_tag_set *set)
1737{
1738 struct blk_mq_hw_ctx *hctx;
1739 unsigned int i;
1740
Ming Leie09aae72015-01-29 20:17:27 +08001741 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001742 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001743}
1744
Ming Lei08e98fc2014-09-25 23:23:38 +08001745static int blk_mq_init_hctx(struct request_queue *q,
1746 struct blk_mq_tag_set *set,
1747 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1748{
1749 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001750 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001751
1752 node = hctx->numa_node;
1753 if (node == NUMA_NO_NODE)
1754 node = hctx->numa_node = set->numa_node;
1755
Jens Axboe27489a32016-08-24 15:54:25 -06001756 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001757 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1758 spin_lock_init(&hctx->lock);
1759 INIT_LIST_HEAD(&hctx->dispatch);
1760 hctx->queue = q;
1761 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001762 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001763
Thomas Gleixner9467f852016-09-22 08:05:17 -06001764 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001765
1766 hctx->tags = set->tags[hctx_idx];
1767
1768 /*
1769 * Allocate space for all possible cpus to avoid allocation at
1770 * runtime
1771 */
1772 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1773 GFP_KERNEL, node);
1774 if (!hctx->ctxs)
1775 goto unregister_cpu_notifier;
1776
Omar Sandoval88459642016-09-17 08:38:44 -06001777 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1778 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001779 goto free_ctxs;
1780
1781 hctx->nr_ctx = 0;
1782
1783 if (set->ops->init_hctx &&
1784 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1785 goto free_bitmap;
1786
Ming Leif70ced02014-09-25 23:23:47 +08001787 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1788 if (!hctx->fq)
1789 goto exit_hctx;
1790
1791 if (set->ops->init_request &&
1792 set->ops->init_request(set->driver_data,
1793 hctx->fq->flush_rq, hctx_idx,
1794 flush_start_tag + hctx_idx, node))
1795 goto free_fq;
1796
Bart Van Assche6a83e742016-11-02 10:09:51 -06001797 if (hctx->flags & BLK_MQ_F_BLOCKING)
1798 init_srcu_struct(&hctx->queue_rq_srcu);
1799
Ming Lei08e98fc2014-09-25 23:23:38 +08001800 return 0;
1801
Ming Leif70ced02014-09-25 23:23:47 +08001802 free_fq:
1803 kfree(hctx->fq);
1804 exit_hctx:
1805 if (set->ops->exit_hctx)
1806 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001807 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001808 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001809 free_ctxs:
1810 kfree(hctx->ctxs);
1811 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001812 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001813 return -1;
1814}
1815
Jens Axboe320ae512013-10-24 09:20:05 +01001816static void blk_mq_init_cpu_queues(struct request_queue *q,
1817 unsigned int nr_hw_queues)
1818{
1819 unsigned int i;
1820
1821 for_each_possible_cpu(i) {
1822 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1823 struct blk_mq_hw_ctx *hctx;
1824
1825 memset(__ctx, 0, sizeof(*__ctx));
1826 __ctx->cpu = i;
1827 spin_lock_init(&__ctx->lock);
1828 INIT_LIST_HEAD(&__ctx->rq_list);
1829 __ctx->queue = q;
Jens Axboecf43e6b2016-11-07 21:32:37 -07001830 blk_stat_init(&__ctx->stat[BLK_STAT_READ]);
1831 blk_stat_init(&__ctx->stat[BLK_STAT_WRITE]);
Jens Axboe320ae512013-10-24 09:20:05 +01001832
1833 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001834 if (!cpu_online(i))
1835 continue;
1836
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001837 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001838
Jens Axboe320ae512013-10-24 09:20:05 +01001839 /*
1840 * Set local node, IFF we have more than one hw queue. If
1841 * not, we remain on the home node of the device
1842 */
1843 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301844 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001845 }
1846}
1847
Akinobu Mita57783222015-09-27 02:09:23 +09001848static void blk_mq_map_swqueue(struct request_queue *q,
1849 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001850{
1851 unsigned int i;
1852 struct blk_mq_hw_ctx *hctx;
1853 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001854 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001855
Akinobu Mita60de0742015-09-27 02:09:25 +09001856 /*
1857 * Avoid others reading imcomplete hctx->cpumask through sysfs
1858 */
1859 mutex_lock(&q->sysfs_lock);
1860
Jens Axboe320ae512013-10-24 09:20:05 +01001861 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001862 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001863 hctx->nr_ctx = 0;
1864 }
1865
1866 /*
1867 * Map software to hardware queues
1868 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001869 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001870 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001871 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001872 continue;
1873
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001874 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001875 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001876
Jens Axboee4043dc2014-04-09 10:18:23 -06001877 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001878 ctx->index_hw = hctx->nr_ctx;
1879 hctx->ctxs[hctx->nr_ctx++] = ctx;
1880 }
Jens Axboe506e9312014-05-07 10:26:44 -06001881
Akinobu Mita60de0742015-09-27 02:09:25 +09001882 mutex_unlock(&q->sysfs_lock);
1883
Jens Axboe506e9312014-05-07 10:26:44 -06001884 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001885 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001886 * If no software queues are mapped to this hardware queue,
1887 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001888 */
1889 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001890 if (set->tags[i]) {
1891 blk_mq_free_rq_map(set, set->tags[i], i);
1892 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001893 }
Ming Lei2a34c082015-04-21 10:00:20 +08001894 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001895 continue;
1896 }
1897
Ming Lei2a34c082015-04-21 10:00:20 +08001898 /* unmapped hw queue can be remapped after CPU topo changed */
1899 if (!set->tags[i])
1900 set->tags[i] = blk_mq_init_rq_map(set, i);
1901 hctx->tags = set->tags[i];
1902 WARN_ON(!hctx->tags);
1903
Jens Axboe484b4062014-05-21 14:01:15 -06001904 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001905 * Set the map size to the number of mapped software queues.
1906 * This is more accurate and more efficient than looping
1907 * over all possibly mapped software queues.
1908 */
Omar Sandoval88459642016-09-17 08:38:44 -06001909 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06001910
1911 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001912 * Initialize batch roundrobin counts
1913 */
Jens Axboe506e9312014-05-07 10:26:44 -06001914 hctx->next_cpu = cpumask_first(hctx->cpumask);
1915 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1916 }
Jens Axboe320ae512013-10-24 09:20:05 +01001917}
1918
Jeff Moyer2404e602015-11-03 10:40:06 -05001919static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001920{
1921 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001922 int i;
1923
Jeff Moyer2404e602015-11-03 10:40:06 -05001924 queue_for_each_hw_ctx(q, hctx, i) {
1925 if (shared)
1926 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1927 else
1928 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1929 }
1930}
1931
1932static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1933{
1934 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001935
1936 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1937 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001938 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001939 blk_mq_unfreeze_queue(q);
1940 }
1941}
1942
1943static void blk_mq_del_queue_tag_set(struct request_queue *q)
1944{
1945 struct blk_mq_tag_set *set = q->tag_set;
1946
Jens Axboe0d2602c2014-05-13 15:10:52 -06001947 mutex_lock(&set->tag_list_lock);
1948 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001949 if (list_is_singular(&set->tag_list)) {
1950 /* just transitioned to unshared */
1951 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1952 /* update existing queue */
1953 blk_mq_update_tag_set_depth(set, false);
1954 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001955 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001956}
1957
1958static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1959 struct request_queue *q)
1960{
1961 q->tag_set = set;
1962
1963 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001964
1965 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1966 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1967 set->flags |= BLK_MQ_F_TAG_SHARED;
1968 /* update existing queue */
1969 blk_mq_update_tag_set_depth(set, true);
1970 }
1971 if (set->flags & BLK_MQ_F_TAG_SHARED)
1972 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001973 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001974
Jens Axboe0d2602c2014-05-13 15:10:52 -06001975 mutex_unlock(&set->tag_list_lock);
1976}
1977
Ming Leie09aae72015-01-29 20:17:27 +08001978/*
1979 * It is the actual release handler for mq, but we do it from
1980 * request queue's release handler for avoiding use-after-free
1981 * and headache because q->mq_kobj shouldn't have been introduced,
1982 * but we can't group ctx/kctx kobj without it.
1983 */
1984void blk_mq_release(struct request_queue *q)
1985{
1986 struct blk_mq_hw_ctx *hctx;
1987 unsigned int i;
1988
1989 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001990 queue_for_each_hw_ctx(q, hctx, i) {
1991 if (!hctx)
1992 continue;
1993 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08001994 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08001995 }
Ming Leie09aae72015-01-29 20:17:27 +08001996
Akinobu Mitaa723bab2015-09-27 02:09:21 +09001997 q->mq_map = NULL;
1998
Ming Leie09aae72015-01-29 20:17:27 +08001999 kfree(q->queue_hw_ctx);
2000
2001 /* ctx kobj stays in queue_ctx */
2002 free_percpu(q->queue_ctx);
2003}
2004
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002005struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01002006{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002007 struct request_queue *uninit_q, *q;
2008
2009 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
2010 if (!uninit_q)
2011 return ERR_PTR(-ENOMEM);
2012
2013 q = blk_mq_init_allocated_queue(set, uninit_q);
2014 if (IS_ERR(q))
2015 blk_cleanup_queue(uninit_q);
2016
2017 return q;
2018}
2019EXPORT_SYMBOL(blk_mq_init_queue);
2020
Keith Busch868f2f02015-12-17 17:08:14 -07002021static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2022 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002023{
Keith Busch868f2f02015-12-17 17:08:14 -07002024 int i, j;
2025 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002026
Keith Busch868f2f02015-12-17 17:08:14 -07002027 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002028 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002029 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002030
Keith Busch868f2f02015-12-17 17:08:14 -07002031 if (hctxs[i])
2032 continue;
2033
2034 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002035 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2036 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002037 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002038 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002039
Jens Axboea86073e2014-10-13 15:41:54 -06002040 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002041 node)) {
2042 kfree(hctxs[i]);
2043 hctxs[i] = NULL;
2044 break;
2045 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002046
Jens Axboe0d2602c2014-05-13 15:10:52 -06002047 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002048 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002049 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002050
2051 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2052 free_cpumask_var(hctxs[i]->cpumask);
2053 kfree(hctxs[i]);
2054 hctxs[i] = NULL;
2055 break;
2056 }
2057 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002058 }
Keith Busch868f2f02015-12-17 17:08:14 -07002059 for (j = i; j < q->nr_hw_queues; j++) {
2060 struct blk_mq_hw_ctx *hctx = hctxs[j];
2061
2062 if (hctx) {
2063 if (hctx->tags) {
2064 blk_mq_free_rq_map(set, hctx->tags, j);
2065 set->tags[j] = NULL;
2066 }
2067 blk_mq_exit_hctx(q, set, hctx, j);
2068 free_cpumask_var(hctx->cpumask);
2069 kobject_put(&hctx->kobj);
2070 kfree(hctx->ctxs);
2071 kfree(hctx);
2072 hctxs[j] = NULL;
2073
2074 }
2075 }
2076 q->nr_hw_queues = i;
2077 blk_mq_sysfs_register(q);
2078}
2079
2080struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2081 struct request_queue *q)
2082{
Ming Lei66841672016-02-12 15:27:00 +08002083 /* mark the queue as mq asap */
2084 q->mq_ops = set->ops;
2085
Keith Busch868f2f02015-12-17 17:08:14 -07002086 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2087 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002088 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002089
2090 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2091 GFP_KERNEL, set->numa_node);
2092 if (!q->queue_hw_ctx)
2093 goto err_percpu;
2094
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002095 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002096
2097 blk_mq_realloc_hw_ctxs(set, q);
2098 if (!q->nr_hw_queues)
2099 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002100
Christoph Hellwig287922eb2015-10-30 20:57:30 +08002101 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002102 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002103
2104 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002105
Jens Axboe94eddfb2013-11-19 09:25:07 -07002106 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002107
Jens Axboe05f1dd52014-05-29 09:53:32 -06002108 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2109 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2110
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002111 q->sg_reserved_size = INT_MAX;
2112
Mike Snitzer28494502016-09-14 13:28:30 -04002113 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002114 INIT_LIST_HEAD(&q->requeue_list);
2115 spin_lock_init(&q->requeue_lock);
2116
Jens Axboe07068d52014-05-22 10:40:51 -06002117 if (q->nr_hw_queues > 1)
2118 blk_queue_make_request(q, blk_mq_make_request);
2119 else
2120 blk_queue_make_request(q, blk_sq_make_request);
2121
Jens Axboeeba71762014-05-20 15:17:27 -06002122 /*
2123 * Do this after blk_queue_make_request() overrides it...
2124 */
2125 q->nr_requests = set->queue_depth;
2126
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002127 if (set->ops->complete)
2128 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002129
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002130 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002131
Akinobu Mita57783222015-09-27 02:09:23 +09002132 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002133 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002134
Jens Axboe320ae512013-10-24 09:20:05 +01002135 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002136 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002137 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002138
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002139 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002140 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002141
Jens Axboe320ae512013-10-24 09:20:05 +01002142 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002143
Jens Axboe320ae512013-10-24 09:20:05 +01002144err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002145 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002146err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002147 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002148err_exit:
2149 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002150 return ERR_PTR(-ENOMEM);
2151}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002152EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002153
2154void blk_mq_free_queue(struct request_queue *q)
2155{
Ming Lei624dbe42014-05-27 23:35:13 +08002156 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002157
Akinobu Mita0e626362015-09-27 02:09:22 +09002158 mutex_lock(&all_q_mutex);
2159 list_del_init(&q->all_q_node);
2160 mutex_unlock(&all_q_mutex);
2161
Jens Axboe87760e52016-11-09 12:38:14 -07002162 wbt_exit(q);
2163
Jens Axboe0d2602c2014-05-13 15:10:52 -06002164 blk_mq_del_queue_tag_set(q);
2165
Ming Lei624dbe42014-05-27 23:35:13 +08002166 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2167 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002168}
Jens Axboe320ae512013-10-24 09:20:05 +01002169
2170/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002171static void blk_mq_queue_reinit(struct request_queue *q,
2172 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002173{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002174 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002175
Jens Axboe67aec142014-05-30 08:25:36 -06002176 blk_mq_sysfs_unregister(q);
2177
Jens Axboe320ae512013-10-24 09:20:05 +01002178 /*
2179 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2180 * we should change hctx numa_node according to new topology (this
2181 * involves free and re-allocate memory, worthy doing?)
2182 */
2183
Akinobu Mita57783222015-09-27 02:09:23 +09002184 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002185
Jens Axboe67aec142014-05-30 08:25:36 -06002186 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002187}
2188
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002189/*
2190 * New online cpumask which is going to be set in this hotplug event.
2191 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2192 * one-by-one and dynamically allocating this could result in a failure.
2193 */
2194static struct cpumask cpuhp_online_new;
2195
2196static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002197{
2198 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002199
2200 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002201 /*
2202 * We need to freeze and reinit all existing queues. Freezing
2203 * involves synchronous wait for an RCU grace period and doing it
2204 * one by one may take a long time. Start freezing all queues in
2205 * one swoop and then wait for the completions so that freezing can
2206 * take place in parallel.
2207 */
2208 list_for_each_entry(q, &all_q_list, all_q_node)
2209 blk_mq_freeze_queue_start(q);
Ming Leif054b562015-04-21 10:00:19 +08002210 list_for_each_entry(q, &all_q_list, all_q_node) {
Tejun Heof3af0202014-11-04 13:52:27 -05002211 blk_mq_freeze_queue_wait(q);
2212
Ming Leif054b562015-04-21 10:00:19 +08002213 /*
2214 * timeout handler can't touch hw queue during the
2215 * reinitialization
2216 */
2217 del_timer_sync(&q->timeout);
2218 }
2219
Jens Axboe320ae512013-10-24 09:20:05 +01002220 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002221 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002222
2223 list_for_each_entry(q, &all_q_list, all_q_node)
2224 blk_mq_unfreeze_queue(q);
2225
Jens Axboe320ae512013-10-24 09:20:05 +01002226 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002227}
2228
2229static int blk_mq_queue_reinit_dead(unsigned int cpu)
2230{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002231 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002232 blk_mq_queue_reinit_work();
2233 return 0;
2234}
2235
2236/*
2237 * Before hotadded cpu starts handling requests, new mappings must be
2238 * established. Otherwise, these requests in hw queue might never be
2239 * dispatched.
2240 *
2241 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2242 * for CPU0, and ctx1 for CPU1).
2243 *
2244 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2245 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2246 *
2247 * And then while running hw queue, flush_busy_ctxs() finds bit0 is set in
2248 * pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2249 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list
2250 * is ignored.
2251 */
2252static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2253{
2254 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2255 cpumask_set_cpu(cpu, &cpuhp_online_new);
2256 blk_mq_queue_reinit_work();
2257 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002258}
2259
Jens Axboea5164402014-09-10 09:02:03 -06002260static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2261{
2262 int i;
2263
2264 for (i = 0; i < set->nr_hw_queues; i++) {
2265 set->tags[i] = blk_mq_init_rq_map(set, i);
2266 if (!set->tags[i])
2267 goto out_unwind;
2268 }
2269
2270 return 0;
2271
2272out_unwind:
2273 while (--i >= 0)
2274 blk_mq_free_rq_map(set, set->tags[i], i);
2275
Jens Axboea5164402014-09-10 09:02:03 -06002276 return -ENOMEM;
2277}
2278
2279/*
2280 * Allocate the request maps associated with this tag_set. Note that this
2281 * may reduce the depth asked for, if memory is tight. set->queue_depth
2282 * will be updated to reflect the allocated depth.
2283 */
2284static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2285{
2286 unsigned int depth;
2287 int err;
2288
2289 depth = set->queue_depth;
2290 do {
2291 err = __blk_mq_alloc_rq_maps(set);
2292 if (!err)
2293 break;
2294
2295 set->queue_depth >>= 1;
2296 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2297 err = -ENOMEM;
2298 break;
2299 }
2300 } while (set->queue_depth);
2301
2302 if (!set->queue_depth || err) {
2303 pr_err("blk-mq: failed to allocate request map\n");
2304 return -ENOMEM;
2305 }
2306
2307 if (depth != set->queue_depth)
2308 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2309 depth, set->queue_depth);
2310
2311 return 0;
2312}
2313
Jens Axboea4391c62014-06-05 15:21:56 -06002314/*
2315 * Alloc a tag set to be associated with one or more request queues.
2316 * May fail with EINVAL for various error conditions. May adjust the
2317 * requested depth down, if if it too large. In that case, the set
2318 * value will be stored in set->queue_depth.
2319 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002320int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2321{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002322 int ret;
2323
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002324 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2325
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002326 if (!set->nr_hw_queues)
2327 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002328 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002329 return -EINVAL;
2330 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2331 return -EINVAL;
2332
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002333 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002334 return -EINVAL;
2335
Jens Axboea4391c62014-06-05 15:21:56 -06002336 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2337 pr_info("blk-mq: reduced tag depth to %u\n",
2338 BLK_MQ_MAX_DEPTH);
2339 set->queue_depth = BLK_MQ_MAX_DEPTH;
2340 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002341
Shaohua Li6637fad2014-11-30 16:00:58 -08002342 /*
2343 * If a crashdump is active, then we are potentially in a very
2344 * memory constrained environment. Limit us to 1 queue and
2345 * 64 tags to prevent using too much memory.
2346 */
2347 if (is_kdump_kernel()) {
2348 set->nr_hw_queues = 1;
2349 set->queue_depth = min(64U, set->queue_depth);
2350 }
Keith Busch868f2f02015-12-17 17:08:14 -07002351 /*
2352 * There is no use for more h/w queues than cpus.
2353 */
2354 if (set->nr_hw_queues > nr_cpu_ids)
2355 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002356
Keith Busch868f2f02015-12-17 17:08:14 -07002357 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002358 GFP_KERNEL, set->numa_node);
2359 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002360 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002361
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002362 ret = -ENOMEM;
2363 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2364 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002365 if (!set->mq_map)
2366 goto out_free_tags;
2367
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002368 if (set->ops->map_queues)
2369 ret = set->ops->map_queues(set);
2370 else
2371 ret = blk_mq_map_queues(set);
2372 if (ret)
2373 goto out_free_mq_map;
2374
2375 ret = blk_mq_alloc_rq_maps(set);
2376 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002377 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002378
Jens Axboe0d2602c2014-05-13 15:10:52 -06002379 mutex_init(&set->tag_list_lock);
2380 INIT_LIST_HEAD(&set->tag_list);
2381
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002382 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002383
2384out_free_mq_map:
2385 kfree(set->mq_map);
2386 set->mq_map = NULL;
2387out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002388 kfree(set->tags);
2389 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002390 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002391}
2392EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2393
2394void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2395{
2396 int i;
2397
Keith Busch868f2f02015-12-17 17:08:14 -07002398 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002399 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002400 blk_mq_free_rq_map(set, set->tags[i], i);
2401 }
2402
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002403 kfree(set->mq_map);
2404 set->mq_map = NULL;
2405
Ming Lei981bd182014-04-24 00:07:34 +08002406 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002407 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002408}
2409EXPORT_SYMBOL(blk_mq_free_tag_set);
2410
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002411int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2412{
2413 struct blk_mq_tag_set *set = q->tag_set;
2414 struct blk_mq_hw_ctx *hctx;
2415 int i, ret;
2416
2417 if (!set || nr > set->queue_depth)
2418 return -EINVAL;
2419
2420 ret = 0;
2421 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002422 if (!hctx->tags)
2423 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002424 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2425 if (ret)
2426 break;
2427 }
2428
2429 if (!ret)
2430 q->nr_requests = nr;
2431
2432 return ret;
2433}
2434
Keith Busch868f2f02015-12-17 17:08:14 -07002435void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2436{
2437 struct request_queue *q;
2438
2439 if (nr_hw_queues > nr_cpu_ids)
2440 nr_hw_queues = nr_cpu_ids;
2441 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2442 return;
2443
2444 list_for_each_entry(q, &set->tag_list, tag_set_list)
2445 blk_mq_freeze_queue(q);
2446
2447 set->nr_hw_queues = nr_hw_queues;
2448 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2449 blk_mq_realloc_hw_ctxs(set, q);
2450
2451 if (q->nr_hw_queues > 1)
2452 blk_queue_make_request(q, blk_mq_make_request);
2453 else
2454 blk_queue_make_request(q, blk_sq_make_request);
2455
2456 blk_mq_queue_reinit(q, cpu_online_mask);
2457 }
2458
2459 list_for_each_entry(q, &set->tag_list, tag_set_list)
2460 blk_mq_unfreeze_queue(q);
2461}
2462EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2463
Jens Axboebbd7bb72016-11-04 09:34:34 -06002464static bool __blk_mq_poll(struct blk_mq_hw_ctx *hctx, struct request *rq)
2465{
2466 struct request_queue *q = hctx->queue;
2467 long state;
2468
2469 hctx->poll_considered++;
2470
2471 state = current->state;
2472 while (!need_resched()) {
2473 int ret;
2474
2475 hctx->poll_invoked++;
2476
2477 ret = q->mq_ops->poll(hctx, rq->tag);
2478 if (ret > 0) {
2479 hctx->poll_success++;
2480 set_current_state(TASK_RUNNING);
2481 return true;
2482 }
2483
2484 if (signal_pending_state(state, current))
2485 set_current_state(TASK_RUNNING);
2486
2487 if (current->state == TASK_RUNNING)
2488 return true;
2489 if (ret < 0)
2490 break;
2491 cpu_relax();
2492 }
2493
2494 return false;
2495}
2496
2497bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie)
2498{
2499 struct blk_mq_hw_ctx *hctx;
2500 struct blk_plug *plug;
2501 struct request *rq;
2502
2503 if (!q->mq_ops || !q->mq_ops->poll || !blk_qc_t_valid(cookie) ||
2504 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
2505 return false;
2506
2507 plug = current->plug;
2508 if (plug)
2509 blk_flush_plug_list(plug, false);
2510
2511 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
2512 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
2513
2514 return __blk_mq_poll(hctx, rq);
2515}
2516EXPORT_SYMBOL_GPL(blk_mq_poll);
2517
Jens Axboe676141e2014-03-20 13:29:18 -06002518void blk_mq_disable_hotplug(void)
2519{
2520 mutex_lock(&all_q_mutex);
2521}
2522
2523void blk_mq_enable_hotplug(void)
2524{
2525 mutex_unlock(&all_q_mutex);
2526}
2527
Jens Axboe320ae512013-10-24 09:20:05 +01002528static int __init blk_mq_init(void)
2529{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002530 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2531 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002532
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002533 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2534 blk_mq_queue_reinit_prepare,
2535 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002536 return 0;
2537}
2538subsys_initcall(blk_mq_init);